:root {
    /* Palette marque : #151E36 #25657D #29768E #389798 #79AFBC */
    --white: #ffffff;
    --cream: #f8fbfc;
    --sand: #f3f8fa;
    --peach: #edf4f6;

    --orange: #29768e;
    --orange-light: #79afbc;
    --orange-bg: rgba(41, 118, 142, 0.08);
    --blue: #29768e;
    --blue-light: #79afbc;
    --blue-bg: rgba(41, 118, 142, 0.08);
    --green: #22c55e;
    --purple: #25657d;
    --pink: #151e36;
    --yellow: #389798;

    --text: #151e36;
    --text-2: #4a6270;
    --text-3: #5a6f7a;
    --border: #e4eef1;
    --border-2: #c5d9e0;

    --font: 'DM Sans', system-ui, -apple-system, sans-serif;
    --r: 20px;
    --r-sm: 14px;
    --r-lg: 28px;
    --r-xl: 36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Animations ── */
[data-a] {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-a].show { opacity: 1; transform: none; }
[data-a]:nth-child(2) { transition-delay: 0.07s; }
[data-a]:nth-child(3) { transition-delay: 0.14s; }
[data-a]:nth-child(4) { transition-delay: 0.21s; }
[data-a]:nth-child(5) { transition-delay: 0.28s; }
[data-a]:nth-child(6) { transition-delay: 0.35s; }

h2 em {
    font-style: normal;
    background: linear-gradient(135deg, #29768e, #151e36);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-2);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pill-white {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

/* ── Nav ── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.solid {
    background: rgba(255, 252, 247, 0.85);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.04);
}
.nav.up { transform: translateY(-100%); }

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
}
.logo-icon { font-size: 1.3rem; }
.logo-img { height: 28px; width: auto; display: block; }

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

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

.lang-switcher {
    position: relative;
}
.lang-current {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-2);
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.lang-current:hover {
    border-color: var(--orange);
    color: var(--text);
}
.lang-flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}
.lang-code {
    letter-spacing: 0.04em;
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: var(--r-sm);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    min-width: 160px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 200;
}
.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    border: none;
    background: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-2);
    transition: all 0.15s;
}
.lang-option:hover {
    background: var(--sand);
    color: var(--text);
}
.lang-option.active {
    background: var(--orange-bg);
    color: var(--orange);
    font-weight: 600;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 999px;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(65, 130, 216, 0.3);
}
.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(65, 130, 216, 0.35);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    padding: 130px 24px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(170deg, var(--cream) 0%, var(--peach) 40%, var(--sand) 100%);
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.shape.s1 {
    width: 400px; height: 400px;
    top: -80px; right: -80px;
    background: radial-gradient(circle, rgba(65,130,216,0.12) 0%, transparent 70%);
}
.shape.s2 {
    width: 300px; height: 300px;
    bottom: -60px; left: -60px;
    background: radial-gradient(circle, rgba(65,130,216,0.08) 0%, transparent 70%);
}
.shape.s3 {
    width: 200px; height: 200px;
    top: 30%; left: 10%;
    background: radial-gradient(circle, rgba(65,130,216,0.06) 0%, transparent 70%);
    animation: bob 10s ease-in-out infinite;
}
.shape.s4 {
    width: 16px; height: 16px;
    top: 20%; right: 25%;
    background: var(--yellow);
    animation: bob 6s ease-in-out infinite;
}
.shape.s5 {
    width: 12px; height: 12px;
    bottom: 30%; left: 20%;
    background: var(--pink);
    animation: bob 8s ease-in-out infinite reverse;
}
@keyframes bob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
    color: var(--text);
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--orange), #151e36);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-2);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(65, 130, 216, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(65, 130, 216, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--white);
    border: 1.5px solid var(--border-2);
    color: var(--text);
    text-decoration: none;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-secondary:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* Social proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.avatars {
    display: flex;
    align-items: center;
}
.avatars img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--cream);
    margin-left: -12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.avatars img:first-child { margin-left: 0; }
.avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    margin-left: -12px;
    border: 3px solid var(--cream);
}
.proof-text {
    font-size: 0.85rem;
    color: var(--text-2);
}

/* ── Phone ── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-container { position: relative; }

.phone {
    width: 270px;
    background: var(--white);
    border-radius: 40px;
    padding: 10px;
    position: relative;
    z-index: 2;
    box-shadow:
        0 0 0 1px var(--border-2),
        0 20px 60px rgba(0,0,0,0.1),
        0 4px 20px rgba(0,0,0,0.06);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
}
.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--white);
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.phone-screen {
    background: var(--cream);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/17.5;
    display: flex;
    flex-direction: column;
}
.screen-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 18px 4px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-3);
}
.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 14px 8px;
}
.sh-title { font-weight: 700; font-size: 0.82rem; color: var(--text); }
.sh-loc { font-size: 0.65rem; color: var(--text-3); }

.screen-map {
    flex: 1;
    position: relative;
    margin: 0 8px;
    border-radius: 14px;
    overflow: hidden;
}
.smap-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #e8f2f5 0%, #dff3f4 35%, #eef8f7 65%, #f5fafb 100%);
}
.smap-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}
.smap-pin { position: absolute; z-index: 2; }
.smap-pin.me { z-index: 3; }
.smap-dot {
    display: block;
    width: 14px; height: 14px;
    background: var(--orange);
    border: 3px solid #fff;
    border-radius: 50%;
    position: relative; z-index: 2;
    box-shadow: 0 2px 8px rgba(65,130,216,0.3);
}
.smap-pulse {
    position: absolute;
    inset: -8px;
    width: 30px; height: 30px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.25;
    animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}
.smap-pin.friend img {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2.5px solid var(--orange);
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.screen-card {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 6px 8px 4px;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.screen-card img {
    width: 30px; height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.sc-info { flex: 1; }
.sc-info strong { display: block; font-size: 0.68rem; color: var(--text); }
.sc-info span { font-size: 0.55rem; color: var(--text-3); }
.sc-btn {
    padding: 4px 10px;
    background: var(--orange);
    border-radius: 8px;
    font-size: 0.58rem;
    font-weight: 700;
    color: #fff;
}

.screen-tabs {
    display: flex;
    justify-content: space-around;
    padding: 6px 0 10px;
    border-top: 1px solid var(--border);
}
.stab { font-size: 0.9rem; opacity: 0.4; transition: opacity 0.2s; }
.stab.active { opacity: 1; }

/* Floating cards */
.float-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--border-2);
    border-radius: var(--r);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    white-space: nowrap;
}
.float-card.f1 {
    top: 16%; right: -50px;
    animation: fcard 5s ease-in-out infinite;
}
.float-card.f2 {
    bottom: 20%; left: -55px;
    animation: fcard 6s ease-in-out infinite reverse;
}
@keyframes fcard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}
.fc-icon { font-size: 1.4rem; }
.float-card strong { display: block; font-size: 0.78rem; color: var(--text); }
.float-card span { font-size: 0.68rem; color: var(--text-3); }

