/* ============================================================
   CHATZYO — main.css
   One file controls all pages
   Version: 1.0 | Built: 2026
   ============================================================ */

/* ── VARIABLES ── */
:root {
    --bg: #0f0f14;
    --bg2: #16161e;
    --bg3: #1e1e28;
    --surface: #23232f;

    --border: rgba(255, 255, 255, .08);
    --border2: rgba(255, 255, 255, .14);

    --saffron: #f97316;
    --saffron2: #fb923c;
    --gold: #fbbf24;
    --teal: #14b8a6;
    --violet: #8b5cf6;
    --green: #22c55e;
    --red: #ef4444;
    --emerald: #059669;

    --white: #ffffff;
    --off: #f1f0ee;
    --muted: #c8c6d0;
    --muted2: #9997a3;

    --font: system-ui, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --r: 12px;
    --r2: 20px;
    --r3: 28px;

    --shadow: 0 24px 48px rgba(0, 0, 0, .45);
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--off);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .18s
}

a:hover {
    opacity: .78
}

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

button {
    font-family: var(--font);
    cursor: pointer
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg2)
}

::-webkit-scrollbar-thumb {
    background: var(--surface);
    border-radius: 99px
}

/* ── ANIMATIONS ── */
@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)
    }

    50% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}

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


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    height: 58px;
    background: rgba(15, 15, 20, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}

.nav.scrolled {
    box-shadow: 0 1px 0 var(--border2)
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white)
}

.nav-logo span {
    color: var(--saffron)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links a {
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted2);
    padding: 6px 12px;
    border-radius: 99px;
    transition: color .18s, background .18s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--off);
    background: var(--surface);
    opacity: 1
}

.nav-online {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted2)
}

.nav-online .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: glow 2s infinite;
}

.nav-lang-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: 99px;
    padding: 5px 14px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--off);
    cursor: pointer;
    font-family: var(--font);
    margin-left: 8px;
    transition: border-color .2s;
}

.nav-lang-select:hover,
.nav-lang-select:focus {
    outline: none;
    border-color: var(--saffron)
}

.nav-lang-select option {
    background: var(--bg2);
    color: var(--off)
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--off);
    font-size: 22px;
    padding: 4px;
}

@media(max-width:768px) {
    .nav-menu-btn {
        display: block
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        padding: 8px 0;
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        border-radius: 0;
        padding: 12px 24px;
        width: 100%
    }

    .nav-online {
        display: none
    }
}


/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
    min-height: calc(100vh - 58px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(249, 115, 22, .12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 70%, rgba(139, 92, 246, .10) 0%, transparent 60%);
    pointer-events: none;
}

.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: 48px 48px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
    max-width: 1020px;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .25);
    color: var(--saffron2);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--saffron);
    animation: glow 2s infinite
}

.hero-h1 {
    font-size: clamp(1.8rem, 5.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-h1 .a1 {
    color: var(--saffron)
}

.hero-h1 .a2 {
    color: var(--gold)
}

.hero-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--muted2);
    margin-bottom: 28px;
}

.hero-live .ldot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: glow 2s infinite;
}

/* CTA CARD */
.chat-card {
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: var(--r3);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, .04) inset;
}

.mode-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg3);
    border-radius: var(--r);
    padding: 4px;
    gap: 4px;
}

.mode-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 8px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: var(--muted2);
    font-size: .82rem;
    font-weight: 600;
    transition: all .2s;
    cursor: pointer;
}

.mode-tab.active {
    background: var(--surface);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.mode-tab.active svg {
    stroke: var(--saffron)
}

.chat-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 24px;
    border-radius: var(--r);
    border: none;
    background: var(--saffron);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    transition: transform .18s, box-shadow .18s;
    text-decoration: none;
}

.chat-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
    opacity: 1;
}

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    margin-top: 18px;
    max-width: 460px;
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--muted2);
    font-size: .75rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 99px;
}

.hero-phone-wrap {
    flex-shrink: 0
}

.hero-phone-wrap img {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .7));
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-left {
        align-items: center;
        text-align: center
    }

    .hero-sub {
        max-width: 100%
    }

    .trust-pills {
        justify-content: center
    }

    .hero-phone-wrap {
        display: flex;
        justify-content: center;
        margin-top: 24px
    }

    .hero-phone-wrap img {
        width: 280px
    }
}

@media(max-width:600px) {
    .hero {
        padding: 48px 20px 60px;
        min-height: auto
    }

    .chat-card {
        max-width: 100%
    }
}


/* ============================================================
   HERO — INNER PAGES (shorter, no full viewport)
   ============================================================ */
