/* ============================================
   FUNNEL PAGE CSS — Free Website Landing Page
   Matches Exmoorweb brand (Inter, Playfair Display, green palette)
   ============================================ */

:root {
    --funnel-primary: #28b34b;
    --funnel-primary-dark: #1f8d3a;
    --funnel-primary-light: rgba(40, 179, 75, 0.1);
    --funnel-secondary: #2c3e50;
    --funnel-accent: #f59e0b;
    --funnel-accent-dark: #d97706;
    --funnel-danger: #ef4444;
    --funnel-text: #2c3e50;
    --funnel-text-light: #6c757d;
    --funnel-bg: #ffffff;
    --funnel-bg-light: #f8f9fa;
    --funnel-bg-dark: #1a1a2e;
    --funnel-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --funnel-shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --funnel-radius: 12px;
    --funnel-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--funnel-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--funnel-bg);
}

.funnel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   URGENCY BAR
   ============================================ */
.urgency-bar {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    width: 100%;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.urgency-bar.hidden {
    display: none;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.urgency-content i {
    animation: urgencyPulse 1.5s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.urgency-btn {
    background: #fff;
    color: #ef4444;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--funnel-transition);
}

.urgency-btn:hover {
    background: #fef2f2;
    transform: scale(1.05);
}

/* ============================================
   MINIMAL HEADER
   ============================================ */
.funnel-header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.funnel-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.funnel-logo img {
    height: 45px;
    width: auto;
}

.funnel-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--funnel-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--funnel-transition);
}

.funnel-phone:hover {
    color: var(--funnel-primary-dark);
    transform: scale(1.05);
}

/* ============================================
   HERO SECTION
   ============================================ */
.funnel-hero {
    padding: 5rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 30%, #f8f9fa 100%);
}

.funnel-hero-bg {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40,179,75,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBg 20s infinite ease-in-out;
}

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

.funnel-hero-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.funnel-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--funnel-primary-light);
    color: var(--funnel-primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease;
}

.funnel-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--funnel-text);
    animation: fadeInUp 0.8s ease;
}

.funnel-highlight {
    color: var(--funnel-primary);
}

.funnel-free {
    display: inline-block;
    background: linear-gradient(135deg, var(--funnel-primary), #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.funnel-free::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, rgba(40,179,75,0.3), rgba(16,185,129,0.3));
    border-radius: 3px;
}

.funnel-hero-sub {
    font-size: 1.3rem;
    color: var(--funnel-text-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.funnel-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.stat-item {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: var(--funnel-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-width: 110px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--funnel-transition);
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--funnel-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--funnel-text-light);
    font-weight: 500;
    margin-top: 0.25rem;
}

.funnel-hero-cta {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.funnel-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--funnel-primary), #10b981);
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    border: none;
    cursor: pointer;
    transition: var(--funnel-transition);
    box-shadow: 0 6px 25px rgba(40,179,75,0.35);
}

.funnel-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(40,179,75,0.45);
}

.funnel-btn-pulse {
    animation: btnPulse 2.5s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 6px 25px rgba(40,179,75,0.35); }
    50% { box-shadow: 0 6px 40px rgba(40,179,75,0.55), 0 0 0 10px rgba(40,179,75,0.1); }
    100% { box-shadow: 0 6px 25px rgba(40,179,75,0.35); }
}

.funnel-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: var(--funnel-primary);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: var(--funnel-transition);
    box-shadow: 0 6px 25px rgba(255,255,255,0.2);
}

.funnel-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255,255,255,0.3);
    background: #f0fdf4;
}

.funnel-trust-line {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--funnel-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.funnel-trust-line i {
    color: var(--funnel-primary);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.funnel-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.funnel-tag {
    display: inline-block;
    color: var(--funnel-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.funnel-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--funnel-text);
    margin-bottom: 1rem;
}

.funnel-section-header p {
    font-size: 1.15rem;
    color: var(--funnel-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   VALUE COMPARISON
   ============================================ */
.funnel-value {
    padding: 6rem 0;
    background: var(--funnel-bg-light);
}

.value-comparison {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.value-card {
    background: #fff;
    border-radius: var(--funnel-radius);
    padding: 2.5rem;
    flex: 1;
    max-width: 420px;
    min-width: 300px;
    box-shadow: var(--funnel-shadow);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--funnel-transition);
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-typical {
    border: 2px solid #e5e7eb;
    opacity: 0.9;
}

.value-ours {
    border: 3px solid var(--funnel-primary);
    transform: scale(1.03);
    z-index: 1;
}

.value-ours.animate-in {
    transform: scale(1.03) translateY(0);
}

.value-card-ribbon {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--funnel-accent);
    color: #fff;
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.value-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.value-card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--funnel-text);
}

.price-amount {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--funnel-text);
}

.price-free {
    color: var(--funnel-primary) !important;
    font-size: 3rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--funnel-text-light);
    margin-top: 0.25rem;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.value-negative i {
    color: #ef4444;
    width: 20px;
    text-align: center;
}

.value-positive i {
    color: var(--funnel-primary);
    width: 20px;
    text-align: center;
}

.value-card .funnel-btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
}

.value-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--funnel-text-light);
    padding: 0 1.5rem;
    min-width: 60px;
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.funnel-included {
    padding: 6rem 0;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.included-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: var(--funnel-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--funnel-transition);
    opacity: 0;
    transform: translateY(20px);
}

