/* ═══════════════════════════════════════════════════════════════
   USA Saudi-Syrian Business Council — Domain Sales Page
   Style Sheet
═══════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ────────────────────────────────────── */
:root {
    --navy:         #0a1628;
    --navy-mid:     #112040;
    --navy-light:   #1a3060;
    --gold:         #c9a84c;
    --gold-light:   #e0c070;
    --gold-dark:    #a88430;
    --white:        #ffffff;
    --off-white:    #f8f9fa;
    --light-gray:   #eef0f4;
    --mid-gray:     #8a94a6;
    --text-dark:    #1a2035;
    --text-body:    #3d4a5c;
    --border:       #dde1ea;
    --error:        #c0392b;
    --error-bg:     #fdf0ef;
    --success:      #1a7a45;
    --success-bg:   #edfaf3;

    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --shadow-sm:    0 2px 8px rgba(10,22,40,.08);
    --shadow-md:    0 6px 24px rgba(10,22,40,.12);
    --shadow-lg:    0 16px 48px rgba(10,22,40,.18);

    --font:         'Inter', system-ui, -apple-system, sans-serif;
    --transition:   .2s ease;
    --max-width:    1140px;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold); }

ul { list-style: none; }

/* ─── Utility ──────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold { color: var(--gold); }

/* ─── Buttons ──────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-gold,
.btn-nav,
.btn-text,
.btn-submit {
    display: inline-block;
    font-family: var(--font);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    padding: 13px 28px;
    line-height: 1;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}
.btn-primary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,168,76,.35);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-size: 1rem;
    padding: 15px 32px;
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201,168,76,.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-nav {
    background: var(--gold);
    color: var(--navy);
    padding: 9px 20px;
    font-size: .875rem;
}
.btn-nav:hover {
    background: var(--gold-light);
    color: var(--navy);
}

.btn-text {
    background: none;
    padding: 4px 8px;
    font-size: .85rem;
    color: var(--gold-dark);
    font-weight: 500;
    border-radius: var(--radius-sm);
}
.btn-text:hover { background: var(--light-gray); color: var(--navy); }

.btn-full { width: 100%; display: block; }

.btn-submit {
    background: var(--gold);
    color: var(--navy);
    padding: 16px 40px;
    font-size: 1rem;
    letter-spacing: .02em;
}
.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,168,76,.4);
}

/* ─── Header / Nav ─────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,22,40,.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,.15);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-mark {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .06em;
}
.brand-label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    font-weight: 400;
    letter-spacing: .04em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.lang-switch {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.75) !important;
    padding: 5px 13px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .03em;
    transition: all var(--transition);
    white-space: nowrap;
}
.lang-switch:hover {
    background: rgba(201,168,76,.15);
    border-color: var(--gold);
    color: var(--gold) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s;
}

/* ─── Sections ─────────────────────────────────────────────── */
.section { padding: 96px 0; }

.section-light { background: var(--off-white); }
.section-dark  { background: var(--navy); }
.section-form  { background: var(--white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--mid-gray);
}
.section-header-light h2 { color: var(--white); }
.section-header-light p  { color: rgba(255,255,255,.6); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d1e3a 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,.15);
    border: 1px solid rgba(201,168,76,.35);
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .85rem;
    color: rgba(255,255,255,.45);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* ─── Why List (single-column text layout) ─────────────────── */
.why-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-item {
    padding-left: 24px;
    border-left: 3px solid var(--gold);
}

.why-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: .01em;
}

.why-item p {
    font-size: .95rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ─── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
    align-items: start;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1040px;
}

.pricing-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-featured {
    background: rgba(201,168,76,.08);
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 8px 40px rgba(201,168,76,.15);
}

