/* ============================================
   iTIP — Global Styles & Design Tokens
   ============================================ */

:root {
    --primary: #FF6B35;
    --primary-dark: #e85420;
    --primary-light: rgba(255, 107, 53, 0.12);
    --secondary: #1A1A2E;
    --secondary-deep: #0f0f1a;
    --accent: #00C9A7;
    --accent-light: rgba(0, 201, 167, 0.12);
    --purple: #7C3AED;
    --neutral: #F4F4F8;
    --neutral-mid: #E8E8F0;
    --text-primary: #1A1A2E;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --white: #ffffff;
    --card-bg: #ffffff;
    --border: rgba(0, 0, 0, 0.07);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 25px rgba(255, 107, 53, 0.35);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

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

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.section-pad {
    padding: 100px 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #f97316, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: 16px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #f97316);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--neutral-mid);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 100px;
    padding: 4px;
    flex-shrink: 0;
}

.navbar.scrolled .lang-switcher {
    background: var(--neutral);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 100px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
    white-space: nowrap;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.lang-code {
    letter-spacing: 0.04em;
}

.lang-divider {
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, 0.1);
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header.light .section-label {
    background: rgba(255, 107, 53, 0.2);
    color: #ffd0be;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 1.4rem;
}

.logo-text {
    color: var(--secondary);
    letter-spacing: -0.03em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    margin-left: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #fdfbf7 0%, #fff5f0 50%, #f0fffe 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15), transparent 70%);
    top: -200px;
    left: -200px;
    animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.12), transparent 70%);
    bottom: -100px;
    right: 200px;
    animation: orb-float 10s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
    top: 40%;
    right: -100px;
    animation: orb-float 12s ease-in-out infinite 2s;
}

@keyframes orb-float {

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

    33% {
        transform: translate(30px, -20px);
    }

    66% {
        transform: translate(-20px, 30px);
    }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 60px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 201, 167, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 201, 167, 0);
    }
}

