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

:root {
    --blue-950: #061428;
    --blue-900: #0c2347;
    --blue-800: #1348a0;
    --blue-700: #1565c0;
    --blue-600: #1e88e5;
    --blue-500: #2196f3;
    --blue-400: #42a5f5;
    --blue-300: #64b5f6;
    --blue-50: #eff6ff;
    --cyan: #22d3ee;
    --navy: #050d1a;
    --gray-700: #334155;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.45);
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 30px 80px rgba(15, 23, 42, 0.18);
    --shadow-glow: 0 0 60px rgba(33, 150, 243, 0.35);
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --container: 1240px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--blue-900);
    line-height: 1.6;
    background: var(--gray-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Scroll reveal */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 16px 0;
    transition: padding 0.35s var(--ease-out), background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.site-header.scrolled {
    padding: 10px 0;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-md);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 10px 10px 10px 20px;
    box-shadow: var(--shadow-sm);
    transition: background 0.35s, box-shadow 0.35s;
}

.site-header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: 52px;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.footer-logo-img {
    height: 72px;
    width: 72px;
    margin-bottom: 8px;
    border-radius: 16px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue-600), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(30, 136, 229, 0.4);
}

.logo-mark svg {
    width: 22px;
    height: 22px;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 10px 16px;
    border-radius: 999px;
    transition: color 0.25s, background 0.25s;
}

.main-nav a:hover {
    color: var(--blue-700);
    background: rgba(21, 101, 192, 0.08);
}

.main-nav a.active {
    color: var(--blue-700);
    background: rgba(21, 101, 192, 0.12);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.35);
    transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
    flex-shrink: 0;
}

.header-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 28px rgba(21, 101, 192, 0.45);
}

.menu-toggle {
    display: none;
    background: rgba(21, 101, 192, 0.08);
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 12px;
    color: var(--blue-800);
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(160deg, #061428 0%, #0c3d7a 35%, #1565c0 65%, #0288d1 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: float 12s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: #22d3ee;
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: 10%;
    left: -10%;
    animation-delay: -4s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #38bdf8;
    top: 40%;
    left: 30%;
    animation-delay: -8s;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 18px 8px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 28px;
    animation: fadeUp 0.8s var(--ease-out) both;
}

.hero-badge-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue-500));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-dot svg {
    width: 14px;
    height: 14px;
    color: white;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #fff 30%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}

.btn-primary {
    background: var(--white);
    color: var(--blue-800);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.btn-glass .play-ring {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 16px 22px;
    min-width: 120px;
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.hero-stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeUp 1s var(--ease-out) 0.3s both;
}

.hero-visual-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.phone-mockup {
    position: relative;
    width: 290px;
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 44px;
    padding: 14px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 40px 80px rgba(0, 0, 0, 0.5),
        var(--shadow-glow);
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-mockup.phone-mockup--image {
    width: 300px;
    padding: 0;
    background: none;
    border-radius: 0;
    overflow: visible;
    line-height: 0;
    box-shadow: none;
}

.phone-mockup-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.35))
            drop-shadow(0 0 60px rgba(34, 211, 238, 0.2));
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
}

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

.phone-screen {
    background: linear-gradient(180deg, #1565c0 0%, #1e88e5 130px, #f0f4f8 130px);
    border-radius: 32px;
    overflow: hidden;
    min-height: 540px;
    position: relative;
}

.phone-header {
    padding: 18px 18px 14px;
    color: white;
}

.phone-header h3 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.phone-header p {
    font-size: 0.72rem;
    opacity: 0.8;
    margin-top: 2px;
}

.phone-search {
    margin: 0 14px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 0.72rem;
    color: var(--gray-500);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-tabs {
    display: flex;
    gap: 6px;
    padding: 0 14px 14px;
}

.phone-tab {
    flex: 1;
    text-align: center;
    padding: 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    transition: background 0.2s;
}

.phone-tab.active {
    background: white;
    color: var(--blue-700);
    box-shadow: var(--shadow-sm);
}

.phone-card {
    margin: 0 14px 12px;
    background: white;
    border-radius: 16px;
    padding: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s var(--ease-spring);
}

.phone-card:hover {
    transform: scale(1.02);
}

.phone-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.phone-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #64b5f6, #1565c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.phone-card-name {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--blue-900);
}

.phone-card-meta {
    font-size: 0.65rem;
    color: var(--gray-500);
}

.phone-route {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: var(--blue-800);
    margin-bottom: 8px;
    font-weight: 500;
}

.phone-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--blue-700);
}

.phone-nav {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    padding: 12px 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.phone-nav span {
    font-size: 0.55rem;
    color: var(--gray-500);
    text-align: center;
    font-weight: 600;
}

.phone-nav span.active {
    color: var(--blue-700);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-900);
    animation: float 5s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -8%;
    animation-delay: -1s;
}

