/* ═══════════════════════════════════════════════════
   WEWEGO Landing Page — Stylesheet
   Font: Plus Jakarta Sans (Google Fonts)
   Icons: Font Awesome 6 Free
═══════════════════════════════════════════════════ */

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

:root {
    /* Brand Colors */
    --primary:        #FF6B35;
    --primary-dark:   #E55A2B;
    --primary-light:  #FF8F65;
    --purple:         #7C3AED;
    --purple-light:   #A78BFA;
    --purple-dark:    #5B21B6;
    --gold:           #F59E0B;
    --gold-light:     #FCD34D;
    --green:          #22C55E;

    /* Neutrals */
    --dark:    #09090B;
    --dark-2:  #18181B;
    --dark-3:  #27272A;
    --mid:     #52525B;
    --light:   #A1A1AA;
    --lighter: #E4E4E7;
    --white:   #FFFFFF;
    --bg:      #FAFAFA;

    /* Gradients */
    --grad-hero:    linear-gradient(135deg, #1a0a2e 0%, #16213e 40%, #0f3460 100%);
    --grad-primary: linear-gradient(135deg, #FF6B35, #F59E0B);
    --grad-purple:  linear-gradient(135deg, #7C3AED, #4F46E5);
    --grad-kiva:    linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    --grad-plus:    linear-gradient(135deg, #1c1917 0%, #292524 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,.15), 0 10px 10px rgba(0,0,0,.04);
    --shadow-glow:   0 0 40px rgba(255,107,53,.25);
    --shadow-purple: 0 0 40px rgba(124,58,237,.3);

    /* Radii */
    --radius-sm:   8px;
    --radius-md:   14px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-full: 9999px;

    /* Typography scale */
    --text-xs:  0.75rem;
    --text-sm:  0.875rem;
    --text-base:1rem;
    --text-lg:  1.125rem;
    --text-xl:  1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ── UTILITIES ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.section-label.orange {
    background: rgba(255,107,53,.12);
    color: var(--primary);
    border: 1px solid rgba(255,107,53,.2);
}

.section-label.purple {
    background: rgba(124,58,237,.12);
    color: var(--purple-light);
    border: 1px solid rgba(124,58,237,.25);
}

.section-label.gold {
    background: rgba(245,158,11,.12);
    color: var(--gold);
    border: 1px solid rgba(245,158,11,.2);
}

.section-label.white {
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.15);
}

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-sub {
    font-size: 1.05rem;
    color: var(--mid);
    line-height: 1.7;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9,9,11,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .3s;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .875rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.logo-img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.02em;
}

.logo-text span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    font-size: .95rem;
    transition: color .2s;
}

nav a:hover { color: var(--white); }

.btn-nav {
    background: var(--grad-primary) !important;
    color: var(--white) !important;
    padding: .6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 700 !important;
    font-size: .85rem !important;
    transition: transform .2s, box-shadow .2s !important;
    box-shadow: 0 0 20px rgba(255,107,53,.3);
}

.btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(255,107,53,.45) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: .25rem;
}

/* ── HERO ── */
.hero {
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 7rem 0 5rem;
}

/* Radial glow blobs */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,107,53,.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(124,58,237,.17) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 50% 100%, rgba(79,70,229,.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Subtle grid overlay on hero */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-full);
    padding: .45rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}

.hero-badge i { color: var(--primary-light); }

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    transition: all .25s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: .95rem;
}

.btn-store.dark {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.btn-store.dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-store.outline {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}

.btn-store.outline:hover {
    background: rgba(255,255,255,.14);
    transform: translateY(-2px);
}

.btn-store-icon { font-size: 1.4rem; }
.btn-store-text { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.btn-store-sub  { font-size: .7rem; font-weight: 500; opacity: .7; }
.btn-store-main { font-size: .95rem; font-weight: 800; }

.hero-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    font-weight: 500;
}

.hero-meta-item i { color: var(--primary-light); font-size: .8rem; }

/* ── PHONE MOCKUP ── */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: var(--dark-2);
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,.12);
    box-shadow:
        0 40px 80px rgba(0,0,0,.6),
        0 0 0 1px rgba(255,255,255,.05),
        inset 0 1px 0 rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Notch */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: var(--dark);
    border-radius: var(--radius-full);
    z-index: 10;
}

