:root {
    --bg-body: #0A1F3D;
    --bg-surface: #112240;
    --bg-surface-glass: rgba(17, 34, 64, 0.7);
    --primary: #00C896;
    --primary-glow: rgba(0, 200, 150, 0.4);
    --accent: #2B73B3;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-main: linear-gradient(135deg, #00C896 0%, #00e0a8 100%);
    --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    --font-main: 'Outfit', 'Inter', sans-serif;
}

/* Utilities for PageSpeed (replacing inline styles) */
.flex-item-center { display: flex; align-items: center; gap: 0.5rem; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }
.w-fit { width: fit-content; }
.p-badge { padding: 0.5rem 1rem; border-radius: 50px; background: rgba(0, 200, 150, 0.1); border: 1px solid var(--primary-glow); }
.section-header { text-align: center; margin-bottom: 3rem; }
.bg-surface { background: var(--bg-surface); }
.bg-body { background: var(--bg-body); }
.glass-effect { background: rgba(17, 34, 64, 0.9); }

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

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

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 3.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--primary-glow);
}

h2 {
    font-size: 2.5rem;
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 5rem 0;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
}

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

.cta-btn {
    background: #ffffff;
    color: var(--bg-body);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    display: inline-block;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
    background: #FFFFFF;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.0;
    color: #0A1F3D;
    font-weight: 900;
}

.hero-text p {
    font-size: 1.25rem;
    color: #2B73B3;
    margin-bottom: 2.5rem;
    max-width: 540px;
    font-weight: 500;
    line-height: 1.5;
}

.hero-benefits {
    margin-bottom: 3rem;
    display: grid;
    gap: 0.8rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #0A1F3D;
}

.benefit-item .icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    background: #112240;
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid #3b82f6;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.big-btn {
    font-size: 1.1rem;
    padding: 1.1rem 2.8rem;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 25px rgba(59, 130, 246, 0.4);
    background: #162c52;
    border-color: #60a5fa;
}

.cta-btn span {
    transition: transform 0.3s ease;
}

