/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563EB;        /* electric blue */
    --primary-dark: #1D4ED8;
    --secondary: #84CC16;      /* lime */
    --accent: #84CC16;
    --dark: #0B1120;           /* ink */
    --darker: #070B16;         /* near-black bg */
    --light: #F7F9FC;
    --gray: #64748B;           /* slate */
    --gray-light: #94A3B8;
    --money: #84CC16;
    --gradient-1: linear-gradient(135deg, #2563EB 0%, #84CC16 100%);   /* blue→lime brand */
    --gradient-2: linear-gradient(135deg, #84CC16 0%, #15803D 100%);   /* lime→green */
    --gradient-3: linear-gradient(135deg, #38BDF8 0%, #2563EB 100%);   /* sky→blue */
    --gradient-4: linear-gradient(135deg, #6366F1 0%, #2563EB 100%);   /* indigo→blue */
    --gradient-5: linear-gradient(135deg, #84CC16 0%, #166534 100%);   /* lime→deep green */
    --gradient-6: linear-gradient(135deg, #F59E0B 0%, #84CC16 100%);   /* amber→lime */
    --fun-purple: #6366F1;
    --fun-blue: #2563EB;
    --fun-green: #84CC16;
    --fun-pink: #2563EB;
    --fun-orange: #F59E0B;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    background: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.navbar.scrolled { padding: 10px 0; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15); }

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.logo-icon {
    width: 40px; height: 40px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    animation: bounce 2s infinite;
}

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

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

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown > a { display: flex; align-items: center; gap: 6px; }
.dropdown > a::after { content: '▾'; font-size: 0.7em; opacity: 0.6; }
.dropdown-menu {
    position: absolute;
    top: 100%; left: 0;
    background: rgba(11, 17, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { margin: 0; }
.dropdown-menu a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    color: var(--gray-light);
    font-size: 0.9rem;
    white-space: nowrap;
    border-radius: 0;
}
.dropdown-menu a:hover { color: var(--light); background: rgba(255, 255, 255, 0.05); }
.dropdown-menu .svc-emoji { font-size: 1.1rem; }

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.mobile-menu-btn span {
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 6px 0 #1D4ED8, 0 10px 20px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 0 #1D4ED8, 0 15px 30px rgba(37, 99, 235, 0.5); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 2px 0 #1D4ED8, 0 5px 10px rgba(37, 99, 235, 0.4); }
.btn-secondary {
    background: white;
    color: var(--dark);
    box-shadow: 0 6px 0 #D1D8E0, 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-secondary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 0 #D1D8E0, 0 15px 30px rgba(0, 0, 0, 0.15); }
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-small { padding: 12px 24px; font-size: 0.9rem; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #F0F5FF 0%, #E6EFFE 50%, #F0FDF4 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(132, 204, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(56, 189, 248, 0.1) 0%, transparent 40%);
}
.hero-shape { position: absolute; border-radius: 50%; animation: float 6s ease-in-out infinite; }
.hero-shape-1 { width: 80px; height: 80px; background: var(--gradient-1); top: 20%; left: 10%; animation-delay: 0s; opacity: 0.6; }
.hero-shape-2 { width: 60px; height: 60px; background: var(--gradient-2); top: 60%; right: 15%; animation-delay: 2s; opacity: 0.6; }
.hero-shape-3 { width: 40px; height: 40px; background: var(--gradient-3); bottom: 30%; left: 20%; animation-delay: 4s; opacity: 0.6; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

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

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}
.badge-dot { width: 10px; height: 10px; background: var(--fun-green); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--dark);
}
.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Phone Dashboard Mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup {
    width: 320px; height: 660px;
    background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 40px;
    padding: 14px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15), 0 0 0 8px rgba(255,255,255,0.5), inset 0 2px 4px rgba(255,255,255,0.8);
    animation: phoneFloat 4s ease-in-out infinite;
    position: relative;
}
.phone-mockup::before {
    content: ''; position: absolute;
    top: 14px; left: 50%; transform: translateX(-50%);
    width: 110px; height: 22px;
    background: #070B16; border-radius: 0 0 14px 14px;
    z-index: 2;
}
@keyframes phoneFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-15px) rotate(2deg); } }
.phone-screen {
    width: 100%; height: 100%;
    background: linear-gradient(180deg, #0B1120 0%, #070B16 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 38px 16px 18px;
}
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash-greet { color: var(--gray-light); font-size: 0.75rem; }
.dash-name { color: white; font-size: 0.95rem; font-weight: 700; }
.dash-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--gradient-1); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.dash-balance {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 14px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}
.dash-balance-label { color: rgba(255,255,255,0.85); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.dash-balance-amount { color: white; font-size: 1.9rem; font-weight: 800; margin: 4px 0; }
.dash-balance-delta { color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 600; }
.dash-balance-delta .up { color: var(--fun-green); }
.dash-chart { display: flex; align-items: flex-end; gap: 6px; height: 56px; margin-bottom: 14px; padding: 0 4px; }
.dash-bar { flex: 1; background: linear-gradient(180deg, #84CC16, #65A30D); border-radius: 4px 4px 0 0; opacity: 0.9; animation: barGrow 1.2s ease-out; }
@keyframes barGrow { from { height: 0; } }
.dash-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.dash-stat { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 10px 12px; }
.dash-stat-label { color: var(--gray-light); font-size: 0.65rem; font-weight: 600; }
.dash-stat-val { color: white; font-size: 0.95rem; font-weight: 800; }
.dash-svc { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 10px; }
.dash-svc + .dash-svc { margin-top: 8px; }
.dash-svc-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.dash-svc-name { color: white; font-size: 0.75rem; font-weight: 600; flex: 1; }
.dash-svc-val { color: var(--fun-green); font-size: 0.75rem; font-weight: 800; }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); }
.mouse { width: 26px; height: 40px; border: 2px solid var(--gray); border-radius: 13px; display: flex; justify-content: center; padding-top: 8px; }
.wheel { width: 4px; height: 8px; background: var(--gray); border-radius: 2px; animation: scroll 1.5s infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }

/* Section shared */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
    display: inline-block; padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.02em; }
.section-subtitle { font-size: 1.1rem; color: var(--gray-light); }

/* Features */
.features { padding: 120px 0; background: linear-gradient(135deg, #A3E635 0%, #65A30D 100%); position: relative; overflow: hidden; }
.features::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.features .section-title, .features .section-subtitle { color: #0B1120; }
.features .section-subtitle { opacity: 0.8; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; position: relative; z-index: 1; }
.feature-card { padding: 40px 30px; background: white; border: none; border-radius: 24px; transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.feature-card:hover { transform: translateY(-10px) rotate(-2deg); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.feature-icon { width: 70px; height: 70px; background: var(--gradient-1); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 24px; font-size: 1.6rem; box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); animation: wiggle 3s ease-in-out infinite; }
@keyframes wiggle { 0%, 100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--dark); }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* Services (replaces products) */
.services-section { padding: 120px 0; position: relative; background: white; }
.services-section::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(132, 204, 22, 0.08) 0%, transparent 40%);
}
.services-section .section-title, .services-section .section-subtitle { color: var(--dark); }
.services-section .section-subtitle { opacity: 0.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.service-card {
    background: white;
    border: 3px solid transparent;
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--primary); box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2); }
.service-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.svc-1 { background: var(--gradient-1); }
.svc-2 { background: var(--gradient-2); }
.svc-3 { background: var(--gradient-3); }
.svc-4 { background: var(--gradient-4); }
.svc-5 { background: var(--gradient-5); }
.svc-6 { background: var(--gradient-6); }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 18px; line-height: 1.6; flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.service-tag { padding: 4px 12px; background: rgba(37, 99, 235, 0.08); color: var(--primary-dark); border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.service-link { color: var(--primary); font-weight: 700; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s ease; }
.service-link:hover { gap: 12px; }

/* Stats */
.stats { padding: 80px 0; background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 800; background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--gray-light); font-size: 0.95rem; margin-top: 8px; }

/* How It Works */
.how { padding: 120px 0; background: linear-gradient(135deg, #6366F1 0%, #2563EB 100%); position: relative; overflow: hidden; }
.how::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21-1.79 4-4 4-3.314 0-6 2.686-6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6 0-2.21 1.79-4 4-4 3.314 0 6-2.686 6-6 0-2.21-1.79-4-4-4v-2c3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21-1.79 4-4 4-3.314 0-6 2.686-6 6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.how .section-title { color: white; }
.how .section-subtitle { color: rgba(255,255,255,0.85); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.step-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}
.step-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.12); }
.step-num { width: 48px; height: 48px; margin: 0 auto 20px; border-radius: 50%; background: white; color: var(--fun-purple); font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-card h3 { color: white; font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* Testimonials */
.reviews { padding: 120px 0; background: var(--darker); }
.reviews .section-title { color: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { padding: 30px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; transition: all 0.3s ease; }
.review-card:hover { transform: translateY(-6px); border-color: rgba(37, 99, 235, 0.3); }
.review-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent); }
.review-text { color: var(--light); margin-bottom: 20px; line-height: 1.7; font-size: 0.98rem; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; background: var(--gradient-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: white; }
.reviewer .name { font-weight: 600; font-size: 0.95rem; color: var(--light); }
.reviewer .role { font-size: 0.82rem; color: var(--gray-light); }

/* CTA */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, #84CC16 0%, #15803D 100%); position: relative; overflow: hidden; }
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-box { background: white; border-radius: 40px; padding: 60px 40px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.2); position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-box h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; color: var(--dark); }
.cta-box p { font-size: 1.15rem; color: var(--gray); margin-bottom: 32px; }

/* About */
.about { padding: 120px 0; background: white; color: var(--dark); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content .section-tag { background: rgba(132, 204, 22, 0.14); color: #4D7C0F; }
.about-content h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.about-content > p { color: var(--gray); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-value { display: flex; gap: 12px; align-items: flex-start; }
.about-value-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gradient-2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.about-value h4 { font-size: 0.98rem; margin-bottom: 4px; }
.about-value p { font-size: 0.85rem; color: var(--gray); margin: 0; line-height: 1.5; }
.about-visual { position: relative; }
.about-img {
    border-radius: 28px; overflow: hidden;
    background: var(--gradient-1);
    aspect-ratio: 4/5;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
}
.about-emoji { font-size: 8rem; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2)); }
.about-float {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 10px;
    animation: float 5s ease-in-out infinite;
}
.about-float.f1 { top: 30px; left: -20px; }
.about-float.f2 { bottom: 40px; right: -20px; animation-delay: 2s; }
.about-float-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: white; }
.about-float-text { font-size: 0.8rem; font-weight: 700; color: var(--dark); }
.about-float-sub { font-size: 0.7rem; color: var(--gray); }

/* Contact */
.contact { padding: 120px 0; background: linear-gradient(135deg, #070B16 0%, #0B1120 100%); position: relative; overflow: hidden; }
.contact::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(132, 204, 22, 0.1) 0%, transparent 50%);
}
.contact .section-title { color: white; }
.contact .section-subtitle { color: var(--gray-light); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; position: relative; z-index: 1; }
.contact-info h3 { font-size: 1.6rem; color: white; margin-bottom: 16px; }
.contact-info > p { color: var(--gray-light); margin-bottom: 32px; line-height: 1.7; }
.contact-item { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.contact-item-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item-text { color: var(--gray-light); font-size: 0.95rem; }
.contact-item-text strong { color: white; display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-socials { display: flex; gap: 12px; margin-top: 32px; }
.contact-socials a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--gray-light); font-size: 1.1rem; transition: all 0.3s ease; }
.contact-socials a:hover { background: var(--gradient-1); color: white; transform: translateY(-4px); }

.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: var(--gray-light); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 16px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; color: white; font-family: inherit; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: rgba(255,255,255,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { color: var(--gray); font-size: 0.8rem; margin-top: 12px; text-align: center; }
.form-status { color: var(--fun-green); font-size: 0.9rem; text-align: center; margin-top: 12px; min-height: 1.2em; }

/* Footer */
.footer { padding: 80px 0 30px; background: linear-gradient(135deg, #0B1120 0%, #070B16 100%); position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--gradient-1); }
.footer-content { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { color: white; margin-bottom: 20px; }
.footer-brand p { color: var(--gray-light); margin: 20px 0; max-width: 320px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 1rem; margin-bottom: 20px; color: var(--light); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--gray-light); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--light); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; color: var(--gray); font-size: 0.9rem; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.68,-0.55,0.265,1.55); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin: 0 auto 40px; }
    .hero-cta { justify-content: center; }
    .hero-visual { margin-top: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .about .container, .contact .container { grid-template-columns: 1fr; }
    .about-visual { order: -1; max-width: 420px; margin: 0 auto; }
    .phone-mockup { width: 280px; height: 580px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: white; padding: 20px;
        gap: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        align-items: stretch;
    }
    .nav-links.open a { padding: 12px 16px; }
    .nav-links.open .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(0,0,0,0.03); border: none; box-shadow: none; padding: 0; margin-top: 4px; }
    .nav-links.open .dropdown-menu a { color: var(--gray); }
    .mobile-menu-btn { display: flex; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .stat-number { font-size: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .steps { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .about-values { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .phone-mockup { width: 250px; height: 520px; }
    .btn { padding: 12px 22px; font-size: 0.9rem; }
    .cta-box { padding: 40px 24px; }
    .footer-links { grid-template-columns: 1fr; }
    .about-float.f1 { left: 0; }
    .about-float.f2 { right: 0; }
}
