@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --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.48);
    --text-muted:     rgba(26,24,20,0.35);
    --border:         rgba(0,0,0,0.08);
    --border-gold:    rgba(184,146,46,0.35);
    --gold-subtle:    rgba(184,146,46,0.08);
    --gold-glow:      rgba(184,146,46,0.28);
    --radius:         20px;
    --radius-sm:      14px;
    --grad-gold:      linear-gradient(135deg, #B8922E 0%, #C9A84C 100%);
    --grad-blue:      linear-gradient(135deg, #B8922E 0%, #C9A84C 100%);
    --grad-input:     linear-gradient(135deg, #B8922E, #C9A84C);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    overflow-x: hidden;
}
::selection { background: rgba(201,168,76,0.25); color: #F0EDE6; }
a { text-decoration: none; color: inherit; }

/* ══════════════════════════
   NAVBAR
══════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    background: rgba(245,242,235,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
    background: rgba(245,242,235,0.97);
    box-shadow: 0 2px 20px rgba(184,146,46,0.08);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-logo-icon {
    width: 36px; height: 36px;
    background: var(--grad-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.nav-logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}
.nav-logo-text { color: var(--text-dark); }
.nav-logo-text span { color: var(--primary); }
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn-ghost {
    padding: 0 18px;
    height: 38px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    border: 1.5px solid var(--border-gold);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-ghost:hover { background: var(--gold-subtle); color: var(--primary-light); border-color: var(--primary); }
.btn-primary {
    padding: 0 20px;
    height: 38px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: #0a0a0a;
    background: var(--grad-gold);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 14px var(--gold-glow);
    transition: opacity 0.2s, box-shadow 0.2s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary:hover {
    opacity: 0.88;
    box-shadow: 0 4px 22px var(--gold-glow);
}

/* ══════════════════════════
   HERO
══════════════════════════ */
.hero {
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 110px 40px 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FAF7F0 0%, #F5F2EB 55%, #F0EDE6 100%);
    text-align: center;
    gap: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.hero-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,146,46,0.12), transparent 65%);
    top: -200px; left: -180px;
    animation: floatOrb 9s ease-in-out infinite;
}
.hero-orb-2 {
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(184,146,46,0.07), transparent 65%);
    top: 40px; right: -120px;
    animation: floatOrb 7s ease-in-out 2s infinite;
}
.hero-orb-3 {
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 65%);
    bottom: 0; left: 35%;
    animation: floatOrb 11s ease-in-out 4s infinite;
}
@keyframes floatOrb {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-28px) scale(1.04); }
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 26px;
    animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:0.45; transform:scale(0.65); }
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    color: var(--text-dark);
    margin-bottom: 40px;
    animation: fadeUp 0.6s ease 0.1s both;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #C9A84C, #F5D87A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 36px;
    animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
    animation: fadeUp 0.6s ease 0.3s both;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 600;
    color: #0a0a0a;
    background: var(--grad-gold);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 28px rgba(201,168,76,0.4);
    transition: opacity 0.2s, box-shadow 0.2s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}
.btn-hero-primary:hover {
    opacity: 0.88;
    box-shadow: 0 8px 36px rgba(201,168,76,0.5);
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-mid);
    background: transparent;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}
.btn-hero-secondary:hover { border-color: var(--border-gold); color: var(--primary-light); }
.hero-note {
    font-size: 13px;
    color: var(--text-muted);
    animation: fadeUp 0.6s ease 0.4s both;
    margin-bottom: 36px;
}

.hero-content {
    margin-bottom: 0;
}

/* ── Hero Chat Input ── */
.hero-chat-box {
    animation: fadeUp 0.7s ease 0.5s both;
    width: 100%;
    max-width: 1116px;
    position: relative;
    z-index: 1;
    padding: 0 40px;
}

.hero-chat-gradient {
    background: linear-gradient(135deg, rgba(184,146,46,0.6), rgba(201,168,76,0.4));
    padding: 1.5px;
    border-radius: 22px;
    box-shadow: 0 8px 40px rgba(184,146,46,0.14);
    margin-bottom: 16px;
    transition: box-shadow 0.3s;
}

.hero-chat-gradient:focus-within {
    box-shadow: 0 12px 56px rgba(184,146,46,0.22);
}

