/* ═══════════════════════════════════════════════════════════
   EHM — Elektron Hüquq Mərkəzi · Premium landing
   Palette UNCHANGED (gold #B8922E / cream #F5F2EB / ink #1A1000).
   Type system: Fraunces (display serif) + Inter (UI/body).
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@400;450;500;600;700&display=swap');

:root {
    /* — brand palette (unchanged) — */
    --primary:        #B8922E;
    --primary-dark:   #9A7020;
    --primary-light:  #C9A84C;
    --bg:             #F5F2EB;
    --bg-card:        #FFFFFF;
    --bg-card2:       #FAF7F0;
    --text-dark:      #1A1814;
    --text-mid:       rgba(26,24,20,0.68);
    --text-light:     rgba(26,24,20,0.50);
    --text-muted:     rgba(26,24,20,0.36);
    --border:         rgba(26,16,0,0.09);
    --border-gold:    rgba(184,146,46,0.35);
    --gold-subtle:    rgba(184,146,46,0.08);
    --gold-glow:      rgba(184,146,46,0.28);
    --ink:            #1A1000;
    --ink-2:          #100A00;
    --green:          #16A34A;
    --green-2:        #22C55E;

    --radius:         20px;
    --radius-sm:      14px;
    --radius-lg:      26px;
    --grad-gold:      linear-gradient(180deg, #C9A84C 0%, #B8922E 100%);
    --grad-blue:      linear-gradient(135deg, #B8922E 0%, #C9A84C 100%);

    /* — premium type + motion — */
    --serif: 'Fraunces', 'Poppins', 'Georgia', serif;
    --sans:  'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
    --ease:  cubic-bezier(0.22, 0.61, 0.36, 1);

    /* — layered soft shadows — */
    --sh-sm:  0 1px 2px rgba(26,16,0,0.04), 0 2px 6px rgba(26,16,0,0.04);
    --sh-md:  0 2px 4px rgba(26,16,0,0.04), 0 14px 34px -14px rgba(26,16,0,0.14);
    --sh-lg:  0 4px 8px rgba(26,16,0,0.05), 0 30px 60px -22px rgba(26,16,0,0.22);
    --sh-gold: 0 10px 30px -10px rgba(184,146,46,0.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 450;
    letter-spacing: -0.006em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
}
/* subtle film-grain — depth without color change */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: rgba(184,146,46,0.22); color: var(--ink); }
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }

/* shared eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-dark);
}
.eyebrow::before {
    content: '';
    width: 22px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary));
}
.eyebrow.center::after {
    content: '';
    width: 22px; height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

/* ══════════════════════════ NAVBAR ══════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(245,242,235,0.72);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.navbar.scrolled {
    background: rgba(245,242,235,0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px -18px rgba(26,16,0,0.3);
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo-icon {
    width: 38px; height: 38px;
    background: var(--grad-blue);
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255,255,255,0.35);
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-logo-text {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.01em;
    color: var(--text-dark);
}
.nav-logo-text small {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0;
}
.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 1.5px;
    background: var(--primary);
    transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn-ghost {
    padding: 0 20px; height: 40px;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 13.5px; font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid var(--border-gold);
    background: transparent;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.2s var(--ease);
}
.btn-ghost:hover { background: var(--gold-subtle); border-color: var(--primary); }
.btn-primary {
    padding: 0 22px; height: 40px;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 13.5px; font-weight: 600;
    color: #241a00;
    background: var(--grad-gold);
    border: none; cursor: pointer;
    box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -10px rgba(184,146,46,0.7), inset 0 1px 0 rgba(255,255,255,0.4); }

/* ══════════════════════════ HERO ══════════════════════════ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 150px 40px 40px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 50% -10%, #FBF9F4 0%, #F5F2EB 45%, #F0EBE1 100%);
    text-align: center;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-orb-1 { width: 640px; height: 640px; background: radial-gradient(circle, rgba(184,146,46,0.14), transparent 65%); top: -240px; left: -200px; animation: floatOrb 10s ease-in-out infinite; }
.hero-orb-2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 65%); top: 30px; right: -140px; animation: floatOrb 8s ease-in-out 2s infinite; }
.hero-orb-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(184,146,46,0.07), transparent 65%); bottom: -40px; left: 34%; animation: floatOrb 12s ease-in-out 4s infinite; }
@keyframes floatOrb { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 7px 16px 7px 13px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em;
    color: var(--primary-dark);
    margin-bottom: 30px;
    box-shadow: var(--sh-sm);
    animation: fadeUp 0.7s var(--ease) both;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 4px rgba(184,146,46,0.18); animation: pulseDot 2.2s ease infinite; }
@keyframes pulseDot { 0%,100% { opacity:1; transform:scale(1);} 50% { opacity:0.5; transform:scale(0.7);} }

.hero-title {
    font-family: var(--serif);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.035em;
    color: var(--text-dark);
    margin-bottom: 26px;
    animation: fadeUp 0.7s var(--ease) 0.08s both;
}
.hero-title .highlight {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(120deg, #B8922E 0%, #C9A84C 45%, #E7C86A 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 450;
    animation: fadeUp 0.7s var(--ease) 0.16s both;
}

/* ── Hero chat input ── */
.hero-chat-box {
    animation: fadeUp 0.8s var(--ease) 0.24s both;
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 1;
}
.hero-chat-gradient {
    position: relative;
    background: linear-gradient(135deg, rgba(184,146,46,0.5), rgba(201,168,76,0.28));
    padding: 1.5px;
    border-radius: var(--radius-lg);
    box-shadow: var(--sh-lg);
    margin-bottom: 18px;
    transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.hero-chat-gradient:focus-within {
    box-shadow: 0 10px 24px -8px rgba(26,16,0,0.12), 0 40px 70px -30px rgba(184,146,46,0.5);
    transform: translateY(-2px);
}
.hero-chat-inner {
    background: #FFFFFF;
    border-radius: calc(var(--radius-lg) - 2px);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 22px 22px 22px 26px;
    gap: 12px;
    min-height: 104px;
    text-align: left;
}
.hero-input-wrap { position: relative; width: 100%; }
.hero-input-wrap textarea {
    width: 100%; min-height: 60px;
    border: none; outline: none; resize: none;
    font-size: 16.5px; font-family: var(--sans);
    color: var(--text-dark); background: transparent;
    line-height: 1.6; display: block; position: relative; z-index: 2; overflow: hidden;
}
.hero-fake-placeholder {
    position: absolute; top: 0; left: 0; right: 0;
    font-size: 16.5px; font-family: var(--sans);
    color: var(--text-muted); pointer-events: none; z-index: 1;
    line-height: 1.6; white-space: normal; word-break: break-word;
}
.hero-cursor { display: inline-block; color: var(--primary); font-weight: 300; animation: blink 0.9s step-end infinite; margin-left: 1px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-chat-send {
    width: 52px; height: 52px;
    border-radius: 15px; flex-shrink: 0;
    background: var(--grad-gold); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.hero-chat-send:hover { transform: scale(1.06) rotate(-4deg); }
.hero-chat-send svg { width: 19px; height: 19px; }

.hero-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.hero-chip {
    padding: 8px 16px; border-radius: 50px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--border);
    font-size: 13px; font-weight: 500;
    color: var(--text-mid); cursor: pointer;
    font-family: var(--sans);
    transition: all 0.2s var(--ease);
}
.hero-chip:hover { border-color: var(--border-gold); color: var(--primary-dark); background: var(--gold-subtle); transform: translateY(-1px); }
.hero-chip-animated {
    border-color: var(--border-gold); color: var(--primary-dark); background: var(--gold-subtle);
    min-width: 200px; text-align: left; overflow: hidden; white-space: nowrap;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(24px);} to { opacity:1; transform:translateY(0);} }

/* trust strip under hero */
.hero-trust {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 12px 26px;
    margin-top: 36px;
    animation: fadeUp 0.8s var(--ease) 0.34s both;
}
.hero-trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: var(--text-light);
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.hero-trust-sep { width: 1px; height: 14px; background: var(--border); }

/* ══════════════════════════ BENTO ══════════════════════════ */
.bento-section { padding: 96px 24px 88px; max-width: 1200px; margin: 0 auto; }
.bento-intro { text-align: center; margin-bottom: 52px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.bento-heading {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 620px;
}

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.bento-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bento-card:hover { transform: translateY(-3px); }

/* HOW IT WORKS 6×2 */
.bc-hiw {
    grid-column: span 6; grid-row: span 2;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px 36px;
    display: flex; flex-direction: column;
    min-height: 400px;
    box-shadow: var(--sh-md);
}
.bc-hiw:hover { box-shadow: var(--sh-lg); }
.bchiw-header { margin-bottom: 42px; display: flex; flex-direction: column; gap: 14px; }
.bchiw-eyebrow { display: none; }
.bchiw-title {
    font-family: var(--serif);
    font-size: 30px; font-weight: 500;
    color: var(--text-dark);
    line-height: 1.14; letter-spacing: -0.025em;
}
.bchiw-steps { display: flex; align-items: flex-start; flex: 1; gap: 20px; }
.bchiw-step { flex: 1; display: flex; flex-direction: column; gap: 14px; position: relative; }
.bchiw-n {
    font-family: var(--serif);
    font-size: 40px; font-weight: 500;
    color: var(--primary);
    opacity: 0.28;
    line-height: 1;
}
.bchiw-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--bg); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); flex-shrink: 0;
}
.bchiw-icon-gold { background: var(--gold-subtle); border-color: var(--border-gold); color: var(--primary); }
.bchiw-icon-green { background: rgba(34,197,94,0.09); border-color: rgba(34,197,94,0.2); color: var(--green); }
.bchiw-stitle { font-size: 15.5px; font-weight: 600; color: var(--text-dark); letter-spacing: -0.01em; }
.bchiw-sdesc { font-size: 13.5px; color: var(--text-light); line-height: 1.65; }