.included-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--funnel-shadow);
    border-color: var(--funnel-primary);
}

.included-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--funnel-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--funnel-primary);
    transition: var(--funnel-transition);
}

.included-card:hover .included-icon {
    background: var(--funnel-primary);
    color: #fff;
}

.included-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--funnel-text);
}

.included-card p {
    font-size: 0.9rem;
    color: var(--funnel-text-light);
    line-height: 1.6;
}

/* ============================================
   HOW IT WORKS (STEPS)
   ============================================ */
.funnel-steps {
    padding: 6rem 0;
    background: var(--funnel-bg-light);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-card {
    background: #fff;
    border-radius: var(--funnel-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    max-width: 320px;
    min-width: 250px;
    position: relative;
    box-shadow: var(--funnel-shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--funnel-transition);
}

.step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--funnel-primary), #10b981);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(40,179,75,0.3);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--funnel-primary);
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--funnel-text);
}

.step-card p {
    color: var(--funnel-text-light);
    font-size: 0.95rem;
}

.step-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--funnel-primary);
    padding-top: 3rem;
}

/* ============================================
   SAVINGS CALCULATOR
   ============================================ */
.funnel-savings {
    padding: 5rem 0;
}

.savings-box {
    background: linear-gradient(135deg, var(--funnel-secondary) 0%, #1a1a2e 100%);
    border-radius: 20px;
    padding: 3.5rem;
    color: #fff;
}

.savings-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.savings-content h2 i {
    color: var(--funnel-accent);
}

.savings-grid {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.savings-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.savings-value {
    font-weight: 700;
    font-size: 1.2rem;
}

.savings-strikethrough {
    text-decoration: line-through;
    color: #ef4444;
    opacity: 0.8;
}

.savings-green {
    color: #34d399;
}

.savings-total {
    border-bottom: none;
    padding-top: 1.25rem;
}

.savings-total .savings-label {
    font-weight: 600;
    color: #fff;
}

.savings-total .savings-value {
    font-size: 1.4rem;
}

.savings-highlight {
    text-align: center;
    background: rgba(40,179,75,0.15);
    border: 1px solid rgba(40,179,75,0.3);
    border-radius: var(--funnel-radius);
    padding: 1.25rem;
    font-size: 1.15rem;
    color: #34d399;
}

/* ============================================
   WHO IS THIS FOR
   ============================================ */
.funnel-audience {
    padding: 6rem 0;
    background: var(--funnel-bg-light);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.audience-card {
    background: #fff;
    border-radius: var(--funnel-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--funnel-transition);
    border: 1px solid #e8ecf0;
    opacity: 0;
    transform: translateY(20px);
}

.audience-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--funnel-shadow);
    border-color: var(--funnel-primary);
}

.audience-card i {
    font-size: 2.5rem;
    color: var(--funnel-primary);
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--funnel-text);
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--funnel-text-light);
}

/* ============================================
   TRUST BAR
   ============================================ */
.funnel-trust {
    padding: 4rem 0;
    background: var(--funnel-bg);
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--funnel-transition);
}

.trust-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--funnel-primary);
    line-height: 1;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--funnel-text-light);
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ============================================
   FAQ
   ============================================ */
.funnel-faq {
    padding: 6rem 0;
    background: var(--funnel-bg-light);
}

.faq-items {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--funnel-radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #e8ecf0;
    transition: var(--funnel-transition);
}

.faq-item:hover {
    border-color: var(--funnel-primary);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--funnel-text);
    transition: var(--funnel-transition);
}

.faq-question:hover {
    color: var(--funnel-primary);
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--funnel-text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--funnel-primary);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--funnel-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   CLAIM FORM SECTION
   ============================================ */
.funnel-form-section {
    padding: 6rem 0;
    background: #fff;
}

.funnel-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.funnel-form-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--funnel-text);
}

