/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    --primary: #4F46E5;
    --primary-light: #818CF8;
    --primary-dark: #3730A3;
    --accent: #F97316;
    --accent-light: #FB923C;
    --accent-dark: #EA580C;
    --success: #10B981;
    --warning: #F59E0B;
    --dark: #0F172A;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;
    --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-hi: 'Noto Sans Devanagari', 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-en);
    color: var(--slate-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[data-lang="hi"] body {
    font-family: var(--font-hi);
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ========== LANGUAGE TOGGLE ========== */
.lang-hi { display: none; }
[data-lang="hi"] .lang-en { display: none; }
[data-lang="hi"] .lang-hi { display: inline; }

/* ========== LAYOUT ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ========== TYPOGRAPHY ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(79, 70, 229, 0.08);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.section-title.text-left {
    text-align: left;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--slate-600);
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-outline-light {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-size: 1.0625rem;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

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

.navbar.scrolled .nav-link {
    color: var(--slate-700);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
}

.navbar.scrolled .logo-text {
    color: var(--slate-900);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    transition: color var(--transition);
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}

.nav-link:hover {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all var(--transition);
    font-family: var(--font-hi);
}

.navbar.scrolled .lang-toggle {
    color: var(--slate-700);
    border-color: var(--slate-300);
}

.lang-toggle:hover {
    background: rgba(255,255,255,0.15);
}

.navbar.scrolled .lang-toggle:hover {
    background: var(--slate-100);
}

.nav-download {
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--slate-700);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #312E81 0%, #4F46E5 40%, #6366F1 70%, #818CF8 100%);
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: white;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 40%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #34D399;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #FCD34D 0%, #F97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

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

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

.trust-item svg {
    flex-shrink: 0;
}

/* Hero Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: var(--slate-900);
    border-radius: 40px;
    border: 3px solid var(--slate-700);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(255,255,255,0.1);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: var(--slate-900);
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    position: absolute;
    inset: 3px;
    background: var(--white);
    border-radius: 37px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 36px 16px 12px;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--slate-900);
}

.app-logo-sm {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
}

.app-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #C084FC, #818CF8);
    border-radius: 50%;
    margin-left: auto;
}

.app-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 12px 12px;
    padding: 10px 14px;
    background: var(--slate-100);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--slate-400);
}

.app-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 0 12px 12px;
}

.app-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.5625rem;
    color: var(--slate-600);
    font-weight: 500;
}

.cat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-plumber { background: #DBEAFE; }
.cat-electric { background: #FEF3C7; }
.cat-paint { background: #FCE7F3; }
.cat-carpenter { background: #D1FAE5; }

.app-card {
    margin: 0 12px 8px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

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

.worker-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    flex-shrink: 0;
}

.worker-avatar.avatar-2 {
    background: linear-gradient(135deg, #EC4899, #F43F5E);
}

.worker-info {
    flex: 1;
    min-width: 0;
}

.worker-name {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--slate-900);
}

.worker-skill {
    font-size: 0.5625rem;
    color: var(--slate-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.worker-rating {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--slate-900);
}

.star {
    color: var(--warning);
}

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

.distance {
    font-size: 0.5625rem;
    color: var(--slate-400);
}

.card-btn-app {
    font-size: 0.5625rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.app-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid var(--slate-200);
}

.nav-item-app {
    color: var(--slate-400);
    padding: 4px;
}

.nav-item-app.active {
    color: var(--primary);
}

/* Floating cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-800);
    white-space: nowrap;
}

.card-float-1 {
    top: 10%;
    right: -20px;
}

.card-float-2 {
    bottom: 25%;
    left: -30px;
}

.card-float-3 {
    bottom: 5%;
    right: -10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.anim-float {
    animation: float 4s ease-in-out infinite;
}

.anim-float-delay {
    animation: float 4s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========== STATS BAR ========== */
.stats-bar {
    padding: 40px 0;
    background: var(--white);
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-200);
}

/* ========== FEATURES GRID ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-ai { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.icon-verify { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.icon-location { background: rgba(249, 115, 22, 0.1); color: var(--accent); }
.icon-money { background: rgba(245, 158, 11, 0.1); color: var(--warning); }

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
}

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

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    position: relative;
    transition: all var(--transition);
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
}

.step-icon {
    width: 72px;
    height: 72px;
    background: rgba(79, 70, 229, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 20px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 80px;
    flex-shrink: 0;
}

/* ========== SPLIT SECTIONS (Workers / Employers) ========== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-section.reverse {
    direction: rtl;
}

.split-section.reverse > * {
    direction: ltr;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-1 { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.benefit-icon-2 { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.benefit-icon-3 { background: rgba(249, 115, 22, 0.1); color: var(--accent); }
.benefit-icon-4 { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.benefit-icon-5 { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.benefit-icon-6 { background: rgba(249, 115, 22, 0.1); color: var(--accent); }
.benefit-icon-7 { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.benefit-icon-8 { background: rgba(99, 102, 241, 0.1); color: var(--primary-light); }

.benefit-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Visual Cards */
.visual-card {
    position: relative;
}

.worker-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

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

.v-card-1 { transform: translateX(0); }
.v-card-2 { transform: translateX(20px); }
.v-card-3 { transform: translateX(40px); }

.v-card:hover { transform: translateX(8px); }

.v-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-900);
}

