/* ====================================
   RESET & BASE STYLES
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
    /* Color System - Dark Premium Tech */
    --lavender: #00D4FF;
    --sky-blue: #FFB800;
    --coral: #00D4FF;
    --mint: #00E5A0;
    --black: #0A0E17;
    --white: #FFFFFF;
    --gray-50: #0F1923;
    --gray-100: #151F2E;
    --gray-200: #1E2D42;
    --gray-300: #2A3F5A;
    --gray-600: #8899B0;
    --gray-800: #C5D0DE;
    --gray-900: #060A10;

    /* Brand Colors */
    --primary: #00D4FF;
    --secondary: #FFB800;
    --accent: #00E5A0;
    --surface: #0F1923;
    --surface-2: #151F2E;
    --surface-3: #1E2D42;
    --text-primary: #E8EDF3;
    --text-secondary: #8899B0;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-padding: 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ====================================
   TYPOGRAPHY
   ==================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ====================================
   NAVIGATION
   ==================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 1rem 0;
    transition: var(--transition-base);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.logo:hover .logo-icon {
    transform: scale(1.05);
}

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

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

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

.nav-cta {
    padding: 0.75rem 1.5rem;
    background: var(--coral);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ====================================
   STICKY CALL BUTTON
   ==================================== */
.sticky-call-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.sticky-call-btn:hover {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid var(--coral);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* ====================================
   MOBILE CALL BAR
   ==================================== */
.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.mobile-call-btn {
    width: 100%;
    padding: 16px;
    background: var(--coral);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.mobile-call-btn:active {
    transform: scale(0.98);
}

/* ====================================
   CALL MODAL
   ==================================== */
.call-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.3s ease;
}

.call-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.call-modal-content {
    background: var(--surface);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--surface-3);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.close-modal:hover {
    background: var(--primary);
    color: var(--black);
    transform: rotate(90deg);
}

.modal-inner {
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--lavender), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.icon-glow {
    position: absolute;
    inset: -8px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(16px);
}

.modal-inner h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--white);
}

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

.modal-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    background: var(--coral);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    margin-bottom: 16px;
}

.modal-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-glow,
.mega-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: btnGlow 3s infinite;
}

@keyframes btnGlow {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.modal-trust {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ====================================
   AUTO-POPUP MODAL
   ==================================== */
.auto-popup-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.4s ease;
}

.auto-popup-modal.active {
    display: flex;
}

.auto-popup-content {
    background: var(--surface);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--surface-3);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    line-height: 1;
}

.close-popup:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.auto-popup-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.2;
}

.popup-subtext {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.popup-phone {
    color: var(--coral);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.popup-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--coral);
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    margin-bottom: 16px;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.popup-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.4);
}

.popup-trust {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 16px;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.25rem;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-mega {
    padding: 24px 56px;
    font-size: 1.75rem;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.btn-mega:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn-conversion {
    padding: 20px 48px;
    font-size: 1.5rem;
    background: var(--coral);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.conversion-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--white);
    border-radius: inherit;
    animation: pulse 2s infinite;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 14, 23, 0.85) 0%,
            rgba(10, 14, 23, 0.80) 100%);
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(185, 179, 248, 0.1) 0%,
            rgba(138, 209, 255, 0.1) 50%,
            rgba(166, 240, 198, 0.1) 100%);
    z-index: -1;
}

.hero-ambient-shapes {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--lavender);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--sky-blue);
    top: 50%;
    right: -100px;
    animation-delay: 2s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--mint);
    bottom: -100px;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {

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

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

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

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

.hero-left {
    max-width: 600px;
}

.hero-right {
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.2), rgba(138, 209, 255, 0.2));
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lavender);
    margin-bottom: 24px;
    border: 1px solid rgba(185, 179, 248, 0.3);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card {
    background: rgba(15, 25, 35, 0.9);
    backdrop-filter: blur(20px);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 212, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lavender), var(--coral));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(185, 179, 248, 0.2);
}

.stat-large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--lavender), var(--coral));
    color: var(--white);
}

.stat-large .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-wide {
    grid-column: span 2;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-status {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--mint);
}