.funnel-form-left > p {
    color: var(--funnel-text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.form-benefit i {
    color: var(--funnel-primary);
    font-size: 1.2rem;
}

.spots-warning {
    margin-top: 2rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--funnel-radius);
    padding: 1rem 1.5rem;
    color: #ef4444;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: warningPulse 2s infinite;
}

@keyframes warningPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Form Styling */
.funnel-form {
    position: relative;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--funnel-text);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--funnel-primary);
    margin-right: 0.25rem;
    width: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--funnel-transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--funnel-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(40,179,75,0.1);
}

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

.captcha-group input {
    max-width: 150px;
}

.funnel-btn-submit {
    width: 100%;
    padding: 1.15rem;
    font-size: 1.15rem;
    margin-top: 0.5rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--funnel-text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.form-disclaimer i {
    color: var(--funnel-primary);
    margin-top: 2px;
}

/* Success State */
.funnel-success {
    text-align: center;
    padding: 3rem 2rem;
    background: #f0fdf4;
    border-radius: var(--funnel-radius);
    border: 2px solid var(--funnel-primary);
}

.success-icon {
    font-size: 4rem;
    color: var(--funnel-primary);
    margin-bottom: 1rem;
}

.funnel-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--funnel-text);
}

.funnel-success p {
    color: var(--funnel-text-light);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.success-next {
    font-weight: 600;
    color: var(--funnel-primary) !important;
}

/* Errors */
.funnel-errors {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--funnel-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    color: #ef4444;
}

.funnel-errors i {
    margin-right: 0.5rem;
}

.funnel-errors p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* ============================================
   FINAL CTA
   ============================================ */
.funnel-final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, var(--funnel-secondary) 100%);
    text-align: center;
    color: #fff;
}

.funnel-final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.funnel-final-cta > .funnel-container > p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-points {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.final-cta-points span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.final-cta-points i {
    color: #34d399;
}

.final-spots {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.funnel-footer {
    background: #111827;
    padding: 2rem 0;
    text-align: center;
}

.funnel-footer-content p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.funnel-footer-content a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.funnel-footer-content a:hover {
    color: var(--funnel-primary);
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .funnel-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .urgency-content {
        font-size: 0.85rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .funnel-hero {
        padding: 3rem 0 4rem;
    }
    
    .funnel-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .funnel-hero-sub {
        font-size: 1.05rem;
    }
    
    .funnel-hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .value-comparison {
        flex-direction: column;
        align-items: center;
    }
    
    .value-card {
        max-width: 100%;
    }
    
    .value-ours {
        transform: none;
    }
    
    .value-ours.animate-in {
        transform: translateY(0);
    }
    
    .value-vs {
        padding: 1rem 0;
    }
    
    .included-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .funnel-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .funnel-section-header h2 {
        font-size: 2rem;
    }
    
    .funnel-final-cta h2 {
        font-size: 2rem;
    }
    
    .trust-grid {
        gap: 2rem;
    }
    
    .savings-box {
        padding: 2rem 1.5rem;
    }
    
    .savings-content h2 {
        font-size: 1.5rem;
    }
    
    .final-cta-points {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .funnel-container {
        padding: 0 1.25rem;
    }
    
    .funnel-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .funnel-hero-stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 2.2rem;
    }
    
    .funnel-btn-primary {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .funnel-phone span {
        display: none;
    }
}

/* ============================================
   SOLD OUT / WAITLIST STYLES
   ============================================ */

.urgency-soldout {
    background: linear-gradient(135deg, #e67e22, #d35400) !important;
}

.funnel-soldout-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.soldout-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.soldout-badge i {
    font-size: 1.1rem;
}

.funnel-soldout-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary-color, #2c3e50);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.soldout-sub {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.waitlist-form {
    max-width: 420px;
    margin: 0 auto 2rem;
    text-align: left;
}

.waitlist-form .form-group {
    margin-bottom: 1rem;
}

.waitlist-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--secondary-color, #2c3e50);
    font-size: 0.95rem;
}

.waitlist-form label i {
    color: var(--primary-color, #28b34b);
    margin-right: 0.3rem;
    width: 16px;
}

.waitlist-form input[type="text"],
.waitlist-form input[type="email"] {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.waitlist-form input:focus {
    border-color: var(--primary-color, #28b34b);
    box-shadow: 0 0 0 3px rgba(40, 179, 75, 0.1);
    outline: none;
}

.waitlist-form .funnel-btn-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.soldout-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
}

.soldout-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.soldout-stat i {
    color: var(--primary-color, #28b34b);
    font-size: 1.1rem;
}

.soldout-stat a {
    color: var(--primary-color, #28b34b);
    text-decoration: none;
    font-weight: 600;
}

.soldout-stat a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .funnel-soldout-wrapper {
        padding: 2rem 1rem;
    }
    
    .funnel-soldout-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .soldout-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}