.page-hero {
    padding: 64px 24px 56px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(249, 115, 22, .08) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(249, 115, 22, .12);
    border: 1px solid rgba(249, 115, 22, .25);
    color: var(--saffron2);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 18px;
}

.page-h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.04em;
    color: var(--white);
    margin-bottom: 14px;
}

.page-h1 .a1 {
    color: var(--saffron)
}

.page-sub {
    font-size: clamp(.95rem, 2vw, 1.05rem);
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 620px;
    margin-bottom: 24px;
}

.page-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--r);
    background: var(--saffron);
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    border: none;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, .35);
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: var(--r);
    background: transparent;
    color: var(--off);
    font-size: .95rem;
    font-weight: 600;
    border: 1px solid var(--border2);
    text-decoration: none;
    transition: border-color .18s, background .18s;
}

.btn-secondary:hover {
    border-color: var(--saffron);
    background: rgba(249, 115, 22, .06);
    opacity: 1
}


/* ============================================================
   MODERATION STRIP
   ============================================================ */
.mod-strip {
    background: #13131a;
    border-top: 1px solid rgba(249, 115, 22, .2);
    border-bottom: 1px solid rgba(249, 115, 22, .2);
    padding: 14px 24px;
}

.mod-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.mod-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.mod-item:last-child {
    border-right: none
}

.mod-item .mod-text {
    font-size: .8rem;
    color: var(--muted2)
}

.mod-item strong {
    color: var(--off)
}

@media(max-width:640px) {
    .mod-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .mod-item:last-child {
        border-bottom: none
    }
}


/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section {
    padding: 80px 24px
}

.section-inner {
    max-width: 1080px;
    margin: 0 auto
}

.section-label {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-body {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 620px;
    font-weight: 300;
}

.section-header {
    margin-bottom: 48px
}

@media(max-width:600px) {
    .section {
        padding: 60px 20px
    }
}


/* ============================================================
   INTENT / STORY SECTION
   ============================================================ */
.intent-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 56px 24px;
}

.intent-inner {
    max-width: 820px;
    margin: 0 auto
}

.intent-inner h2 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--white);
    margin: 32px 0 12px;
}

.intent-inner h2:first-child {
    margin-top: 0
}

.intent-inner p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 12px;
    font-weight: 300;
}

.intent-inner p:last-child {
    margin-bottom: 0
}

.intent-inner a {
    color: var(--saffron);
    font-weight: 600
}


/* ============================================================
   LANGUAGE ROOMS
   ============================================================ */
.lang-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.lang-grid-2col {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 52px;
    align-items: center;
}

.lang-selector-wrap {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 10px 18px;
    font-size: .88rem;
    font-weight: 600;
    color: var(--off);
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.lang-btn:hover {
    border-color: var(--saffron);
    background: rgba(249, 115, 22, .08);
    opacity: 1
}

.lang-btn.primary {
    border-color: rgba(249, 115, 22, .35);
    background: rgba(249, 115, 22, .08)
}

.lang-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: var(--r2);
    border: 1px solid var(--border2);
}

/* Language cards grid (for language room pages) */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.lang-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .2s;
    position: relative;
    overflow: hidden;
}

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

.lang-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.lang-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.lang-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white)
}

.lang-card p {
    font-size: .86rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1
}

.lang-cta {
    font-size: .82rem;
    font-weight: 700;
    color: var(--saffron);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
}

.lang-cta:hover {
    gap: 8px;
    opacity: 1
}

@media(max-width:900px) {
    .lang-grid-2col {
        grid-template-columns: 1fr
    }

    .lang-img-wrap {
        margin-top: 24px
    }
}


/* ============================================================
   OMEGLE ALTERNATIVE
   ============================================================ */
.omegle-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.omegle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.omegle-body {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 14px;
}

.omegle-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
}

.of {
    display: flex;
    gap: 14px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 18px 20px;
}

.of-ic {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.of h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px
}

.of p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.6
}

/* COMPARISON TABLE */
.compare-wrap {
    overflow-x: auto;
    margin-top: 8px
}

.compare-tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: .84rem
}

.compare-tbl th {
    padding: 10px 14px;
    text-align: left;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted2);
    border-bottom: 1px solid var(--border);
}

.compare-tbl th.ours {
    color: var(--saffron);
    background: rgba(249, 115, 22, .06)
}

.compare-tbl td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    vertical-align: middle;
}

.compare-tbl td:first-child {
    color: var(--off);
    font-weight: 500
}

.compare-tbl td.ours {
    background: rgba(249, 115, 22, .04)
}