.phone-screen {
    position: absolute;
    inset: 10px;
    border-radius: 28px;
    background: linear-gradient(160deg, #1e1b4b 0%, #312e81 40%, #1e1b4b 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2.5rem 1.5rem 1.5rem;
}

.phone-screen-logo {
    width: 64px;
    height: 64px;
    background: var(--grad-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(255,107,53,.4);
}

.phone-screen-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.phone-chat-bubble {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: .75rem 1rem;
    font-size: .78rem;
    color: rgba(255,255,255,.9);
    line-height: 1.5;
    width: 100%;
    backdrop-filter: blur(8px);
}

.phone-chat-bubble.kiva {
    background: rgba(124,58,237,.25);
    border-color: rgba(124,58,237,.4);
}

.phone-chat-label {
    font-size: .65rem;
    font-weight: 700;
    opacity: .6;
    margin-bottom: .35rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Floating cards */
.phone-float {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: .75rem 1rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    z-index: 5;
}

.phone-float-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: white;
}

.phone-float.left  { left: -60px;  top: 30%;    animation: float-up   4s ease-in-out infinite; }
.phone-float.right { right: -55px; bottom: 30%; animation: float-down 4s ease-in-out infinite 1.5s; }

@keyframes float-up {
    0%, 100% { transform: translateY(0);  }
    50%       { transform: translateY(-8px); }
}

@keyframes float-down {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* ── STATS STRIP ── */
.stats-strip {
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.03);
    transition: background .25s, border-color .25s;
}

.stat-item:hover {
    background: rgba(255,255,255,.055);
    border-color: rgba(255,255,255,.1);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-icon.orange { background: rgba(255,107,53,.15); color: var(--primary); }
.stat-icon.purple { background: rgba(124,58,237,.15); color: var(--purple-light); }
.stat-icon.gold   { background: rgba(245,158,11,.15); color: var(--gold); }
.stat-icon.green  { background: rgba(34,197,94,.15);  color: var(--green); }

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1;
}

.stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    margin-top: .2rem;
}

/* ── FEATURES ── */
.features {
    padding: 7rem 0;
    background: var(--bg);
    position: relative;
}

/* Subtle dot grid background */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.features .container { position: relative; z-index: 1; }

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--lighter);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-card.card-1:hover { box-shadow: 0 20px 40px rgba(255,107,53,.12); border-color: rgba(255,107,53,.25); }
.feature-card.card-2:hover { box-shadow: 0 20px 40px rgba(124,58,237,.12); border-color: rgba(124,58,237,.25); }
.feature-card.card-3:hover { box-shadow: 0 20px 40px rgba(245,158,11,.12); border-color: rgba(245,158,11,.25); }
.feature-card.card-4:hover { box-shadow: 0 20px 40px rgba(34,197,94,.12);  border-color: rgba(34,197,94,.25); }
.feature-card.card-5:hover { box-shadow: 0 20px 40px rgba(239,68,68,.12);  border-color: rgba(239,68,68,.25); }

.feature-card.wide { grid-column: span 2; }

.feat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.feat-icon-wrap.orange { background: rgba(255,107,53,.1); color: var(--primary); }
.feat-icon-wrap.purple { background: rgba(124,58,237,.1); color: var(--purple); }
.feat-icon-wrap.gold   { background: rgba(245,158,11,.1); color: var(--gold); }
.feat-icon-wrap.green  { background: rgba(34,197,94,.1);  color: #16A34A; }
.feat-icon-wrap.red    { background: rgba(239,68,68,.1);  color: #DC2626; }

.feat-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .6rem;
    letter-spacing: -.02em;
}

.feat-desc {
    font-size: .92rem;
    color: var(--mid);
    line-height: 1.65;
}

.feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}

.feat-tag {
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .75rem;
    border-radius: var(--radius-full);
    background: var(--bg);
    color: var(--mid);
    border: 1px solid var(--lighter);
}

/* ── KIVA AI SECTION ── */
.kiva-section {
    padding: 7rem 0;
    background: var(--grad-kiva);
    position: relative;
    overflow: hidden;
}

.kiva-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 75% 50%, rgba(124,58,237,.22) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 15% 30%, rgba(79,70,229,.15) 0%, transparent 55%);
    pointer-events: none;
}

