/* =========================================
   SALES FUNNEL - PREMIUM STYLES
   High-converting landing page CSS
   ========================================= */

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

/* CSS Variables */
:root {
    --funnel-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --funnel-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --funnel-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --funnel-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --funnel-warning: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    --funnel-dark: #0A0E1A;
    --funnel-darker: #070A13;
    --funnel-card: #141824;
    --funnel-text: #ffffff;
    --funnel-muted: #a0aec0;
    --funnel-border: rgba(255, 255, 255, 0.1);
    --funnel-glow: rgba(102, 126, 234, 0.4);
}

/* Base Funnel Page Styles */
.funnel-page {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: var(--funnel-dark);
    color: var(--funnel-text);
    overflow-x: hidden;
}

/* =========================================
   URGENCY BANNER
   ========================================= */
.urgency-banner {
    background: var(--funnel-warning);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    animation: pulse-banner 2s infinite;
}

@keyframes pulse-banner {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
}

.fire-icon {
    font-size: 1.2rem;
    animation: fire-flicker 0.5s infinite alternate;
}

@keyframes fire-flicker {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.urgency-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
}

.countdown-badge {
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'SF Mono', 'Consolas', monospace;
}

#timer {
    font-weight: 800;
}

/* =========================================
   FUNNEL HERO SECTION
   ========================================= */
.funnel-hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
        var(--funnel-dark);
    z-index: -2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.float-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: float-random 20s infinite ease-in-out;
}

.float-element.e1 { top: 15%; left: 10%; animation-delay: 0s; }
.float-element.e2 { top: 25%; right: 15%; animation-delay: 5s; }
.float-element.e3 { bottom: 30%; left: 5%; animation-delay: 10s; }
.float-element.e4 { bottom: 20%; right: 10%; animation-delay: 15s; }

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -20px) rotate(10deg); }
    50% { transform: translate(-20px, 30px) rotate(-10deg); }
    75% { transform: translate(20px, 20px) rotate(5deg); }
}

/* Funnel Navigation */
.funnel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
}

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

.funnel-nav .logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--funnel-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.region-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.btn-glow {
    background: var(--funnel-primary);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 30px var(--funnel-glow);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px var(--funnel-glow);
}

/* Hero Content */
.funnel-hero .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.trust-badge-top {
    display: inline-block;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(74, 222, 128, 0.3); }
    50% { box-shadow: 0 0 20px rgba(74, 222, 128, 0.5); }
}