.status-pulse {
    width: 12px;
    height: 12px;
    background: var(--mint);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.status-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--mint);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gray-300);
    padding: 16px 38px;
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.hero-title {
    margin-bottom: 24px;
    text-align: left;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--coral);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--gray-600);
    text-align: left;
}

.hero-cta-group {
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-indicators span {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 500;
}

.disclosure-badge {
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--coral);
}

.disclosure-badge span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: floatCard 6s infinite ease-in-out;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
}

.floating-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.card-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--lavender), var(--sky-blue));
    border-radius: inherit;
    opacity: 0.2;
    filter: blur(30px);
    z-index: -1;
}

.card-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 80px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 100px;
    animation-delay: 4s;
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.status-dot.online {
    background: var(--mint);
    box-shadow: 0 0 12px var(--mint);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.card-content h4 {
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 0.875rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.rating span:first-child {
    font-size: 1.25rem;
}

.rating span:last-child {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ====================================
   PROBLEM SNAPSHOT SECTION
   ==================================== */
.problem-snapshot {
    padding: var(--section-padding) 0;
    background: var(--surface);
}

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

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.15), rgba(255, 77, 77, 0.15));
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lavender);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
}

.problem-cards-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card-new {
    position: relative;
    padding: 40px 32px;
    background: var(--surface-2);
    border-radius: var(--radius-xl);
    border: 2px solid var(--surface-3);
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.problem-featured {
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.08), rgba(138, 209, 255, 0.08));
    border: 2px solid var(--lavender);
}

.problem-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(185, 179, 248, 0.25);
    border-color: var(--coral);
}



.problem-icon-new {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--lavender), var(--coral));
    position: relative;
    z-index: 1;
}

.problem-icon-new::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--white);
    border-radius: 50%;
}

.problem-icon-new::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.icon-pulse {
    position: absolute;
    inset: -8px;
    border: 3px solid var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 0;
}

.problem-icon-new.icon-wifi::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300D4FF"><path d="M12 21l-8-8c4.4-4.4 11.6-4.4 16 0l-8 8zm0-4l-4-4c2.2-2.2 5.8-2.2 8 0l-4 4zm-8-8c6.6-6.6 17.4-6.6 24 0l-2 2c-5.5-5.5-14.5-5.5-20 0l-2-2z"/></svg>');
    background-color: var(--lavender);
}

.problem-icon-new.icon-outage::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300D4FF"><path d="M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z"/></svg>');
    background-color: var(--coral);
}

.problem-icon-new.icon-router::after {
    background-image: url('https://images.unsplash.com/photo-1606904825846-647eb07e5be2?w=100&q=80'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFB800"><path d="M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z"/><circle cx="6" cy="15" r="1"/><circle cx="18" cy="15" r="1"/></svg>');
    background-color: var(--sky-blue);
    background-blend-mode: overlay;
}

.problem-icon-new.icon-cable::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300E5A0"><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"/></svg>');
    background-color: var(--mint);
}

.problem-icon-new.icon-streaming::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300D4FF"><path d="M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>');
    background-color: var(--coral);
}

.problem-card-new h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.problem-card-new p {
    font-size: 1rem;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.card-footer {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.help-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(166, 240, 198, 0.2);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mint);
    border: 1px solid var(--mint);
}

.problem-card {
    position: relative;
    padding: 40px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.problem-card:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?w=600&q=80');
}

.problem-card:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=600&q=80');
}

.problem-card:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1606904825846-647eb07e5be2?w=600&q=80');
}

.problem-card:nth-child(4)::before {
    background-image: url('https://images.unsplash.com/photo-1593784991095-a205069470b6?w=600&q=80');
}

.problem-card:nth-child(5)::before {
    background-image: url('https://images.unsplash.com/photo-1522869635100-9f4c5e86aa37?w=600&q=80');
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lavender);
}

.problem-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.05), rgba(138, 209, 255, 0.05));
    border-radius: inherit;
    opacity: 0;
    transition: var(--transition-base);
}

.problem-card:hover .problem-card-bg {
    opacity: 1;
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--lavender), var(--sky-blue));
    position: relative;
}