.kiva-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.kiva-heading {
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.kiva-heading .kiva-name {
    background: linear-gradient(90deg, #A78BFA, #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kiva-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.kiva-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin-bottom: 2.5rem;
}

.kiva-features-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    font-weight: 500;
}

.kiva-check {
    width: 22px;
    height: 22px;
    background: rgba(167,139,250,.2);
    border: 1px solid rgba(167,139,250,.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: .1rem;
}

.kiva-check i { font-size: .6rem; color: #A78BFA; }

.btn-kiva {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    color: var(--white);
    padding: .9rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 0 30px rgba(124,58,237,.4);
    transition: all .25s;
}

.btn-kiva:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(124,58,237,.55);
}

/* ── KIVA CHAT DEMO ── */
.kiva-chat-demo {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kiva-chat-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.kiva-avatar {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #7C3AED, #4F46E5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(124,58,237,.4);
    color: var(--white);
}

.kiva-name-badge           { display: flex; flex-direction: column; }
.kiva-name-badge strong    { font-size: .95rem; font-weight: 800; color: var(--white); }
.kiva-name-badge span      { font-size: .75rem; color: rgba(255,255,255,.45); }

.kiva-online {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: #4ADE80;
    font-weight: 600;
}

.kiva-online::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #4ADE80;
    border-radius: 50%;
    box-shadow: 0 0 6px #4ADE80;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50%       { opacity: .5; }
}

.chat-msg {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    max-width: 85%;
}

.chat-msg.user { align-self: flex-end; align-items: flex-end; }
.chat-msg.kiva { align-self: flex-start; align-items: flex-start; }

.chat-sender {
    font-size: .7rem;
    font-weight: 700;
    opacity: .5;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.chat-bubble {
    padding: .75rem 1rem;
    border-radius: 14px;
    font-size: .85rem;
    line-height: 1.55;
    color: var(--white);
}

.chat-bubble.user {
    background: rgba(255,107,53,.25);
    border: 1px solid rgba(255,107,53,.3);
    border-radius: 14px 14px 4px 14px;
}

.chat-bubble.kiva {
    background: rgba(124,58,237,.25);
    border: 1px solid rgba(124,58,237,.35);
    border-radius: 14px 14px 14px 4px;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding-top: .5rem;
    border-top: 1px solid rgba(255,255,255,.07);
}

.chat-chip {
    font-size: .75rem;
    padding: .35rem .8rem;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    cursor: pointer;
    transition: all .2s;
    font-weight: 500;
}

.chat-chip:hover {
    background: rgba(255,255,255,.13);
    color: var(--white);
}

/* ── SCREENSHOTS ── */
.screenshots {
    padding: 7rem 0;
    background: var(--dark);
    overflow: hidden;
}

.screenshots-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 4rem;
}

.screenshots-header .section-title { color: var(--white); }
.screenshots-header .section-sub   { color: rgba(255,255,255,.45); }

.screens-track {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.screen-card {
    width: 220px;
    flex-shrink: 0;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.screen-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,.4);
}

.screen-preview {
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1.25rem;
}

.screen-icon-big {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.screen-label-top {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .4;
    color: var(--white);
}

.screen-mock-rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.screen-mock-row {
    height: 10px;
    border-radius: 6px;
    background: rgba(255,255,255,.08);
}

.screen-mock-row.short  { width: 60%; }
.screen-mock-row.accent { background: rgba(255,107,53,.25); }
.screen-mock-row.purple { background: rgba(124,58,237,.25); }

.screen-info {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,.06);
}

.screen-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .2rem;
}

.screen-desc {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
}

/* ── PLUS / PRICING ── */
.plus-section {
    padding: 7rem 0;
    background: var(--bg);
    position: relative;
}

.plus-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.plus-section .container { position: relative; z-index: 1; }

.plus-header {
    text-align: center;
    max-width: 550px;
    margin: 0 auto 4rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.plan-card {
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.plan-card.free {
    background: var(--white);
    border: 1.5px solid var(--lighter);
    box-shadow: var(--shadow-sm);
}

.plan-card.premium {
    background: var(--grad-plus);
    border: 1.5px solid rgba(245,158,11,.25);
    box-shadow: 0 0 60px rgba(245,158,11,.08);
}

.plan-card.premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,158,11,.09) 0%, transparent 60%);
    pointer-events: none;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 700;
    padding: .35rem .85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.plan-badge.free-badge  { background: var(--bg); color: var(--mid); border: 1px solid var(--lighter); }
.plan-badge.plus-badge  { background: rgba(245,158,11,.15); color: var(--gold); border: 1px solid rgba(245,158,11,.3); }

.plan-name {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: .35rem;
}

.plan-card.free .plan-name    { color: var(--dark); }
.plan-card.premium .plan-name { color: var(--white); }

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: .25rem;
    line-height: 1;
}

.plan-card.free .plan-price    { color: var(--dark); }
.plan-card.premium .plan-price { color: var(--white); }
.plan-price span { font-size: 1rem; font-weight: 500; opacity: .6; }