.hero-title {
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.store-badge-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Store badge links — no button bg, just hover effect */
.store-link {
    display: inline-block;
    transition: var(--transition);
}

.store-link:hover {
    transform: translateY(-3px) scale(1.04);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.trust-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.trust-label {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

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

.phone-mockup {
    position: relative;
    animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {

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

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

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1A1A2E;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 40px 80px rgba(26, 26, 46, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #2d2d44;
    border-radius: 3px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f8f9fe;
    border-radius: 30px;
    overflow: hidden;
}

.app-preview {
    padding: 28px 14px 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-greeting {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary);
}

.app-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), #f97316);
    border-radius: 50%;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-search-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--neutral-mid);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.65rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.app-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-primary);
}

.app-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.app-card {
    background: white;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.ac-img {
    font-size: 1.6rem;
}

.ac-info {
    flex: 1;
}

.ac-name {
    font-size: 0.68rem;
    font-weight: 700;
}

.ac-loc {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.ac-rate {
    font-size: 0.6rem;
    color: #F59E0B;
}

.ac-price {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.app-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 0 0;
    border-top: 1px solid var(--neutral-mid);
}

.abn-item {
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.4;
}

.abn-item.active {
    opacity: 1;
}

.phone-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 40px;
    background: rgba(26, 26, 46, 0.3);
    filter: blur(20px);
    border-radius: 50%;
}

/* ==== FLOATING CARDS ==== */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.fc-icon {
    font-size: 1.2rem;
}

.fc-title {
    font-size: 0.8rem;
    font-weight: 700;
}

.fc-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.fc-1 {
    top: 80px;
    left: -80px;
    animation: float-1 5s ease-in-out infinite;
}

.fc-2 {
    bottom: 120px;
    right: -60px;
    animation: float-2 6s ease-in-out infinite 1s;
}

@keyframes float-1 {

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

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

@keyframes float-2 {

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

    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 32px;
    background: var(--neutral);
    border-radius: var(--radius-xl);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: white;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(26, 26, 46, 0.06);
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.step-card h3 {
    margin-bottom: 12px;
    color: var(--secondary);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-top: 80px;
    flex-shrink: 0;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: -12px;
    color: var(--accent);
    font-size: 1rem;
}

/* ============================================
   FEATURES
   ============================================ */
.dark-section {
    background: var(--secondary);
}

.dark-section .section-label {
    background: rgba(255, 107, 53, 0.2);
    color: #ffd0be;
}

.dark-section h2 {
    color: white;
}

.dark-section p {
    color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    cursor: default;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--icon-color) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: white;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ============================================
   GUIDE CTA
   ============================================ */
.guide-cta {
    background: linear-gradient(160deg, var(--white) 0%, #fff5f0 100%);
}

.guide-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.guide-content .section-label {
    margin-bottom: 16px;
}

.guide-content h2 {
    margin-bottom: 16px;
}

.guide-content>p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.guide-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.guide-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.benefit-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-benefits strong {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.guide-benefits span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.guide-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 340px;
}

.guide-card-stack {
    position: relative;
    width: 320px;
    height: 280px;
}

.g-card {
    position: absolute;
    width: 280px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.gc-back {
    top: 0;
    left: 40px;
    transform: rotate(-5deg);
    opacity: 0.7;
}

.gc-front {
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 2px solid var(--primary-light);
}

.gc-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.gc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.gc-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #f97316);
    border-radius: 50%;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gc-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.gc-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.gc-stats {
    display: flex;
    justify-content: space-around;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 12px;
}

.gc-stat {
    text-align: center;
}

.gc-stat span {
    display: block;
    font-weight: 800;
    font-size: 1rem;
    color: var(--secondary);
}

.gc-stat {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.gc-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.gc-tag {
    background: var(--neutral);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================
   STATS
   ============================================ */
.orange-section {
    background: linear-gradient(135deg, var(--primary) 0%, #f97316 50%, #fbbf24 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--neutral);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
    flex: 0 0 calc(33.333% - 16px);
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    min-width: 0;
}

.testi-stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.testi-from {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
}

.testi-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neutral-mid);
    cursor: pointer;
    transition: var(--transition);
}

.testi-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   DOWNLOAD
   ============================================ */
.download {
    background: var(--secondary-deep);
}

.download .section-label {
    background: rgba(255, 107, 53, 0.2);
    color: #ffd0be;
}

h2.light {
    color: white;
}

p.light {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
}

.download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.download-content {}

.download-content h2.light {
    margin-bottom: 12px;
}

.download-content p.light {
    margin-bottom: 36px;
}

.download-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.store-btn {
    display: block;
    transition: var(--transition);
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-btn img {
    height: 50px;
    width: auto;
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qr-box {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--radius-sm);
    padding: 6px;
    flex-shrink: 0;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            #000 0px, #000 4px, white 4px, white 8px),
        repeating-linear-gradient(90deg,
            #000 0px, #000 4px, white 4px, white 8px);
    background-blend-mode: multiply;
    border-radius: 2px;
}

.qr-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.download-phones {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 400px;
}

.dl-phone {
    width: 180px;
    height: 320px;
    border-radius: 28px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: absolute;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.dl-phone-1 {
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), #f97316);
    transform: rotate(-8deg);
    z-index: 1;
}

.dl-phone-2 {
    right: 0;
    bottom: 30px;
    background: linear-gradient(135deg, var(--accent), #0891b2);
    transform: rotate(6deg);
    z-index: 2;
}

.dl-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dl-screen-content {
    text-align: center;
    color: white;
}

.dl-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.dl-screen-title {
    font-weight: 800;
    font-size: 1.1rem;
}

.dl-screen-sub {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 16px 0 24px;
    max-width: 280px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-transform: uppercase;
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links-group h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-store-mini {
    display: flex;
    gap: 12px;
    align-items: center;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-store-mini:hover {
    opacity: 0.8;
}

.footer-store-mini img {
    height: 28px;
    width: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

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

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

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

    .fc-1 {
        left: -20px;
    }

    .fc-2 {
        right: -20px;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        transform: none;
        margin-top: 0;
    }

    .step-connector::after {
        content: '↓';
        top: auto;
        bottom: -8px;
        right: -8px;
    }

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

    .guide-cta-inner {
        grid-template-columns: 1fr;
    }

    .guide-visual {
        display: none;
    }

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

    .download-inner {
        grid-template-columns: 1fr;
    }

    .download-phones {
        display: none;
    }

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

@media (max-width: 768px) {
    .section-pad {
        padding: 72px 0;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .testi-card {
        flex: 0 0 calc(100% - 0px);
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 1.3rem;
        gap: 40px;
        z-index: 999;
    }

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

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .fc-1 {
        display: none;
    }

    .fc-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .trust-divider {
        width: 40px;
        height: 1px;
    }

    .download-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}