.v-card-sub {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-top: 2px;
}

.v-card-amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-left: auto;
    white-space: nowrap;
}

.v-card-amount.text-green {
    color: var(--success);
}

.v-card-stars {
    color: var(--warning);
    font-size: 0.875rem;
    margin-left: auto;
    letter-spacing: 1px;
}

/* Employer Visual */
.employer-visual {
    padding: 4px;
}

.emp-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.emp-header {
    padding: 16px 20px;
    background: var(--slate-50);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-200);
}

.emp-worker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--slate-100);
    transition: background var(--transition);
}

.emp-worker:last-child {
    border-bottom: none;
}

.emp-worker:hover {
    background: var(--slate-50);
}

.emp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366F1, #4F46E5);
    flex-shrink: 0;
}

.emp-av-2 {
    background: linear-gradient(135deg, #EC4899, #F43F5E);
}

.emp-av-3 {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.emp-info {
    flex: 1;
}

.emp-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--slate-900);
}

.emp-skill {
    font-size: 0.8125rem;
    color: var(--slate-500);
    margin-top: 2px;
}

.emp-skill .star, .emp-skill span.star {
    color: var(--warning);
}

.emp-verified {
    flex-shrink: 0;
}

/* For Employers section background */
.for-employers {
    background: var(--slate-50);
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-700);
    transition: all var(--transition);
    cursor: default;
}

.service-chip:hover {
    border-color: var(--primary-light);
    background: rgba(79, 70, 229, 0.04);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-emoji {
    font-size: 1.25rem;
}

/* ========== DOWNLOAD CTA ========== */
.download-cta {
    position: relative;
    background: linear-gradient(135deg, #312E81 0%, #4F46E5 50%, #6366F1 100%);
    text-align: center;
    overflow: hidden;
    padding: 100px 0;
}

.download-bg-shapes .dl-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: white;
}

.dl-shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -100px;
}

.dl-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.download-content p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.download-actions {
    margin-bottom: 20px;
}

.download-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
}

.dot-sep {
    opacity: 0.4;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--slate-900);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-links-group h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links-group a {
    font-size: 0.875rem;
    color: var(--slate-400);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: var(--slate-500);
}

.made-in {
    color: var(--slate-500);
}

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

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

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

    .hero-visual {
        display: none;
    }

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

    .split-section.reverse {
        direction: ltr;
    }

    .section-title.text-left {
        text-align: center;
    }

    .section-tag {
        display: block;
        text-align: center;
    }

    .split-visual {
        order: -1;
    }

    .v-card-1, .v-card-2, .v-card-3 {
        transform: translateX(0);
    }

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

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

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

    .nav-links .nav-link {
        color: var(--slate-700);
        padding: 12px 0;
        border-bottom: 1px solid var(--slate-100);
        width: 100%;
    }

    .nav-links .nav-link:last-child {
        border-bottom: none;
    }

    .nav-download {
        display: none;
    }

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

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

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

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

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .download-content h2 {
        font-size: 1.75rem;
    }

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

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

    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 24px;
    }

    .step-card {
        padding: 32px 20px;
    }

    .service-chip {
        padding: 10px 16px;
        font-size: 0.875rem;
    }

    .download-cta {
        padding: 60px 0;
    }

    .download-content h2 {
        font-size: 1.5rem;
    }
}