.plan-note { font-size: .82rem; margin-bottom: 2rem; }
.plan-card.free .plan-note    { color: var(--light); }
.plan-card.premium .plan-note { color: rgba(255,255,255,.45); }

.plan-divider { height: 1px; margin-bottom: 1.5rem; }
.plan-card.free .plan-divider    { background: var(--lighter); }
.plan-card.premium .plan-divider { background: rgba(255,255,255,.08); }

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    margin-bottom: 2rem;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .9rem;
    font-weight: 500;
}

.plan-card.free .plan-features-list li    { color: var(--mid); }
.plan-card.premium .plan-features-list li { color: rgba(255,255,255,.8); }

.plan-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .6rem;
}

.plan-check.yes-free { background: rgba(34,197,94,.12); color: #16A34A; }
.plan-check.yes-plus { background: rgba(245,158,11,.15); color: var(--gold); }
.plan-check.no       { background: rgba(161,161,170,.1); color: var(--light); }

.btn-plan {
    display: block;
    width: 100%;
    padding: .95rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: .95rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all .25s;
}

.btn-plan.free {
    background: var(--bg);
    color: var(--mid);
    border: 1.5px solid var(--lighter);
}

.btn-plan.free:hover { border-color: var(--light); color: var(--dark); }

.btn-plan.premium {
    background: var(--grad-primary);
    color: var(--white);
    box-shadow: 0 0 25px rgba(255,107,53,.3);
}

.btn-plan.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255,107,53,.45);
}

.plan-guarantee {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .82rem;
    color: var(--light);
}

.plan-guarantee i { margin-right: .35rem; color: var(--green); }

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
}

/* Subtle radial glow */
.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(124,58,237,.08) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.testimonials-header .section-title { color: var(--white); }
.testimonials-header .section-sub   { color: rgba(255,255,255,.45); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    transition: all .3s;
    backdrop-filter: blur(4px);
}

.review-card:hover {
    background: rgba(255,255,255,.07);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.12);
}

.review-stars {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: 1rem;
    letter-spacing: .05em;
}

.review-text {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    flex-shrink: 0;
    color: var(--white);
}

.reviewer-name { font-size: .88rem; font-weight: 700; color: var(--white); }
.reviewer-meta { font-size: .75rem; color: rgba(255,255,255,.4); }

/* ── FINAL CTA ── */
.final-cta {
    padding: 7rem 0;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(255,107,53,.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.final-cta-title .highlight {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 2.5rem;
}

.final-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    background: #050507;
    border-top: 1px solid rgba(255,255,255,.06);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; display: inline-flex; }

.footer-desc {
    font-size: .88rem;
    color: rgba(255,255,255,.4);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-socials { display: flex; gap: .75rem; }

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .9rem;
    transition: all .2s;
}

.social-btn:hover {
    background: rgba(255,255,255,.12);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }

.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    font-weight: 500;
    transition: color .2s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05);
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy         { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-copy span    { color: rgba(255,255,255,.5); }
.footer-love         { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-love i       { color: #f87171; margin: 0 .25rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid   { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-desc   { margin-left: auto; margin-right: auto; }
    .hero-cta    { justify-content: center; }
    .hero-meta   { justify-content: center; }
    .hero-visual { order: -1; }
    .phone-float.left  { left: -20px; }
    .phone-float.right { right: -20px; }

    .kiva-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .reviews-grid   { grid-template-columns: 1fr 1fr; }
    .footer-top     { grid-template-columns: 1fr 1fr; }
    .features-grid  { grid-template-columns: 1fr 1fr; }
    .feature-card.wide { grid-column: span 1; }
}

@media (max-width: 768px) {
    .stats-inner   { grid-template-columns: 1fr 1fr; }
    .plans-grid    { grid-template-columns: 1fr; max-width: 460px; }
    .reviews-grid  { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-top    { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand  { grid-column: span 2; }
    nav ul         { display: none; }
    .hamburger     { display: block; }
    nav ul.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(9,9,11,.97);
        border-bottom: 1px solid rgba(255,255,255,.06);
        padding: 1.25rem 1.5rem;
        gap: 1.25rem;
        backdrop-filter: blur(20px);
    }
}

@media (max-width: 480px) {
    .stats-inner   { grid-template-columns: 1fr; }
    .screens-track { gap: 1rem; }
    .footer-top    { grid-template-columns: 1fr; }
    .footer-brand  { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .phone-float   { display: none; }
    .hero          { padding: 5rem 0 4rem; }
    .features,
    .kiva-section,
    .screenshots,
    .plus-section,
    .testimonials,
    .final-cta     { padding: 5rem 0; }
}
