/* CSS Variables - Starlink Realty Brand Colors */
:root {
    --primary: #ea1312;
    --primary-dark: #c41110;
    --primary-light: #ff3b3a;
    --secondary: #1a365d;
    --secondary-dark: #0f2440;
    --secondary-light: #2c5282;
    --accent: #ffd700;
    --accent-dark: #ccac00;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

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

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
}

.btn i {
    font-size: 0.9em;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--gray-100);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

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

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 12px 0;
}

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

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.phone-link i {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('bg-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 60px 0;
    min-height: calc(100vh - 74px);
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92) 0%, rgba(15, 36, 64, 0.95) 100%);
    z-index: 1;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-trust p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-trust i {
    color: var(--success);
}

/* Form Funnel in Hero */
.funnel-container {
    width: 100%;
    max-width: 420px;
    flex-shrink: 0;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    box-sizing: border-box;
}

.funnel-header {
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    text-align: center;
}

.funnel-header h2 {
    color: var(--white);
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.funnel-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: width 0.4s ease;
    width: 16.66%;
}

.progress-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.funnel-form {
    padding: 24px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.funnel-step {
    display: none;
    animation: fadeIn 0.4s ease;
    flex: 1;
}

.funnel-step.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.step-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.funnel-step h3 {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.step-helper {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
}

.option-card {
    position: relative;
    cursor: pointer;
}

.option-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 10px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.option-content i {
    font-size: 1.5rem;
    color: var(--gray-400);
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.option-content span {
    font-weight: 600;
    font-size: 0.8125rem;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.option-content small {
    font-size: 0.6875rem;
    color: var(--gray-500);
    line-height: 1.3;
}

.option-card:hover .option-content {
    border-color: var(--primary);
    background: var(--gray-50);
}

.option-card:hover .option-content i {
    color: var(--primary);
}

.option-card input:checked + .option-content {
    border-color: var(--primary);
    background: #fef2f2;
    box-shadow: 0 0 0 3px rgba(234, 19, 18, 0.1);
}

.option-card input:checked + .option-content i {
    color: var(--primary);
}

/* Offer Reveal Step */
.offer-reveal {
    text-align: center;
    padding: 10px 0;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--success);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

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

.offer-reveal h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.offer-details {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
}

.offer-details .offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
    font-size: 0.9375rem;
}

.offer-details .offer-item,
.offer-details .offer-item span,
.offer-details .offer-item span strong,
.offer-details .offer-item strong {
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
}

.offer-item:last-child {
    border-bottom: none;
}

.offer-item i {
    color: var(--success);
    font-size: 1rem;
    flex-shrink: 0;
}

.offer-cta {
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.8125rem;
}

/* Contact Form Step */
.contact-form {
    max-width: 100%;
    margin: 0 auto;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-size: 0.8125rem;
}

.form-group label i {
    color: var(--gray-400);
    font-size: 0.75rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

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

.form-group input::placeholder {
    color: var(--gray-400);
}

.checkbox-group {
    margin-top: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0;
    accent-color: var(--primary);
    flex-shrink: 0;
}

/* Success Step */
.success-step {
    text-align: center;
}

.success-content {
    padding: 10px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-icon i {
    font-size: 1.75rem;
    color: var(--success);
}

.success-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.success-content > p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.success-next {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 16px;
    text-align: left;
}

.success-next p {
    font-size: 0.875rem;
}

.success-next ul {
    margin-top: 12px;
}

.success-next li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: var(--gray-700);
    font-size: 0.8125rem;
}

.success-next li i {
    color: var(--primary);
    width: 16px;
    font-size: 0.875rem;
}

/* Funnel Navigation */
.funnel-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.funnel-nav .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.9375rem;
}

#prevBtn {
    flex: 0 0 auto;
    background: transparent;
    border-color: var(--gray-300);
    color: var(--gray-600);
}

#prevBtn:hover {
    background: var(--gray-100);
}

/* Formula Section */
.formula-section {
    padding: 80px 0;
    background: var(--white);
}

.formula-section.formula-compact {
    padding: 48px 0;
    background: var(--gray-50);
}

.formula-section.formula-compact .formula {
    margin: 16px 0;
}

.formula-section.formula-compact .formula-text {
    font-size: 3rem;
}

.formula-section.formula-compact .formula-explanation {
    margin-bottom: 0;
}

.formula-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.formula {
    margin: 32px 0;
}

.formula-text {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Georgia', serif;
    font-style: italic;
}

.formula-explanation {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.formula-desc {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.pillars-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.pillar {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pillar-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.pillar h3 {
    margin-bottom: 8px;
    color: var(--secondary);
}

.pillar p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* Commission Section */
.commission-section {
    padding: 60px 0;
}

.commission-section h2 {
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.commission-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.commission-card:hover {
    border-color: var(--gray-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.commission-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.featured-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.commission-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.commission-header h3 {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 8px;
}

.commission-rate {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.commission-card.featured .commission-rate {
    color: var(--primary);
}

.commission-header p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.commission-features {
    text-align: left;
    margin-bottom: 24px;
}

.commission-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

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

.commission-features li i {
    color: var(--success);
}

.commission-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

.commission-flexibility {
    text-align: center;
    margin-top: 32px;
    color: var(--gray-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.commission-flexibility i {
    color: var(--primary);
}

/* Tech Section */
.tech-section {
    padding: 60px 0;
    background: var(--secondary);
    color: var(--white);
}

.tech-section h2 {
    text-align: center;
    color: var(--white);
}

.tech-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.tech-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-logo i {
    font-size: 1rem;
}

.tech-card h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* Social Proof Section */
.proof-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.proof-stat {
    padding: 24px;
}

.proof-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.proof-number i {
    color: var(--primary);
    font-size: 2rem;
}

.proof-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

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

.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
}

.stars {
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.author-info strong {
    color: var(--gray-900);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.verified-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #d1fae5;
    color: var(--success);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.leadership-section h2 {
    text-align: center;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.leader-card {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 16px;
}

.leader-card h3 {
    margin-bottom: 4px;
}

.leader-title {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.leadership-vision {
    text-align: center;
    max-width: 800px;
    margin: 48px auto 0;
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.8;
    padding: 24px;
    border-left: 4px solid var(--primary);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.final-cta > .container > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 64px 0 24px;
}

.footer.footer-simple {
    padding: 24px 0;
    text-align: center;
}

.footer.footer-simple p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-address {
    color: var(--gray-400);
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-address i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--gray-400);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

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

.footer-links a i {
    font-size: 0.75rem;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 32px;
    }

    .commission-card.featured {
        transform: none;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 24px 0;
        min-height: auto;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .hero > .container {
        padding: 0 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        overflow: hidden !important;
    }

    .hero-grid {
        display: block !important;
        grid-template-columns: none !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
        gap: 0 !important;
    }

    /* Mobile: Compact hero content */
    .hero-content {
        text-align: left;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        word-wrap: break-word;
        margin-bottom: 24px;
    }

    .hero-badge {
        margin-bottom: 12px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 12px;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .hero-stats {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6875rem;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 8px;
        margin-bottom: 16px;
    }

    .hero-trust p {
        font-size: 0.7rem;
        white-space: normal;
        word-wrap: break-word;
    }

    /* Mobile: Form takes priority */
    .funnel-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 0;
        overflow: hidden;
        flex-shrink: 1 !important;
    }

    .funnel-header {
        padding: 16px 20px;
    }

    .funnel-header h2 {
        font-size: 1.125rem;
    }

    .funnel-header p {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .funnel-form {
        padding: 16px;
        min-height: 380px;
        box-sizing: border-box;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }

    .funnel-step {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .funnel-step h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .step-icon i {
        font-size: 1rem;
    }

    .funnel-step h3 {
        font-size: 1rem;
    }

    .step-helper {
        font-size: 0.8125rem;
        margin-bottom: 16px;
    }

    .option-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }

    .option-card {
        min-width: 0;
        overflow: hidden;
    }

    .option-content {
        padding: 12px 8px;
        box-sizing: border-box;
        min-width: 0;
        overflow: hidden;
    }

    .option-content i {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .option-content span {
        font-size: 0.75rem;
    }

    .option-content small {
        font-size: 0.625rem;
    }

    .funnel-nav {
        margin-top: 20px;
        padding-top: 16px;
    }

    .funnel-nav .btn {
        padding: 12px 16px;
        font-size: 0.875rem;
        min-width: 0;
    }

    .offer-details {
        padding: 12px;
    }

    .offer-item {
        font-size: 0.8125rem;
    }

    .contact-form input,
    .contact-form select {
        font-size: 16px; /* Prevents iOS zoom */
    }
}

@media (max-width: 768px) {
    .header {
        overflow: hidden;
    }

    .header .container {
        max-width: 100%;
        overflow: hidden;
    }

    .header-cta .phone-link {
        display: none;
    }

    .logo-img {
        height: 40px;
    }

    .formula-text {
        font-size: 3rem;
    }

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

    .proof-number {
        font-size: 2.5rem;
    }
}

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

    .hero {
        padding: 16px 0;
    }

    .hero h1 {
        font-size: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
    }

    .hero-stats {
        gap: 10px;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.625rem;
    }

    .hero-trust {
        gap: 6px 12px;
    }

    .hero-trust p {
        font-size: 0.75rem;
    }

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

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

    .final-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .funnel-nav {
        flex-direction: column;
        gap: 10px;
    }

    #prevBtn {
        order: 2;
    }
}