/* Modern Design System - Minuto Crédito */
:root {
    --primary-color: #0056b3;
    /* Deep Trust Blue */
    --primary-gradient: linear-gradient(135deg, #0056b3 0%, #00a8cc 100%);
    --secondary-color: #00c853;
    /* Success Green */
    --accent-color: #ffAB00;
    /* Amber for attention */
    --text-color: #1a1a2e;
    /* Dark Navy for text */
    --text-light: #4a4a6a;
    --bg-light: #f0f4f8;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 90, 160, 0.15), 0 10px 10px -5px rgba(0, 90, 160, 0.04);
    --radius: 12px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s 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-light);
    background-image:
        radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 0) 0, hsla(253, 16%, 7%, 0) 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, hsla(225, 39%, 30%, 0) 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, hsla(339, 49%, 30%, 0) 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(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 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: 2rem;
    font-weight: 800;
    color: #0F2557;
    /* Deep Blue to match logo if possible, or 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: 80px 0;
    background-color: #f8fbff;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.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(--text-color);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f0f4f8;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.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-color);
    position: relative;
}

.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-color);
}

/* 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: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(240, 244, 248, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    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: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    background: linear-gradient(to right, #1a1a2e, #0056b3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.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-white);
}

.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: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    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: white;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.accordion-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 25px;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-color);
}

.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: #f8fbff;
}

.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: 3rem;
    margin-bottom: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.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.9);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.4);
}

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 20px;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #f8fafc;
    color: #4a4a6a;
    padding: 80px 0 30px;
    border-top: 1px solid #e2e8f0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e2e8f0;
}

.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: 50px 0;
        text-align: center;
        background: white;
        /* Simpler background for mobile */
    }

    .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: 80px 0;
    background: var(--bg-light);
    border-top: 4px solid var(--primary-color);
}

.service-detail.active-service {
    display: block;
}

.service-detail:nth-child(even) {
    background: white;
}

.service-detail-grid {
    max-width: 900px;
    margin: 0 auto;
}

.service-tag {
    display: inline-block;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-detail h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.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: 10px 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    font-size: 0.95rem;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.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: 18px;
    background: white;
    padding: 18px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-inline-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.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: linear-gradient(135deg, #1a1a2e, #0056b3);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* 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: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 3px solid var(--accent-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: linear-gradient(180deg, #f0f4f8 0%, white 100%);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.legal-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    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;
    }
}