/* ============================================
   Cal Vault Website Styles
   calvault.app
   ============================================ */

/* ── CSS Variables ── */
:root {
    --bg:       #060608;
    --bg2:      #0d0d12;
    --bg3:      #13131a;
    --bg4:      #1a1a24;
    --border:   rgba(255, 255, 255, 0.07);
    --border2:  rgba(255, 255, 255, 0.13);
    --text:     #f0f0f5;
    --text2:    #8888a0;
    --text3:    #44445a;
    --blue:     #4f6ef7;
    --blue2:    #3b55d4;
    --purple:   #7c5af5;
    --green:    #22c55e;
    --orange:   #f97316;
    --red:      #ef4444;
    --teal:     #14b8a6;
    --font:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius:   16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow:   0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: #93acff; }

img { max-width: 100%; height: auto; }

ul, ol { padding-left: 1.5em; }

/* ── Layout ── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

section { padding: 108px 0; }

/* ── Typography helpers ── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    line-height: 1.1;
}

.section-sub {
    font-size: 17px;
    color: var(--text2);
    max-width: 560px;
    line-height: 1.75;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5); }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(145deg, #1c2240, #0d1230);
    border: 1px solid rgba(79, 110, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.nav-logo-text {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 32px;
}

.nav-links a {
    color: var(--text2);
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover { color: var(--text); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    background: var(--blue);
    color: #fff;
    padding: 8px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(79, 110, 247, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-nav:hover {
    background: var(--blue2);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 110, 247, 0.45);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text2);
    border-radius: 2px;
    transition: all 0.25s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    z-index: 190;
    background: rgba(13, 13, 18, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px 24px 32px;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    color: var(--text2);
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu .mobile-cta {
    background: var(--blue);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    padding: 17px 34px;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(79, 110, 247, 0.38);
}

.btn-primary:hover {
    background: var(--blue2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(79, 110, 247, 0.5);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text);
    padding: 17px 34px;
    border-radius: 13px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border2);
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    transform: translateY(-2px);
}


/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 128px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(79, 110, 247, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 60%, rgba(124, 90, 245, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(79, 110, 247, 0.05) 0%, transparent 60%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 110, 247, 0.1);
    border: 1px solid rgba(79, 110, 247, 0.22);
    border-radius: 999px;
    padding: 6px 18px;
    margin-bottom: 36px;
    font-size: 13px;
    font-weight: 600;
    color: #9db4ff;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
    font-size: clamp(42px, 7.5vw, 84px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin-bottom: 28px;
    max-width: 950px;
}

.hero-title .grad {
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 45%, #7c5af5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text2);
    max-width: 580px;
    margin: 0 auto 52px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

/* ── Phone Mockups ── */
.phones-wrapper {
    position: relative;
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-end;
}

.phone {
    position: relative;
    width: 240px;
    height: 496px;
    background: linear-gradient(160deg, #1c1c1e 0%, #0a0a0a 100%);
    border-radius: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    overflow: hidden;
    flex-shrink: 0;
}

.phone.side {
    width: 210px;
    height: 432px;
    opacity: 0.55;
    transform: perspective(1000px) rotateY(12deg) translateY(24px);
}

.phone.side-left {
    transform: perspective(1000px) rotateY(-12deg) translateY(24px);
}

.phone-notch {
    width: 110px;
    height: 28px;
    background: #0a0a0a;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Calculator screen */
.phone-screen {
    padding: 4px 18px 18px;
    height: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-display {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 11px;
    padding: 14px 16px;
    text-align: right;
    flex-shrink: 0;
}

.calc-display-eq {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 3px;
}

.calc-display-num {
    font-size: 34px;
    font-weight: 200;
    color: #fff;
    letter-spacing: -1px;
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    flex: 1;
}

.cb {
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    aspect-ratio: 1;
}

.cb.fn { background: #3a3a3c; font-size: 11px; font-weight: 600; }
.cb.op { background: linear-gradient(180deg, #ff9f0a, #e8870a); }
.cb.num { background: #2c2c2e; }
.cb.zero {
    grid-column: span 2;
    border-radius: 9px;
    aspect-ratio: unset;
    padding: 0 18px;
    justify-content: flex-start;
}

/* Vault screen */
.vault-screen {
    padding: 12px 14px 14px;
    height: calc(100% - 28px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vault-header {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 4px 0;
}

.vault-cats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.vault-cat {
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vault-cat-icon { font-size: 18px; }
.vault-cat-name { font-size: 10px; font-weight: 600; color: #fff; }
.vault-cat-count { font-size: 9px; color: rgba(255, 255, 255, 0.5); }

.vault-photos  { background: linear-gradient(135deg, #1e3a5f, #0d2040); }
.vault-videos  { background: linear-gradient(135deg, #3a1e5f, #1d0a40); }
.vault-docs    { background: linear-gradient(135deg, #1e5f3a, #0a401d); }
.vault-notes   { background: linear-gradient(135deg, #5f3a1e, #401d0a); }

.vault-thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    border-radius: 8px;
    overflow: hidden;
}

.vault-thumb {
    aspect-ratio: 1;
    background: var(--bg4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.vault-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(79, 110, 247, 0.2);
    color: #9db4ff;
    align-self: flex-start;
}


/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    overflow: hidden;
}

.stat {
    text-align: center;
    padding: 40px 48px;
    flex: 1;
    max-width: 240px;
    border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }
.stat-num { font-size: 30px; font-weight: 900; letter-spacing: -1px; }
.stat-label { font-size: 12px; color: var(--text2); margin-top: 5px; }


/* ============================================
   How It Works
   ============================================ */
.how { background: var(--bg2); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.step-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
    border-color: rgba(79, 110, 247, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.step-num {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.025);
    position: absolute;
    top: 12px; right: 20px;
    letter-spacing: -5px;
}

.step-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.step-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.step-card p  { font-size: 14px; color: var(--text2); line-height: 1.75; }


/* ============================================
   Features Bento Grid
   ============================================ */
.bento {
    margin-top: 64px;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.bento-cell {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: border-color 0.25s, transform 0.25s, background 0.25s;
    position: relative;
    overflow: hidden;
}

.bento-cell:hover {
    border-color: var(--border2);
    transform: translateY(-3px);
    background: var(--bg3);
}

.bento-cell.span2 { grid-column: span 2; }

.bento-cell.hero-cell {
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.1), rgba(124, 90, 245, 0.08));
    border-color: rgba(79, 110, 247, 0.25);
}

.bento-cell.hero-cell:hover {
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.15), rgba(124, 90, 245, 0.12));
}

.b-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.bento-cell h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.bento-cell p  { font-size: 14px; color: var(--text2); line-height: 1.75; }

.b-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
}

.tag-unique { background: rgba(79, 110, 247, 0.15); color: #93acff; }
.tag-pro    { background: rgba(124, 90, 245, 0.15); color: #c4b5fd; }
.tag-free   { background: rgba(34, 197, 94, 0.12);  color: #6ee7a3; }

.filetype-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.filetype-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
}


/* ============================================
   Disguise Icons
   ============================================ */
.disguise { background: var(--bg2); }

.icons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.icon-mockup {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    border: 1px solid var(--border2);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.icon-card:hover .icon-mockup {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}

.icon-label { font-size: 12px; color: var(--text2); font-weight: 500; }

.icon-default    { background: linear-gradient(145deg, #1c2240, #0d1230); }
.icon-calculator { background: linear-gradient(145deg, #1a2a1a, #0d200d); }
.icon-notes      { background: linear-gradient(145deg, #2a1a10, #200d08); }
.icon-weather    { background: linear-gradient(145deg, #101a2a, #080d20); }
.icon-clock      { background: linear-gradient(145deg, #1a1a1a, #0d0d0d); }
.icon-reminders  { background: linear-gradient(145deg, #2a1020, #200810); }
.icon-fitness    { background: linear-gradient(145deg, #1a2a18, #0d2010); }


/* ============================================
   Comparison Table
   ============================================ */
.compare-wrap {
    margin-top: 64px;
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 600px;
}

.compare-table th {
    padding: 15px 22px;
    text-align: left;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text3);
    border-bottom: 1px solid var(--border);
}

.compare-table th.ours {
    color: var(--blue);
    background: rgba(79, 110, 247, 0.06);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.compare-table td {
    padding: 13px 22px;
    border-bottom: 1px solid var(--border);
    color: var(--text2);
}

.compare-table td:first-child { color: var(--text); font-weight: 600; }
.compare-table td.ours { background: rgba(79, 110, 247, 0.04); color: var(--text); }
.compare-table tr:last-child td { border-bottom: none; }

.check   { color: var(--green); font-size: 16px; }
.cross   { color: var(--red);   font-size: 16px; }
.partial { color: var(--orange); font-size: 13px; font-weight: 600; }


/* ============================================
   Pricing
   ============================================ */
.pricing { background: var(--bg2); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.price-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--border2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.price-card.featured {
    background: linear-gradient(145deg, rgba(79, 110, 247, 0.1), rgba(124, 90, 245, 0.08));
    border-color: rgba(79, 110, 247, 0.35);
    position: relative;
    overflow: hidden;
}

.featured-ribbon {
    position: absolute;
    top: 18px; right: -28px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 5px 44px;
    transform: rotate(45deg);
}

.price-plan {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 14px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.price-dollar { font-size: 52px; font-weight: 900; letter-spacing: -2.5px; }
.price-per    { font-size: 15px; color: var(--text2); font-weight: 500; }

.price-saving {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(34, 197, 94, 0.12);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 999px;
}

.price-desc {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 28px;
    line-height: 1.65;
}

.price-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 0 24px;
}

.price-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.price-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-features li.locked::before { content: '—'; color: var(--text3); }
.price-features li.locked { color: var(--text3); }

.price-btn {
    display: block;
    margin-top: 32px;
    text-align: center;
    text-decoration: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.price-btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 6px 20px rgba(79, 110, 247, 0.35);
}

.price-btn-primary:hover {
    background: var(--blue2);
    color: #fff;
    transform: translateY(-1px);
}

.price-btn-ghost {
    background: transparent;
    color: var(--text2);
    border: 1px solid var(--border2);
}

.price-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
}


/* ============================================
   Security Grid
   ============================================ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 64px;
}

.sec-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s;
}

.sec-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.sec-icon  { font-size: 36px; margin-bottom: 18px; }
.sec-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.sec-card p  { font-size: 13px; color: var(--text2); line-height: 1.7; }


/* ============================================
   FAQ Accordion
   ============================================ */
.faq-section { background: var(--bg2); }

.faq-list {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 780px;
}

.faq-item {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    user-select: none;
    transition: background 0.2s;
}

.faq-q:hover { background: var(--bg4); }

.faq-arrow {
    font-size: 18px;
    color: var(--text2);
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 28px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-a p { font-size: 14px; color: var(--text2); line-height: 1.8; }


/* ============================================
   Final CTA
   ============================================ */
.cta-final {
    text-align: center;
    background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(79, 110, 247, 0.15) 0%, transparent 60%);
}

.cta-final h2 {
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.cta-final p { font-size: 18px; color: var(--text2); margin-bottom: 44px; }
.cta-note    { margin-top: 20px; font-size: 13px; color: var(--text3); }


/* ============================================
   Footer
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 48px 24px 36px;
    background: var(--bg);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text3);
    margin-top: 12px;
    max-width: 260px;
    line-height: 1.7;
}

.footer-col h5 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text2);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text3);
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text2); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.footer-bottom span { font-size: 12px; color: var(--text3); }


/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */
.legal-page {
    padding: 100px 0 80px;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.page-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.legal-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: var(--text3);
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.highlight-box {
    background: var(--bg3);
    border: 1px solid rgba(79, 110, 247, 0.2);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 24px 0 40px;
}

.highlight-box p { margin: 0; color: var(--text); font-size: 15px; }

.legal-content section { margin-bottom: 40px; }

.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text);
}

.legal-content h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--text); }
.legal-content p  { margin-bottom: 14px; color: var(--text2); font-size: 15px; line-height: 1.8; }
.legal-content ul, .legal-content ol { margin-bottom: 14px; color: var(--text2); font-size: 15px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a  { color: var(--blue); }


/* ============================================
   Support Page
   ============================================ */
.support-hero {
    text-align: center;
    padding: 120px 24px 72px;
    background: radial-gradient(ellipse at center, rgba(79, 110, 247, 0.08) 0%, transparent 60%);
}

.support-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.support-hero p {
    font-size: 18px;
    color: var(--text2);
    max-width: 480px;
    margin: 0 auto;
}

.support-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.support-faq-section { margin-bottom: 72px; }

.support-faq-section h2 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.support-faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.support-faq-q {
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text);
    user-select: none;
}

.support-faq-q::after {
    content: '↓';
    color: var(--text2);
    font-size: 14px;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.support-faq-item.open .support-faq-q::after { transform: rotate(180deg); }

.support-faq-a {
    font-size: 14px;
    color: var(--text2);
    padding-top: 12px;
    line-height: 1.8;
    display: none;
}

.support-faq-item.open .support-faq-a { display: block; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.contact-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.contact-card .icon { font-size: 28px; margin-bottom: 16px; }
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-card p  { font-size: 13px; color: var(--text2); margin-bottom: 16px; line-height: 1.6; }

.contact-card .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.contact-card .btn-contact:hover { opacity: 0.85; color: #fff; }


/* ============================================
   Blog Pages
   ============================================ */
.blog-header {
    padding: 100px 24px 72px;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(79, 110, 247, 0.1) 0%, transparent 60%);
}

.blog-header h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.blog-header p {
    font-size: 18px;
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 56px;
    padding: 0 24px 100px;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); }

.blog-card-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.blog-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
}

.blog-card-body h2 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
}

.blog-card-body p {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.7;
    flex: 1;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--text3);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* Article page */
.article-header {
    padding: 100px 24px 56px;
    background: linear-gradient(180deg, rgba(79, 110, 247, 0.08) 0%, transparent 100%);
}

.article-header-inner {
    max-width: 760px;
    margin: 0 auto;
}

.article-header h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.article-meta {
    font-size: 13px;
    color: var(--text2);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px 100px;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 40px 0 14px;
    color: var(--text);
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.article-body h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 10px; color: var(--text); }
.article-body p  { color: var(--text2); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.article-body ul, .article-body ol { color: var(--text2); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.article-body li { margin-bottom: 8px; }
.article-body a  { color: var(--blue); }
.article-body strong { color: var(--text); }

.info-box {
    background: rgba(79, 110, 247, 0.08);
    border: 1px solid rgba(79, 110, 247, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0;
}

.info-box p { margin: 0; color: var(--text); font-size: 14px; }

.warning-box {
    background: rgba(249, 115, 22, 0.08);
    border-left: 4px solid var(--orange);
    padding: 18px 22px;
    margin: 24px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.warning-box p { margin: 0; color: var(--text2); font-size: 14px; }
.warning-box strong { color: var(--orange); }

.article-cta {
    background: linear-gradient(135deg, rgba(79, 110, 247, 0.1), rgba(124, 90, 245, 0.08));
    border: 1px solid rgba(79, 110, 247, 0.25);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    margin: 48px 0;
}

.article-cta h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.article-cta p  { font-size: 15px; color: var(--text2); margin-bottom: 24px; }

.article-nav {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.article-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text2);
}

.article-nav a:hover { color: var(--blue); }


/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .bento { grid-template-columns: 1fr 1fr; }
    .bento-cell.span2 { grid-column: span 2; }
    .phones-wrapper .phone.side { display: none; }
}

@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links, .btn-nav { display: none; }
    .nav-hamburger { display: flex; }

    .stats-bar { flex-wrap: wrap; }
    .stat { padding: 28px 24px; flex: 0 0 calc(50% - 1px); max-width: none; }

    .bento { grid-template-columns: 1fr; }
    .bento-cell.span2 { grid-column: span 1; }

    .compare-table { font-size: 12px; }
    .compare-table th, .compare-table td { padding: 11px 14px; }

    .footer-top { flex-direction: column; }

    section { padding: 72px 0; }

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

@media (max-width: 480px) {
    .stat { flex: 0 0 100%; border-right: none; border-bottom: 1px solid var(--border); }
    .phone.main { width: 220px; height: 454px; }
    .hero-btns { flex-direction: column; align-items: center; }
    .blog-grid { grid-template-columns: 1fr; }
}
