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

:root {
    /* Premium Medical Trust Colors */
    --primary: #0C4A6E; /* Deep Trust Medical Blue */
    --primary-light: #0284C7; /* Active Medical Blue */
    --bg-blue-light: #F0F9FF; /* Very soft sky blue for backgrounds */
    --accent: #F59E0B; /* Vibrant Gold/Amber for CTAs */
    --accent-hover: #D97706;
    --text-dark: #0F172A;
    --text-gray: #475569;
    --white: #FFFFFF;
    --danger: #E11D48;
    --success: #059669;
    --border-color: #E2E8F0;
    --shadow-sm: 0 4px 6px rgba(12, 74, 110, 0.05);
    --shadow-lg: 0 20px 40px rgba(12, 74, 110, 0.1);
    --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--bg-blue-light); color: var(--text-dark); line-height: 1.8; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

/* Ticker Tape Announcement */
.ticker-wrapper {
    width: 100%; height: 35px;
    background: #eaff00; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.ticker-tape {
    width: 100%; height: 100%;
    background: #eaff00; color: #000;
    font-weight: 800; font-size: 0.95rem;
    display: flex; align-items: center; direction: ltr;
}
.ticker-content {
    display: flex; width: max-content;
    animation: ticker-scroll 25s linear infinite;
}
.ticker-item {
    padding: 0 30px; white-space: nowrap; direction: rtl;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
header { background: var(--primary); padding: 10px 0; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; justify-content: center; }
.logo-img { height: 75px; width: auto; object-fit: contain; mix-blend-mode: screen; }

/* Globals */
.section-pad { padding: 80px 0; }
.bg-white { background: var(--white); }
.sec-title { text-align: center; font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 20px; color: var(--primary); }
.sec-title span { color: var(--primary-light); }
.sec-desc { text-align: center; font-size: 1.2rem; color: var(--text-gray); max-width: 800px; margin: 0 auto 50px; font-weight: 600; }

/* Buttons */
.btn-cta {
    display: block; width: 100%; text-align: center;
    background: var(--accent); color: var(--white);
    padding: 20px; font-size: 1.5rem; font-weight: 900;
    border-radius: var(--radius); text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3); transition: all 0.3s;
}
.btn-cta:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(245, 158, 11, 0.4); }

/* Hero Section & Slider */
.hero { padding: 60px 0; text-align: center; background: var(--white); }
.hero-badge {
    display: inline-block; background: var(--bg-blue-light); color: var(--primary-light);
    padding: 8px 20px; border-radius: 30px; font-weight: 800; border: 1px solid var(--primary-light);
    margin-bottom: 20px; font-size: 0.95rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 20px; color: var(--primary); line-height: 1.3; }
.hero p { font-size: 1.25rem; color: var(--text-gray); margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }

.slider-wrapper { position: relative; max-width: 600px; margin: 0 auto 30px; }
.hero-image-slider { position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.slider-container { display: flex; width: 100%; transition: transform 0.5s ease-in-out; }
.slide { min-width: 100%; }
.slide img { width: 100%; display: block; border-radius: var(--radius); }
.slider-dots { position: absolute; bottom: 15px; width: 100%; display: flex; justify-content: center; gap: 8px; z-index: 10; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.3s; border: 2px solid rgba(0,0,0,0.1); }
.dot.active { background: var(--accent); transform: scale(1.2); }
.slider-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 10px; z-index: 10; pointer-events: none; }
.arrow { pointer-events: auto; background: rgba(255,255,255,0.8); border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; color: var(--primary); cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.2); transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.arrow:hover { background: white; transform: scale(1.1); }
.guarantee-stamp { position: absolute; top: -45px; right: -5px; width: 85px; height: 85px; z-index: 20; transform: rotate(-10deg); animation: stampPulse 3s infinite; pointer-events: none; }
@keyframes stampPulse { 0% { transform: scale(1) rotate(-10deg); } 50% { transform: scale(1.05) rotate(-5deg); } 100% { transform: scale(1) rotate(-10deg); } }