.mega-headline {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.mega-headline .highlight {
    background: var(--funnel-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.mega-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--funnel-primary);
    border-radius: 3px;
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--funnel-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-subtitle strong {
    color: var(--funnel-text);
}

/* Value Proposition */
.value-proposition {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--funnel-border);
}

.value-icon {
    font-size: 1.5rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-mega {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: var(--funnel-primary);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    box-shadow: 
        0 10px 40px rgba(102, 126, 234, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-mega:hover {
    transform: scale(1.05);
    box-shadow: 
        0 15px 60px rgba(102, 126, 234, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

.btn-main {
    font-size: 1.3rem;
    font-weight: 700;
}

.btn-sub {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 4px;
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--funnel-dark);
    margin-left: -12px;
}

.avatars img:first-child {
    margin-left: 0;
}

.more-users {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--funnel-primary);
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: -12px;
    border: 3px solid var(--funnel-dark);
}

.proof-text {
    font-size: 0.9rem;
    color: var(--funnel-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.device-showcase {
    position: relative;
}

.tv-frame {
    background: linear-gradient(145deg, #1a1f2e, #0d111d);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    animation: float-device 6s ease-in-out infinite;
}

@keyframes float-device {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(-2deg); }
}

.tv-screen {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.phone-float {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 150px;
    background: linear-gradient(145deg, #1a1f2e, #0d111d);
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float-phone 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.phone-screen-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

/* =========================================
   PAIN POINTS SECTION
   ========================================= */
.pain-points {
    padding: 100px 0;
    background: var(--funnel-darker);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pain-card {
    background: linear-gradient(135deg, rgba(245, 87, 108, 0.1) 0%, rgba(241, 39, 17, 0.05) 100%);
    border: 1px solid rgba(245, 87, 108, 0.2);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 87, 108, 0.4);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.pain-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f5576c;
}

.pain-card p {
    color: var(--funnel-muted);
    line-height: 1.7;
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution-section {
    padding: 100px 0;
    background: var(--funnel-dark);
}

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

.solution-tag {
    display: inline-block;
    background: var(--funnel-success);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.solution-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.solution-header h2 .highlight {
    background: var(--funnel-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-header p {
    color: var(--funnel-muted);
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--funnel-card);
    border: 1px solid var(--funnel-border);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    font-weight: 700;
}

.comp-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
}

.comp-col.empty {
    visibility: hidden;
}

.comp-col.featured {
    color: #667eea;
}

.sad-emoji, .crown {
    font-size: 1.3rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 18px 20px;
    border-top: 1px solid var(--funnel-border);
    align-items: center;
    transition: background 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-row.highlight-row {
    background: rgba(102, 126, 234, 0.1);
}

.comp-feature {
    font-weight: 500;
    padding-left: 20px;
}

.comp-cable, .comp-fenzy {
    text-align: center;
    font-weight: 600;
}

.comp-cable.negative {
    color: #f5576c;
}

.comp-cable.neutral {
    color: var(--funnel-muted);
}

.comp-fenzy.positive {
    color: #4ade80;
}

.mega-savings {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--funnel-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials-funnel {
    padding: 100px 0;
    background: var(--funnel-darker);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card-funnel {
    background: var(--funnel-card);
    border: 1px solid var(--funnel-border);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.testimonial-card-funnel:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--funnel-muted);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-funnel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--funnel-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--funnel-muted);
}

/* =========================================
   FEATURES SHOWCASE
   ========================================= */
.features-showcase {
    padding: 100px 0;
    background: var(--funnel-dark);
}

.features-mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-mega-card {
    background: var(--funnel-card);
    border: 1px solid var(--funnel-border);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-mega-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-mega-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-mega-card p {
    color: var(--funnel-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 8px 0;
    color: var(--funnel-muted);
    font-size: 0.95rem;
}

.feature-list li::before {
    color: #4ade80;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing-funnel {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--funnel-darker) 0%, var(--funnel-dark) 100%);
}

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

.pricing-tag {
    display: inline-block;
    background: var(--funnel-warning);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: glow-pulse 2s infinite;
}

.pricing-header-funnel h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-header-funnel p {
    color: var(--funnel-muted);
    font-size: 1.1rem;
}

.pricing-grid-funnel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card-funnel {
    background: var(--funnel-card);
    border: 2px solid var(--funnel-border);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card-funnel:hover {
    transform: translateY(-5px);
}

.pricing-card-funnel.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.pricing-card-funnel.featured:hover {
    transform: scale(1.07);
}

.best-value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--funnel-warning);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.price-currency {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: var(--funnel-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.2rem;
    color: var(--funnel-muted);
    margin-left: 8px;
}

.plan-savings {
    color: #4ade80;
    font-weight: 600;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    color: var(--funnel-muted);
    border-bottom: 1px solid var(--funnel-border);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan, .btn-plan-primary {
    width: 100%;
    padding: 18px 30px;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-plan {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid var(--funnel-border);
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #667eea;
}

.btn-plan-primary {
    background: var(--funnel-primary);
    color: white;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.5);
}

.btn-plan-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6);
}

.guarantee-badge {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #4ade80;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods {
    text-align: center;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-methods span {
    color: var(--funnel-muted);
}

.payment-logos {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-logo {
    height: 30px;
    border-radius: 4px;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-funnel {
    padding: 100px 0;
    background: var(--funnel-darker);
}

.faq-grid-funnel {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-funnel {
    background: var(--funnel-card);
    border: 1px solid var(--funnel-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-funnel:hover {
    border-color: #667eea;
}

.faq-question-funnel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background 0.3s ease;
}

.faq-question-funnel:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s ease;
}

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

.faq-answer-funnel p {
    padding: 0 30px 24px;
    color: var(--funnel-muted);
    line-height: 1.8;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--funnel-muted);
    margin-bottom: 40px;
}

.btn-mega-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 50px;
    background: var(--funnel-primary);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
    animation: cta-pulse 2s infinite;
}

.btn-mega-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.6);
}

.btn-mega-cta .btn-main {
    font-size: 1.5rem;
    font-weight: 800;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--funnel-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.funnel-footer {
    padding: 40px 0;
    background: var(--funnel-darker);
    border-top: 1px solid var(--funnel-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--funnel-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--funnel-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-legal {
    color: var(--funnel-muted);
    font-size: 0.85rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .funnel-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mega-headline {
        font-size: 3rem;
    }
    
    .value-proposition {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .tv-frame {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .phone-float {
        right: 10px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .urgency-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .mega-headline {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .value-proposition {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-mega {
        width: 100%;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .comp-feature {
        padding-left: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-funnel {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-funnel.featured {
        transform: none;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .funnel-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .mega-headline {
        font-size: 1.8rem;
    }
    
    .plan-price .price-amount {
        font-size: 3rem;
    }
    
    .phone-float {
        width: 100px;
    }
}

/* =========================================
   COUNTRY-SPECIFIC STYLES
   ========================================= */
/* UK Styling */
.uk-hero .hero-gradient-bg {
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(0, 36, 125, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(207, 20, 43, 0.3) 0%, transparent 50%),
        var(--funnel-dark);
}

/* Canada Styling */
.canada-hero .hero-gradient-bg {
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(255, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        var(--funnel-dark);
}

/* Australia Styling */
.australia-hero .hero-gradient-bg {
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(0, 0, 139, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        var(--funnel-dark);
}

/* New Zealand Styling */
.nz-hero .hero-gradient-bg {
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        var(--funnel-dark);
}