/* 97% 3×1 */
.bc-pct {
    grid-column: span 3;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 32px 28px 28px;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: var(--sh-md);
}
.bcp-eyebrow { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); }
.bcp-num {
    font-family: var(--serif);
    font-size: 82px; font-weight: 500; line-height: 1;
    color: var(--green); display: flex; align-items: flex-start; gap: 2px;
    margin: 10px 0; letter-spacing: -0.04em;
}
.bcp-sign { font-size: 40px; font-weight: 500; color: var(--green-2); margin-top: 12px; }
.bcp-bar { height: 6px; background: #EAF6EE; border-radius: 50px; overflow: hidden; margin-bottom: 12px; }
.bcsat-bar-fill { height: 100%; width: 97%; background: linear-gradient(90deg, var(--green), #4ADE80); border-radius: 50px; animation: barGrow 1.5s cubic-bezier(0.34,1.4,0.5,1) 0.4s both; animation-play-state: paused; }
@keyframes barGrow { from { width: 0; } to { width: 97%; } }
.bcp-desc { font-size: 13px; color: var(--text-light); line-height: 1.55; }

/* 24/7 3×1 dark */
.bc-247 {
    grid-column: span 3;
    background: linear-gradient(155deg, var(--ink) 0%, var(--ink-2) 100%);
    padding: 30px 28px;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 10px;
    position: relative;
}
.bc-247::before { content: ''; position: absolute; top: -30px; right: -30px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(201,168,76,0.22), transparent 70%); }
.bc247-num { font-family: var(--serif); font-size: 56px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: #fff; white-space: nowrap; position: relative; }
.bc247-num span { color: var(--primary-light); margin-left: 8px; }
.bc247-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.88); position: relative; }
.bc247-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.55; position: relative; }

/* USERS 3×1 gold */
.bc-users {
    grid-column: span 3;
    background: linear-gradient(155deg, #C9A84C 0%, #B8922E 60%, #9A7020 100%);
    padding: 30px 28px;
    display: flex; flex-direction: column; justify-content: space-between;
    color: #241a00; position: relative; overflow: hidden;
}
.bc-users::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 80% at 100% 0%, rgba(255,255,255,0.3), transparent 55%); }
.bcu-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; position: relative; }
.bcu-num { font-family: var(--serif); font-size: 54px; font-weight: 500; letter-spacing: -0.03em; line-height: 1; color: #241a00; position: relative; }
.bcu-desc { font-size: 12.5px; opacity: 0.72; line-height: 1.5; position: relative; }

/* SPEED 3×1 */
.bc-speed {
    grid-column: span 3;
    background: linear-gradient(165deg, #FFFBF3, #FCF4E4);
    border: 1px solid var(--border-gold);
    padding: 30px 28px;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 12px;
}
.bcsp-icon { width: 46px; height: 46px; background: rgba(184,146,46,0.14); border-radius: 13px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; margin-bottom: 4px; }
.bcsp-title { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--text-dark); line-height: 1.15; letter-spacing: -0.02em; }
.bcsp-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.55; }

