@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES — FUTURISTIC SYSTEM ===== */
:root {
    /* Primary Blues */
    --primary: #0066CC;
    --primary-dark: #004499;
    --primary-light: #3399ff;
    --cyan: #00d4ff;
    --cyan-dim: rgba(0, 212, 255, 0.15);

    /* Accent */
    --accent: #FF6B35;
    --accent-glow: rgba(255, 107, 53, 0.4);

    /* Dark Palette */
    --dark: #0a0e1a;
    --dark-soft: #111827;
    --dark-card: #1a1f35;
    --dark-border: rgba(255, 255, 255, 0.06);

    /* Light Palette */
    --light: #f0f4f8;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #9ca3af;

    /* Glow & Glass */
    --glow-blue: rgba(0, 102, 204, 0.35);
    --glow-cyan: rgba(0, 212, 255, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg-light: rgba(255, 255, 255, 0.7);
    --glass-border-light: rgba(255, 255, 255, 0.5);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #0d1b3e 40%, #111827 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e1a 0%, #111827 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--cyan) 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff9a5c 100%);
    --gradient-section: linear-gradient(180deg, #f0f4f8 0%, #e8edf5 100%);

    /* Shadows */
    --shadow-glow-sm: 0 0 15px rgba(0, 102, 204, 0.15);
    --shadow-glow-md: 0 0 30px rgba(0, 102, 204, 0.2);
    --shadow-glow-lg: 0 8px 40px rgba(0, 102, 204, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 12px 48px rgba(0, 102, 204, 0.15);
}

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

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

html { scroll-behavior: smooth; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--cyan), var(--primary), transparent);
    opacity: 0.5;
}

.nav.scrolled {
    background: rgba(10, 14, 26, 0.95);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

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

.nav-links > li { position: relative; }

.nav-links > li > a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
    font-size: 15px;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links > li > a:hover {
    color: var(--white);
    text-shadow: 0 0 20px var(--glow-cyan);
}

.nav-links > li > a:hover::after { width: 100%; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-toggle { cursor: pointer; }
.dropdown-toggle::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle::before {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow-sm);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--cyan);
    padding-left: 28px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HERO (PARTICLE NETWORK) ===== */
.hero {
    background: var(--gradient-hero);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Gradient mesh overlay — layer 1 (bottom) */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Animated grid lines — layer 2 */
.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(90deg, rgba(0, 102, 204, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 102, 204, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridDrift 30s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Canvas for particle network — layer 3 (most visible) */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

/* Floating geometric shapes — layer 4 */
.hero-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 4;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
}

.hero-shape:nth-child(1) {
    width: 300px; height: 300px;
    background: var(--primary);
    top: 10%; right: 10%;
    animation: float1 20s ease-in-out infinite;
}

.hero-shape:nth-child(2) {
    width: 200px; height: 200px;
    background: var(--cyan);
    bottom: 20%; left: 5%;
    animation: float2 25s ease-in-out infinite;
}

.hero-shape:nth-child(3) {
    width: 150px; height: 150px;
    background: var(--accent);
    top: 60%; right: 25%;
    animation: float3 18s ease-in-out infinite;
}

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

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.1); }
    66% { transform: translate(-15px, 25px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -25px); }
}

/* Page hero (shorter, for inner pages) */
.page-hero {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 102, 204, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(90deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 102, 204, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 0;
}

.page-hero .container { position: relative; z-index: 5; }

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-hero h1 span { color: var(--accent); }

.page-hero .subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 8px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 204, 0.1); }
    50% { box-shadow: 0 0 40px rgba(0, 102, 204, 0.25); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    padding-top: 120px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 76px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 60px rgba(0, 102, 204, 0.3);
}

.hero h1 span {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.7;
}

/* ===== BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow-blue), 0 0 20px var(--glow-cyan);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cyan);
    color: var(--white);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow), 0 0 20px rgba(255, 107, 53, 0.3);
}

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

.btn-outline:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 20px var(--glow-blue);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-full { width: 100%; text-align: center; }

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat {
    text-align: center;
    padding: 28px 20px;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat:hover {
    background: rgba(0, 102, 204, 0.08);
    border-color: rgba(0, 102, 204, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-sm);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 44px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

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

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

.section-gray {
    background: var(--gradient-section);
    position: relative;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle mesh on dark sections */