.pricing-card-triple {
    background: rgba(201,168,76,.04);
    border-color: rgba(201,168,76,.45);
    border-width: 1.5px;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-label {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-unit {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 16px;
}

.pricing-original {
    font-size: .9rem;
    color: rgba(255,255,255,.4);
    margin-bottom: 4px;
}
.pricing-original s { text-decoration-color: rgba(255,255,255,.4); }

.pricing-saving {
    font-size: .85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 28px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}
.pricing-features li {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ─── Suited-For List ──────────────────────────────────────── */
.suited-list {
    list-style: none;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 6px 20px;
    counter-reset: suited-counter;
}
.suited-list li {
    counter-increment: suited-counter;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.5;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
}
.suited-list li::before {
    content: counter(suited-counter);
    min-width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--navy);
    font-size: .75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.suited-list li em {
    font-style: normal;
    font-size: .82rem;
    color: var(--mid-gray);
    display: block;
    margin-top: 2px;
}
/* In FAQ the list is single column */
.suited-list-faq {
    grid-template-columns: 1fr;
}


/* ─── Form ─────────────────────────────────────────────────── */
.inquiry-form {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 48px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 28px;
}
.form-group.has-error .form-input,
.form-group.has-error .checkbox-grid {
    border-color: var(--error);
}

.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: .01em;
}
.form-label .req { color: var(--error); margin-left: 2px; }

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: .95rem;
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.form-input:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-input::placeholder { color: var(--mid-gray); }

.form-error {
    display: block;
    font-size: .82rem;
    color: var(--error);
    margin-top: 6px;
    font-weight: 500;
}

/* Checkbox controls */
.checkbox-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.checkbox-controls .divider { color: var(--border); }
.selected-count {
    margin-left: auto;
    font-size: .82rem;
    color: var(--mid-gray);
    font-weight: 500;
}

/* Checkbox grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    background: var(--off-white);
    margin-bottom: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    user-select: none;
}
.checkbox-label:hover { background: var(--light-gray); }

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.checkbox-label input:checked ~ .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
}
.checkbox-label input:checked ~ .checkbox-custom::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid var(--navy);
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}
.checkbox-label input:focus-visible ~ .checkbox-custom {
    outline: 3px solid rgba(201,168,76,.4);
    outline-offset: 2px;
}

.checkbox-text {
    font-size: .88rem;
    color: var(--text-body);
    font-family: 'Courier New', monospace;
}

/* Bundle checkbox */
.checkbox-label-bundle {
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    background: rgba(201,168,76,.04);
}
.checkbox-label-bundle .checkbox-text {
    font-family: var(--font);
    font-size: .9rem;
}

/* ─── Domain Groups (form checkboxes) ──────────────────────── */
.domain-group {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    overflow: hidden;
}

.domain-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 14px;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border);
    gap: 10px;
    flex-wrap: wrap;
}

.domain-group-name {
    font-weight: 700;
    font-size: .85rem;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
    letter-spacing: .02em;
}

.domain-group-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.domain-group-badge {
    font-size: .71rem;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 100px;
    padding: 2px 10px;
    white-space: nowrap;
}

.domain-group-checkboxes {
    display: flex;
    flex-direction: column;
    padding: 6px 8px;
    background: var(--white);
}

/* ─── Price breakdown rows ──────────────────────────────────── */
.ps-breakdown-row {
    padding: 3px 0;
}
.ps-breakdown-row .ps-label {
    font-size: .81rem;
    font-family: 'Courier New', monospace;
    color: var(--text-body);
}
.ps-breakdown-row .ps-value {
    font-size: .83rem;
    font-weight: 500;
}
.ps-triple-badge {
    display: inline-block;
    font-size: .67rem;
    font-weight: 700;
    color: var(--gold-dark);
    background: rgba(201,168,76,.15);
    border-radius: 4px;
    padding: 1px 5px;
    font-family: var(--font);
    vertical-align: middle;
    margin-left: 4px;
}
.ps-strikethrough {
    text-decoration: line-through;
    color: var(--mid-gray);
    font-weight: 400;
    margin-right: 4px;
    font-size: .78rem;
}

.form-submit {
    text-align: center;
}
.form-note {
    margin-top: 14px;
    font-size: .82rem;
    color: var(--mid-gray);
}

/* Honeypot */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* ─── Price Summary Calculator ────────────────────────────── */
.price-summary {
    margin: 8px 0 24px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(201,168,76,.06) 0%, rgba(201,168,76,.02) 100%);
    overflow: hidden;
}
.price-summary.ps-visible {
    animation: psSlideIn .3s ease both;
}
@keyframes psSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.price-summary-inner {
    padding: 20px 24px;
}