.problem-icon::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--white);
    border-radius: 50%;
}

.problem-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.icon-wifi::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B9B3F8"><path d="M12 21l-8-8c4.4-4.4 11.6-4.4 16 0l-8 8zm0-4l-4-4c2.2-2.2 5.8-2.2 8 0l-4 4zm-8-8c6.6-6.6 17.4-6.6 24 0l-2 2c-5.5-5.5-14.5-5.5-20 0l-2-2z"/></svg>');
    background-color: var(--lavender);
}

.icon-outage::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF4D4D"><path d="M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42C17.99 7.86 19 9.81 19 12c0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.19 1.01-4.14 2.58-5.42L6.17 5.17C4.23 6.82 3 9.26 3 12c0 4.97 4.03 9 9 9s9-4.03 9-9c0-2.74-1.23-5.18-3.17-6.83z"/></svg>');
    background-color: var(--coral);
}

.icon-router::after {
    background-image: url('https://images.unsplash.com/photo-1606904825846-647eb07e5be2?w=100&q=80'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%238AD1FF"><path d="M20 6h-4V4c0-1.11-.89-2-2-2h-4c-1.11 0-2 .89-2 2v2H4c-1.11 0-2 .89-2 2v11c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2zM10 4h4v2h-4V4zm10 15H4V8h16v11z"/><circle cx="6" cy="15" r="1"/><circle cx="18" cy="15" r="1"/></svg>');
    background-color: var(--sky-blue);
    background-blend-mode: overlay;
}

.icon-cable::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A6F0C6"><path d="M21 3H3c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h5v2h8v-2h5c1.1 0 1.99-.9 1.99-2L23 5c0-1.1-.9-2-2-2zm0 14H3V5h18v12z"/></svg>');
    background-color: var(--mint);
}

.icon-streaming::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF4D4D"><path d="M10 16.5l6-4.5-6-4.5v9zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/></svg>');
    background-color: var(--coral);
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--white);
}

.problem-card p {
    font-size: 0.9375rem;
}

/* ====================================
   HOW WE HELP SECTION
   ==================================== */
.how-we-help {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(185, 179, 248, 0.05) 0%,
            rgba(138, 209, 255, 0.05) 50%,
            rgba(166, 240, 198, 0.05) 100%);
    z-index: -1;
}

.help-flow {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 900px;
    margin: 0 auto;
}

.help-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: flex-start;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lavender), var(--sky-blue));
    position: relative;
    transition: var(--transition-slow);
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: 12px;
    background: var(--white);
    border-radius: 50%;
}

.step-icon::after {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    z-index: 1;
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
}

.icon-understand::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23B9B3F8"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>');
}

.icon-guide::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%238AD1FF"><path d="M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5zM3 21.5h8v-8H3v8zm2-6h4v4H5v-4z"/></svg>');
}

.icon-assist::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23A6F0C6"><path d="M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z"/></svg>');
}

.connecting-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--lavender), var(--sky-blue));
    margin-top: 16px;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--white);
}

.step-content p {
    font-size: 1.125rem;
}

/* ====================================
   TRANSPARENCY SECTION
   ==================================== */
.transparency-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--gray-50);
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.transparency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.85);
    z-index: 0;
}

.ambient-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(185, 179, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 209, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.transparency-col {
    background: var(--surface-2);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.do-col {
    border-top: 4px solid var(--mint);
}

.dont-col {
    border-top: 4px solid var(--coral);
}

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

.header-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.do-icon {
    background: rgba(166, 240, 198, 0.2);
}

.dont-icon {
    background: rgba(255, 77, 77, 0.2);
}

.col-header h2 {
    font-size: 2rem;
    margin: 0;
}

.transparency-list {
    list-style: none;
}

.transparency-list li {
    padding: 16px 0;
    padding-left: 36px;
    font-size: 1.0625rem;
    color: var(--gray-600);
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}

.transparency-list li:last-child {
    border-bottom: none;
}

.transparency-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: var(--mint);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.transparency-list.negative li::before {
    content: '✕';
    background: var(--coral);
}

.independence-statement {
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.1), rgba(138, 209, 255, 0.1));
    padding: 40px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--lavender);
    position: relative;
    z-index: 1;
}