/* Authentic Features - Lighter Premium Design */
.auth-features-section { background: var(--bg-blue-light); border-radius: 24px; padding: 50px 20px; margin: 40px auto; max-width: 1000px; box-shadow: 0 10px 40px rgba(12, 74, 110, 0.05); }
.auth-features-title { text-align: center; margin-bottom: 40px; }
.auth-features-title h2 { font-size: 2.2rem; font-weight: 900; color: var(--primary); margin-bottom: 5px; }
.auth-features-title span { color: var(--accent); }
.auth-features-title p { font-size: 1.1rem; color: var(--text-gray); font-weight: 600; margin: 0; }

.auth-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.auth-feature-card {
    background: var(--white); border-radius: 16px; padding: 25px;
    display: flex; align-items: center; gap: 20px;
    box-shadow: 0 5px 15px rgba(12, 74, 110, 0.04);
    border: 1px solid #E0F2FE;
    transition: all 0.3s ease;
}
.auth-feature-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(12, 74, 110, 0.1); border-color: #BAE6FD; }
.af-icon {
    width: 60px; height: 60px; flex-shrink: 0;
    background: #F0F9FF; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.af-icon svg { width: 30px; height: 30px; }
.af-content { text-align: left; }
.af-content h4 { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); margin: 0 0 5px 0; }
.af-content p { font-size: 0.95rem; font-weight: 600; color: var(--text-gray); margin: 0; }


/* Dual Forms - PREMIUM REDESIGN */
.form-box {
    background: #FFFFFF; padding: 40px 30px; border-radius: 24px;
    max-width: 650px; margin: 0 auto; box-shadow: 0 25px 50px -12px rgba(12, 74, 110, 0.15);
    border: 1px solid rgba(0,0,0,0.05);
}
.form-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; text-align: center; color: var(--primary); }
.section-pad#form-bottom { background: var(--primary); }
.section-pad#form-bottom .form-title { color: var(--primary); }
.section-pad#form-bottom .form-box { background: #FFFFFF; } /* Keep bottom form white for consistency */

/* Package Selection Cards */
.packages-grid { display: grid; gap: 15px; margin-bottom: 30px; }
.package-wrapper { position: relative; }
.pkg-radio { display: none; }
.package-card {
    display: block; border: 2px solid #E2E8F0; border-radius: 16px; padding: 20px;
    cursor: pointer; transition: all 0.3s ease; background: var(--white);
    text-align: right; position: relative;
}
.package-card:hover { border-color: var(--primary-light); }
.pkg-radio:checked + .package-card {
    border-color: var(--success); background: #F0FDF4; box-shadow: 0 4px 15px rgba(34, 197, 94, 0.15);
}
.pkg-radio:checked + .package-card::after {
    content: '✔️'; position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; color: var(--success);
}
.pc-title { display: block; font-weight: 900; color: var(--primary); font-size: 1.15rem; }
.pc-price { display: block; font-weight: 900; color: var(--success); font-size: 1.3rem; margin-top: 5px; }
.pc-price del { color: var(--text-gray); font-size: 0.95rem; font-weight: 600; margin-right: 8px; text-decoration: line-through; }
.pc-badge {
    position: absolute; top: -14px; right: 20px; background: var(--danger); color: white;
    padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: 900; box-shadow: 0 4px 10px rgba(225,29,72,0.3);
}

