/* Sharp Growth - Brand Colors & Variables */
:root {
    /* Primary Brand Blues */
    --primary-500: #1E86FF;
    --primary-700: #0D63FF;
    --primary-900: #0037CC;
    --ice-cyan-350: #27C7FF;
    --sky-tint-200: #7FD9FF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #27C7FF 0%, #0D63FF 100%);
    --gradient-secondary: linear-gradient(135deg, #31D2FF 0%, #1E86FF 50%, #0037CC 100%);
    --gradient-hero: linear-gradient(135deg, rgba(39, 199, 255, 0.1) 0%, rgba(13, 99, 255, 0.05) 100%);
    
    /* Dark/Backgrounds */
    --navy: #0B1E36;
    --true-black: #0F141A;
    --light-page-bg: #F8FAFC;
    --card-surface: #FFFFFF;
    
    /* Neutrals & Text */
    --heading-text: #111827;
    --secondary-text: #475569;
    --muted-text: #64748B;
    --dividers: #E2E8F0;
    --inputs: #F1F5F9;
    
    /* Status Colors */
    --success: #16A34A;
    --warning: #F59E0B;
    --error: #DC2626;
    --link-hover: #4FA5FF;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    
    /* Spacing - Condensed */
    --container-max-width: 1200px;
    --section-padding: 60px 0;
    --section-padding-small: 40px 0;
    --section-padding-tight: 30px 0;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--light-page-bg);
    color: var(--heading-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.gradient-text {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 32px rgba(30, 134, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 134, 255, 0.4);
}

.btn-secondary {
    background: var(--card-surface);
    color: var(--primary-700);
    border-color: var(--dividers);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    border-color: var(--primary-500);
    color: var(--primary-700);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-700);
    border-color: var(--primary-500);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dividers);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

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

.logo-img {
    height: 32px;
    width: auto;
    max-width: 180px;
    /* Logo blends with light navbar background */
}

/* Bigger logo on desktop */
@media (min-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 220px;
    }
}

.nav-logo .logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-700);
}

.nav-cta {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 134, 255, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 24px;
    height: 3px;
    background: var(--heading-text);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 50px;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(39, 199, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(13, 99, 255, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 40% 80%, rgba(39, 199, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(30, 134, 255, 0.06) 0%, transparent 45%),
        linear-gradient(135deg, rgba(39, 199, 255, 0.06) 0%, rgba(13, 99, 255, 0.04) 100%),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 15px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(39, 199, 255, 0.01) 0px,
            rgba(39, 199, 255, 0.01) 1px,
            transparent 1px,
            transparent 25px
        );
    z-index: -1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 20px;
    border: 1px solid var(--dividers);
}

.hero-badge i {
    color: var(--warning);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--secondary-text);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-700);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: var(--muted-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.trust-text {
    font-size: 14px;
    color: var(--muted-text);
    margin-bottom: 20px;
    display: block;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Differentiators Section */
.differentiators {
    padding: var(--section-padding-small);
    background: var(--card-surface);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.diff-grid-row-2 {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.diff-grid-row-2 .diff-card {
    max-width: 350px;
}

.diff-card {
    background: var(--light-page-bg);
    padding: 30px 24px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--dividers);
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.diff-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.diff-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.diff-card p {
    color: var(--secondary-text);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding-small);
    background: var(--navy);
    color: white;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: white;
}

.process-steps-centered {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.process-step-center {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
}

.process-step-center .step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.process-step-center .step-content {
    flex: 1;
    text-align: center;
}

.process-step-center .step-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: white;
}

.process-step-center .step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.process-step-center .step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.process-step-center .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Social Proof Section */
.social-proof {
    padding: var(--section-padding-small);
    background: var(--light-page-bg);
}

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

.testimonial-card {
    background: var(--card-surface);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--dividers);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--warning);
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--heading-text);
    font-style: italic;
}

.testimonial-author {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--dividers);
}

.testimonial-author strong {
    display: block;
    color: var(--heading-text);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--muted-text);
    font-size: 14px;
}

.see-more-results {
    text-align: center;
    margin-top: 40px;
}

/* Qualified Section */
.qualified-section {
    padding: var(--section-padding-small);
    background: var(--card-surface);
}

