:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #E2E8F0;
    --brand-primary: #1E40AF;
    --brand-gradient: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --brand-glow: 0 0 20px rgba(59, 130, 246, 0.15);
    --gold: #D97706;
    --gold-light: #FEF3C7;
    --success: #059669;
    --success-light: #D1FAE5;
    --danger: #DC2626;
    --danger-light: #FEE2E2;
    --bg-main: #F8FAFC;
    --bg-card: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* Header styling */
.lp-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    background: var(--brand-gradient);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.25);
}

.logo-text {
    font-size: 20px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

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

.phone-icon {
    color: var(--brand-primary);
    width: 20px;
    height: 20px;
    padding: 4px;
    background: #EFF6FF;
    border-radius: 50%;
    box-sizing: content-box;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-text span {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.phone-text strong {
    font-size: 14px;
}

.nav-cta-btn {
    background: var(--brand-gradient);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.2);
    transition: var(--transition);
}

.nav-cta-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 100% 0%, #EFF6FF 0%, #F8FAFC 70%);
    padding: 60px 24px;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.campaign-badge {
    background: #EFF6FF;
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #DBEAFE;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-left h1 span {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.check-icon {
    color: var(--success);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.badge-strip {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    width: 100%;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.badge-icon {
    color: var(--brand-primary);
    width: 18px;
    height: 18px;
}

/* Form Card */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--brand-gradient);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.phone-prefix {
    position: absolute;
    left: 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    pointer-events: none;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 14px;
    color: var(--primary);
    background: white;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

#lead-phone {
    padding-left: 50px;
}

.submit-btn {
    width: 100%;
    background: var(--brand-gradient);
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Success Card */
.success-card {
    display: none;
    text-align: center;
    padding: 10px 0;
}

.success-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--success-light);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.1);
}

.success-checkmark {
    width: 30px;
    height: 30px;
}

.success-card h3 {
    font-size: 22px;
    color: var(--success);
    margin-bottom: 12px;
}

.success-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.success-details {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row span {
    color: var(--text-muted);
}

.detail-row strong {
    color: var(--primary);
}

.status-indicator {
    background: #FEF3C7;
    color: #D97706;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
}

.success-action-btn {
    background: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.success-action-btn:hover {
    background: #EFF6FF;
}

/* Social proof logos strip */
.social-proof-strip {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 24px;
}

.logos-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logos-container span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-items {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.mca-badge, .govt-badge, .iso-badge, .tax-badge {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-light);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 6px;
    background: var(--bg-main);
}

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

/* Sections */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.sub-title {
    background: #EFF6FF;
    color: var(--brand-primary);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Pricing cards */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    justify-content: center;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #BFDBFE;
}

.pricing-card.featured {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::after {
    content: 'POPULAR';
    position: absolute;
    top: 18px;
    right: 20px;
    background: var(--brand-primary);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.pricing-card .pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
}

.pricing-card .price span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 6px;
}

.pricing-card .pricing-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    margin-bottom: 32px;
}

.pricing-card .pricing-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-main);
}

.pricing-card .pricing-checklist li i {
    color: var(--success);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-action {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--brand-gradient);
    color: white;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(30, 64, 175, 0.15);
    transition: var(--transition);
}

.pricing-action:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.pricing-card.featured .pricing-action {
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.25);
}

/* Steps section */
.steps-section {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.step-card {
    text-align: center;
    padding: 32px;
    position: relative;
}

.step-num {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(30, 64, 175, 0.05);
    line-height: 1;
    z-index: 0;
    font-family: 'Outfit', sans-serif;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #EFF6FF;
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 1;
}

.step-icon i {
    width: 24px;
    height: 24px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* FAQs */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-trigger {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--primary);
    transition: var(--transition);
}

.faq-trigger:hover {
    color: var(--brand-primary);
}

.faq-trigger::after {
    content: '+';
    font-size: 20px;
    color: var(--text-muted);
}

.faq-item.active .faq-trigger::after {
    content: '−';
}

.faq-content {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--text-muted);
    display: none;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    display: block;
}

/* Testimonials */
.testimonials-section {
    background: radial-gradient(circle at 0% 100%, #EFF6FF 0%, #F8FAFC 60%);
    border-bottom: 1px solid var(--border-color);
}

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

.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #F59E0B;
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-card p {
    font-size: 14px;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 24px;
    line-height: 1.7;
}

.user-meta {
    display: flex;
    flex-direction: column;
}

.user-meta strong {
    font-size: 14px;
    color: var(--primary);
}

.user-meta span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Footer disclaimer */
footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 40px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    font-size: 12px;
    line-height: 1.8;
}

.footer-bottom-strip {
    border-top: 1px solid #1E293B;
    padding-top: 24px;
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
    display: flex;
    padding: 10px 16px;
    gap: 12px;
    z-index: 99;
    display: none; /* Shown only on screens <= 768px */
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}