.ps-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0;
}

.ps-label {
    font-size: .88rem;
    color: var(--text-body);
    font-weight: 500;
}

.ps-value {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.ps-row-strikethrough .ps-value {
    text-decoration: line-through;
    color: var(--mid-gray);
    font-weight: 400;
    font-size: .88rem;
}
.ps-row-strikethrough .ps-label {
    color: var(--mid-gray);
    font-weight: 400;
}

.ps-divider {
    height: 1px;
    background: rgba(201,168,76,.25);
    margin: 6px 0;
}

.ps-value-highlight {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
}

.ps-value-save {
    color: var(--success);
    font-size: .92rem;
}
.ps-row-save .ps-label {
    color: var(--success);
    font-weight: 500;
}

.ps-bundle-badge {
    margin-top: 14px;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: .04em;
    background: rgba(201,168,76,.1);
    border-radius: var(--radius-sm);
    padding: 7px 12px;
}

/* ─── Alerts ───────────────────────────────────────────────── */
.alert {
    max-width: 680px;
    margin: 0 auto 32px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    font-size: .95rem;
    line-height: 1.6;
}
.alert-success {
    background: var(--success-bg);
    border: 1px solid #a8e0c0;
    color: var(--success);
}
.alert-error {
    background: var(--error-bg);
    border: 1px solid #f0b8b4;
    color: var(--error);
}
.alert a { color: inherit; text-decoration: underline; }

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: .97rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    gap: 16px;
    transition: background var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform .25s;
}
details[open] .faq-question::after {
    transform: rotate(45deg);
}
.faq-question:hover { background: var(--off-white); }

.faq-answer {
    padding: 0 24px 20px;
    font-size: .92rem;
    color: var(--text-body);
    line-height: 1.75;
    border-top: 1px solid var(--border);
}
.faq-answer p { padding-top: 16px; }

/* ─── Contact ──────────────────────────────────────────────── */
.section-contact {
    padding: 80px 0;
}
.contact-inner {
    text-align: center;
}
.contact-inner h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.contact-inner > p {
    color: rgba(255,255,255,.55);
    margin-bottom: 20px;
}
.contact-email {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    border-bottom: 2px solid rgba(201,168,76,.3);
    padding-bottom: 4px;
    margin-bottom: 16px;
    transition: border-color var(--transition);
}
.contact-email:hover { border-color: var(--gold); color: var(--gold-light); }
.contact-note {
    font-size: .85rem;
    color: rgba(255,255,255,.35);
}

/* ─── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: #060e1a;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 40px 0;
}
.footer-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.4);
    font-size: .85rem;
}
.footer-brand .brand-mark {
    font-size: .95rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .06em;
}
.footer-copy {
    font-size: .82rem;
    color: rgba(255,255,255,.3);
    max-width: 560px;
    line-height: 1.6;
}
.footer-contact {
    font-size: .82rem;
    color: rgba(255,255,255,.35);
}
.footer-contact a {
    color: rgba(201,168,76,.6);
}
.footer-contact a:hover { color: var(--gold); }

/* ─── Mobile Navigation ────────────────────────────────────── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid rgba(201,168,76,.15);
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-links a, .nav-links .btn-nav {
        display: block;
        width: 100%;
        text-align: left;
        padding: 12px 16px;
    }
    .nav-toggle { display: flex; }

    /* Hamburger active state */
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .section { padding: 72px 0; }
    .hero { padding: 88px 0 72px; }
    .inquiry-form { padding: 36px 28px; }
    .pricing-grid-3 { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 640px) {
    .section { padding: 56px 0; }
    .hero { padding: 72px 0 56px; }

    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.7rem; }

    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: stretch; text-align: center; }
    .hero-trust { gap: 16px; font-size: .8rem; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card-featured { order: -1; }


    .inquiry-form { padding: 28px 20px; }
    .checkbox-grid { grid-template-columns: 1fr; }

}