.hero-chat-inner {
    background: #FFFFFF;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 24px 24px 24px 24px;
    gap: 10px;
    min-height: 100px;
    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: 16px;
    font-family: 'Poppins', sans-serif;
    color: #1A1814;
    background: transparent;
    padding: 0;
    margin: 0;
    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: 16px;
    font-family: 'Poppins', sans-serif;
    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: 46px; height: 46px;
    border-radius: 13px;
    flex-shrink: 0;
    margin-top: 0;
    background: var(--grad-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.hero-chat-send:hover { transform: scale(1.06); }

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.hero-chip {
    padding: 7px 14px;
    border-radius: 50px;
    background: #FFFFFF;
    border: 1.5px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.hero-chip:hover {
    border-color: var(--border-gold);
    color: var(--primary-light);
    background: var(--gold-subtle);
}

.hero-chip-animated {
    border-color: var(--border-gold);
    color: var(--primary-light);
    background: var(--gold-subtle);
    width: 200px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
}
@keyframes fadeUp {
    from { opacity:0; transform:translateY(22px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ══════════════════════════
   BENTO GRID
══════════════════════════ */
.bento-section {
    padding: 48px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-intro {
    text-align: center;
    margin-bottom: 40px;
}
.bento-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.bento-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0;
    line-height: 1.2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: auto;
    gap: 14px;
}

.bento-card {
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}
.bento-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.10);
}

/* ══════════════
   HOW IT WORKS  (6×2)
══════════════ */
.bc-hiw {
    grid-column: span 6;
    grid-row: span 2;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.07);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.bchiw-header {
    margin-bottom: 40px;
}
.bchiw-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--primary);
    margin-bottom: 10px;
}
.bchiw-title {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0;
    line-height: 1.2;
    white-space: nowrap;
}
.bchiw-steps {
    display: flex;
    align-items: flex-start;
    flex: 1;
    gap: 0;
}
.bchiw-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bchiw-n {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: rgba(184,146,46,0.12);
    line-height: 1;
    letter-spacing: 0;
}
.bchiw-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F5F2EB;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-mid);
    flex-shrink: 0;
}
.bchiw-icon-gold {
    background: rgba(184,146,46,0.09);
    border-color: rgba(184,146,46,0.18);
    color: var(--primary);
}
.bchiw-icon-green {
    background: rgba(34,197,94,0.09);
    border-color: rgba(34,197,94,0.18);
    color: #16A34A;
}
.bchiw-stitle {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0;
}
.bchiw-sdesc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ══════════════
   97%  (3×1)
══════════════ */
.bc-pct {
    grid-column: span 3;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.07);
    padding: 30px 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.bcp-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text-muted);
}
.bcp-num {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    color: #16A34A;
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin: 8px 0;
}
.bcp-sign {
    font-size: 38px;
    font-weight: 600;
    color: #22C55E;
    margin-top: 12px;
    letter-spacing: 0;
}
.bcp-bar {
    height: 5px;
    background: #F0FDF4;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 10px;
}
.bcsat-bar-fill {
    height: 100%;
    width: 97%;
    background: linear-gradient(90deg, #16A34A, #4ADE80);
    border-radius: 50px;
    animation: barGrow 1.4s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
    animation-play-state: paused;
}
@keyframes barGrow {
    from { width: 0; }
    to   { width: 97%; }
}
.bcp-desc {
    font-size: 12.5px;
    color: var(--text-light);
    line-height: 1.55;
}

/* ══════════════
   24/7  (3×1)
══════════════ */
.bc-247 {
    grid-column: span 3;
    background: #100A00;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}
.bc247-num {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -2px !important;
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 0;
    white-space: nowrap;
}
.bc247-num span {
    color: var(--primary-light);
    margin-left: 10px;
}
.bc247-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.bc247-desc {
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    line-height: 1.55;
}

/* ══════════════
   USERS  (3×1)
══════════════ */
.bc-users {
    grid-column: span 3;
    background: #B8922E;
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #1A1000;
}
.bcu-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    opacity: 0.65;
}
.bcu-num {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    color: #1A1000;
}
.bcu-desc {
    font-size: 12px;
    opacity: 0.65;
    line-height: 1.5;
}

/* ══════════════
   SPEED  (3×1)
══════════════ */
.bc-speed {
    grid-column: span 3;
    background: #FFF8EE;
    border: 1px solid rgba(184,146,46,0.14);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}
.bcsp-icon {
    width: 40px; height: 40px;
    background: rgba(184,146,46,0.12);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8922E;
    flex-shrink: 0;
    margin-bottom: 4px;
}
.bcsp-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: 0;
}
.bcsp-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
}