.mobile-cta-btn.call {
    background: white;
    color: var(--brand-primary);
    border: 1.5px solid var(--brand-primary);
}

.mobile-cta-btn.form {
    background: var(--brand-gradient);
    color: white;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Breakpoints & Responsiveness */
@media (max-width: 1024px) {
    .hero-container {
        gap: 32px;
    }
    .hero-left h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 68px; /* Leave space for sticky CTA bar */
    }
    
    .header-container {
        padding: 8px 16px;
    }
    
    .nav-cta-btn, .header-contact .phone-link, .header-wa-btn {
        display: none; /* Handled by sticky mobile cta */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-left {
        text-align: center;
        align-items: center;
    }
    
    .features-list {
        align-items: flex-start;
    }
    
    .badge-strip {
        justify-content: center;
    }
    
    .social-proof-strip {
        padding: 16px 20px;
    }
    
    .logos-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .logo-items {
        justify-content: center;
    }
    
    .mobile-sticky-cta {
        display: flex;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .form-card {
        padding: 24px;
    }
}

/* Premium Header WhatsApp Button */
.header-wa-btn {
    background: #E8FBF0;
    color: #059669;
    border: 1px solid #A7F3D0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    height: 42px; /* Matches the phone block visually */
}

.header-wa-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.header-wa-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: fill 0.3s ease;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.5);
    z-index: 100;
    font-weight: 700;
    font-size: 14px;
    animation: wa-pulse 2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.mobile-cta-btn.whatsapp-cta {
    background: #25D366;
    color: white;
    border: none;
}

.mobile-cta-btn.whatsapp-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-right: 4px;
}

/* Position floating button nicely above the sticky bar on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Top Disclaimer Banner */
.top-disclaimer-banner {
    background-color: var(--gold-light, #FEF3C7);
    color: #92400E;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(217, 119, 6, 0.2);
    width: 100%;
    position: relative;
    z-index: 1000;
}
.top-disclaimer-banner strong {
    font-weight: 700;
}
.top-disclaimer-banner a {
    color: #1E40AF;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
}

/* Rotary Text Animations */
.rotary-text {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 800;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.rotary-text.fade-out {
    transform: translateY(-15px);
    opacity: 0;
}
.rotary-text.fade-in {
    transform: translateY(15px);
    opacity: 0;
}

/* Compact layout on mobile to prevent scrolling */
@media (max-width: 768px) {
    .top-disclaimer-banner {
        padding: 2px 6px;
        font-size: 10px;
    }
    .lp-header {
        position: relative !important;
        height: 40px !important;
    }
    .header-container {
        height: 40px !important;
        padding: 2px 12px !important;
    }
    .logo-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .logo-text {
        font-size: 13px;
    }
    
    .hero-section {
        padding: 4px 12px 0 12px !important;
        height: calc(100vh - 40px - 24px); /* Calc viewport height minus header and banner */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
        margin-bottom: 0;
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        gap: 4px !important;
    }
    
    .hero-left {
        height: auto !important;
        padding: 2px 0 !important;
        margin: 0 !important;
    }
    
    .campaign-badge {
        display: none !important; /* Hide badge to save vertical space */
    }
    
    .hero-left h1 {
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin-bottom: 1px !important;
        letter-spacing: -0.2px;
    }
    
    .hero-left p, .features-list, .badge-strip {
        display: none !important; /* Hide to prevent scroll */
    }
    
    .hero-right {
        flex: 1 1 auto;
        display: flex;
        align-items: stretch;
        margin: 0 !important;
        padding-bottom: 6px;
    }
    
    .form-card {
        padding: 8px 12px !important;
        border-radius: var(--radius-md) !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        margin: 0 !important;
        box-shadow: var(--shadow-md) !important;
    }
    
    .form-header {
        display: none !important; /* Hide header completely to save vertical space */
    }
    
    .form-group {
        margin-bottom: 2px !important;
        gap: 1px !important;
    }
    
    .form-group label {
        font-size: 7px !important;
        margin-bottom: 1px;
    }
    
    .form-group input, .form-group select {
        padding: 4px 8px 4px 26px !important;
        font-size: 11px !important;
        height: 30px !important;
        border-radius: 5px !important;
    }
    
    .phone-prefix {
        font-size: 11px !important;
        left: 6px !important;
    }
    
    .input-icon {
        left: 6px !important;
        width: 11px !important;
        height: 11px !important;
    }
    
    #lead-phone {
        padding-left: 32px !important;
    }
    
    .submit-btn {
        padding: 6px !important;
        font-size: 11px !important;
        margin-top: 2px !important;
        height: 32px !important;
        border-radius: 5px !important;
    }
    
    .mobile-sticky-cta {
        display: none !important; /* Hide on form page so it doesn't overlap or waste space */
    }
}