.section-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0, 102, 204, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-dark .section-tag { color: var(--cyan); }
.section-dark .section-tag::after { background: var(--gradient-accent); }

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-dark .section-title { color: var(--white); }

.section-description {
    font-size: 19px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-dark .section-description { color: rgba(255, 255, 255, 0.65); }

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0.3;
    transition: opacity 0.4s;
}

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(0, 102, 204, 0.15);
}

.card-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: inline-block;
}

/* Lucide SVG icon sizing */
.card-icon svg { width: 44px; height: 44px; stroke: var(--accent); stroke-width: 1.5; }
.pain-point-icon svg { width: 24px; height: 24px; stroke: var(--accent); stroke-width: 2; }
.contact-item-icon svg { width: 28px; height: 28px; stroke: var(--accent); stroke-width: 1.75; }
.guarantee-icon svg { width: 48px; height: 48px; stroke: var(--accent); stroke-width: 1.5; }

/* Dark section icon contrast */
.section-dark .card-icon svg,
.section-dark .pain-point-icon svg { stroke: var(--cyan); }

.card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.card-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 15px;
}

.card-link:hover {
    color: var(--cyan);
    gap: 12px;
}

.card-link::after { content: '\2192'; transition: transform 0.3s; }
.card-link:hover::after { transform: translateX(4px); }

/* Dark card variant */
.card-dark {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    box-shadow: none;
}

.card-dark::before {
    background: var(--gradient-accent);
    opacity: 0;
}

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

.card-dark:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow-sm);
    background: rgba(26, 31, 53, 0.8);
}

.card-dark .card-title { color: var(--white); }
.card-dark .card-text { color: rgba(255, 255, 255, 0.55); }

/* ===== PRICING TIERS ===== */
.tier {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.tier::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.tier:hover::before { opacity: 1; }

.tier:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.tier.featured {
    border: 2px solid rgba(0, 102, 204, 0.3);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.02) 0%, var(--white) 100%);
    box-shadow: var(--shadow-glow-sm);
}

.tier.featured::before {
    opacity: 1;
    height: 4px;
}

.tier-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-accent);
    color: white;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.tier-name {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tier-price {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.tier-price span {
    font-size: 20px;
    -webkit-text-fill-color: var(--gray);
    font-weight: 400;
}

.tier-setup {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

.tier-features {
    list-style: none;
    margin-bottom: 40px;
}

.tier-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--dark);
}

.tier-features li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    background: rgba(0, 102, 204, 0.08);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    margin-top: 1px;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 64px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    margin-bottom: 20px;
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
}

/* ===== BENEFITS ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.benefit {
    display: flex;
    gap: 25px;
    padding: 30px;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit:hover {
    background: rgba(0, 102, 204, 0.06);
    border-color: rgba(0, 102, 204, 0.15);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 44px;
    flex-shrink: 0;
}
.benefit-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--cyan);
    stroke-width: 1.5;
}

.benefit-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    font-size: 28px;
    color: var(--primary);
}

.contact-item-content h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-item-content p { color: var(--gray); }

.contact-item-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-item-content a:hover { color: var(--cyan); }

.contact-form {
    background: var(--gradient-section);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.form-group { margin-bottom: 25px; }

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 15px var(--glow-blue);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-blue);
}

.form-success {
    display: none;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #065f46;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-success.show { display: block; }

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #003d7a 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.cta-section p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-section .btn-accent {
    font-size: 20px;
    padding: 22px 50px;
}

/* ===== ENTERPRISE SECTION ===== */
.enterprise-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.enterprise-card {
    background: var(--glass-bg);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glow-sm);
}