/* ══════════════
   TRANSFORM  (7×1)
══════════════ */
.bc-transform {
    grid-column: span 7;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.bctf-before {
    background: #F5F2EB;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid rgba(0,0,0,0.07);
}
.bctf-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}
.bctf-tag-muted { color: var(--text-muted); }
.bctf-tag-green { color: #16A34A; }
.bctf-legal {
    font-size: 12px;
    font-weight: 400 !important;
    line-height: 1.75;
    color: var(--text-light);
    font-style: italic;
    flex: 1;
}
.bctf-source {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
}
.bctf-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #FFFFFF;
    padding: 0 4px;
}
.bctf-arrow {
    width: 36px;
    height: 36px;
    background: var(--grad-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(184,146,46,0.3);
    flex-shrink: 0;
}
.bctf-mid-label {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--primary);
}
.bctf-after {
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}
.bctf-plain {
    font-size: 13.5px;
    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: #16A34A;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 100px;
    padding: 4px 11px;
    align-self: flex-start;
}

/* ══════════════
   PRIVACY  (5×1)
══════════════ */
.bc-privacy {
    grid-column: span 5;
    background: linear-gradient(135deg, #1A1000 0%, #3D2800 55%, #5C3D00 100%);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bcp2-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}
.bcp2-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0;
}
.bcp2-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    flex: 1;
}
.bcp2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
    align-self: flex-start;
}

/* ══════════════
   CTA  (12×1)
══════════════ */
.bc-cta {
    grid-column: span 12;
    background: #1A1000;
    padding: 52px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}
.bccta-left {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    max-width: 480px;
}
.bccta-sup {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 14px;
    display: block;
}
.bccta-h {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: white;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 28px;
}
.bccta-gold {
    background: linear-gradient(135deg, #C9A84C, #F5D87A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
}
.bccta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 13px;
    font-size: 15px;
    font-weight: 600;
    color: #1A1000;
    background: var(--grad-gold);
    text-decoration: none;
    transition: all 0.22s ease;
    box-shadow: 0 4px 20px rgba(184,146,46,0.35);
    font-family: 'Poppins', sans-serif;
}
.bccta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(184,146,46,0.5);
}
.bccta-right {
    position: relative;
    z-index: 1;
    text-align: right;
    flex-shrink: 0;
}
.bccta-big-num {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.45));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bccta-big-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 6px;
}

/* ══════════════════════════
   HOW IT WORKS
══════════════════════════ */
.cta-banner-section {
    padding: 80px 24px;
    background: #1A1000;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}
.cta-banner-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.cta-banner-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-banner-content {
    position: relative;
    z-index: 1;
}
.cta-banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    line-height: 1.15;
    margin-bottom: 20px;
}
.cta-banner-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    line-height: 1.6;
}
.cta-banner-btns {
    display: flex;
    gap: 0px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-banner-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 72px;
    background: var(--grad-gold);
    color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.cta-banner-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.cta-banner-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 36px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.8);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    transition: background 0.2s ease;
}
.cta-banner-btn-ghost:hover { background: rgba(255,255,255,0.12); }
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0;
    margin-bottom: 52px;
}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.footer {
    background: #1A1000;
    border-top: 1px solid rgba(184,146,46,0.15);
    color: rgba(240,225,180,0.55);
    padding: 24px 24px 24px;
}
.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.12);
    margin-bottom: 24px;
}
.footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 6px;
}
.footer-brand-desc { font-size: 13px; line-height: 1.6; max-width: 260px; }
.footer-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.footer-nav a {
    font-size: 13.5px;
    color: rgba(240,220,160,0.55);
    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: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(184,146,46,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240,220,160,0.6);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social-icon:hover {
    background: rgba(184,146,46,0.15);
    color: var(--primary-light);
    border-color: rgba(184,146,46,0.4);
}
.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.3);
}

/* ══════════════════════════
   PRODUCT SHOWCASE
══════════════════════════ */
.showcase-section {
    padding: 40px 0 60px;
    background: #FAF7F0;
    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-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}
.showcase-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0;
}
.showcase-body {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}
.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-gold);
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
    box-shadow: 0 4px 18px rgba(201,168,76,0.3);
}
.showcase-cta:hover { opacity: 0.88; }