/* ── Ticker ── */
.ticker {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 18px 0;
}
.ticker-track {
    display: flex;
    animation: scroll 28s linear infinite;
}
.ticker-items {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    padding-right: 40px;
    flex-shrink: 0;
}
.ticker-items span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-2);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Features ── */
.features {
    padding: 110px 0;
    background: var(--white);
}
.section-top {
    margin-bottom: 56px;
}
.section-top.center { text-align: center; }
.section-top h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    margin-bottom: 14px;
}
.section-sub {
    font-size: 1.08rem;
    color: var(--text-2);
    max-width: 440px;
}

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

.card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: var(--border-2);
}
.card-big {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}
.card-wide {
    grid-column: span 2;
    display: flex;
    gap: 28px;
    align-items: center;
}

.card-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
}
.card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* Globe mini in card */
.card-illust {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 16px;
}
.mini-globe {
    position: relative;
    width: 130px;
    height: 130px;
}
.mg-body {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-light), var(--orange), #25657d);
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.15), 0 8px 30px rgba(65,130,216,0.2);
    animation: globe-spin 18s linear infinite;
}
@keyframes globe-spin { to { transform: rotateY(360deg); } }
.mg-shine {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%);
}
.mg-dot {
    position: absolute;
    font-size: 0.6rem;
    animation: bob 5s ease-in-out infinite;
}
.mg-dot.d1 { top: 5px; left: 50%; }
.mg-dot.d2 { bottom: 10px; left: 10px; animation-delay: -2s; }
.mg-dot.d3 { bottom: 5px; right: 10px; animation-delay: -4s; }

/* Demo friends */
.card-demo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}
.friend-req {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.friend-req img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.fr-info { flex: 1; }
.fr-info strong { display: block; font-size: 0.82rem; }
.fr-info span { font-size: 0.72rem; color: var(--text-3); }
.fr-yes {
    width: 32px; height: 32px;
    border-radius: 10px;
    border: none;
    background: var(--green);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(34,197,94,0.25);
}
.fr-yes:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(34,197,94,0.35);
}

