/* Global Styles */
:root {
    --primary-color: #006039;
    /* Dark Green - Trust (Rio Grande do Sul flag inspiration) */
    --primary-dark: #004d2e;
    --accent-color: #FECD06;
    /* Yellow - Attention/Rio Grande do Sul */
    --accent-hover: #e6b800;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-radius: 8px;
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    /* Prevent horizontal scroll */
    max-width: 100vw;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

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

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-primary);
    /* Fallback */
    background: linear-gradient(135deg, var(--primary-color) 0%, #00331f 100%);
}

.text-white {
    color: white;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.bg-dark h2 {
    color: white;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.bg-dark p {
    color: #e0e0e0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-full {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-color);
    font-size: 1.1rem;
    padding: 15px;
}

.btn-full:hover {
    background-color: var(--accent-hover);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Header */
.header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    height: auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

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

.logo img {
    height: 70px;
    /* Increased by ~40% */
    width: auto;
    display: block;
}

.nav a {
    margin-left: 20px;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

/* Mobile Menu & Nav Logic */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden by default */
    width: 100%;
    height: 100vh;
    background-color: white;
    z-index: 2000;
    transition: 0.3s ease-in-out;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 10px;
}

/* Hero Section */
.hero {
    background-color: var(--primary-dark);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./banner-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.badge {
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-text h2 {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.25rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.disclaimer-hero {
    font-size: 0.8rem !important;
    opacity: 0.8;
}

/* Hero Form */
.hero-form {
    flex: 0 0 400px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    color: var(--text-color);
    width: 100%;
    /* For mobile fallback */
    max-width: 400px;
}

.hero-form h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.hero-form p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    /* Optimizing for touch */
    background-color: #fff;
    -webkit-appearance: none;
    /* Remove iOS styles */
    appearance: none;
}

.form-security {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 10px;
    color: #888;
}

/* Sections General */
.why-protect,
.how-it-works,
.benefits,
.differentials,
.testimonials,
.faq {
    scroll-margin-top: var(--header-height);
    /* Needs sticky header offset */
}

/* Why Protect */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-simple {
    text-align: center;
    padding: 20px;
}

.feature-card-simple i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* How It Works */
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.step-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
    position: relative;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--accent-color);
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Differentials */
.row-flex {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.text-col {
    flex: 1;
    min-width: 300px;
}

.image-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.differentials-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    object-fit: cover;
}

/* 
.image-placeholder {
    width: 100%;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
} 
*/

.check-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    /* Better alignment for multi-line text */
}

.icon-wrapper {
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 4px;
    /* Align icon with first line of text */
}

.check-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.list-content p {
    margin-bottom: 0;
    margin-top: 2px;
    line-height: 1.4;
    color: #e0e0e0;
    /* Consistent with other text */
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--accent-color);
}

.testimonial-card p.review-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-details {
    font-size: 0.9rem;
}

.author-details strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
}

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

.accordion {
    margin-top: 40px;
}

.accordion-item {
    background: white;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* Safe upper limit */
    padding: 20px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 90px;
    width: auto;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
}

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

.footer-contact {
    display: block;
    margin-bottom: 10px;
}

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

/* Footer App Badges */
.footer-apps {
    text-align: center;
    margin-top: 30px;
}

.app-download-title {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-badge {
    height: 40px;
    width: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.app-badge:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}



/* === MOBILE FIRST OVERRIDES === */

@media (max-width: 992px) {

    /* Tablet & Small Desktop Adjustments */
    .hero-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .desktop-nav {
        display: none;
        /* Hide standard nav */
    }

    .mobile-menu-btn {
        display: block;
        /* Show hamburger */
    }

    .mobile-hide {
        display: none;
        /* Hide header CTA */
    }

    .header-container {
        padding: 0 10px;
        /* More space for logo/hamburger */
        justify-content: center;
        /* Center logo horizontally */
        position: relative;
        /* Context for absolute positioning */
    }

    .logo img {
        height: 85px;
        /* Larger logo ~45% increase from base */
    }

    .mobile-menu-btn {
        display: block;
        /* Show hamburger */
        position: absolute;
        right: 20px;
    }

    /* Section Spacing */
    .section-padding {
        padding: 50px 0;
    }

    /* Hero adjustments */
    .hero {
        padding: 40px 0;
        text-align: center;
        /* Center align for mobile usually looks better */
        background-color: var(--primary-dark);
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./banner-hero-mobile.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        padding-right: 0;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2rem;
        /* Even smaller for mobile */
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        /* Full width buttons on mobile */
    }

    .desktop-hide {
        display: block;
        /* Show WA button in hero contents since header one is gone */
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    /* Form mobile optim */
    .hero-form {
        margin-top: 20px;
        padding: 20px;
        max-width: 100%;
        text-align: left;
        /* Reset alignment for form */
    }

    /* Features/Benefits Grid */
    .features-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        /* Force single column */
    }

    /* Steps */
    .steps-container {
        flex-direction: column;
    }

    .step-item {
        margin-bottom: 20px;
    }

    /* Differentials */
    .row-flex {
        flex-direction: column;
        gap: 30px;
    }

    /* Differentials Mobile */
    .differentials .text-col {
        order: 1;
        /* Ensure text comes first or second as desired, default is fine though */
    }

    .check-list li {
        margin-bottom: 25px;
        /* More breathing room */
        background: rgba(255, 255, 255, 0.05);
        /* Subtle background for better readability */
        padding: 15px;
        border-radius: 8px;
    }

    .list-content strong {
        display: block;
        /* Force new line for title */
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--accent-color);
        /* Highlight key terms */
    }

    .list-content p {
        font-size: 0.95rem;
        opacity: 0.9;
    }
}

/* End Mobile Media Query */



/* Footer */
.footer {
    text-align: center;
    padding: 40px 0 20px;
}

.footer-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    display: inline-block;
    margin: 0 10px;
}