/* TRANSFORM 7×1 */
.bc-transform {
    grid-column: span 7;
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--sh-md);
    display: grid; grid-template-columns: 1fr auto 1fr; overflow: hidden;
}
.bctf-before { background: var(--bg-card2); padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; }
.bctf-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.bctf-tag-muted { color: var(--text-muted); }
.bctf-tag-green { color: var(--green); }
.bctf-legal { font-size: 12.5px; font-weight: 400; line-height: 1.8; color: var(--text-light); font-family: var(--serif); font-style: italic; flex: 1; }
.bctf-source { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.bctf-mid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: var(--bg-card); padding: 0 18px; }
.bctf-arrow { width: 40px; height: 40px; background: var(--grad-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-gold); flex-shrink: 0; }
.bctf-arrow svg { color: #fff; }
.bctf-mid-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.bctf-after { padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.bctf-plain { font-size: 14px; line-height: 1.7; color: var(--text-dark); flex: 1; }
.bctf-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--green); background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 100px; padding: 5px 12px; align-self: flex-start; }

/* PRIVACY 5×1 dark */
.bc-privacy {
    grid-column: span 5;
    background: linear-gradient(135deg, var(--ink-2) 0%, #33220A 55%, #5C3D00 120%);
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 16px; position: relative; overflow: hidden;
}
.bc-privacy::before { content: ''; position: absolute; bottom: -50px; left: -30px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(201,168,76,0.18), transparent 70%); }
.bcp2-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: var(--primary-light); flex-shrink: 0; position: relative; }
.bcp2-title { font-family: var(--serif); font-size: 23px; font-weight: 500; color: #fff; letter-spacing: -0.02em; position: relative; }
.bcp2-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; flex: 1; position: relative; }
.bcp2-badge { display: inline-flex; align-items: center; gap: 6px; padding: 7px 15px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 50px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); align-self: flex-start; position: relative; }

