/* Modern Design System - Minuto Crédito */
:root {
    --primary-color: #D4AF37; /* Ion Gold */
    --primary-light: #FFD66B; /* Champagne Gold */
    --primary-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD66B 100%);
    --secondary-color: #C0C0C0; /* Silver Accent */
    --accent-color: #FFAB00;
    --bg-dark: #070A0F; /* Void Black */
    --bg-card: rgba(255, 255, 255, 0.03); /* Glass Base */
    --text-color: #FFFFFF;
    --text-light: #A0AEC0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px -5px rgba(212, 175, 55, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --radius: 16px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(20, 30, 48, 1) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1280px;
    /* Slightly wider for modern feel */
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: rgba(7, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between logo and text */
}



.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-extension-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.logo-img-footer {
    height: 100px;
    width: auto;
    margin-bottom: 5px;
    display: block;
}







/* Services Buttons Extra Style */
.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    margin-top: 15px;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: #0c0f16;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border: var(--glass-border);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: -55px auto 20px;
    /* Pull up */
    box-shadow: var(--shadow-md);
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-light);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: #080b10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: var(--glass-border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: right;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    font-size: 0.95rem;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary-light);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 4px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    border: 2px solid transparent;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: white;
    border-color: #0056b3;
    color: #0056b3;
}

.btn-outline:hover {
    background-color: #f0f7ff;
    transform: translateY(-3px);
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

.sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    box-shadow: none;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    position: relative;
}

/* Glass Orb Background Effect */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(to right, #FFFFFF, var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-color);
    flex-wrap: wrap;
}

.trust-indicators span {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Video Section */
.hero-video {
    position: relative;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.8);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    padding: 50px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.4rem;
}