/* Mock window */
.mock-window {
    background: #1A1000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(184,146,46,0.15);
}
.mock-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #251800;
    border-bottom: 1px solid rgba(184,146,46,0.12);
}
.mock-dots {
    display: flex;
    gap: 6px;
}
.mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: block;
}
.mock-title {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}
.mock-messages {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mock-msg {
    max-width: 85%;
    font-size: 13.5px;
    line-height: 1.6;
    border-radius: 12px;
    padding: 12px 16px;
}
.mock-msg--user {
    align-self: flex-end;
    background: var(--grad-gold);
    color: #0a0a0a;
    border-bottom-right-radius: 4px;
}
.mock-msg--ai {
    align-self: flex-start;
    background: #2E1E00;
    color: rgba(240,230,200,0.9);
    border-bottom-left-radius: 4px;
}
.mock-ai-label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(201,168,76,0.15);
    color: var(--primary-light);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 3px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.mock-msg--typing {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
}
.mock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    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: 12px 16px;
    margin: 0 18px 18px;
    background: #251800;
    border-radius: 10px;
    border: 1px solid rgba(184,146,46,0.2);
}
.mock-input-field {
    flex: 1;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}
.mock-send-btn {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ══════════════════════════
   PRICING SECTION
══════════════════════════ */
.pricing-section {
    padding: 88px 0 96px;
    background: #F0EDE6;
}
.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.pricing-inner .section-title {
    font-weight: 600;
    margin-bottom: 16px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.pricing-card {
    grid-column: span 2;
    background: #FFFFFF;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgba(0,0,0,0.07);
    padding: 28px 24px 24px;
    position: relative;
    box-shadow: none;
    transition: border-color 0.18s ease;
}
.pricing-card:hover {
    box-shadow: none;
    border-color: var(--border-gold);
}
/* Alt sıra: 2 kart hərəsi 3 sütun — bərabər geniş */
.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, #5C3D00, #8B6914);
    border-color: var(--border-gold);
    box-shadow: 0 4px 32px rgba(184,146,46,0.18);
}
.pricing-card--featured:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 40px rgba(184,146,46,0.28);
}
.pc-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 4px 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: 6px;
}
.pc-amount {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: 0;
}
.pricing-card--featured .pc-amount { color: var(--primary-light); }
.pc-per {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-card--featured .pc-per { color: rgba(255,255,255,0.7); }
.pc-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.pricing-card--featured .pc-label { color: var(--primary-light); }
.pc-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 20px;
}
.pricing-card--featured .pc-desc { color: rgba(255,255,255,0.8); }
.pc-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.pc-list li {
    font-size: 13px;
    color: var(--text-mid);
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}
.pricing-card--featured .pc-list li { color: rgba(255,255,255,0.88); }
.pc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(184,146,46,0.12) 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.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain;
}
.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.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pc-btn {
    display: block;
    text-align: center;
    background: #FAF7F0;
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 600;
    padding: 11px 0;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    text-decoration: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
    transition: background 0.18s, border-color 0.18s;
}
.pc-btn:hover { background: rgba(184,146,46,0.12); border-color: var(--primary); }
.pricing-card--featured .pc-btn {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    font-weight: 600;
}
.pricing-card--featured .pc-btn:hover { background: rgba(255,255,255,0.28); }

.pc-coming {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.pricing-card--featured .pc-coming {
    color: var(--primary-light);
}

/* ══════════════════════════
   FEATURES MODAL
══════════════════════════ */
.fm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.55);
    backdrop-filter: blur(6px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fm-overlay.active { display: flex; }

.fm-box {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(37,99,235,0.18);
    animation: fmIn 0.28s cubic-bezier(0.34,1.56,0.64,1) both;
    position: relative;
}
@keyframes fmIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.fm-close {
    position: absolute;
    top: 18px; right: 22px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: color 0.15s;
}
.fm-close:hover { color: var(--text-dark); }

.fm-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 28px 36px 16px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.fm-table-wrap {
    overflow: auto;
    flex: 1;
}

.fm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}
.fm-table thead th {
    position: sticky;
    top: 0;
    background: #F8FAFC;
    padding: 14px 18px;
    text-align: center;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}