.cta-btn:hover span {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(0, 200, 150, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1E4D8C 0%, #2B73B3 100%);
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(30, 77, 140, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    min-height: 500px;
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.trust-item {
    background: rgba(17, 34, 64, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-surface);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }
}

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

/* Brands Grid */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

.brand-card {
    background: rgba(17, 34, 64, 0.9);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.brand-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand-card:hover img {
    transform: scale(1.1);
}

.brand-info {
    padding: 1.5rem;
    text-align: center;
}

.brand-btn {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
}

/* Footer */
footer {
    background: #050c18;
    padding: 5rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
}

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

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.1rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .hero-text h1 {
        font-size: 2.1rem;
        margin-bottom: 1.2rem;
    }

    .hero-text p {
        font-size: 1.05rem;
        margin: 0 auto 2.5rem;
        padding: 0 1rem;
        line-height: 1.5;
    }

    .hero-btns {
        justify-content: center;
        gap: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 4rem; /* Room for contact bar */
    }

    .logo {
        font-size: 1.3rem;
    }

    .contact-widget {
        bottom: 0px;
        background: rgba(10, 31, 61, 0.98);
        padding: 0.8rem 1rem;
    }

    .contact-btn {
        padding: 0.7rem 0.5rem;
        font-size: 0.9rem;
    }

    .contact-btn span {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 320px;
        margin: 2rem auto 0;
    }

    .nav-links {
        display: none;
    }
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

select.form-input option {
    background: var(--bg-surface);
    color: #fff;
}

fieldset {
    min-width: 0;
    /* Fix grid issues */
}

/* Floating Contact Widget & Mobile CTA Bar */
.contact-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2001;
    /* Above mobile menu */
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-phone {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-btn span {
    font-size: 1.4rem;
}

/* Mobile adjustments for widget & Menu */
@media (max-width: 768px) {
    .contact-widget {
        bottom: 0;
        right: 0;
        left: 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    }

    .contact-btn {
        flex: 1;
        justify-content: center;
        padding: 0.8rem 0.5rem;
        font-size: 0.95rem;
        /* Slightly smaller text to fit */
        border-radius: 12px;
        /* More like a button bar */
        box-shadow: none;
    }

    /* Undo hover transform on mobile to prevent sticky states */
    .contact-btn:hover {
        transform: none;
        box-shadow: none;
    }

    /* Hamburger Menu Trigger - Reset Button Style */
    .hamburger {
        display: block;
        width: 50px;
        height: 50px;
        cursor: pointer;
        z-index: 2000;
        padding: 10px;
        background: none;
        border: none;
        outline: none;
        font: inherit;
        color: inherit;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #0f172a;
        margin: 6px 0;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Hamburger Animation when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        z-index: 1500;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.active {
        transform: translateY(0);
    }

    .mobile-nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0f172a;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        /* Large touch target 56px approx */
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:active {
        background: var(--primary);
        color: white;
    }

    /* Ensure content isn't hidden behind bottom bar */
    footer {
        padding-bottom: 7rem;
    }
}

/* FAQ Accordion */
.faq-section {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px;
}

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

.faq-item {
    background: var(--bg-surface-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    user-select: none;
    gap: 1rem;
}

.faq-arrow {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    line-height: 1;
    display: inline-block;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ======================================
   FORM VALIDATION STATES
====================================== */
.form-input.field-valid {
    border-color: #00C896 !important;
    box-shadow: 0 0 0 2px rgba(0, 200, 150, 0.2) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300C896' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px !important;
}

.form-input.field-invalid {
    border-color: #f87171 !important;
    box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.2) !important;
    animation: shake 0.35s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-3px);
    }

    80% {
        transform: translateX(3px);
    }
}

.field-error {
    display: block;
    color: #f87171;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    padding-left: 0.2rem;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

@media (min-width: 769px) {

    .hamburger,
    .mobile-menu {
        display: none;
    }
}

/* ======================================
   HOW IT WORKS - 3 STEPS
====================================== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.step-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 200, 150, 0.15);
}

.step-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
    flex-shrink: 0;
}

.step-connector::after {
    content: "→";
    font-size: 2.5rem;
    color: var(--primary);
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-connector {
        padding: 0.5rem 0;
        transform: rotate(90deg);
    }
}

/* ======================================
   COMPARISON TABLE
====================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table thead tr {
    background: var(--bg-body);
}

.comparison-table th {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.comparison-table th.col-feature {
    width: 35%;
    text-align: left;
}

.comparison-table th.col-private {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table th.col-us {
    color: var(--primary);
    background: rgba(0, 200, 150, 0.08);
}

.comparison-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
}

.comparison-table td.feature-name {
    text-align: left;
    color: var(--text-main);
    font-weight: 600;
}

.comparison-table td.col-private {
    background: rgba(255, 255, 255, 0.01);
    color: #64748b;
}

.comparison-table td.col-us-val {
    color: #e2e8f0;
    font-weight: 600;
    background: rgba(0, 200, 150, 0.05);
}

.check-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: #0A1F3D;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
    margin-right: 0.4rem;
    vertical-align: middle;
}

@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .comparison-table th.col-feature,
    .comparison-table td.feature-name {
        min-width: 130px;
    }
}

/* ======================================
   PREMIUM FOOTER
====================================== */
footer {
    background: linear-gradient(180deg, #071830 0%, #050f1e 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), rgba(0, 200, 150, 0.4), transparent);
}

footer::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

/* Brand column */
.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo .logo-dot {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 240px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(0, 200, 150, 0.08);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 20px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
}

/* Footer column headings */
.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 200, 150, 0.2);
}

/* Footer links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.25s ease, gap 0.2s ease;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--text-main);
    gap: 0.85rem;
}

.footer-col ul li a .fl-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.footer-col ul li a:hover .fl-icon {
    background: rgba(0, 200, 150, 0.15);
}

/* Opening hours */
.footer-hours-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
}

.footer-hours-row .hour-icon {
    font-size: 1.1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.footer-hours-row .hour-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.1rem;
}

.footer-hours-row .hour-value {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-open-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 200, 150, 0.1);
    border: 1px solid rgba(0, 200, 150, 0.25);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.footer-open-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

/* Divider & bottom bar */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 0 1.8rem;
}

.footer-bottom {
    padding-bottom: 2.5rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-copy span {
    color: var(--primary);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.82rem;
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--primary);
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
}

/* trust-badge */
.trust-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(10, 31, 61, 0.95);
    padding: 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 200, 150, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
}

.badge-icon {
    font-size: 2rem;
}

.badge-title {
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff;
}

.badge-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .trust-badge {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        padding: 0.8rem 1.2rem;
        gap: 0.8rem;
        border-radius: 15px;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .badge-title {
        font-size: 1.1rem;
    }

    .badge-sub {
        font-size: 0.7rem;
    }
}

/* --- COMPETITIVE ENHANCEMENTS --- */

/* 1. Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-card {
    background: rgba(17, 34, 64, 0.9);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 850;
    font-size: 1.6rem;
    color: var(--bg-body);
    box-shadow: 0 12px 25px var(--primary-glow);
}

.step-card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.6rem;
    color: #ffffff;
}

.step-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 2. Table of Contents */
.toc-section {
    padding: 2rem 0;
    min-height: 50px;
}

.toc-container {
    background: rgba(17, 34, 64, 0.95);
    padding: 2.5rem;
    border-radius: 18px;
    border-left: 5px solid var(--primary);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-card);
}

.toc-title {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-container h4 {
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.toc-list a {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.toc-list a::before {
    content: '→';
    margin-right: 10px;
    color: var(--primary);
    opacity: 0.6;
}

.toc-list a:hover {
    color: var(--primary);
    transform: translateX(8px);
    opacity: 1;
}

/* 3. Premium Mobile Contact Widget */
@media (max-width: 768px) {
    .contact-widget {
        bottom: 0;
        right: 0;
        left: 0;
        padding: 1.2rem;
        background: rgba(10, 31, 61, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        flex-direction: row;
        justify-content: space-between;
        gap: 1rem;
        box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.6);
        border-radius: 20px 20px 0 0;
    }

    .contact-btn {
        flex: 1;
        border-radius: 15px;
        padding: 0.9rem 0.5rem;
    }
}