/* Benefits */
.benefits {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.benefits::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.benefits h2 {
    color: white;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefits-list strong {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.benefits-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-card .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-light);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 25px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-header.active {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--primary-light);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body p {
    padding-bottom: 25px;
    color: var(--text-light);
}

/* CTA Contact */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 20px;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #05070a;
    color: var(--text-light);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    color: var(--text-color);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 6px;
}

.footer-address {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-top: 10px;
    line-height: 1.6;
}

.footer-links a {
    margin-right: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.developer-credits {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.developer-credits a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.developer-credits a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.dev-subtitle-link {
    font-size: 0.8rem;
    display: inline-block;
    margin-top: 5px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.dev-subtitle-link:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateY(-1px);
}

.dev-subtitle-link strong {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: var(--transition);
    border: 3px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
}

/* Animations */
.bounce-in {
    animation: bounce 1s cubic-bezier(0.36, 0, 0.66, -0.56) 1 forwards;
    opacity: 0;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.fade-up-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

@keyframes bounce {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        padding: 80px 0;
        text-align: center;
        background: var(--bg-dark);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-text {
        text-align: center;
        order: 2;
        /* Put text below video on mobile if preferred, or keep as is */
        order: 1;
    }

    .hero-video {
        order: 2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .benefits-container,
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-visual {
        margin-top: 30px;
    }
}

/* ============================================
   NEW COMPONENTS - WEBSITE OVERHAUL
   ============================================ */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Services Navigation Tabs */
.services-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.svc-tab {
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.svc-tab:hover,
.svc-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Service Detail Sections */
.service-detail {
    display: none;
    padding: 100px 0;
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-detail.active-service {
    display: block;
}

.service-detail:nth-child(even) {
    background: #080b10;
}

.service-detail-grid {
    max-width: 900px;
    margin: 0 auto;
}

.service-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-lead {
    font-size: 1.15rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.service-section {
    margin-bottom: 35px;
}

.service-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Check List */
.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.check-list li {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
}

.check-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.check-list li::before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: 700;
}

/* Inline Process Steps */
.process-inline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-inline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.process-inline-step:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
}

.process-inline-step span {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.process-inline-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Legal Badge Row */
.legal-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.legal-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.2);
    letter-spacing: 0.5px;
}

/* Service Info Cards */
.service-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 3px solid var(--primary-color);
}

.info-card strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.info-card span {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Service FAQ */
.service-faq {
    margin: 35px 0;
}

.service-faq h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Score Table */
.score-table {
    margin: 25px 0;
}

.score-table h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.score-row {
    display: grid;
    grid-template-columns: 120px 140px 1fr;
    align-items: center;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.score-row.very-low {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.score-row.low {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
}

.score-row.medium {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
}

.score-row.high {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.score-range {
    font-weight: 700;
    color: var(--text-color);
}

.score-label {
    font-weight: 600;
}

.score-row.very-low .score-label {
    color: #f44336;
}

.score-row.low .score-label {
    color: #e65100;
}

.score-row.medium .score-label {
    color: #2e7d32;
}

.score-row.high .score-label {
    color: #1565c0;
}

.score-desc {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Legal Section */
.legal-section {
    padding: 100px 0;
    background: #070a0f;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.legal-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: var(--glass-border);
    border-bottom: 4px solid var(--primary-color);
    transition: var(--transition);
}

.legal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.legal-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.legal-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.legal-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Checklist */
.cta-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.cta-checklist span {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Testimonial Stars */
.stars {
    margin-top: 10px;
    font-size: 1rem;
}

/* Contact form select */
.form-group select {
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    cursor: pointer;
    color: var(--text-color);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230056b3' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.4);
}

/* Benefits visual extended (4 cards) */
.benefits-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   RESPONSIVE UPDATES
   ============================================ */

@media (max-width: 900px) {
    .check-list {
        grid-template-columns: 1fr;
    }

    .score-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .service-detail h2 {
        font-size: 1.7rem;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .services-nav {
        gap: 8px;
    }

    .svc-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .process-inline-step {
        flex-direction: row;
    }

    .cta-checklist {
        justify-content: center;
    }

    .benefits-visual {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .hero-badge {
        font-size: 0.75rem;
    }

    .legal-badge-row {
        flex-direction: column;
    }

    .service-info-cards {
        grid-template-columns: 1fr;
    }

    .benefits-visual {
        grid-template-columns: 1fr 1fr;
    }

    .score-row {
        font-size: 0.82rem;
    }
}

/* ============================================
   TRACKABLE CTA COMPONENTS
   ============================================ */

/* Hero secondary buttons row */
.hero-buttons-secondary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.btn-text-cta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
    background: white;
}

.btn-text-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Service Top CTA Bar */
.service-top-cta {
    background: linear-gradient(90deg, #e8f0fe, #f0f7ff);
    border-bottom: 2px solid #dce6f7;
    padding: 14px 0;
}

.service-top-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.service-top-cta span {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Button sizes */
.btn-sm {
    padding: 10px 22px !important;
    font-size: 0.9rem !important;
}

/* CTA Quick Bar (below tabs) */
.cta-quick-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #f0f4ff, #e8f5e9);
    border-radius: 16px;
    border: 1px solid #dde8ff;
}

.cta-quick-bar p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}

.cta-quick-bar p strong {
    color: var(--text-color);
}

/* CTA Strip (horizontal service bar) */
.cta-strip {
    background: var(--primary-gradient);
    padding: 28px 0;
}

.cta-strip-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-strip-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cta-strip-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.cta-strip-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* CTA Double (two buttons side by side) */
.cta-double {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-double .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cta-double .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Process Section CTA */
.process-cta {
    text-align: center;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, #f0f4ff, #e8f5e9);
    border-radius: 20px;
}

.process-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.process-cta p strong {
    color: var(--primary-color);
}

/* CTA Direct Buttons (in CTA section) */
.cta-direct-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

/* White button variant */
.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Benefits CTA block */
.benefits-cta-block {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1999;
    background: white;
    border-top: 2px solid #e2e8f0;
    padding: 10px 12px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}

.mobile-sticky-btn {
    flex: 1;
    text-align: center;
    background: var(--primary-gradient);
    color: white;
    padding: 10px 6px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.78rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-sticky-btn:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }

    /* push footer up so sticky bar doesn't overlap */
    .footer {
        padding-bottom: 80px;
    }

    .cta-strip-services {
        gap: 8px;
    }

    .cta-strip-btn {
        font-size: 0.82rem;
        padding: 10px 14px;
    }

    .cta-double {
        flex-direction: column;
    }

    .cta-direct-btns {
        flex-direction: column;
    }

    .cta-direct-btns .btn-white {
        text-align: center;
        width: 100%;
    }

    .hero-buttons-secondary {
        justify-content: center;
    }

    .service-top-cta .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-quick-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   CHATBOT UI - PREMIUM GLASS
   ============================================ */
.chatbot-container {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 10000 !important;
    font-family: var(--font-body);
}

.whatsapp-float {
    position: fixed !important;
    bottom: 110px !important;
    right: 30px !important;
}

.chatbot-toggle {
    background: var(--primary-gradient);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    transform-origin: bottom right;
    animation: chatOpen 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-window.active {
    display: flex;
}

@keyframes chatOpen {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-header .avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
}

.chat-header .info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-light);
}

.chat-header .info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    max-width: 85%;
    line-height: 1.4;
}

.chat-bubble.bot {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.user {
    background: var(--primary-gradient);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-options {
    padding: 10px 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

/* Scrollbar for chat */
.chat-messages::-webkit-scrollbar { width: 5px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 10px; }

/* Typing indicator */
.typing {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .chatbot-container {
        right: 20px !important;
        bottom: 90px !important;
    }
    .chatbot-window {
        right: 0;
        bottom: 75px;
        width: calc(100vw - 40px);
    }
    .whatsapp-float {
        bottom: 160px !important;
        right: 20px !important;
    }
}