.fm-table thead th.fm-feat-col {
    text-align: left;
    min-width: 200px;
}
.fm-table thead th.fm-featured {
    background: #EFF6FF;
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.fm-table tbody tr {
    border-bottom: 1px solid #F1F5F9;
    transition: background 0.12s;
}
.fm-table tbody tr:hover { background: #F8FAFC; }

.fm-table td {
    padding: 13px 18px;
    text-align: center;
    vertical-align: middle;
}
.fm-table td.fm-feat-name {
    text-align: left;
    color: var(--text-mid);
    font-weight: 500;
}
.fm-table tfoot td.fm-feat-name {
    text-align: left;
}

.fm-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22C55E;
}
.fm-check::after {
    content: '';
    display: block;
    width: 8px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.fm-dash {
    color: #CBD5E1;
    font-size: 1.1rem;
    font-weight: 400;
}

.fm-price-row {
    border-top: 2px solid var(--border);
    background: #F8FAFC;
}
.fm-price-row td { padding: 16px 18px; }
.fm-price-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.fm-price-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text-dark);
    white-space: nowrap;
}
.fm-price-featured {
    color: var(--primary);
}

.fm-cta-row td { padding: 12px 18px 20px; }
.fm-cta-btn {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 10px;
    background: #EFF6FF;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.82rem;
    transition: background 0.15s;
    white-space: nowrap;
}
.fm-cta-btn:hover { background: #DBEAFE; }
.fm-cta-featured {
    background: var(--primary);
    color: #fff;
}
.fm-cta-featured:hover { background: var(--primary-dark); }

/* Active column highlight */
.fm-table thead th.fm-active-col,
.fm-table td.fm-active-col {
    background: #F0F7FF;
}
.fm-table thead th.fm-featured.fm-active-col {
    background: #DBEAFE;
}

@media (max-width: 700px) {
    .fm-box { border-radius: 16px; }
    .fm-title { padding: 20px 20px 14px; font-size: 1.1rem; }
    .fm-table thead th, .fm-table td { padding: 10px 10px; font-size: 0.78rem; }
    .fm-table thead th.fm-feat-col { min-width: 130px; }
    .fm-check { width: 22px; height: 22px; }
}

/* ══════════════════════════
   FAQ SECTION
══════════════════════════ */
.faq-section {
    padding: 80px 0 80px;
    background: #F5F2EB;
}
.faq-inner {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 40px;
}
.faq-head {
    text-align: center;
    margin-bottom: 24px;
}
.faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.faq-subtitle {
    font-size: 15px;
    color: var(--text-light);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.faq-item {
    background: #FFFFFF;
    border: 1.5px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
    border-color: var(--border-gold);
    box-shadow: 0 4px 18px rgba(184,146,46,0.1);
}
.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--primary-light); }
.faq-q svg {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-q.open svg { transform: rotate(180deg); }
.faq-q.open { color: var(--primary-light); }
.faq-a {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    padding: 0 20px 18px;
    display: none;
}
.faq-a.open { display: block; }
.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--grad-gold);
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
    box-shadow: 0 3px 14px rgba(201,168,76,0.3);
}
.faq-cta-btn:hover { opacity: 0.88; }

/* ══════════════════════════
   RESPONSIVE — 1024px (tablet landscape)
══════════════════════════ */
@media (max-width: 1024px) {
    .navbar { padding: 14px 28px; }

    .hero { padding: 110px 32px 56px; }
    .hero-chat-box { padding: 0 20px; }

    .bento-section { padding: 0 24px 72px; }
    .bento-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .bc-hiw      { grid-column: span 4; grid-row: span 2; }
    .bc-pct      { grid-column: span 2; }
    .bc-247      { grid-column: span 2; }
    .bc-users    { grid-column: span 2; }
    .bc-speed    { grid-column: span 2; }
    .bc-transform{ grid-column: span 4; }
    .bc-privacy  { grid-column: span 2; }
    .bc-cta      { grid-column: span 6; flex-direction: column; align-items: flex-start; padding: 40px 36px; }
    .bccta-right { display: none; }
    .bccta-h     { font-size: 28px; }

    .showcase-inner { gap: 48px; }

    .pricing-grid { grid-template-columns: repeat(4, 1fr); }
    .pricing-card { grid-column: span 2; }
    .pricing-card:nth-child(4),
    .pricing-card:nth-child(5) { grid-column: span 2; }
}