/* WhatsApp Modal Styles */
.modal-overlay {
    position: fixed !important;
    inset: 0;
    /* Shorthand for top: 0; right: 0; bottom: 0; left: 0; */
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000 !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    /* Allow scrolling if modal is taller than viewport */
}

.modal-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    margin: auto;
    /* Ensure centering */
    z-index: 10001;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 5px;
    z-index: 10002;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.modal-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.modal-content .form-group {
    text-align: left;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Mobile adjustments for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 25px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
}

/* ========================================
   MOBILE CONVERSION OPTIMIZATION STYLES
   ======================================== */

/* Sticky CTA Button (Mobile Only) */
.sticky-cta {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: var(--accent-color);
    padding: 12px 20px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: top 0.3s ease;
    text-align: center;
}

.sticky-cta.visible {
    top: 0;
}

.sticky-cta .btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    width: auto;
}

/* Multi-Step Form Structure */
.form-steps-wrapper {
    position: relative;
}

.step-progress {
    display: none;
    /* Hidden on desktop, shown on mobile */
    margin-bottom: 20px;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.step-indicator {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    margin: 0 4px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.step-indicator.active,
.step-indicator.completed {
    background: var(--primary-color);
}

.step-info {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-navigation {
    display: none;
    /* Hidden on desktop */
    margin-top: 15px;
    gap: 10px;
}

.step-navigation button {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-prev {
    background: #f0f0f0;
    color: var(--text-color);
}

.btn-next,
.btn-submit {
    background: var(--accent-color);
    color: var(--text-color);
}

.btn-prev:hover {
    background: #e0e0e0;
}

.btn-next:hover,
.btn-submit:hover {
    background: var(--accent-hover);
}

/* Trust Elements */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.trust-badge i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Form Field Validation Feedback */
.form-group.error input,
.form-group.error select {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group.success input,
.form-group.success select {
    border-color: #28a745;
}

.form-group .error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Loading State for Submit Button */
.btn-full.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-full.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--text-color);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {

    /* Show mobile-specific elements */
    .step-progress {
        display: block;
    }

    .step-navigation {
        display: flex;
    }

    /* Multi-step form display (MOBILE ONLY) */
    .form-step {
        display: none;
    }

    .form-step.active {
        display: block;
        animation: fadeInStep 0.3s ease;
    }

    @keyframes fadeInStep {
        from {
            opacity: 0;
            transform: translateX(10px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Hide desktop submit button in multi-step mode */
    .hero-form .btn-full.desktop-submit {
        display: none;
    }

    /* Optimize form fields for mobile */
    .form-group input,
    .form-group select {
        height: 48px;
        font-size: 16px;
        /* Prevents iOS zoom */
        padding: 12px 14px;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 6px;
    }

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

    /* Larger touch targets for buttons */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
    }

    .btn-full {
        min-height: 52px;
        font-size: 1.05rem;
    }

    /* Hero form mobile optimization */
    .hero-form {
        padding: 25px 20px;
        margin-top: 25px;
    }

    .hero-form h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .hero-form>p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    /* Reduce visual clutter on mobile */
    .form-security {
        font-size: 0.75rem;
        margin-top: 8px;
    }

    /* Trust badges mobile */
    .trust-badges {
        gap: 10px;
        margin-top: 12px;
    }

    .trust-badge {
        font-size: 0.75rem;
    }

    /* Section headings mobile optimization */
    h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Sticky CTA spacing adjustment */
    body.sticky-active {
        padding-top: 50px;
    }

    .sticky-cta.visible~.hero {
        margin-top: 50px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.form-group input:focus,
.form-group select:focus,
.btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Performance optimization - reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}