/* System font stack for 100/100 performance */

:root {
    --primary: #047857;
    /* Emerald 700 */
    --primary-dark: #065f46;
    /* Emerald 800 */
    --secondary: #1f2937;
    /* Gray 800 */
    --accent: #d97706;
    /* Amber 600 */
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --text-main: #111827;
    --text-muted: #374151;
    /* Gray 700 */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.2rem;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1.125rem;
    border: none;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.5), inset 0 1px 1px rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px -12px rgba(5, 150, 105, 0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.4), inset 0 1px 1px rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px -12px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(37, 211, 102, 0.5);
}

.btn-call {
    background: white;
    text-decoration: none; /* Removed underline */
    border: 2px solid var(--primary);
    padding: 0.5rem 2rem 0.5rem 0.5rem; /* Space for the circular icon on the left */
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-dark);
}

.call-icon {
    width: 60px; /* Slightly larger */
    height: 60px;
    background: var(--primary);
    color: white !important; /* Forces white icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
    flex-shrink: 0;
}

.btn-call .btn-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary) !important; /* Explicit green */
    margin-bottom: -2px;
}

.btn-call .btn-subtext {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary) !important; /* Explicit text color */
}

.cta-group {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}



/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    line-height: 1;
}

.status-online {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-left: auto; /* Push to right if only one other element */
}

