/* ===================================
   DARK LUXURY CABLE & INTERNET CAMPAIGN
   Pure CSS, No Frameworks
   =================================== */

/* CSS Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --dark-bg: #06060B;
    --gold-primary: #E6B65C;
    --gold-glow: #FFD777;
    --white: #FFFFFF;
    --muted-text: #A1A1AA;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--muted-text);
    font-size: 1.0625rem;
    line-height: 1.7;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--gold-glow);
}

.gold-text {
    color: var(--gold-primary);
    display: inline-block;
}

.overline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

/* ===================================
   NAVIGATION
   =================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 6, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--muted-text);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(230, 182, 92, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 182, 92, 0.35);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-smooth);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(230, 182, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 119, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, #0a0a12 100%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-subtext {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--muted-text);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-disclaimer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 100px;
    margin-bottom: 40px;
    font-size: 0.875rem;
    color: var(--muted-text);
}

.disclaimer-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.primary-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-bg);
    border: none;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(230, 182, 92, 0.3);
    letter-spacing: 0.02em;
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(230, 182, 92, 0.45);
}

.trust-line {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: var(--muted-text);
}

.trust-item svg {
    flex-shrink: 0;
}

/* Hero Image Section */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero-image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 6, 11, 0.3) 0%, rgba(230, 182, 92, 0.15) 100%);
    pointer-events: none;
}

.hero-stats {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    min-width: 140px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-text);
}

/* ===================================
   TOP BAR & ENHANCED NAVIGATION V2
   =================================== */

.top-bar {
    background: linear-gradient(135deg, rgba(230, 182, 92, 0.1), rgba(255, 215, 119, 0.05));
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    font-size: 0.875rem;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left {
    color: var(--muted-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-phone {
    color: var(--gold-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.top-bar-phone:hover {
    color: var(--gold-glow);
}

/* Enhanced Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* Active Nav State */
.nav-menu a.active {
    color: var(--gold-primary);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-primary);
}

/* Enhanced Nav CTA with Icon */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta svg {
    width: 18px;
    height: 18px;
}

/* ===================================
   HERO SECTION V2
   =================================== */

.hero-section-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 160px 0 100px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(230, 182, 92, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 119, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--dark-bg) 0%, #0a0a12 100%);
    z-index: 0;
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-container-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-content-v2 {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid rgba(230, 182, 92, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-headline-v2 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.3rem);
    color: var(--muted-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.primary-cta-v2 {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-bg);
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 32px rgba(230, 182, 92, 0.3);
    letter-spacing: 0.01em;
}

.primary-cta-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(230, 182, 92, 0.45);
}

.primary-cta-v2 svg {
    width: 20px;
    height: 20px;
}

.secondary-cta-v2 {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--glass-border);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.secondary-cta-v2:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.secondary-cta-v2 svg {
    width: 18px;
    height: 18px;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-main {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(6, 6, 11, 0.2) 0%, rgba(230, 182, 92, 0.1) 100%);
    pointer-events: none;
}

.hero-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(6, 6, 11, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--dark-bg);
}

.floating-card-content {
    flex: 1;
}

.floating-card-label {
    font-size: 0.875rem;
    color: var(--muted-text);
    display: block;
    margin-bottom: 4px;
}

.floating-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.hero-disclaimer-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--muted-text);
}

.hero-disclaimer-v2 svg {
    width: 14px;
    height: 14px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* ===================================
   TRUST SECTION
   =================================== */

.trust-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(230, 182, 92, 0.02) 0%, transparent 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.trust-badge {
    text-align: center;
    padding: 24px;
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(230, 182, 92, 0.1), rgba(255, 215, 119, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-primary);
}

.trust-badge-text {
    text-align: center;
}

.trust-badge-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.trust-badge-desc {
    font-size: 0.9375rem;
    color: var(--muted-text);
    line-height: 1.5;
}

/* ===================================
   STATISTICS SHOWCASE
   =================================== */

.stats-showcase {
    padding: 100px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9375rem;
    color: var(--muted-text);
    line-height: 1.5;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-overline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
    position: relative;
    padding: 0 24px;
}

.section-overline::before,
.section-overline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 1px;
    background: var(--gold-primary);
}

.section-overline::before {
    left: 0;
}

.section-overline::after {
    right: 0;
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-text);
    line-height: 1.7;
    margin-top: 16px;
}

/* ===================================
   CONVERSION PANEL V2
   =================================== */

.conversion-panel-v2 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.conversion-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 182, 92, 0.05), rgba(255, 215, 119, 0.02));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.conversion-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 182, 92, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.conversion-content-v2 {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.conversion-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(230, 182, 92, 0.3);
}

.conversion-icon svg {
    width: 40px;
    height: 40px;
    color: var(--dark-bg);
}

.conversion-content-v2 h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.conversion-subtitle {
    font-size: 1.125rem;
    color: var(--muted-text);
    margin-bottom: 40px;
    line-height: 1.7;
}

.conversion-cta-wrapper {
    margin-bottom: 24px;
}