.independence-statement p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin: 0;
}

/* ====================================
   WHY INDEPENDENT SECTION
   ==================================== */
.why-independent {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-bg-blur {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(185, 179, 248, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(138, 209, 255, 0.15) 0%, transparent 40%);
    filter: blur(60px);
    z-index: -1;
}

.story-blocks {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.story-block.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.story-block.reverse .story-visual {
    order: 2;
}

.story-visual {
    position: relative;
}

.story-image {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(185, 179, 248, 0.3) 0%,
            rgba(138, 209, 255, 0.3) 100%);
    z-index: 1;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 20%;
    background:
        radial-gradient(circle,
            rgba(255, 255, 255, 0.3) 0%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 2;
}

.image-1 {
    background-image: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80');
}

.image-2 {
    background-image: url('https://images.unsplash.com/photo-1573164713714-d95e436ab8d6?w=800&q=80');
}

.image-3 {
    background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&q=80');
}

.story-content h3 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ====================================
   RAPID CTA SECTION
   ==================================== */
.rapid-cta {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.rapid-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.15), rgba(138, 209, 255, 0.15));
    z-index: -1;
}

.rapid-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 15s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--lavender);
    top: -200px;
    left: -200px;
    opacity: 0.4;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--sky-blue);
    bottom: -200px;
    right: -200px;
    opacity: 0.4;
    animation-delay: 3s;
}

.rapid-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.rapid-content>p {
    font-size: 1.375rem;
    margin-bottom: 48px;
}

.rapid-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.rapid-trust span {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--surface-2);
    border: 1px solid var(--surface-3);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--surface-3);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--lavender);
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 32px;
    font-size: 1.0625rem;
}

.faq-cta {
    text-align: center;
    font-size: 1.125rem;
}

.faq-cta a {
    color: var(--lavender);
    font-weight: 600;
    text-decoration: underline;
}

.faq-cta a:hover {
    color: var(--sky-blue);
}

/* ====================================
   CONVERSION FOOTER
   ==================================== */
.conversion-footer {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.conversion-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(185, 179, 248, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(138, 209, 255, 0.2) 0%, transparent 50%);
    z-index: 0;
}

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

.conversion-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.conversion-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 48px;
}

.conversion-features {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--gray-900, #0F1419);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--lavender);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-disclaimer {
    background: rgba(255, 77, 77, 0.1);
    border-left: 3px solid var(--coral);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

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

[data-animate="float"].animated {
    animation: floatSmooth 6s infinite ease-in-out;
}

@keyframes floatSmooth {

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

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

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

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

    .story-block,
    .story-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-block.reverse .story-visual {
        order: 0;
    }

    .help-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .connecting-line {
        display: none;
    }

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

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

    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-base);
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

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

    .mobile-menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(6px, 6px);
    }

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

    .mobile-menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-call-bar {
        display: block;
    }

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

    .hero-visual {
        display: none;
    }

    .problem-cards {
        grid-template-columns: 1fr;
    }

    .rapid-trust {
        flex-direction: column;
        gap: 16px;
    }

    .conversion-features {
        gap: 32px;
    }

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

    .call-modal-content {
        padding: 32px 24px;
    }

    .sticky-call-btn {
        bottom: 90px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .btn-mega {
        padding: 20px 40px;
        font-size: 1.25rem;
    }

    .transparency-col {
        padding: 32px 24px;
    }

    .story-image {
        height: 280px;
    }
}

/* ====================================
   PAGE-SPECIFIC STYLES
   ==================================== */

/* Page Hero */
.page-hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 14, 23, 0.92) 0%,
            rgba(10, 14, 23, 0.88) 100%);
    z-index: 0;
}

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

.page-hero-content h1 {
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero-content p {
    font-size: 1.375rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* Simple Process Section */
.simple-process {
    padding: var(--section-padding) 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--lavender), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 20px;
}

.step-illustration {
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
    border-radius: 50%;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.ill-1 {
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?w=400&q=80');
}

.ill-2 {
    background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?w=400&q=80');
}

.ill-3 {
    background-image: url('https://images.unsplash.com/photo-1556155092-8707de31f9c4?w=400&q=80');
}

.step-illustration::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.4), rgba(138, 209, 255, 0.4));
    border-radius: 50%;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