@media (max-width: 600px) {
    .nav-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    .status-online {
        margin-left: initial;
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.phone-link {
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero {
    padding: 140px 0 80px;
    background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 60%),
                radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent 60%);
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: flex-start;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    margin: 0 0 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-image-container {
    position: relative;
    border-radius: 32px;
    overflow: visible; /* Changed to visible for glow effects */
    /* box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.25); Removed box shadow */
    border: none;
    background: transparent;
    margin: 30px auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-img {
    display: block;
    width: 100%;
    max-width: 1000px; /* Limit total width */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(4, 120, 87, 0.2));
    animation: float 6s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .hero-img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-image-container:hover .hero-img {
    transform: scale(1.05) translateY(-20px);
}

@media (max-width: 991px) {
    .hero { padding: 100px 0 60px; }
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    .hero-text { text-align: center; }
    .hero h1 { margin: 0 auto 1.5rem; }
}

.hero-badges {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .hero-badges { justify-content: center; }
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-badge svg { flex-shrink: 0; }



/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
}

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

details {
    margin-bottom: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

summary {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
}

summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
}

details[open] summary::after {
    content: '-';
}

details div {
    padding: 0 1.5rem 1.5rem;
}

/* Conversion Block */
.cta-block {
    background: var(--secondary);
    color: white;
    text-align: center;
    border-radius: 30px;
    margin: 40px 0;
}

.cta-block h2 {
    color: white;
    font-size: 2.5rem;
}

.cta-block p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.form-group option {
    background: var(--secondary);
    color: white;
}


/* Utilities */


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

.mt-2 {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Testimonials */
.testimonials-swiper {
    padding-bottom: 50px !important;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: white;
}

.testimonial-card .stars {
    color: #fbce07;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--primary);
}

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

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .cta-group .btn {
        width: 100%;
    }
}

/* Illustration Gallery */
.illustration-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.illustration-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.illustration-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.illustration-card img {
    width: 100%;
    height: auto;
    max-width: 220px;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.illustration-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

.illustration-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Trust Stats */
.trust-stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .trust-stats-bar {
        margin-top: -30px;
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .stat-card { padding: 1.25rem; }
}
/* Trust Bar Section */
.trustbar {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
}

.trust-item svg {
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}

.trust-item:hover svg {
    transform: scale(1.1);
}

.trust-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .trust-item { font-size: 1rem; }
}
/* Comparison Table */
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 2rem; background: white; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.05); }
.comparison-table th, .comparison-table td { padding: 1.5rem 2rem; text-align: left; border-bottom: 1px solid #f3f4f6; }
.comparison-table th { background: var(--bg-light); font-weight: 800; font-size: 1.15rem; color: var(--secondary); }
.comparison-table th:first-child { width: 40%; }
.comparison-table th:nth-child(2) { background: #f0fdf4; color: var(--primary-dark); }
.comparison-table td:nth-child(2) { background: #f0fdf4; border-bottom: 1px solid #dcfce7; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .pro { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 0.75rem; }
.comparison-table .con { color: #ef4444; font-weight: 600; display: flex; align-items: center; gap: 0.75rem; }

/* Glass FAQ Accordion */
details.glass-accordion {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
details.glass-accordion summary {
    font-size: 1.1rem;
}

/* Interactive Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.9);
}
.glass-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

/* E-E-A-T Section */
.eeat-profile {
    display: flex; gap: 2.5rem; align-items: center; background: white; padding: 3rem; border-radius: 24px; box-shadow: var(--shadow-lg); margin-top: 3rem; border: 1px solid rgba(0,0,0,0.05);
}
.eeat-avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; border: 4px solid var(--bg-light); box-shadow: var(--shadow-md); }
.eeat-content h3 { font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--secondary); }
.eeat-badges { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.eeat-badge { background: #f0fdf4; padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; color: var(--primary-dark); }
@media (max-width: 768px) { .eeat-profile { flex-direction: column; text-align: center; } .eeat-badges { justify-content: center; } }

/* SEO Silo Linking Block */
.seo-silo { background: var(--bg-light); padding: 3rem; border-radius: 24px; margin-top: 4rem; border: 1px solid rgba(0,0,0,0.05); }
.seo-silo h3 { font-size: 1.4rem; margin-bottom: 2rem; color: var(--secondary); text-align: center; }
.silo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.2rem; }
.silo-grid a { color: var(--text-muted); font-weight: 500; text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: 0.5rem; background: white; padding: 1rem; border-radius: 12px; box-shadow: var(--shadow-sm); }
.silo-grid a:hover { color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    display: none; justify-content: space-between; padding: 12px 16px;
    box-shadow: 0 -10px 25px rgba(0,0,0,0.08); z-index: 1000; border-top: 1px solid rgba(0,0,0,0.05);
}
.mobile-sticky-cta .btn { flex: 1; margin: 0 6px; padding: 0.9rem; font-size: 1.05rem; }
@media (max-width: 768px) {
    .mobile-sticky-cta { display: flex; }
    body { padding-bottom: 80px; }
}

/* Pre-Form CTA Section */
.pre-form-cta {
    text-align: center;
    padding: 80px 0 40px;
    background: radial-gradient(circle at center, rgba(4, 120, 87, 0.03) 0%, transparent 70%);
}

.pre-form-cta h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.pre-form-cta p {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.trust-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem 3rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge-pill:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.12);
}

.badge-star {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 6px 8px rgba(234, 179, 8, 0.3));
    flex-shrink: 0;
}

.badge-content {
    text-align: left;
    border-left: 2px solid #f3f4f6;
    padding-left: 2rem;
}

.badge-title {
    display: block;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.badge-status {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #10b981;
}

@media (max-width: 640px) {
    .trust-badge-pill {
        padding: 1rem 1.5rem;
        gap: 1rem;
        border-radius: 20px;
    }
    .badge-star { width: 40px; height: 40px; }
    .badge-content { padding-left: 1rem; }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: none;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 -10px 25px rgba(0,0,0,0.08);
    z-index: 1000;
    border-top: 1px solid rgba(0,0,0,0.05);
    gap: 12px;
}

.mobile-sticky-cta .btn {
    flex: 1;
    margin: 0;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .mobile-sticky-cta { display: flex; }
    body { padding-bottom: 80px; }
}

.btn-content-v {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.btn-subtext {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
}

/* Trust Stats Bar Restored */
.trust-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: -3rem auto 3rem;
    background: white;
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

@media (max-width: 991px) {
    .trust-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trust-stats-bar {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: #f0fdf4;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Feature Image Section */
.feature-showcase {
    margin: 4rem auto;
    perspective: 1000px;
}

.feature-image-container {
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px -30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    transform: rotateX(2deg);
    transition: transform 0.6s ease;
}

.feature-image-container:hover {
    transform: rotateX(0deg) translateY(-10px);
}

.feature-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: brightness(1.02);
}