/* ══════════════════════════
   RESPONSIVE — 768px (tablet portrait)
══════════════════════════ */
@media (max-width: 768px) {
    .navbar { padding: 12px 20px; }
    .nav-links { display: none; }

    .hero { padding: 100px 24px 52px; }
    .hero-title { font-size: clamp(32px, 7vw, 52px); }
    .hero-subtitle { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: center; gap: 10px; }
    .btn-hero-primary,
    .btn-hero-secondary { width: 100%; max-width: 320px; justify-content: center; padding: 0 24px; }
    .hero-chat-box { padding: 0 4px; }
    .hero-chips { gap: 6px; }

    .bento-section { padding: 0 16px 60px; }
    .bento-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    .bc-hiw      { grid-column: span 4; grid-row: span 1; min-height: 300px; }
    .bc-pct      { grid-column: span 2; }
    .bc-247      { grid-column: span 2; }
    .bc-users    { grid-column: span 2; }
    .bc-speed    { grid-column: span 2; }
    .bc-transform{ grid-column: span 4; }
    .bc-privacy  { grid-column: span 4; }
    .bc-cta      { grid-column: span 4; flex-direction: column; align-items: flex-start; padding: 36px 28px; }
    .bccta-right { display: none; }
    .bccta-h     { font-size: 26px; }
    .bchiw-title { font-size: 22px; white-space: normal; }

    .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
    .showcase-title { font-size: 28px; }
    .showcase-inner { padding: 0 20px; }

    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card { grid-column: span 1; }
    .pricing-card:nth-child(4),
    .pricing-card:nth-child(5) { grid-column: span 1; }
    .pricing-inner { padding: 0 20px; }
    .pricing-section { padding: 60px 0; }

    .faq-inner { padding: 0 20px; }
    .faq-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 26px; }
    .section-subtitle { font-size: 14px; }
    .faq-title { font-size: 22px; }

    .cta-banner-section { padding: 60px 24px; }
    .cta-banner-glow { width: 300px; height: 300px; }
    .cta-banner-title { font-size: clamp(24px, 5vw, 36px); }
    .cta-banner-actions { flex-direction: column; align-items: center; gap: 10px; }
    .cta-banner-btn-primary,
    .cta-banner-btn-secondary { width: 100%; max-width: 300px; text-align: center; justify-content: center; }

    .footer-main { flex-direction: column; align-items: flex-start; gap: 28px; }
    .footer-bottom { justify-content: center; flex-wrap: wrap; gap: 10px; }
}

/* ══════════════════════════
   RESPONSIVE — 480px (mobile)
══════════════════════════ */
@media (max-width: 480px) {
    .navbar { padding: 12px 16px; }
    .btn-ghost { display: none; }

    .hero { padding: 90px 16px 44px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }
    .hero-title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 28px; }
    .hero-subtitle { font-size: 14px; }
    .hero-chat-inner { padding: 16px; }
    .hero-input-wrap textarea { font-size: 14px; height: 48px; }
    .hero-fake-placeholder { font-size: 14px; }
    .hero-chips { gap: 6px; }
    .hero-chip { font-size: 12px; padding: 6px 11px; }

    .bento-section { padding: 0 12px 48px; }
    .bento-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bc-hiw      { grid-column: span 2; grid-row: span 1; min-height: 260px; padding: 24px 20px; }
    .bc-pct      { grid-column: span 1; }
    .bc-247      { grid-column: span 1; }
    .bc-users    { grid-column: span 1; }
    .bc-speed    { grid-column: span 1; }
    .bc-transform{ grid-column: span 2; }
    .bc-privacy  { grid-column: span 2; }
    .bc-cta      { grid-column: span 2; flex-direction: column; padding: 28px 20px; }
    .bccta-right { display: none; }
    .bccta-h     { font-size: 22px; }
    .bchiw-title { font-size: 18px; }
    .bchiw-steps { flex-direction: column; gap: 20px; align-items: stretch; }
    .bchiw-step  { width: 100%; flex: none; }
    .bchiw-sdesc { width: 100%; max-width: 100%; }
    .bchiw-n     { font-size: 32px; }
    .bcp-num     { font-size: 56px; }
    .bcu-num     { font-size: 36px; }
    .bc247-num   { font-size: 38px; }

    .showcase-inner { padding: 0 16px; gap: 24px; }
    .showcase-title { font-size: 24px; }

    .pricing-section { padding: 48px 0; }
    .pricing-inner { padding: 0 16px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
    .pricing-card,
    .pricing-card:nth-child(4),
    .pricing-card:nth-child(5) { grid-column: span 1; }

    .faq-section { padding: 40px 0; }
    .faq-inner { padding: 0 16px; }
    .faq-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 22px; }
    .faq-title { font-size: 20px; }

    .cta-banner-section { padding: 48px 24px; }
    .cta-banner-glow { width: 220px; height: 220px; }

    .footer-main { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-bottom { justify-content: center; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
    .footer-nav { flex-direction: column; align-items: flex-start; gap: 14px; }
}
