/* ===================================
   OCALA CAPITAL - RETIREMENT GUIDE LANDING PAGE
   Color Scheme:
   - Navy Blue: #1A2F4B
   - Orange/Gold: #D4A054
   - White/Off-white: #FFFFFF / #F8F9FA
   - Dark Gray: #333333
   - Light Blue: #E8F4F8
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   SECTION 1: HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-left {
    padding-right: 20px;
}

.pre-headline {
    color: #D4A054;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #1A2F4B;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 22px;
    line-height: 1.4;
    color: #555555;
    margin-bottom: 30px;
    font-weight: 500;
}

.benefit-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.benefit-list li i {
    color: #D4A054;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 20px;
    flex-shrink: 0;
}

.social-proof-small {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D4A054;
    font-size: 14px;
}

.social-proof-small i {
    font-size: 16px;
}

.social-proof-small span {
    color: #666666;
    font-weight: 500;
}

/* Form Container */
.form-container {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(26, 47, 75, 0.15);
}

.form-headline {
    font-size: 28px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 10px;
    text-align: center;
}

.form-subtext {
    font-size: 16px;
    color: #666666;
    margin-bottom: 25px;
    text-align: center;
}

/* Form Styles */
.lead-form {
    width: 100%;
}

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

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: #999999;
    font-size: 18px;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.lead-form input:focus {
    outline: none;
    border-color: #D4A054;
    box-shadow: 0 0 0 3px rgba(212, 160, 84, 0.1);
}

.lead-form input.error {
    border-color: #DC3545;
}