.compare-tbl tr:last-child td {
    border-bottom: none
}

.compare-tbl .yes {
    color: #4ade80;
    font-weight: 700
}

.compare-tbl .no {
    color: var(--muted2)
}

.compare-tbl .partial {
    color: var(--gold)
}

@media(max-width:900px) {
    .omegle-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }
}


/* ============================================================
   WHY CHATZYO CARDS
   ============================================================ */
.why-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px 24px;
    transition: border-color .2s;
}

.why-card:hover {
    border-color: var(--border2)
}

.why-card .ic {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.why-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 7px
}

.why-card p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65
}

@media(max-width:768px) {
    .why-grid {
        grid-template-columns: 1fr
    }
}


/* ============================================================
   APP PROMO SECTION (Android App)
   ============================================================ */
.app-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.app-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .25);
    color: var(--green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
    margin-bottom: 16px;
}

.app-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 14px;
}

.app-body {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
}

.app-features {
    list-style: none;
    margin-bottom: 28px
}

.app-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.app-features li:last-child {
    margin-bottom: 0
}

.app-feat-check {
    color: var(--green);
    flex-shrink: 0;
    font-weight: 700
}

.app-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center
}

.play-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--r);
    padding: 10px 20px;
    text-decoration: none;
    transition: border-color .2s, transform .18s;
}

.play-store-btn:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    opacity: 1;
}

.play-store-btn img {
    width: 22px;
    height: 24px
}

.play-store-text {
    display: flex;
    flex-direction: column
}

.play-store-small {
    font-size: .65rem;
    color: var(--muted2);
    letter-spacing: .05em;
    text-transform: uppercase
}

.play-store-big {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white)
}

.app-img-wrap {
    position: relative
}

.app-img-wrap img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--r2);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .6));
    margin: 0 auto;
}

@media(max-width:900px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .app-img-wrap {
        display: flex;
        justify-content: center
    }

    .app-img-wrap img {
        max-width: 300px
    }
}


/* ============================================================
   HOW IT WORKS — 3 STEPS
   ============================================================ */
.how-section {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.how-step {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
}

.how-step:last-child {
    border-right: none
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--saffron);
    color: var(--saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.how-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.how-step p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65
}

@media(max-width:768px) {
    .how-steps {
        grid-template-columns: 1fr
    }

    .how-step {
        border-right: none;
        border-bottom: 1px solid var(--border)
    }

    .how-step:last-child {
        border-bottom: none
    }
}


/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
.about-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-body {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 14px;
}

.founder-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0
}

.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .12);
    border: 2px solid rgba(249, 115, 22, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    overflow: hidden;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.founder-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white)
}

.founder-title {
    font-size: .8rem;
    color: var(--muted2)
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px
}

.astat {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.astat:first-child {
    border-radius: var(--r2) 0 0 0
}

.astat:nth-child(2) {
    border-radius: 0 var(--r2) 0 0
}

.astat:nth-child(3) {
    border-radius: 0 0 0 var(--r2)
}

.astat:last-child {
    border-radius: 0 0 var(--r2) 0
}

.astat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.04em
}

.astat-label {
    font-size: .76rem;
    color: var(--muted2);
    font-weight: 500
}

.safety-banner {
    background: rgba(249, 115, 22, .06);
    border: 1px solid rgba(249, 115, 22, .18);
    border-radius: var(--r2);
    padding: 28px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 48px;
}

.safety-banner .si {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px
}

.safety-banner h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--saffron2);
    margin-bottom: 6px
}

.safety-banner p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65
}

.safety-list {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.safety-list li {
    display: flex;
    gap: 8px;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .safety-banner {
        flex-direction: column;
        gap: 12px
    }
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
    background: var(--bg2);
    border-bottom: 1px solid var(--border)
}

.faq-wrap {
    max-width: 720px
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-item:first-child {
    border-top: 1px solid var(--border)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: .95rem;
    font-weight: 600;
    color: var(--off);
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color .18s;
}

.faq-q:hover {
    color: var(--white)
}

.faq-arrow {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--muted2);
    transition: transform .25s, border-color .18s;
}

.faq-item.open .faq-q .faq-arrow {
    transform: rotate(45deg);
    border-color: var(--saffron);
    color: var(--saffron);
}

.faq-a {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 18px
}


/* ============================================================
   BLOG STRIP
   ============================================================ */
.blog-strip {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 56px 24px
}

.blog-strip-inner {
    max-width: 1080px;
    margin: 0 auto
}

.blog-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.blog-link-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 20px 22px;
    text-decoration: none;
    transition: border-color .2s, transform .2s;
}