.enterprise-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-card .subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.enterprise-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
    margin-bottom: 40px;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.enterprise-features li::before {
    content: '\2713';
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    background: rgba(255, 107, 53, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.enterprise-price {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.enterprise-price span {
    font-size: 40px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enterprise-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin-bottom: 30px;
}

/* ===== FEATURE COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    background: var(--dark);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

.comparison-table th:first-child { text-align: left; }
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:hover td { background: rgba(0, 102, 204, 0.03); }

.check { color: var(--primary); font-weight: 700; font-size: 18px; }
.cross { color: #ddd; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-item:hover { border-color: rgba(0, 102, 204, 0.2); }
.faq-item.active { border-color: rgba(0, 102, 204, 0.3); box-shadow: var(--shadow-glow-sm); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 17px;
    background: var(--white);
    transition: all 0.3s;
}

.faq-question:hover { background: rgba(0, 102, 204, 0.02); }

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    color: var(--gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

/* ===== GUARANTEE BADGE ===== */
.guarantee-badge {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06), rgba(0, 212, 255, 0.04));
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 700px;
    margin: 40px auto;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.guarantee-badge:hover {
    box-shadow: var(--shadow-glow-sm);
    border-color: rgba(0, 102, 204, 0.35);
}

.guarantee-icon { font-size: 48px; flex-shrink: 0; }

.guarantee-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--primary);
}

.guarantee-text p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===== LOGO BAR ===== */
.logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 0;
    opacity: 0.5;
}

.logo-bar span {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.logo-bar span:hover { opacity: 1; }

/* ===== INDUSTRY STATS BAR ===== */
.stat-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.stat-bar-item {
    text-align: center;
    padding: 24px;
    background: rgba(0, 102, 204, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.08);
    transition: all 0.3s;
}

.stat-bar-item:hover {
    background: rgba(0, 102, 204, 0.06);
    border-color: rgba(0, 102, 204, 0.15);
}

.stat-bar-number {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-bar-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 8px;
}

/* ===== PAIN POINTS ===== */
.pain-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pain-point {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
    box-shadow: var(--shadow-card);
    transition: all 0.3s;
}

.pain-point:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-card-hover);
}

.pain-point-icon { font-size: 24px; flex-shrink: 0; }

.pain-point h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.pain-point p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== SUBURBS LIST ===== */
.suburbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.suburbs-grid span {
    padding: 10px 16px;
    background: rgba(0, 102, 204, 0.04);
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.suburbs-grid span:hover {
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary);
}

/* ===== PLACEHOLDER / COMING SOON ===== */
.placeholder-box {
    background: var(--gradient-section);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.placeholder-box h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--dark);
}

.placeholder-box p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.metrics-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.metric-box {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    opacity: 0.4;
}

.metric-box .metric-number {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.metric-box .metric-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--cyan), var(--primary), transparent);
    opacity: 0.4;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-about a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 10px; }

.footer-section a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.footer-bottom a:hover { color: var(--cyan); }

/* ===== SCROLL REVEAL CLASSES ===== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .card-grid,
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .enterprise-features { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .suburbs-grid { grid-template-columns: repeat(3, 1fr); }
}

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

    .hero h1 { font-size: 44px; }
    .hero .subtitle { font-size: 18px; }
    .page-hero h1 { font-size: 36px; }

    .section { padding: 70px 0; }
    .section-title { font-size: 36px; }
    .cta-section h2 { font-size: 36px; }

    .card-grid,
    .card-grid-4,
    .card-grid-2,
    .process-steps,
    .benefits-grid,
    .pain-points,
    .stat-bar,
    .stats { grid-template-columns: 1fr; }

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

    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    /* Mobile nav open state */
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 40px;
        border-top: 1px solid var(--glass-border);
        gap: 0;
    }

    .nav-links.open > li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }

    .nav-links.open .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 8px;
        box-shadow: none;
        background: rgba(255,255,255,0.02);
        border: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons .btn { width: 100%; text-align: center; }
    .contact-form { padding: 30px 20px; }
    .enterprise-card { padding: 40px 24px; }
    .guarantee-badge { flex-direction: column; text-align: center; }
    .suburbs-grid { grid-template-columns: repeat(2, 1fr); }
    .metrics-preview { grid-template-columns: 1fr; }
    .comparison-table { font-size: 14px; }
    .comparison-table th, .comparison-table td { padding: 10px 8px; }

    /* Reduce animations on mobile */
    .hero-shape { display: none; }

    .benefit {
        padding: 20px;
    }

    .benefit:hover {
        transform: none;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1;
        transform: none;
    }
}