.qualification-criteria {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.exclusive-appointment-highlight {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.exclusive-item {
    max-width: 500px;
    background: var(--light-page-bg);
    border: 2px solid var(--primary-500);
    color: var(--heading-text);
}

.exclusive-item .criteria-icon {
    background: var(--gradient-primary);
    color: white;
}

.exclusive-item .criteria-content h4 {
    color: var(--heading-text);
}

.exclusive-item .criteria-content p {
    color: var(--secondary-text);
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--light-page-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--dividers);
}

.criteria-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.criteria-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.criteria-content p {
    color: var(--secondary-text);
    line-height: 1.5;
}

/* Results Section */
.results-section {
    padding: var(--section-padding-small);
    background: var(--navy);
    color: white;
}

.results-section .section-title,
.results-section .section-subtitle {
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.result-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 48px 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.result-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 20px;
}

.result-number {
    font-size: 56px;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.result-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--ice-cyan-350);
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.result-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ROI Calculator */
.roi-calculator {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-content h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 16px;
    color: white;
}

.roi-content > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

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

.calc-item label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-weight: 500;
}

.calc-item input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
}

.calc-item input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: white;
}

.calc-result.highlight {
    background: var(--gradient-primary);
    font-weight: 600;
}

/* Appointment Calculator Styles */
.budget-slider-container {
    margin-bottom: 30px;
    text-align: center;
}

.budget-slider-container label {
    display: block;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 16px;
}

.budget-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    margin-bottom: 15px;
}

.budget-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-500);
    cursor: pointer;
}

.budget-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-500);
    cursor: pointer;
    border: none;
}

.budget-display {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.appointment-range {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
}

.appointment-range h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.range-display {
    font-size: 24px;
    font-weight: 700;
    color: var(--ice-cyan-350);
}

.calculator-inputs-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.calc-results-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.calc-results-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.calc-results-row-full {
    display: flex;
    justify-content: center;
}

.calc-result-highlight-full {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    padding: 30px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.calc-result-highlight-full:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.6), 0 0 0 1px rgba(255, 215, 0, 0.8);
}

.calc-result-highlight-full::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FFD700, #FF6B35, #F7931E, #FFD700);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.calc-result-highlight-full h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.calc-result-highlight-full .result-value-large {
    font-size: 36px;
    font-weight: 900;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.calc-result-highlight {
    background: var(--gradient-primary);
    padding: 20px 18px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 24px rgba(30, 134, 255, 0.3);
    transition: all 0.3s ease;
}

.calc-result-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(30, 134, 255, 0.4);
}

.calc-result-highlight h4 {
    color: white;
    font-size: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.result-value-large {
    font-size: 24px;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.calculator-disclaimer {
    text-align: center;
    margin-top: 20px;
}

.calculator-disclaimer small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.4;
}

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

/* FAQ Section */
.faq-section {
    padding: var(--section-padding-small);
    background: var(--light-page-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--dividers);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-page-bg);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--heading-text);
    margin-right: 20px;
}

.faq-question i {
    color: var(--primary-500);
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 32px 32px;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding-small);
    background: linear-gradient(135deg, #0037CC 0%, #0B1E36 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: white;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.cta-guarantee i {
    color: var(--success);
    font-size: 18px;
}

/* Fix button visibility in CTA section */
.cta-section .btn-primary {
    background: white;
    color: var(--primary-700);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    background: var(--light-page-bg);
    color: var(--primary-900);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 40px;
    /* Icon logo for footer */
}

.footer-brand .logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 400px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--ice-cyan-350);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--ice-cyan-350);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-500);
    color: white;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(248, 250, 252, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        transition: left 0.3s ease;
        border-top: 1px solid var(--dividers);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        white-space: nowrap;
        text-align: center;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-grid-row-2 .diff-card {
        max-width: 100%;
    }
    
    .process-step-center {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .process-step-center .step-content {
        width: 100%;
    }
    
    .calc-results-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .qualification-criteria {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .qualification-criteria {
        grid-template-columns: 1fr;
    }
    
    .exclusive-appointment-highlight .criteria-item {
        max-width: 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 14px 20px;
        font-size: 16px;
        max-width: 100%;
        min-width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-results {
        grid-template-columns: 1fr;
    }
    
    .calculator-inputs-three {
        grid-template-columns: 1fr;
    }
    
    .calc-results-row-full {
        margin-top: 15px;
    }
    
    .calc-result-highlight-full {
        max-width: 100%;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-page-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}