.mega-cta-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-bg);
    padding: 24px 40px;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 12px 48px rgba(230, 182, 92, 0.35);
    min-width: 400px;
}

.mega-cta-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 64px rgba(230, 182, 92, 0.5);
}

.mega-cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.mega-cta-label {
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mega-cta-phone {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.mega-cta-v2 svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.conversion-disclaimer-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--muted-text);
}

.conversion-disclaimer-v2 svg {
    width: 14px;
    height: 14px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* ===================================
   PROCESS GRID (How It Works)
   =================================== */

.how-it-works-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(230, 182, 92, 0.02) 50%, transparent 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-glow));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 182, 92, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
}

.process-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 28px;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(230, 182, 92, 0.15), rgba(255, 215, 119, 0.1));
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, rgba(230, 182, 92, 0.25), rgba(255, 215, 119, 0.15));
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.process-icon svg {
    color: var(--gold-primary);
}

.process-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(230, 182, 92, 0.3);
}

.process-content {
    text-align: center;
}

.process-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.process-content p {
    font-size: 1rem;
    color: var(--muted-text);
    line-height: 1.7;
}

/* ===================================
   PROBLEM STACK
   =================================== */

.problem-stack {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 64px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(230, 182, 92, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.problem-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.problem-card:hover .problem-image img {
    transform: scale(1.1);
}

.problem-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(230, 182, 92, 0.95), rgba(255, 215, 119, 0.95));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 182, 92, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    box-shadow: 0 4px 16px rgba(230, 182, 92, 0.4);
}

.problem-content {
    padding: 32px 28px;
}

.problem-card h3 {
    font-size: 1.375rem;
    margin-bottom: 12px;
    color: var(--white);
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */

.how-it-works-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(230, 182, 92, 0.02) 50%, transparent 100%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-primary), rgba(230, 182, 92, 0.2));
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s ease forwards;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -80px;
    top: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--dark-bg);
    box-shadow: 0 4px 16px rgba(230, 182, 92, 0.4);
}

.timeline-content h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
    color: var(--white);
}

.timeline-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ===================================
   SCOPE SECTION (What We Do/Don't)
   =================================== */

.scope-section {
    padding: var(--section-padding) 0;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.scope-column h2 {
    font-size: 2rem;
    margin-bottom: 32px;
}

.what-we-do h2 {
    color: var(--gold-primary);
}

.what-we-dont h2 {
    color: var(--muted-text);
}

.scope-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.scope-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.0625rem;
}

.scope-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.compliance-notice {
    margin-top: 40px;
    background: rgba(230, 182, 92, 0.05);
    border: 1px solid rgba(230, 182, 92, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.compliance-notice svg {
    color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.compliance-notice p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.compliance-notice strong {
    color: var(--white);
}

/* ===================================
   WHY INDEPENDENT SECTION
   =================================== */

.why-independent {
    padding: var(--section-padding) 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(230, 182, 92, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(6, 6, 11, 0.8) 100%);
}

.editorial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.overline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.editorial-headline {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 32px;
    line-height: 1.2;
}

.editorial-text {
    margin-bottom: 40px;
}

.editorial-text p {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.editorial-text p:last-child {
    margin-bottom: 0;
}

.secondary-cta {
    background: none;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.secondary-cta:hover {
    background: var(--gold-primary);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* ===================================
   CONVERSION PANEL
   =================================== */

.conversion-panel {
    padding: var(--section-padding) 0;
    background: 
        linear-gradient(135deg, rgba(230, 182, 92, 0.1) 0%, rgba(255, 215, 119, 0.05) 100%),
        var(--dark-bg);
}

.conversion-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.95);
    animation: zoomIn 0.8s ease forwards;
}

.conversion-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.conversion-content > p {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.mega-cta {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    border: none;
    border-radius: 16px;
    padding: 48px 64px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 16px 64px rgba(230, 182, 92, 0.3);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 400px;
}

.mega-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(230, 182, 92, 0.45);
}

.mega-cta-text {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--dark-bg);
    text-transform: uppercase;
}

.mega-cta-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    letter-spacing: -0.02em;
}

.conversion-disclaimer {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--muted-text);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--section-padding) 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:hover {
    border-color: rgba(230, 182, 92, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-icon {
    color: var(--gold-primary);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 24px 28px;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    margin-top: 64px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.faq-cta p {
    font-size: 1.125rem;
}

.faq-cta a {
    font-weight: 600;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(230, 182, 92, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, var(--dark-bg) 0%, #0a0a12 100%);
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.final-cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.final-cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 48px;
}

/* ===================================
   FOOTER
   =================================== */

.main-footer {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #030305 100%);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
    font-weight: 600;
}

.footer-column p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul a {
    color: var(--muted-text);
    font-size: 0.9375rem;
    transition: var(--transition-smooth);
}

.footer-column ul a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-disclaimer {
    background: rgba(230, 182, 92, 0.05);
    border: 1px solid rgba(230, 182, 92, 0.15);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--gold-primary);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.footer-legal p {
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 0.875rem;
    color: var(--muted-text);
}

/* ===================================
   FLOATING CALL BUTTON
   =================================== */

.floating-call-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(230, 182, 92, 0.4);
    transition: var(--transition-smooth);
    z-index: 999;
    animation: pulse 2s ease infinite;
}

.floating-call-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 48px rgba(230, 182, 92, 0.6);
}

.floating-call-btn svg {
    color: var(--dark-bg);
}

/* ===================================
   MOBILE CALL BAR
   =================================== */

.mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    padding: 16px;
    z-index: 998;
    display: none;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: none;
    border: none;
    color: var(--dark-bg);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.mobile-call-btn svg {
    flex-shrink: 0;
}

/* ===================================
   CALL MODAL
   =================================== */

.call-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 11, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.call-modal.active {
    display: flex;
    opacity: 1;
}

.call-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    backdrop-filter: blur(20px);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.call-modal.active .call-modal-content {
    transform: scale(1);
}

.call-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--muted-text);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-smooth);
}

.call-modal-close:hover {
    color: var(--white);
    transform: rotate(90deg);
}

.call-modal-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, rgba(230, 182, 92, 0.2), rgba(255, 215, 119, 0.2));
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--gold-primary);
}