/* Different Section */
.different-section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.different-card {
    background: var(--surface-2);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-3);
    transition: var(--transition-base);
}

.different-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lavender);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--lavender), var(--sky-blue));
    background-size: cover;
    background-position: center;
    position: relative;
}

.icon-independent {
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=200&q=80');
}

.icon-human {
    background-image: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=200&q=80');
}

.icon-fast {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=200&q=80');
}

.icon-transparent {
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=200&q=80');
}

.icon-flexible {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=200&q=80');
}

.icon-ongoing {
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=200&q=80');
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.7), rgba(138, 209, 255, 0.7));
    border-radius: inherit;
}

.different-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
}

/* Issues Section */
.issues-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
    background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.issues-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(249, 250, 251, 0.92);
    z-index: 0;
}

.issues-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.issue-category {
    background: var(--surface-2);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.issue-category h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.issue-category ul {
    list-style: none;
}

.issue-category ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray-600);
    font-size: 1.0625rem;
}

.issue-category ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--lavender);
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.pricing-info {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.pricing-card {
    background: var(--surface-2);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.pricing-features .feature {
    color: var(--gray-600);
    font-weight: 500;
}

.pricing-cta {
    text-align: center;
}

.pricing-cta p {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

/* Contact Form Styles */
.contact-section {
    padding: var(--section-padding) 0;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
}

.contact-form {
    background: var(--surface-2);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--surface-3);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--surface);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--lavender);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-card {
    background: var(--surface-2);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-3);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.info-card p {
    margin-bottom: 8px;
}

.info-card a {
    color: var(--lavender);
    font-weight: 600;
}

/* About Page Styles */
.mission-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.85);
    z-index: 0;
}

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

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 24px;
}

.mission-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    padding: var(--section-padding) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 40px 32px;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--lavender), var(--sky-blue));
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(185, 179, 248, 0.8), rgba(138, 209, 255, 0.8));
    border-radius: 50%;
}

.values-grid .value-card:nth-child(1) .value-icon {
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=200&q=80');
}

.values-grid .value-card:nth-child(2) .value-icon {
    background-image: url('https://images.unsplash.com/photo-1556761223-4978e0a7e05f?w=200&q=80');
}

.values-grid .value-card:nth-child(3) .value-icon {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=200&q=80');
}

.values-grid .value-card:nth-child(4) .value-icon {
    background-image: url('https://images.unsplash.com/photo-1556761175-4b46a572b786?w=200&q=80');
}

.values-grid .value-card:nth-child(5) .value-icon {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=200&q=80');
}

.values-grid .value-card:nth-child(6) .value-icon {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=200&q=80');
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Legal Pages */
.legal-content {
    padding: var(--section-padding) 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--lavender);
    color: var(--black);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--gray-800);
}

.legal-content p {
    margin-bottom: 20px;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content li {
    margin-bottom: 12px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.legal-content strong {
    color: var(--black);
    font-weight: 600;
}

.legal-disclaimer {
    background: rgba(185, 179, 248, 0.1);
    border-left: 4px solid var(--lavender);
    padding: 24px;
    border-radius: var(--radius-md);
    margin: 40px 0;
}

.legal-disclaimer p {
    margin-bottom: 0;
    font-weight: 500;
}

.page-hero {
    padding: 140px 0 80px;
    background-image: url('https://images.unsplash.com/photo-1451187580459-434902790fa?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 14, 23, 0.92) 0%,
            rgba(10, 14, 23, 0.88) 100%);
    z-index: 0;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.page-hero-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Responsive for new pages */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-stats-grid {
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

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

    .pricing-info {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-badge {
        display: block;
        text-align: center;
    }

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

    .btn-large {
        width: 100%;
        max-width: 400px;
    }

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

    .problem-cards-masonry {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .problem-card-new {
        padding: 32px 24px;
    }

    .stat-large,
    .stat-wide {
        grid-column: span 2;
    }

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

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