/* Modern Inputs */
.inputs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 20px; text-align: right; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 800; color: var(--primary); font-size: 0.95rem; }
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; opacity: 0.7; }
.modern-input {
    width: 100%; padding: 16px 15px 16px 45px;
    background: #F8FAFC; border: 2px solid transparent; border-radius: 14px;
    font-size: 1rem; font-family: inherit; font-weight: 700; color: var(--primary);
    transition: all 0.3s ease; box-sizing: border-box; text-align: right;
}
.modern-input:focus {
    outline: none; background: #FFFFFF; border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}
.modern-input::placeholder { color: #94A3B8; font-weight: 600; }

/* The Detailed Problem */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.problem-content h3 { font-size: 2rem; font-weight: 900; color: var(--danger); margin-bottom: 20px; }
.problem-item { display: flex; gap: 15px; margin-bottom: 20px; }
.problem-icon { font-size: 1.5rem; }
.problem-text h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 5px; }
.problem-text p { color: var(--text-gray); font-size: 1.05rem; }
.problem-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

/* Cost of Inaction */
.cost-inaction-box {
    background: #FFF1F2; border: 2px solid #FECDD3; border-radius: 20px;
    padding: 40px; display: flex; gap: 30px; align-items: center;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.1); margin: 20px 0;
}
.cost-icon { font-size: 4rem; flex-shrink: 0; animation: stampPulse 2s infinite; }
.cost-text h3 { color: var(--danger); font-size: 1.8rem; font-weight: 900; margin-bottom: 15px; }
.cost-text p { color: #334155; font-size: 1.15rem; line-height: 1.8; margin-bottom: 10px; font-weight: 600; }
.cost-text p strong { color: var(--danger); }
.cost-list { list-style: none; padding: 0; margin-bottom: 15px; }
.cost-list li { font-size: 1.1rem; font-weight: 700; color: #0F172A; margin-bottom: 15px; display: flex; align-items: flex-start; gap: 10px; }
.cl-icon { flex-shrink: 0; margin-top: 3px; }

/* Healing Journey Timeline - PREMIUM REDESIGN */
.journey-wrapper {
    display: flex; justify-content: space-between; position: relative; margin-top: 70px;
}
.journey-wrapper::before {
    content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
    z-index: 1; border-radius: 10px; opacity: 0.2;
}
.journey-step {
    flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 20px;
}
.step-icon {
    width: 80px; height: 80px; background: var(--white); border: 5px solid var(--accent);
    color: var(--accent); font-size: 2rem; font-weight: 900;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px auto; box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.journey-step:nth-child(2) .step-icon { border-color: var(--primary-light); color: var(--primary-light); box-shadow: 0 10px 25px rgba(2, 132, 199, 0.2); }
.journey-step:nth-child(3) .step-icon { border-color: var(--primary); color: var(--primary); box-shadow: 0 10px 25px rgba(12, 74, 110, 0.2); }

.journey-step:hover .step-icon { transform: translateY(-10px) scale(1.1); }
.step-time {
    display: inline-block; background: var(--text-dark); color: var(--white);
    padding: 6px 20px; border-radius: 30px; font-weight: 800; font-size: 0.95rem; margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.step-title { color: var(--primary); font-size: 1.5rem; font-weight: 900; margin-bottom: 12px; }
.step-desc { color: var(--text-gray); font-size: 1.1rem; line-height: 1.7; font-weight: 600; }

/* Us vs Them Comparison - PREMIUM REDESIGN */
.vs-container {
    display: flex; gap: 30px; align-items: stretch; margin-top: 50px; position: relative;
    max-width: 1000px; margin-left: auto; margin-right: auto;
}
.vs-card {
    flex: 1; border-radius: 24px; padding: 40px 30px; position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.vs-vesco {
    background: linear-gradient(145deg, var(--primary), #1e3a8a); color: white;
    border: 2px solid var(--accent); transform: scale(1.05); z-index: 2;
    box-shadow: 0 20px 40px rgba(12, 74, 110, 0.25);
}
.vs-other {
    background: #F8FAFC; color: #475569; border: 1px solid #E2E8F0;
}
.vs-header { text-align: center; margin-bottom: 35px; }
.vs-vesco .vs-header h3 { color: white; font-size: 2rem; font-weight: 900; margin-top: 10px; }
.vs-other .vs-header h3 { color: #0F172A; font-size: 1.8rem; font-weight: 800; }
.vs-badge {
    background: var(--accent); color: white; padding: 6px 18px; border-radius: 30px;
    font-size: 0.95rem; font-weight: 900; display: inline-block;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}
.vs-sub { display: block; font-size: 1.1rem; font-weight: 600; opacity: 0.7; margin-top: 5px; }

.vs-list { list-style: none; padding: 0; margin: 0; }
.vs-list li {
    display: flex; align-items: center; gap: 15px; margin-bottom: 25px;
    font-size: 1.15rem; font-weight: 800; line-height: 1.5;
}
.vs-vesco .vs-list li { color: #F0F9FF; }
.vs-other .vs-list li { color: #334155; }
.vs-icon {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.vs-icon.good { background: rgba(34, 197, 94, 0.2); color: #4ADE80; }
.vs-icon.bad { background: rgba(225, 29, 72, 0.1); color: #E11D48; }
.vs-icon svg { width: 22px; height: 22px; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.vs-divider {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 65px; height: 65px; background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: var(--primary); font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 4px solid #F8FAFC; z-index: 3;
}

/* Doctor Endorsement */
.doctor-note {
    background: var(--white); border-radius: 20px; padding: 45px;
    box-shadow: 0 10px 40px rgba(12, 74, 110, 0.06);
    border-top: 6px solid var(--primary);
    max-width: 800px; margin: 0 auto;
}
.doctor-header {
    display: flex; justify-content: center; align-items: center; gap: 15px;
    margin-bottom: 25px;
}
.doctor-header h4 { font-size: 1.8rem; font-weight: 900; color: var(--primary); margin: 0; }
.doctor-svg { width: 48px; height: 48px; flex-shrink: 0; stroke: #4338CA; }
.doctor-body p { 
    font-size: 1.25rem; font-style: italic; color: #475569; 
    line-height: 2; font-weight: 600; text-align: center; margin: 0; 
}

/* Who is it for? */
.target-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 800px; margin: 0 auto; }
.target-card { 
    background: var(--white); padding: 35px 25px; 
    border-radius: 16px; text-align: center; 
    border: 1px solid #7DD3FC;
    box-shadow: 0 5px 15px rgba(12, 74, 110, 0.03);
}
.target-card h4 { font-size: 1.4rem; font-weight: 900; color: var(--primary); margin-bottom: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.target-card p { font-size: 1.1rem; color: var(--text-gray); line-height: 1.8; font-weight: 600; margin: 0; }

/* Horizontal Review Slider (Single Row) */
.reviews-scroller {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0 30px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for clean carousel */
}
.reviews-scroller::-webkit-scrollbar { display: none; }

.review-slide {
    flex: 0 0 320px;
    background: var(--white); padding: 30px; border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid #E2E8F0;
    scroll-snap-align: center;
    height: auto; display: flex; flex-direction: column;
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; flex-direction: column; gap: 5px; }
.reviewer-info h4 { font-size: 1.2rem; color: var(--primary); font-weight: 900; margin-bottom: 5px; }
.r-verified { color: var(--success); font-size: 0.9rem; font-weight: 800; display: flex; align-items: center; gap: 5px; }
.r-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 1px; }
.review-slide p { color: var(--text-gray); font-size: 1.1rem; line-height: 1.7; font-weight: 600; margin: 0; }

/* Notion Style FAQ Accordion */
.faq-container {
    max-width: 850px; margin: 0 auto;
    background: var(--white); border-radius: 24px; padding: 40px;
    box-shadow: 0 10px 40px rgba(12, 74, 110, 0.05);
}
.faq-card {
    border-bottom: 1px solid #F1F5F9;
}
.faq-card:last-child { border-bottom: none; }
.faq-q {
    width: 100%; text-align: right; background: none; border: none; padding: 25px 0;
    font-size: 1.3rem; font-weight: 800; color: var(--primary); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q span { flex: 1; }
.faq-card.open .faq-q { padding-bottom: 15px; color: var(--accent); }

/* Pure CSS Plus/Minus Icon */
.faq-toggle {
    width: 32px; height: 32px; border-radius: 8px; background: #F8FAFC;
    display: flex; align-items: center; justify-content: center;
    position: relative; transition: 0.3s; flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
    content: ''; position: absolute; background: var(--primary);
    border-radius: 2px; transition: 0.3s;
}
.faq-toggle::before { width: 14px; height: 2px; } /* Horizontal line */
.faq-toggle::after { width: 2px; height: 14px; }  /* Vertical line */

.faq-card.open .faq-toggle { background: var(--accent); }
.faq-card.open .faq-toggle::before, .faq-card.open .faq-toggle::after { background: white; }
.faq-card.open .faq-toggle::after { transform: rotate(90deg) scaleY(0); opacity: 0; }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-card.open .faq-a { max-height: 400px; padding: 0 0 25px 0; }
.faq-a p { font-size: 1.15rem; color: var(--text-gray); line-height: 1.8; margin: 0; font-weight: 600; }

/* Modern Footer Redesign */
.main-footer { background: var(--primary); padding: 70px 0 30px 0; color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { width: 150px; margin-bottom: 20px; }
.footer-desc { line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.8); }
.social-links { display: flex; gap: 15px; }
.social-links a { 
    display: flex; align-items: center; justify-content: center; 
    width: 40px; height: 40px; border-radius: 50%; 
    background: rgba(255,255,255,0.1); color: white; transition: 0.3s; 
}
.social-links a:hover { background: var(--accent); transform: translateY(-3px); }
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

.footer-col h4 { color: white; font-size: 1.2rem; font-weight: 800; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; right: 0; width: 40px; height: 3px; background: var(--accent); border-radius: 2px; }

.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.footer-links-list a { color: rgba(255,255,255,0.8); text-decoration: none; transition: 0.3s; }
.footer-links-list a:hover { color: var(--accent); padding-right: 5px; }
.contact-list li { color: rgba(255,255,255,0.9); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 30px 0; }

.footer-disclaimers { 
    text-align: center; line-height: 1.6; font-size: 0.7rem; 
    color: rgba(255,255,255,0.35); margin-bottom: 20px; 
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.footer-disclaimers p { margin-bottom: 8px; }
.footer-disclaimers strong { color: rgba(255,255,255,0.4); font-weight: normal; }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; color: rgba(255,255,255,0.6); }

/* Sticky Mobile CTA */
.sticky-mobile {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--white); box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 1000; display: none; text-align: center;
}
.sticky-mobile .btn-cta { 
    margin: 12px 20px; width: calc(100% - 40px);
    padding: 15px; font-size: 1.2rem; border-radius: 14px; 
}

/* Form Additions (Trust & Urgency) */
.urgency-text {
    color: var(--danger); font-weight: 900; text-align: center; margin-bottom: 15px; font-size: 1.1rem;
    animation: blink 2s infinite; background: #FFF1F2; padding: 10px; border-radius: 8px; border: 1px solid #FECDD3;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.trust-badges { display: flex; justify-content: center; gap: 15px; margin-top: 15px; flex-wrap: wrap; }
.trust-badges div { display: flex; align-items: center; gap: 5px; font-size: 0.9rem; font-weight: 800; color: var(--text-gray); }

/* Live Sales Popup */
.sales-popup {
    position: fixed; bottom: 20px; left: 20px; background: var(--white); border-right: 4px solid var(--success);
    padding: 15px 20px; border-radius: 8px; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 15px; z-index: 9999;
    transform: translateY(150%); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sales-popup.show { transform: translateY(0); }
.sp-img { font-size: 2rem; }
.sp-text p { margin: 0; font-size: 1rem; font-weight: 900; color: var(--primary); }
.sp-text small { color: var(--text-gray); font-size: 0.85rem; font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
    .ticker-tape { font-size: 0.95rem; padding: 8px 0; }
    .ticker-wrapper { height: 40px; }
    .section-pad { padding: 40px 0; }
    .hero { padding: 30px 0; }
    .hero h1 { font-size: 1.8rem; margin-bottom: 15px;}
    .sec-title { font-size: 1.6rem; }
    .sec-desc { font-size: 1rem; margin-bottom: 30px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-logo { margin: 0 auto 20px auto; display: block; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .social-links { justify-content: center; }
    .footer-links-list li { justify-content: center; }
    .footer-disclaimers { text-align: center; }
    
    .hero-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: right; margin-bottom: 30px; }
    .hero-features div { font-size: 0.9rem; justify-content: flex-start; }
    
    .problem-grid { grid-template-columns: 1fr; text-align: right; gap: 30px; }
    .cost-inaction-box { flex-direction: column; text-align: center; padding: 25px 20px; gap: 15px; }
    .cost-icon { font-size: 3rem; }
    .cost-text h3 { font-size: 1.5rem; }
    .cost-list li { font-size: 1rem; text-align: right; }
    
    .journey-wrapper { flex-direction: column; gap: 40px; margin-top: 40px; }
    .journey-wrapper::before {
        top: 0; bottom: 0; left: 50%; right: auto; width: 6px; height: 100%;
        transform: translateX(-50%); background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    }
    .journey-step { background: #FFFFFF; padding: 30px 20px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
    .step-icon { width: 65px; height: 65px; font-size: 1.6rem; border-width: 4px; margin-top: -15px; }
    .step-title { font-size: 1.3rem; }
    
    /* Us vs Them Mobile */
    .vs-container { flex-direction: column; gap: 20px; margin-top: 30px; }
    .vs-vesco { transform: scale(1); border-width: 1px; padding: 30px 20px; }
    .vs-other { padding: 30px 20px; }
    .vs-divider {
        position: relative; top: auto; left: auto; transform: none;
        margin: -10px auto; z-index: 5; width: 50px; height: 50px; font-size: 1.1rem;
    }
    .vs-header { margin-bottom: 25px; }
    .vs-vesco .vs-header h3 { font-size: 1.6rem; }
    .vs-other .vs-header h3 { font-size: 1.5rem; }
    .vs-list li { font-size: 1rem; margin-bottom: 20px; align-items: flex-start; }
    .vs-icon { width: 30px; height: 30px; margin-top: 3px; }
    .vs-icon svg { width: 18px; height: 18px; }
    
    .review-slide { flex: 0 0 280px; padding: 20px; }
    
    .faq-container { padding: 25px 20px; border-radius: 20px; }
    .faq-q { padding: 20px 0; font-size: 1.15rem; }
    .faq-card.open .faq-q { padding-bottom: 10px; }
    .faq-toggle { width: 28px; height: 28px; }
    .faq-toggle::before { width: 12px; }
    .faq-toggle::after { height: 12px; }
    
    .form-box { padding: 30px 20px; border-radius: 16px; }
    .form-title { font-size: 1.5rem; margin-bottom: 20px; }
    .inputs-grid { grid-template-columns: 1fr; gap: 0; }
    .packages-grid { gap: 12px; }
    .package-card { padding: 15px; }
    .pc-title { font-size: 1rem; }
    .pc-price { font-size: 1.1rem; }
    .modern-input { padding: 14px 14px 14px 40px; font-size: 0.95rem; }
    .btn-cta { font-size: 1.2rem; padding: 16px; }
    
    .doctor-note { padding: 30px 20px; }
    .doctor-header h4 { font-size: 1.4rem; }
    .doctor-svg { width: 38px; height: 38px; }
    .doctor-body p { font-size: 1.05rem; line-height: 1.8; }
    
    .target-grid { grid-template-columns: 1fr; gap: 15px; }
    .target-card { padding: 25px 20px; }
    .target-card h4 { font-size: 1.25rem; }
    .target-card p { font-size: 1rem; }
    
    .auth-features-section { padding: 30px 15px; margin: 20px 10px; border-radius: 16px; }
    .auth-features-title h2 { font-size: 1.7rem; }
    .auth-features-title p { font-size: 0.95rem; }
    .auth-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .auth-feature-card { flex-direction: column; text-align: center; padding: 20px 10px; gap: 12px; }
    .af-icon { width: 50px; height: 50px; margin: 0 auto; }
    .af-content { text-align: center; }
    .af-content h4 { font-size: 1rem; }
    .af-content p { font-size: 0.85rem; }
    
    .faq-wrap { padding: 15px; }
    .faq-q { font-size: 1.1rem; padding: 15px 0; text-align: right; }
    .faq-a p { font-size: 0.95rem; }
    
    .reviews-grid { grid-template-columns: 1fr; }
    
    .sticky-mobile { display: block; }
    .sales-popup { 
        bottom: auto; top: 15px; left: 15px; right: 15px; padding: 12px; 
        transform: translateY(-150%); 
    }
    .sales-popup.show { transform: translateY(0); }
    
    .quiz-box { padding: 30px 15px; }
    .quiz-header h3 { font-size: 1.5rem; }
    .quiz-step h4 { font-size: 1.2rem; }
    .quiz-btn { font-size: 1rem; padding: 15px; }
}

/* Fade In Up */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Quiz Section */
.quiz-section { background: var(--white); padding: 50px 0; }
.quiz-box { background: var(--bg-blue-light); border-radius: 20px; padding: 40px 20px; text-align: center; box-shadow: var(--shadow-sm); max-width: 800px; margin: 0 auto; border: 1px solid rgba(12, 74, 110, 0.1); }
.quiz-header h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 5px; }
.quiz-header p { color: var(--text-gray); margin-bottom: 20px; }
.quiz-progress { width: 100%; height: 6px; background: rgba(0,0,0,0.05); border-radius: 10px; margin-bottom: 30px; overflow: hidden; }
.qp-bar { height: 100%; width: 0%; background: var(--accent); transition: width 0.4s ease, background 0.4s ease; }

.quiz-step { display: none; animation: fadeInUp 0.5s ease; }
.quiz-step.active { display: block; }
.quiz-step h4 { font-size: 1.4rem; color: var(--text-dark); margin-bottom: 25px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; max-width: 500px; margin: 0 auto; }
.quiz-btn { background: white; border: 2px solid rgba(12, 74, 110, 0.1); padding: 18px 20px; border-radius: 12px; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); cursor: pointer; transition: 0.3s; text-align: right; }
.quiz-btn:hover, .quiz-btn:active { border-color: var(--accent); background: rgba(245, 158, 11, 0.05); transform: translateY(-2px); }

.result-content { text-align: center; }
.result-icon { font-size: 4rem; margin-bottom: 10px; animation: bounce 2s infinite; }
.result-content h4 { color: #10b981; font-size: 1.8rem; font-weight: 900; margin-bottom: 15px; }
.result-content p { font-size: 1.2rem; color: var(--text-dark); margin-bottom: 20px; }
.result-list { list-style: none; text-align: right; max-width: 400px; margin: 0 auto 30px; }
.result-list li { font-size: 1.1rem; color: var(--text-gray); margin-bottom: 15px; font-weight: 600; }
.pulse-btn { animation: pulse-shadow 2s infinite; }

@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Legal Pages Styling */
.legal-header { background: var(--primary); color: white; padding: 60px 0 40px; text-align: center; }
.legal-header h1 { font-size: 2.5rem; margin-bottom: 15px; color: var(--accent); }
.legal-container { max-width: 800px; margin: 50px auto; padding: 40px; background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); line-height: 2; color: var(--text-gray); font-size: 1.1rem; }
.legal-container h2 { color: var(--primary); font-size: 1.5rem; margin: 30px 0 15px; border-bottom: 2px solid var(--bg-blue-light); padding-bottom: 10px; }
.legal-container p { margin-bottom: 15px; }
.legal-container ul { margin-bottom: 20px; padding-right: 20px; }
.legal-container li { margin-bottom: 10px; }
.back-home { display: inline-flex; align-items: center; gap: 8px; color: white; text-decoration: none; margin-bottom: 20px; opacity: 0.8; transition: 0.3s; font-weight: 600; }
.back-home:hover { opacity: 1; transform: translateX(5px); }