/* ── How ── */
.how {
    padding: 110px 0;
    background: var(--sand);
}
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    transition: all 0.35s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.step:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(65,130,216,0.25);
}
.step-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.6;
}
.step-connector {
    width: 60px;
    flex-shrink: 0;
    color: var(--orange-light);
    padding: 0 4px;
}
.step-connector svg { width: 100%; }

/* ── Showcase ── */
.showcase {
    padding: 110px 0;
    background: var(--white);
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 16px;
}
.show-card {
    border-radius: var(--r-xl);
    padding: 44px;
    overflow: hidden;
    transition: transform 0.4s;
}
.show-card:hover { transform: translateY(-4px); }

.show-orange {
    background: linear-gradient(145deg, #fff7ed, #ffedd5, #fed7aa);
    border: 1px solid rgba(65,130,216,0.12);
}
.show-blue {
    background: linear-gradient(145deg, #f0f7f9, #dff0f3, #c5d9e0);
    border: 1px solid rgba(59,130,246,0.12);
}

.show-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,255,255,0.6);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 16px;
}
.show-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--text);
}
.show-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 24px;
}

.show-trips {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.show-trip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(65,130,216,0.1);
    border-radius: var(--r);
    backdrop-filter: blur(8px);
}
.show-trip.faded { opacity: 0.5; transform: scale(0.97); }
.show-trip span { font-size: 1.5rem; }
.show-trip strong { display: block; font-size: 0.88rem; color: var(--text); }
.show-trip small { font-size: 0.75rem; color: var(--text-3); }

.show-profile {
    text-align: center;
    padding: 28px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(59,130,246,0.1);
    border-radius: var(--r-lg);
    backdrop-filter: blur(8px);
}
.show-profile img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-light);
    margin-bottom: 10px;
}
.show-profile strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}
.show-profile > span {
    font-size: 0.8rem;
    color: var(--text-3);
}
.sp-stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-2);
}
.sp-stats strong { color: var(--text); }

/* ── Download ── */
.download {
    padding: 100px 0 120px;
    background: var(--cream);
}
.dl-card {
    position: relative;
    background: linear-gradient(140deg, #29768e, #25657d, #151e36);
    border-radius: var(--r-xl);
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 20px 60px rgba(65,130,216,0.2);
}
.dl-confetti {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: bob 6s ease-in-out infinite;
}
.dl-confetti.c1 { top: 12%; left: 8%; animation-delay: 0s; }
.dl-confetti.c2 { top: 18%; right: 12%; animation-delay: -1.5s; }
.dl-confetti.c3 { bottom: 15%; left: 15%; animation-delay: -3s; }
.dl-confetti.c4 { bottom: 10%; right: 8%; animation-delay: -4.5s; }

.dl-card h2 {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #fff;
    position: relative;
}
.dl-card h2 em {
    -webkit-text-fill-color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
    background: none;
}
.dl-card > p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 36px;
    position: relative;
}
.dl-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    position: relative;
}
.dl-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--r);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
    cursor: pointer;
}
.dl-android:hover,
.dl-ios:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.dl-btn small { display: block; font-size: 0.7rem; opacity: 0.8; text-align: left; }
.dl-btn strong { display: block; font-size: 1.05rem; text-align: left; }

.dl-checks {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
}
.dl-checks span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ── Footer ── */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border);
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 48px 0 40px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-3);
    margin-top: 12px;
    line-height: 1.5;
}
.footer-links {
    display: flex;
    gap: 28px;
}
.footer-links a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}
.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-3);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero h1 { font-size: 3rem; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-visual { order: -1; }
    .phone { width: 240px; }
    .float-card { display: none; }

    .cards-grid { grid-template-columns: 1fr 1fr; }
    .card-big { grid-row: span 1; }
    .card-wide { flex-direction: column; }

    .steps { flex-direction: column; gap: 14px; }
    .step-connector { transform: rotate(90deg); }
    .step { max-width: 100%; }

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

    .section-top h2 { font-size: 2.2rem; }
    .dl-card { padding: 56px 32px; }
    .dl-card h2 { font-size: 2.1rem; }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hero { padding: 120px 20px 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-social-proof { flex-direction: column; gap: 8px; }
    .phone { width: 220px; }

    .cards-grid { grid-template-columns: 1fr; }
    .card-big { grid-row: span 1; }
    .card-wide { grid-column: span 1; }

    .section-top h2 { font-size: 1.75rem; }

    .show-card { padding: 32px; }
    .show-card h3 { font-size: 1.25rem; }

    .dl-card { padding: 44px 24px; }
    .dl-card h2 { font-size: 1.7rem; }
    .dl-buttons { flex-direction: column; align-items: center; }
    .dl-checks { flex-direction: column; align-items: center; gap: 8px; }

    .footer-main { flex-direction: column; gap: 24px; }
}