.blog-link-card:hover {
    border-color: var(--saffron);
    transform: translateY(-2px);
    opacity: 1
}

.blog-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 8px
}

.blog-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 6px
}

.blog-read {
    font-size: .8rem;
    color: var(--muted2);
    font-weight: 500
}

/* Blog post page */
.blog-post-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px
}

.blog-post-wrap h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px
}

.blog-post-wrap h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 12px
}

.blog-post-wrap h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin: 24px 0 8px
}

.blog-post-wrap p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
    font-weight: 300
}

.blog-post-wrap a {
    color: var(--saffron);
    font-weight: 600
}

.blog-post-wrap ul,
.blog-post-wrap ol {
    padding-left: 20px;
    margin-bottom: 16px
}

.blog-post-wrap li {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 6px
}

.blog-meta {
    font-size: .82rem;
    color: var(--muted2);
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

@media(max-width:768px) {
    .blog-links {
        grid-template-columns: 1fr
    }
}


/* ============================================================
   CITY + COUNTRY CHIPS
   ============================================================ */
.city-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 40px;
}

.city-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: border-color .2s, transform .2s;
    text-decoration: none;
}

.city-card:hover {
    border-color: var(--saffron);
    transform: translateY(-2px);
    opacity: 1
}

.city-flag {
    font-size: 24px
}

.city-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white)
}

.city-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.5
}

.city-link {
    font-size: .78rem;
    font-weight: 700;
    color: var(--saffron);
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.country-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 8px 16px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--off);
    text-decoration: none;
    transition: border-color .2s, background .2s;
}

.country-chip:hover {
    border-color: var(--saffron);
    background: rgba(249, 115, 22, .06);
    opacity: 1
}

/* ============================================================
   EXPLORE LINKS
   ============================================================ */
.explore-section {
    background: var(--bg);
    border-bottom: 1px solid var(--border)
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.explore-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 14px 16px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: border-color .18s, color .18s;
}

.explore-link:hover {
    border-color: var(--saffron);
    color: var(--off);
    opacity: 1
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg3);
    border-top: 1px solid var(--border);
    padding: 52px 24px 28px
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

@media(max-width:992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 10px;
    display: block
}

.footer-logo span {
    color: var(--saffron)
}

.footer-tagline {
    font-size: .84rem;
    color: var(--muted2);
    line-height: 1.6;
    margin-bottom: 10px
}

.footer-contact {
    font-size: .78rem;
    color: var(--muted2)
}

.footer-contact a {
    color: var(--muted)
}

.footer-col-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--off);
    margin-bottom: 14px;
    padding-bottom: 7px;
    border-bottom: 2px solid var(--saffron);
    display: inline-block;
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: 9px
}

.footer-col ul li a {
    font-size: .84rem;
    color: var(--muted2);
    transition: color .18s
}

.footer-col ul li a:hover {
    color: var(--off);
    opacity: 1
}

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

.footer-bottom p {
    font-size: .76rem;
    color: var(--muted2)
}

.footer-badges {
    display: flex;
    gap: 8px
}

.fbadge {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 3px 9px;
    border-radius: 4px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .07em;
    color: var(--muted2);
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}


/* ============================================================
   COOKIE BAR
   ============================================================ */
.cookie-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 680px;
    background: var(--bg3);
    border: 1px solid var(--border2);
    border-radius: var(--r2);
    padding: 16px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 8000;
    box-shadow: var(--shadow);
}

.cookie-bar p {
    font-size: .82rem;
    color: var(--muted);
    flex: 1
}

.cookie-bar p a {
    color: var(--saffron);
    text-decoration: underline
}

.cookie-btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.cbtn-accept {
    padding: 8px 18px;
    border-radius: var(--r);
    border: none;
    background: var(--saffron);
    color: var(--white);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
}

.cbtn-reject {
    padding: 8px 18px;
    border-radius: var(--r);
    border: 1px solid var(--border);
    background: none;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-saffron {
    color: var(--saffron)
}

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

.text-muted {
    color: var(--muted)
}

.text-white {
    color: var(--white)
}

.fw-700 {
    font-weight: 700
}

.fw-300 {
    font-weight: 300
}

.mt-8 {
    margin-top: 8px
}

.mt-16 {
    margin-top: 16px
}

.mt-24 {
    margin-top: 24px
}

.mt-32 {
    margin-top: 32px
}

.mb-8 {
    margin-bottom: 8px
}

.mb-16 {
    margin-bottom: 16px
}

.mb-24 {
    margin-bottom: 24px
}

.flex-wrap-gap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}