:root {
    --brand: #00468E;
    --brand-dark: #003366;
    --brand-light: #E8F0FE;
    --white: #ffffff;
    --text-muted: #6b7280;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
}

/* ── Hero ── */
.acc-hero {
    background: linear-gradient(135deg, var(--brand-light) 0%, #dce6f5 100%);
    padding: 4rem 0 3.5rem;
}

.acc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--brand);
    color: var(--white);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.acc-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.acc-hero-title span {
    color: var(--brand);
}

.acc-hero-desc {
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Section Title ── */
.acc-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

/* ── How It Works ── */
.acc-how {
    padding: 5rem 0;
    background: var(--white);
}

.acc-step-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.acc-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.acc-step-num {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.acc-step-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
    margin-bottom: 0.4rem;
}

.acc-step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── Request Form Section ── */
.acc-form-section {
    padding: 5rem 0;
    background: #fafbfc;
}

.acc-form-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.acc-form-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(0, 70, 142, 0.06);
}

.acc-form-title {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.acc-form-body {
    padding: 1.75rem;
}

.acc-form-group-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 70, 142, 0.06);
}

.acc-form-group-title i {
    color: var(--brand);
}

.acc-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.35rem;
    display: block;
}

.acc-label span {
    color: #c0392b;
}

.acc-input {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.acc-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 70, 142, 0.1);
}

.acc-input::placeholder {
    color: #b0b6c0;
}

textarea.acc-input {
    resize: vertical;
}

.acc-submit-btn {
    background: var(--brand);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    padding: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: background 0.2s;
}

.acc-submit-btn:hover {
    background: var(--brand-dark);
    color: var(--white);
}

/* ── Sidebar Cards ── */
.acc-sidebar-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.acc-sidebar-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

/* City Card */
.acc-city-card {
    text-align: center;
}

.acc-city-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.acc-city-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.acc-city-pill {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--brand-light);
    color: var(--brand);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.acc-city-pill:hover {
    background: var(--brand);
    color: var(--white);
}

/* Why Use */
.acc-why-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acc-why-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.acc-why-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.acc-why-item strong {
    font-size: 0.88rem;
    color: #1a1a2e;
    display: block;
    margin-bottom: 0.1rem;
}

.acc-why-item p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Area Guides ── */
.acc-guides {
    padding: 5rem 0;
    background: var(--white);
}

.acc-guide-card {
    background: var(--white);
    border: 1px solid rgba(0, 70, 142, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.acc-guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.acc-guide-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.acc-guide-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.acc-guide-name {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.1rem;
}

.acc-guide-area {
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 600;
}

.acc-guide-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.82rem;
    color: #374151;
    font-weight: 600;
    margin-bottom: 1rem;
}

.acc-guide-stats i {
    color: #f59e0b;
    margin-right: 0.15rem;
}

.acc-guide-stats span:last-child i {
    color: var(--brand);
}

.acc-guide-covers {
    margin-bottom: 1rem;
}

.acc-guide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.acc-guide-tag {
    padding: 0.2rem 0.65rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    background: var(--brand-light);
    color: var(--brand);
    border: 1px solid rgba(0, 70, 142, 0.08);
}

.acc-guide-footer {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 70, 142, 0.06);
}

.acc-guide-helped {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.acc-guide-helped i {
    color: var(--brand);
    margin-right: 0.2rem;
}

/* ── CTA ── */
.acc-cta {
    padding: 4rem 0;
    background: var(--brand);
    color: var(--white);
}

.acc-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.acc-cta-desc {
    opacity: 0.85;
    max-width: 520px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.acc-cta-btn {
    background: var(--white);
    color: var(--brand);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 0.7rem 2.5rem;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s, transform 0.2s;
}

.acc-cta-btn:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .acc-hero-title {
        font-size: 2rem;
    }

    .acc-section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .acc-hero {
        padding: 3rem 0 2.5rem;
    }

    .acc-hero-title {
        font-size: 1.6rem;
    }

    .acc-how,
    .acc-form-section,
    .acc-guides {
        padding: 3rem 0;
    }

    .acc-form-body {
        padding: 1.25rem;
    }

    .acc-cta {
        padding: 3rem 0;
    }

    .acc-cta-title {
        font-size: 1.5rem;
    }
}