/* CTA 12×1 */
.bc-cta {
    grid-column: span 12;
    background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%);
    padding: 56px 60px;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    overflow: hidden; position: relative;
}
.bc-cta::before { content: ''; position: absolute; top: 50%; right: 12%; width: 420px; height: 420px; transform: translateY(-50%); background: radial-gradient(circle, rgba(201,168,76,0.16), transparent 70%); }
.bccta-left { position: relative; z-index: 1; flex-shrink: 0; max-width: 520px; }
.bccta-sup { font-size: 11px; font-weight: 600; color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 16px; display: block; }
.bccta-h { font-family: var(--serif); font-size: 40px; font-weight: 500; color: #fff; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 30px; }
.bccta-gold { font-style: italic; background: linear-gradient(120deg, #C9A84C, #F5D87A); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bccta-btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 32px; border-radius: 13px; font-size: 15px; font-weight: 600; color: #241a00; background: var(--grad-gold); text-decoration: none; box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255,255,255,0.4); transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); font-family: var(--sans); }
.bccta-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(184,146,46,0.7); }
.bccta-right { position: relative; z-index: 1; text-align: right; flex-shrink: 0; }
.bccta-big-num { font-family: var(--serif); font-size: 88px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.4)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bccta-big-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; }

/* ══════════════════════════ SHOWCASE ══════════════════════════ */
.showcase-section { padding: 60px 0 80px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card2) 100%); overflow: hidden; }
.showcase-inner { max-width: 1140px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.showcase-text .eyebrow { margin-bottom: 22px; }
.showcase-title { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 44px); font-weight: 500; color: var(--text-dark); line-height: 1.14; margin-bottom: 22px; letter-spacing: -0.03em; }
.showcase-body { font-size: 17px; color: var(--text-mid); line-height: 1.75; }
.mock-window { background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%); border-radius: 20px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(26,16,0,0.5), 0 0 0 1px rgba(184,146,46,0.18); }
.mock-topbar { display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: rgba(255,255,255,0.03); border-bottom: 1px solid rgba(184,146,46,0.14); }
.mock-dots { display: flex; gap: 7px; }
.mock-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.16); display: block; }
.mock-dots span:first-child { background: rgba(201,168,76,0.5); }
.mock-title { font-size: 12px; color: rgba(255,255,255,0.42); font-weight: 500; }
.mock-messages { padding: 22px 18px; display: flex; flex-direction: column; gap: 13px; }
.mock-msg { max-width: 85%; font-size: 13.5px; line-height: 1.6; border-radius: 14px; padding: 13px 16px; }
.mock-msg--user { align-self: flex-end; background: var(--grad-gold); color: #241a00; border-bottom-right-radius: 5px; font-weight: 500; box-shadow: var(--sh-gold); }
.mock-msg--ai { align-self: flex-start; background: rgba(255,255,255,0.06); color: rgba(240,230,200,0.92); border-bottom-left-radius: 5px; border: 1px solid rgba(184,146,46,0.12); }
.mock-ai-label { display: inline-flex; align-items: center; gap: 5px; background: rgba(201,168,76,0.16); color: var(--primary-light); font-size: 10px; font-weight: 600; letter-spacing: 0.05em; padding: 4px 9px; border-radius: 20px; margin-bottom: 9px; }
.mock-msg--typing { display: flex; align-items: center; gap: 5px; padding: 15px 18px; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.4); animation: mockBounce 1.2s infinite ease-in-out; }
.mock-dot:nth-child(2) { animation-delay: 0.2s; }
.mock-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes mockBounce { 0%,60%,100% { transform: translateY(0); opacity: 0.35; } 30% { transform: translateY(-5px); opacity: 1; } }
.mock-input-bar { display: flex; align-items: center; gap: 10px; padding: 13px 16px; margin: 0 18px 18px; background: rgba(255,255,255,0.04); border-radius: 12px; border: 1px solid rgba(184,146,46,0.2); }
.mock-input-field { flex: 1; font-size: 13px; color: rgba(255,255,255,0.3); }
.mock-send-btn { width: 30px; height: 30px; border-radius: 9px; background: var(--grad-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ══════════════════════════ PRICING ══════════════════════════ */
.pricing-section { padding: 96px 0 100px; background: var(--bg); }
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section-header-center { text-align: center; margin-bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.section-title { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 46px); font-weight: 500; color: var(--text-dark); letter-spacing: -0.03em; line-height: 1.12; }
.section-subtitle { font-size: 16.5px; color: var(--text-mid); max-width: 520px; }

.pricing-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; margin-top: 28px; }
.pricing-card {
    grid-column: span 2;
    background: var(--bg-card);
    border-radius: var(--radius); display: flex; flex-direction: column;
    border: 1px solid var(--border);
    padding: 32px 26px 26px; position: relative;
    box-shadow: var(--sh-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--border-gold); }
.pricing-card:nth-child(4) { grid-column: span 3; }
.pricing-card:nth-child(5) { grid-column: span 3; }
.pricing-card--featured {
    background: linear-gradient(160deg, #4A3100 0%, #7A5A12 100%);
    border-color: var(--border-gold);
    box-shadow: 0 20px 50px -20px rgba(184,146,46,0.4);
}
.pricing-card--featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); }
.pc-badge { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 18px; border: 1px solid rgba(255,255,255,0.25); }
.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.pc-coming { font-family: var(--serif); font-size: 26px; font-weight: 500; font-style: italic; color: var(--primary); letter-spacing: -0.01em; }
.pricing-card--featured .pc-coming { color: var(--primary-light); }
.pc-label { font-family: var(--serif); font-size: 23px; font-weight: 600; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -0.02em; }
.pricing-card--featured .pc-label { color: #fff; }
.pc-desc { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin-bottom: 22px; }
.pricing-card--featured .pc-desc { color: rgba(255,255,255,0.82); }
.pc-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pc-list li { font-size: 13px; color: var(--text-mid); padding-left: 26px; position: relative; line-height: 1.5; }
.pricing-card--featured .pc-list li { color: rgba(255,255,255,0.9); }
.pc-list li::before { content: ''; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%; background: var(--gold-subtle) url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l2.5 2.5 5.5-5' stroke='%23B8922E' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat; }
.pricing-card--featured .pc-list li::before { background-color: rgba(255,255,255,0.18); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7l2.5 2.5 5.5-5' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.pc-btn { display: block; text-align: center; background: var(--bg-card2); color: var(--primary-dark); font-size: 13.5px; font-weight: 600; padding: 13px 0; border-radius: 11px; border: 1px solid var(--border-gold); text-decoration: none; cursor: pointer; width: 100%; font-family: var(--sans); transition: all 0.2s var(--ease); }
.pc-btn:hover { background: var(--gold-subtle); border-color: var(--primary); }
.pricing-card--featured .pc-btn { background: rgba(255,255,255,0.16); color: #fff; border-color: rgba(255,255,255,0.3); }
.pricing-card--featured .pc-btn:hover { background: rgba(255,255,255,0.26); }

/* ══════════════════════════ FAQ ══════════════════════════ */
.faq-section { padding: 88px 0; background: linear-gradient(180deg, var(--bg-card2), var(--bg)); }
.faq-inner { max-width: 820px; margin: 0 auto; padding: 0 40px; }
.faq-head { text-align: center; margin-bottom: 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.faq-title { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 42px); font-weight: 500; color: var(--text-dark); letter-spacing: -0.03em; }
.faq-subtitle { font-size: 16px; color: var(--text-mid); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.faq-item:hover { border-color: var(--border-gold); box-shadow: var(--sh-sm); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--text-dark); text-align: left; font-family: var(--sans); transition: color 0.2s; }
.faq-q:hover { color: var(--primary-dark); }
.faq-q svg { flex-shrink: 0; color: var(--primary); transition: transform 0.3s var(--ease); }
.faq-q.open svg { transform: rotate(180deg); }
.faq-q.open { color: var(--primary-dark); }
.faq-a { font-size: 14px; color: var(--text-mid); line-height: 1.7; padding: 0 24px 20px; display: none; }
.faq-a.open { display: block; animation: fadeUp 0.35s var(--ease) both; }

/* ══════════════════════════ CTA BANNER ══════════════════════════ */
.cta-banner-section { padding: 100px 24px; background: linear-gradient(120deg, var(--ink) 0%, var(--ink-2) 100%); position: relative; overflow: hidden; }
.cta-banner-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.cta-banner-glow { position: absolute; width: 560px; height: 560px; background: radial-gradient(circle, rgba(201,168,76,0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-banner-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-banner-content .eyebrow { color: var(--primary-light); }
.cta-banner-content .eyebrow::before, .cta-banner-content .eyebrow::after { background: linear-gradient(90deg, transparent, var(--primary-light)); }
.cta-banner-title { font-family: var(--serif); font-size: clamp(34px, 4.6vw, 58px); font-weight: 500; color: #fff; letter-spacing: -0.03em; line-height: 1.08; }
.cta-banner-title em { font-style: italic; background: linear-gradient(120deg, #C9A84C, #F5D87A); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-banner-sub { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 500px; line-height: 1.65; margin-bottom: 14px; }
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-banner-btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 40px; background: var(--grad-gold); color: #241a00; font-family: var(--sans); font-size: 15px; font-weight: 600; border-radius: 12px; text-decoration: none; transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); box-shadow: var(--sh-gold), inset 0 1px 0 rgba(255,255,255,0.4); }
.cta-banner-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(184,146,46,0.7); }

.section-label { display: inline-block; font-size: 12px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.14em; }

/* ══════════════════════════ FOOTER ══════════════════════════ */
.footer { background: linear-gradient(180deg, var(--ink-2), #0A0600); border-top: 1px solid rgba(184,146,46,0.18); color: rgba(240,225,180,0.55); padding: 48px 24px 28px; }
.footer-main { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(184,146,46,0.14); margin-bottom: 24px; }
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-brand-name { font-family: var(--serif); font-weight: 600; font-size: 19px; color: #fff; display: flex; align-items: center; gap: 9px; }
.footer-brand-desc { font-size: 13.5px; line-height: 1.6; max-width: 300px; }
.footer-nav { display: flex; align-items: center; gap: 30px; }
.footer-nav a { font-size: 14px; color: rgba(240,220,160,0.6); transition: color 0.2s; }
.footer-nav a:hover { color: var(--primary-light); }
.footer-socials { display: flex; align-items: center; gap: 10px; }
.footer-social-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(184,146,46,0.2); display: flex; align-items: center; justify-content: center; color: rgba(240,220,160,0.62); transition: all 0.2s var(--ease); }
.footer-social-icon:hover { background: rgba(184,146,46,0.16); color: var(--primary-light); border-color: rgba(184,146,46,0.45); transform: translateY(-2px); }
.footer-bottom { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.32); gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════ RESPONSIVE ══════════════════════════ */
@media (max-width: 1024px) {
    .navbar { padding: 14px 28px; }
    .hero { padding: 130px 32px 56px; }
    .bento-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; }
    .bc-hiw { grid-column: span 6; grid-row: span 2; }
    .bc-pct, .bc-247, .bc-users, .bc-speed { grid-column: span 3; }
    .bc-transform { grid-column: span 6; }
    .bc-privacy { grid-column: span 6; }
    .bc-cta { grid-column: span 6; flex-direction: column; align-items: flex-start; padding: 44px 40px; }
    .bccta-right { display: none; }
    .bccta-h { font-size: 30px; }
    .showcase-inner { gap: 48px; }
    .pricing-grid { grid-template-columns: repeat(4, 1fr); }
    .pricing-card, .pricing-card:nth-child(4), .pricing-card:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 768px) {
    .navbar { padding: 12px 20px; }
    .nav-links { display: none; }
    .hero { padding: 116px 22px 52px; }
    .hero-subtitle { font-size: 16px; }
    .bento-section { padding: 64px 18px 64px; }
    .bento-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .bc-hiw { grid-column: span 4; grid-row: span 1; min-height: 320px; }
    .bc-pct, .bc-247, .bc-users, .bc-speed { grid-column: span 2; }
    .bc-transform { grid-column: span 4; grid-template-columns: 1fr; }
    .bc-transform .bctf-mid { flex-direction: row; padding: 14px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .bc-privacy { grid-column: span 4; }
    .bc-cta { grid-column: span 4; flex-direction: column; align-items: flex-start; padding: 40px 30px; }
    .bccta-right { display: none; }
    .bchiw-title { font-size: 26px; }
    .showcase-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 22px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card, .pricing-card:nth-child(4), .pricing-card:nth-child(5) { grid-column: span 1; }
    .pricing-inner { padding: 0 22px; }
    .faq-inner { padding: 0 22px; }
    .footer-main { flex-direction: column; align-items: flex-start; gap: 28px; }
    .footer-bottom { justify-content: center; }
}
@media (max-width: 480px) {
    .navbar { padding: 12px 16px; }
    .nav-logo-text small { display: none; }
    .btn-ghost { display: none; }
    .hero { padding: 104px 16px 44px; }
    .hero-title { font-size: clamp(34px, 11vw, 48px); }
    .hero-chat-inner { padding: 16px; min-height: 90px; }
    .hero-input-wrap textarea { font-size: 15px; min-height: 46px; }
    .hero-fake-placeholder { font-size: 15px; }
    .hero-chat-send { width: 46px; height: 46px; }
    .hero-trust { gap: 10px 16px; }
    .bento-section { padding: 52px 12px 52px; }
    .bento-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .bc-hiw { grid-column: span 2; min-height: 240px; padding: 26px 22px; }
    .bc-pct, .bc-247, .bc-users, .bc-speed { grid-column: span 1; }
    .bc-transform, .bc-privacy, .bc-cta { grid-column: span 2; }
    .bchiw-steps { flex-direction: column; gap: 22px; }
    .bcp-num { font-size: 58px; }
    .bccta-h { font-size: 24px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card, .pricing-card:nth-child(4), .pricing-card:nth-child(5) { grid-column: span 1; }
    .pricing-inner, .faq-inner { padding: 0 16px; }
    .footer-nav { flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