.floating-card-2 {
    bottom: 18%;
    right: -10%;
    animation-delay: -3s;
}

.floating-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.floating-card-icon.green {
    background: #dcfce7;
}

.floating-card-icon.blue {
    background: #dbeafe;
}

.floating-card-sub {
    font-size: 0.65rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: var(--white);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--blue-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan));
    border-radius: 2px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Feature cards - bento style */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 22px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s, border-color 0.4s;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.06), rgba(34, 211, 238, 0.04));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(33, 150, 243, 0.25);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--blue-50), #e0f2fe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-700);
    transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-3deg);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card p {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue-900);
    line-height: 1.5;
}

/* Steps - modern timeline cards */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 1px solid var(--gray-200);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
    overflow: hidden;
    text-align: center;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-icon {
    position: relative;
    width: 96px;
    height: 96px;
    background: linear-gradient(145deg, #e8f4fd 0%, #d4e9fc 100%);
    color: var(--blue-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 24px auto;
    box-shadow: 0 10px 28px rgba(21, 101, 192, 0.14);
    transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.step-card:hover .step-icon {
    transform: scale(1.06);
    box-shadow: 0 14px 36px rgba(21, 101, 192, 0.2);
}

.step-icon svg {
    width: 48px;
    height: 48px;
    display: block;
    flex-shrink: 0;
}

.step-icon-badge {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--blue-700);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    box-shadow: 0 3px 8px rgba(21, 101, 192, 0.25);
}

.step-icon-badge svg {
    width: 13px;
    height: 13px;
}

.step-icon-badge--success {
    background: #16a34a;
}

.step-number {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(21, 101, 192, 0.25);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 0;
}

.section-alt .step-card {
    background: var(--white);
}

/* Download */
.download-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #061428 0%, #1348a0 50%, #0288d1 100%);
}

.download-bg .hero-orb {
    opacity: 0.35;
}

.download-card {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.download-card h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.download-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.store-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: white;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s var(--ease-spring), background 0.3s, box-shadow 0.3s;
}

.store-btn:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.store-btn small {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    opacity: 0.75;
}

.store-btn svg {
    width: 30px;
    height: 30px;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 56px;
    padding-bottom: 56px;
}

.footer-logo .logo-text {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: block;
    background: linear-gradient(135deg, #fff, #7dd3fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    max-width: 260px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s var(--ease-spring), background 0.3s, border-color 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(34, 211, 238, 0.4);
}

.social-links svg {
    width: 17px;
    height: 17px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
}

.contact-icon svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

.footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.825rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 88px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--gray-200);
        box-shadow: var(--shadow-xl);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;
        text-align: center;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup.phone-mockup--image {
        width: 250px;
    }

    .section {
        padding: 72px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .download-card {
        padding: 48px 24px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        border-radius: 20px;
        padding: 8px 8px 8px 16px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat {
        flex: 1;
        min-width: calc(50% - 8px);
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}

/* Inner pages */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(160deg, #061428 0%, #0c3d7a 35%, #1565c0 65%, #0288d1 100%);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.9);
}

.section-label-light::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.9), var(--cyan));
}

.content-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 48px;
    align-items: start;
}

.content-main p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.content-main .lead {
    font-size: 1.15rem;
    color: var(--blue-900);
    font-weight: 500;
    line-height: 1.8;
}

.content-main.centered {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-50), #e0f2fe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-700);
    margin-bottom: 16px;
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
}

.info-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
}

.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-600);
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, var(--blue-50), #f0f9ff);
    border: 1px solid #dbeafe;
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-box p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue-800);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-200);
}

.process-item:last-child {
    border-bottom: none;
}

.process-num {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.process-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 8px;
}

.process-body p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.features-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.feature-pill {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue-800);
    box-shadow: var(--shadow-sm);
}

.cta-banner {
    background: linear-gradient(135deg, #061428 0%, #1348a0 100%);
    padding: 72px 0;
}

.cta-banner-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.cta-banner .btn-primary {
    display: inline-flex;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--blue-700);
    transition: gap 0.25s, color 0.25s;
}

.text-link:hover {
    color: var(--blue-600);
    gap: 10px;
}

.download-orb-1 {
    top: 20%;
    left: 10%;
}

.download-orb-2 {
    bottom: 0;
    right: 5%;
}

/* Legal pages */
.legal-section {
    padding-top: 60px;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px 56px;
    box-shadow: var(--shadow-md);
}

.legal-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-block h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.legal-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-800);
    margin: 20px 0 10px;
}

.legal-block p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.legal-block ol,
.legal-block ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-block li {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.legal-block a {
    color: var(--blue-700);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-list {
    list-style: none;
    padding-left: 0 !important;
}

.contact-list li {
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        position: static;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .legal-content {
        padding: 32px 24px;
    }

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