.call-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.call-modal-content > p {
    font-size: 1rem;
    margin-bottom: 32px;
}

.call-modal-number {
    display: inline-block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold-primary);
    text-decoration: none;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    transition: var(--transition-smooth);
}

.call-modal-number:hover {
    color: var(--gold-glow);
    transform: scale(1.05);
}

.call-modal-disclaimer {
    font-size: 0.875rem;
    color: var(--muted-text);
    margin: 0;
}

/* ===================================
   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 zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(230, 182, 92, 0.4);
    }
    50% {
        box-shadow: 0 8px 48px rgba(230, 182, 92, 0.6);
    }
}

[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .scope-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* V2 Component Responsive Styles */
    .hero-container-v2 {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        height: 500px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(6, 6, 11, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-disclaimer {
        font-size: 0.75rem;
    }
    
    .hero-disclaimer span {
        display: block;
        line-height: 1.5;
    }
    
    .hero-image-wrapper img {
        height: 400px;
    }
    
    .hero-stats {
        position: relative;
        bottom: 0;
        margin-top: 24px;
        transform: none;
    }
    
    .trust-line {
        justify-content: center;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .process-card {
        padding: 32px 24px;
    }
    
    .scope-grid {
        grid-template-columns: 1fr;
    }
    
    .mega-cta {
        min-width: auto;
        padding: 32px 40px;
    }
    
    .mega-cta-number {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .floating-call-btn {
        display: none;
    }
    
    .mobile-call-bar {
        display: block;
    }
    
    .call-modal-content {
        padding: 32px 24px;
    }
    
    /* V2 Component Responsive Styles - 768px */
    .top-bar {
        display: none;
    }
    
    .hero-section-v2 {
        padding: 120px 0 80px;
    }
    
    .hero-container-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }
    
    .hero-content-v2 {
        text-align: center;
    }
    
    .hero-badge,
    .hero-disclaimer-v2 {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-card.card-1,
    .floating-card.card-2 {
        display: none;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 28px 20px;
    }
    
    .process-icon {
        width: 64px;
        height: 64px;
    }
    
    .process-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .mega-cta-v2 {
        min-width: auto;
        width: 100%;
    }
    
    .mega-cta-phone {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-disclaimer {
        font-size: 0.75rem;
        padding: 10px 16px;
    }
    
    .primary-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .trust-line {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* V2 Component Responsive Styles - 480px */
    .hero-section-v2 {
        padding: 100px 0 60px;
    }
    
    .hero-headline-v2 {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .primary-cta-v2 {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .secondary-cta-v2 {
        padding: 14px 28px;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
    }
    
    .trust-badge {
        padding: 16px;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .mega-cta-v2 {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        min-width: auto;
    }
    
    .mega-cta-content {
        align-items: center;
    }
    
    .mega-cta-phone {
        font-size: 1.25rem;
    }
    
    .mega-cta-text {
        font-size: 0.9375rem;
    }
    
    .mega-cta-number {
        font-size: 1.5rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }
/* ===================================
   POPUP MODAL
   =================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 11, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(230, 182, 92, 0.2);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 520px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(230, 182, 92, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-size: 24px;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-headline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.2;
}

.popup-subtext {
    font-size: 1.125rem;
    color: var(--muted-text);
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.6;
}

.popup-phone {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(230, 182, 92, 0.3);
}

.popup-cta-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-glow) 100%);
    color: var(--dark-bg);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(230, 182, 92, 0.3);
}

.popup-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230, 182, 92, 0.4);
}

.popup-trust-line {
    text-align: center;
    color: var(--muted-text);
    font-size: 0.875rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .popup-content {
        padding: 36px 24px;
    }
    
    .popup-headline {
        font-size: 1.5rem;
    }
    
    .popup-phone {
        font-size: 2rem;
    }
    
    .popup-subtext {
        font-size: 1rem;
    }
}