.error-message {
    display: block;
    color: #DC3545;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

.helper-text {
    display: block;
    color: #999999;
    font-size: 13px;
    margin-top: 5px;
}

.privacy-text {
    font-size: 13px;
    color: #666666;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

.privacy-text i {
    color: #28A745;
    margin-right: 5px;
}

/* CTA Button */
.cta-button {
    width: 100%;
    background: #D4A054;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 160, 84, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-button:hover {
    background: #C69043;
    box-shadow: 0 6px 20px rgba(212, 160, 84, 0.4);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    font-size: 16px;
}

.below-button-text {
    font-size: 13px;
    color: #999999;
    text-align: center;
    margin-top: 10px;
}

.below-button-text-white {
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 15px;
}

/* ===================================
   SECTION 2: PROBLEM AGITATION
   =================================== */
.problem-section {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.section-headline {
    font-size: 42px;
    font-weight: 800;
    color: #1A2F4B;
    margin-bottom: 30px;
    line-height: 1.2;
}

.body-copy {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 40px;
}

.body-copy p {
    margin-bottom: 20px;
}

.body-copy strong {
    color: #1A2F4B;
    font-weight: 700;
}

.stat-callout {
    background: linear-gradient(135deg, #D4A054 0%, #C69043 100%);
    color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(212, 160, 84, 0.3);
}

.stat-number {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

.stat-text {
    text-align: left;
    font-size: 20px;
    line-height: 1.4;
}

.stat-text strong {
    display: block;
    font-weight: 700;
}

/* ===================================
   SECTION 3: WHAT YOU'LL DISCOVER
   =================================== */
.discover-section {
    padding: 80px 0;
    background: #E8F4F8;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-box {
    background: #FFFFFF;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D4A054 0%, #C69043 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 12px;
}

.benefit-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

/* ===================================
   SECTION 4: MID-PAGE FORM
   =================================== */
.mid-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #D4A054 0%, #C69043 100%);
    color: #FFFFFF;
}

.mid-form-content {
    text-align: center;
}

.mid-form-headline {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.mid-form-subtext {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.inline-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.inline-form .form-group {
    margin-bottom: 0;
}

.inline-form input {
    padding: 15px 20px;
}

.inline-form .input-wrapper i {
    display: none;
}

.inline-form .cta-button {
    width: auto;
    padding: 15px 35px;
    white-space: nowrap;
    background: #1A2F4B;
}

.inline-form .cta-button:hover {
    background: #152538;
}

/* ===================================
   SECTION 5: CREDIBILITY & TRUST
   =================================== */
.credibility-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.credibility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.credibility-left h3,
.credibility-right h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 25px;
}

.advisor-photos {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.advisor-photo-placeholder {
    flex: 1;
    background: #E8F4F8;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    border: 3px solid #D4A054;
}

.advisor-photo-placeholder i {
    font-size: 60px;
    color: #1A2F4B;
    margin-bottom: 15px;
}

.advisor-photo-placeholder p {
    font-weight: 600;
    color: #1A2F4B;
    font-size: 18px;
}

.advisor-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 15px;
}

.advisor-mission {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 30px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.credential-badge {
    background: #E8F4F8;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #D4A054;
}

.credential-badge i {
    font-size: 32px;
    color: #D4A054;
    margin-bottom: 10px;
}

.credential-badge span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1A2F4B;
    line-height: 1.3;
}

/* Testimonials */
.testimonial {
    background: #F8F9FA;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #D4A054;
}

.stars {
    color: #D4A054;
    margin-bottom: 12px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #1A2F4B;
}

/* ===================================
   SECTION 6: FAQ
   =================================== */
.faq-section {
    padding: 80px 0;
    background: #E8F4F8;
}

.faq-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    background: #FFFFFF;
    border: none;
    padding: 25px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1A2F4B;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F8F9FA;
}

.faq-question i {
    color: #D4A054;
    font-size: 16px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 25px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}

/* ===================================
   SECTION 7: URGENCY
   =================================== */
.urgency-section {
    padding: 80px 0;
    background: #FFFFFF;
}

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

.urgency-icon {
    font-size: 60px;
    color: #D4A054;
    margin-bottom: 20px;
}

.urgency-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1A2F4B;
    margin-bottom: 25px;
}

.urgency-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
}

.bonus-highlight {
    background: linear-gradient(135deg, #FFF9F0 0%, #FFE8C5 100%);
    border: 2px solid #D4A054;
    border-radius: 10px;
    padding: 30px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bonus-highlight i {
    font-size: 48px;
    color: #D4A054;
}

.bonus-highlight p {
    margin: 0;
    text-align: left;
    color: #444444;
}

/* ===================================
   SECTION 8: FINAL CTA
   =================================== */
.final-cta-section {
    padding: 80px 0;
    background: #1A2F4B;
    color: #FFFFFF;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-headline {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.final-subheadline {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-form-container {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.final-form input {
    background: #F8F9FA;
    border-color: #E0E0E0;
}

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

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-badge i {
    font-size: 36px;
    color: #D4A054;
}

.trust-badge span {
    font-size: 14px;
    font-weight: 500;
}

/* ===================================
   SECTION 9: FOOTER
   =================================== */
.footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
}

.footer-logo h3 {
    color: #D4A054;
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 14px;
    color: #999999;
    margin-bottom: 20px;
}

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

.footer-contact i {
    color: #D4A054;
    margin-right: 8px;
    width: 16px;
}

.footer-contact a:hover {
    color: #D4A054;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 14px;
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4A054;
}

.copyright {
    font-size: 13px;
    color: #999999;
}

.footer-disclaimer {
    text-align: center;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #999999;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   EXIT-INTENT POPUP
   =================================== */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    padding: 50px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.exit-popup-close:hover {
    color: #333333;
}

.exit-popup-inner h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1A2F4B;
    margin-bottom: 15px;
    text-align: center;
}

.exit-popup-inner p {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 15px;
    text-align: center;
}

.exit-popup-subtext {
    font-size: 14px !important;
    color: #999999 !important;
    margin-top: 15px !important;
    font-style: italic;
}

.exit-form {
    margin-top: 30px;
}

/* ===================================
   MOBILE STICKY CTA
   =================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 12px 15px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.sticky-mobile-cta .cta-button {
    width: 100%;
    padding: 15px 25px;
    font-size: 16px;
}

/* ===================================
   THANK YOU PAGE STYLES
   =================================== */
.thankyou-section {
    padding: 80px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
}

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

.thankyou-icon {
    font-size: 80px;
    color: #28A745;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thankyou-headline {
    font-size: 48px;
    font-weight: 800;
    color: #1A2F4B;
    margin-bottom: 20px;
}

.thankyou-subheadline {
    font-size: 20px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 50px;
}

.thankyou-card {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.thankyou-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 40px;
}

.thankyou-card h2 i {
    color: #D4A054;
    margin-right: 10px;
}

.next-steps {
    text-align: left;
}

.next-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4A054 0%, #C69043 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.bonus-section {
    background: #F8F9FA;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.bonus-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 35px;
}

.bonus-section h2 i {
    color: #D4A054;
    margin-right: 10px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bonus-box {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.bonus-box:hover {
    border-color: #D4A054;
    transform: translateY(-5px);
}

.bonus-box i {
    font-size: 48px;
    color: #D4A054;
    margin-bottom: 15px;
}

.bonus-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 10px;
}

.bonus-box p {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
}

.cta-section {
    background: linear-gradient(135deg, #D4A054 0%, #C69043 100%);
    padding: 50px;
    border-radius: 12px;
    color: #FFFFFF;
    margin-bottom: 50px;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .cta-button {
    background: #1A2F4B;
    display: inline-flex;
    width: auto;
    padding: 18px 40px;
    margin-bottom: 15px;
}

.cta-section .cta-button:hover {
    background: #152538;
}

.cta-subtext {
    font-size: 16px;
    opacity: 0.9;
}

.cta-subtext a {
    color: #FFFFFF;
    text-decoration: underline;
}

.social-proof-section {
    margin-bottom: 50px;
}

.social-proof-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1A2F4B;
    margin-bottom: 25px;
}

.testimonial-mini {
    background: #FFFFFF;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-mini .stars {
    margin-bottom: 15px;
}

.testimonial-mini p {
    font-size: 16px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 10px;
}

.testimonial-mini .author {
    font-weight: 600;
    color: #1A2F4B;
    font-size: 14px;
}

.share-section p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.share-button.facebook {
    background: #1877F2;
    color: #FFFFFF;
}

.share-button.facebook:hover {
    background: #145DBF;
}

.share-button.email {
    background: #666666;
    color: #FFFFFF;
}

.share-button.email:hover {
    background: #444444;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .main-headline {
        font-size: 36px;
    }
    
    .sub-headline {
        font-size: 18px;
    }
    
    .benefit-list li {
        font-size: 16px;
    }
    
    /* Section Headlines */
    .section-headline {
        font-size: 32px;
    }
    
    /* Stat Callout */
    .stat-callout {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stat-text {
        text-align: center;
    }
    
    /* Benefit Grid */
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Mid-Page Form */
    .inline-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .inline-form .cta-button {
        width: 100%;
    }
    
    /* Credibility */
    .credibility-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advisor-photos {
        flex-direction: column;
    }
    
    .credentials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Thank You Page */
    .thankyou-headline {
        font-size: 36px;
    }
    
    .thankyou-card {
        padding: 30px;
    }
    
    .bonus-section {
        padding: 30px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .next-step {
        gap: 15px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Exit Popup */
    .exit-popup-content {
        padding: 30px;
    }
    
    .exit-popup-inner h2 {
        font-size: 26px;
    }
    
    /* Show Mobile Sticky CTA */
    .sticky-mobile-cta {
        display: block;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .main-headline {
        font-size: 28px;
    }
    
    .sub-headline {
        font-size: 16px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .form-headline {
        font-size: 22px;
    }
    
    .section-headline {
        font-size: 26px;
    }
    
    .body-copy {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .stat-text {
        font-size: 16px;
    }
    
    .benefit-box {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .mid-form-headline {
        font-size: 28px;
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .final-headline {
        font-size: 32px;
    }
    
    .final-form-container {
        padding: 25px;
    }
    
    .thankyou-headline {
        font-size: 28px;
    }
    
    .thankyou-card h2 {
        font-size: 24px;
    }
    
    .bonus-section h2 {
        font-size: 24px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-button {
        width: 100%;
        justify-content: center;
    }
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .main-headline {
        font-size: 56px;
    }
    
    .section-headline {
        font-size: 48px;
    }
}
