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

:root {
    --blue: #163D82;
    --blue-light: #1e52b0;
    --blue-glow: #2563eb;
    --black: #000000;
    --white: #ffffff;
    --off-white: #f4f6fb;
    --gray: #8892a4;
    --card-bg: #0a1628;
    --text: #e8edf5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.nav-logo {
    font-size: 1.8rem;
}

.nav-logo img {
    height: 2.5em;
    /* matches font-size dynamically */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-cta {
    background: var(--blue);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.25s;
}

.nav-cta:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(22, 61, 130, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 5% 4rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 50%, rgba(22, 61, 130, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
        linear-gradient(160deg, #000 0%, #071020 60%, #0e2246 100%);
}

/* Turf grid lines */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22, 61, 130, 0.3);
    border: 1px solid rgba(37, 99, 235, 0.4);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7aa4f5;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
    content: '⚡';
    font-size: 0.9rem;
}

h1.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin-bottom: 0.6rem;
    animation: fadeUp 0.8s 0.1s ease both;
}

h1.hero-title .accent {
    background: linear-gradient(135deg, #4a90e2 0%, #7aa4f5 50%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-tagline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp 0.8s 0.3s ease both;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.6rem;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-store.android {
    background: linear-gradient(135deg, #163D82 0%, #1e52b0 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(22, 61, 130, 0.4);
}

.btn-store.android:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(22, 61, 130, 0.6);
}

.btn-store.ios {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.btn-store.ios:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.btn-store .store-icon {
    font-size: 1.6rem;
}

.btn-store .store-text small {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeUp 0.8s 0.4s ease both;
}

.stat-item {}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #7aa4f5;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-family: 'Syne', sans-serif;
}

.hero-visual {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 42%;
    max-width: 520px;
    z-index: 1;
    animation: floatUp 1s 0.2s ease both;
}

.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.phone-main {
    width: 260px;
    height: 520px;
    background: linear-gradient(145deg, #1a2a4a 0%, #0d1a30 100%);
    border-radius: 36px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.phone-screen {
    padding: 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.phone-notch {
    width: 80px;
    height: 22px;
    background: #000;
    border-radius: 12px;
    margin: 0 auto 0.5rem;
}

.phone-map-area {
    background: linear-gradient(135deg, #163D82 0%, #0a2251 100%);
    border-radius: 16px;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.phone-map-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
    animation: pulse 2s infinite;
}

.phone-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.75rem;
}

.phone-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.phone-card-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Syne', sans-serif;
}

.phone-card-badge {
    font-size: 0.6rem;
    background: #163D82;
    color: #7aa4f5;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.phone-slots {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.slot {
    font-size: 0.55rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
}

.slot.available {
    background: rgba(22, 61, 130, 0.5);
    color: #7aa4f5;
    border: 1px solid rgba(22, 61, 130, 0.6);
}

.slot.booked {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: line-through;
}

.phone-btn-book {
    background: linear-gradient(135deg, #163D82, #2563eb);
    color: #fff;
    border-radius: 12px;
    padding: 0.7rem;
    text-align: center;
    font-size: 0.7rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: auto;
}

.phone-shadow {
    position: absolute;
    bottom: -40px;
    width: 180px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(22, 61, 130, 0.5) 0%, transparent 70%);
    left: 50%;
    transform: translateX(-50%);
}

.phone-second {
    position: absolute;
    left: -60px;
    bottom: 40px;
    width: 180px;
    height: 360px;
    background: linear-gradient(145deg, #111d30 0%, #0a1222 100%);
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    opacity: 0.65;
    z-index: 1;
    overflow: hidden;
}

.p2-screen {
    padding: 1rem;
}

.p2-header {
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    width: 60%;
}

.p2-card {
    height: 80px;
    background: rgba(22, 61, 130, 0.25);
    border-radius: 12px;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(22, 61, 130, 0.3);
}

/* ─── SECTION SHARED ─── */
section {
    padding: 6rem 5%;
}

.section-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4a90e2;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 540px;
    line-height: 1.7;
}

/* ─── ABOUT ─── */
#about {
    background: linear-gradient(180deg, #000 0%, #060e1e 100%);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(22, 61, 130, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hexagon {
    width: 320px;
    height: 320px;
    position: relative;
}

.hex-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(22, 61, 130, 0.3);
    animation: spin 20s linear infinite;
}

.hex-ring:nth-child(2) {
    inset: 20px;
    border-color: rgba(37, 99, 235, 0.2);
    animation-duration: 15s;
    animation-direction: reverse;
}

.hex-ring:nth-child(3) {
    inset: 40px;
    border-color: rgba(74, 144, 226, 0.15);
    animation-duration: 25s;
}

.hex-center {
    position: absolute;
    inset: 60px;
    background: linear-gradient(135deg, #0d1e40 0%, #163D82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 0 60px rgba(22, 61, 130, 0.5);
}

.about-pills {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 2rem;
}

.pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
}

.pill:hover {
    background: rgba(22, 61, 130, 0.2);
    border-color: rgba(22, 61, 130, 0.5);
    transform: translateX(6px);
}

.pill-icon {
    font-size: 1.3rem;
}

/* ─── FEATURES ─── */
#features {
    background: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, #0b1624 0%, #091220 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-glow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover {
    border-color: rgba(22, 61, 130, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(22, 61, 130, 0.25);
    border: 1px solid rgba(22, 61, 130, 0.4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}

.feature-card:hover .feature-icon {
    background: rgba(22, 61, 130, 0.5);
}

.feature-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ─── HOW IT WORKS ─── */
#how {
    background: linear-gradient(180deg, #000 0%, #060d1c 50%, #000 100%);
    position: relative;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    position: relative;
}

.how-grid::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(22, 61, 130, 0.6) 20%, rgba(37, 99, 235, 0.6) 50%, rgba(22, 61, 130, 0.6) 80%, transparent);
}

.how-step {
    text-align: center;
    position: relative;
}

.step-num {
    width: 84px;
    height: 84px;
    background: linear-gradient(135deg, #163D82 0%, #0d2557 100%);
    border: 2px solid rgba(37, 99, 235, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #7aa4f5;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(22, 61, 130, 0.4);
    transition: all 0.3s;
}

.how-step:hover .step-num {
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.6);
    transform: scale(1.08);
}

.step-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.3rem;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ─── SCREENSHOTS ─── */
#screenshots {
    background: #000;
    overflow: hidden;
}

.screens-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.screens-row::-webkit-scrollbar {
    display: none;
}

.screen-card {
    flex: 0 0 220px;
    height: 420px;
    background: linear-gradient(145deg, #0d1e40 0%, #091628 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    scroll-snap-align: start;
    position: relative;
    transition: transform 0.3s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.screen-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.screen-label {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-inner {
    padding: 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.s-notch {
    width: 60px;
    height: 16px;
    background: #000;
    border-radius: 10px;
    margin: 0 auto 0.5rem;
}

.s-header {
    height: 14px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    width: 70%;
}

.s-map {
    height: 120px;
    background: linear-gradient(135deg, #163D82 0%, #091e44 100%);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

.s-map::after {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}

.s-list-item {
    height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.s-chips {
    display: flex;
    gap: 0.4rem;
}

.s-chip {
    height: 28px;
    flex: 1;
    background: rgba(22, 61, 130, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(22, 61, 130, 0.4);
}

.s-chip.active {
    background: rgba(22, 61, 130, 0.6);
}

.s-big-card {
    height: 100px;
    background: linear-gradient(135deg, rgba(22, 61, 130, 0.4), rgba(14, 34, 80, 0.4));
    border-radius: 16px;
    border: 1px solid rgba(22, 61, 130, 0.3);
}

.s-btn {
    height: 40px;
    background: linear-gradient(135deg, #163D82, #2563eb);
    border-radius: 12px;
    margin-top: auto;
}

.s-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.s-cal-cell {
    height: 22px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
}

.s-cal-cell.active {
    background: rgba(22, 61, 130, 0.6);
}

.s-profile {
    width: 50px;
    height: 50px;
    background: rgba(22, 61, 130, 0.4);
    border-radius: 50%;
    margin: 0 auto;
}

.s-stats-row {
    display: flex;
    gap: 0.5rem;
}

.s-stat {
    flex: 1;
    height: 60px;
    background: rgba(22, 61, 130, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(22, 61, 130, 0.3);
}

/* ─── WHY CHOOSE ─── */
#why {
    background: linear-gradient(135deg, #060d1c 0%, #000 100%);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
}

.why-card {
    padding: 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(22, 61, 130, 0.12);
    border-color: rgba(22, 61, 130, 0.4);
}

.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: rgba(22, 61, 130, 0.5);
    flex-shrink: 0;
}

.why-text {}

.why-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.why-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

/* ─── CTA ─── */
#cta {
    background: linear-gradient(135deg, #163D82 0%, #0d2557 50%, #081836 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

.cta-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.btn-cta-store {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #163D82;
    padding: 0.9rem 1.8rem;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-cta-store:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-store.dark {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta-store.dark:hover {
    background: rgba(0, 0, 0, 0.6);
}

.btn-cta-store .store-icon {
    font-size: 1.5rem;
}

/* ─── FOOTER ─── */
footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 3rem 5% 2rem;
}

.social-btn {
    font-size: 18px;
    color: white;
    margin: 0 8px;
    transition: 0.3s;
}

.social-btn:hover {
    color: #4a90e2;
    /* your theme blue */
    transform: scale(1.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;

    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 2.5em;
    /* 👈 matches 2rem exactly */
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 240px;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.2rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.25s;
}

.social-btn:hover {
    background: rgba(22, 61, 130, 0.4);
    border-color: rgba(22, 61, 130, 0.6);
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;  
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-contact li {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.hero-visual {
    animation: float 6s ease-in-out infinite;
}

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

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        display: none;
    }

    .hero-visual {
        display: none;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .how-grid::before {
        display: none;
    }

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

@media (max-width: 480px) {
    section {
        padding: 4rem 5%;
    }

    .hero-stats {
        gap: 1.5rem;
    }
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

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

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: #7aa4f5;
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 5%;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Gradient divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 61, 130, 0.5) 50%, transparent);
}

