/* ==========================================================================
   COMYVO Landing 2 - Estilo Corporativo Profesional
   Paleta: Azul Puro (#2E7AB8) + Fondo Azul Claro (#EEF5FB)
   ========================================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables - Paleta AZUL PURO con fondo #EEF5FB */
:root {
    /* Colores principales - AZUL PURO */
    --header-bg: #3F7F8C;
    --primary: #4F95A3;
    --primary-dark: #3F7F8C;
    --primary-light: #7AB5C3;
    --secondary: #5AABB8;
    /* Textos */
    --text-dark: #1F2D3D;
    --text-medium: #5F6F7D;
    --text-light: #8A9AAA;
    /* Fondos y superficies - FONDO PRINCIPAL #EEF5FB */
    --white: #FFFFFF;
    --bg-page: #e6f2ff;
    --bg-cards: #FFFFFF;
    /* Bordes y contornos */
    --border-color: #D0E3ED;
    /* Iconos */
    --icon-color: #254A66;
    /* Gradientes - Ajustados para fondo azul claro */
    --bg-gradient: linear-gradient(135deg, #3F7F8C 0%, #5AABB8 100%);
    --bg-gradient-light: linear-gradient(135deg, rgba(63, 127, 140, 0.08) 0%, rgba(90, 171, 184, 0.08) 100%);
    --bg-gradient-subtle: linear-gradient(135deg, rgba(63, 127, 140, 0.05) 0%, rgba(90, 171, 184, 0.05) 100%);
    /* Sombras - Ajustadas para fondo azul */
    --shadow: 0 10px 40px rgba(63, 127, 140, 0.1);
    --shadow-lg: 0 25px 50px rgba(63, 127, 140, 0.15);
    --shadow-primary: 0 10px 30px rgba(79, 149, 163, 0.3);
    /* Transiciones */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Bordes redondeados */
    --radius: 16px;
    --radius-lg: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-page);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header & Navigation - BARRA SUPERIOR CON DEGRADADO
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: linear-gradient(90deg, #e6f2ff 0%, #3F7F8C 50%);
    box-shadow: 0 4px 15px rgba(31, 45, 61, 0.2), 0 2px 4px rgba(31, 45, 61, 0.1);
    transition: var(--transition);
}

    .header.scrolled {
        box-shadow: 0 6px 25px rgba(31, 45, 61, 0.25), 0 3px 6px rgba(31, 45, 61, 0.15);
        padding: 10px 0;
    }

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 45px;
    width: auto;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

/* Menú de navegación */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

/* Links de navegación - TEXTO BLANCO sobre fondo oscuro */
.nav-link {
    display: inline-block;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 16px;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 16px;
        right: 16px;
        height: 2px;
        background: var(--white);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
        border-radius: 2px;
    }

    .nav-link:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.15);
    }

        .nav-link:hover::after {
            transform: scaleX(1);
        }

    /* Clase nowrap para evitar saltos de línea */
    .nav-link.nowrap {
        white-space: nowrap;
    }

/* ==========================================================================
   Dropdowns
   ========================================================================== */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

    .dropdown::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        border: 6px solid transparent;
        border-bottom-color: var(--white);
    }

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Items del dropdown */
.dropdown-item {
    display: block;
    padding: 12px 16px;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background: var(--bg-gradient-light);
        color: var(--primary-dark);
        padding-left: 20px;
    }

/* ==========================================================================
   Selector de Idioma
   ========================================================================== */
.lang-item {
    margin-left: 8px;
}

.lang-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .lang-trigger:hover {
        background: rgba(255, 255, 255, 0.15);
    }

.lang-flag {
    width: 28px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dropdown-lang {
    min-width: 160px;
    left: auto;
    right: 0;
    transform: translateX(0) translateY(10px);
}

    .dropdown-lang::before {
        left: auto;
        right: 20px;
        transform: none;
    }

.has-dropdown:hover .dropdown-lang {
    transform: translateX(0) translateY(0);
}

.dropdown-item-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    .dropdown-item-lang img {
        width: 24px;
        height: 18px;
        border-radius: 3px;
        object-fit: cover;
    }

    .dropdown-item-lang:hover,
    .dropdown-item-lang.active {
        background: var(--bg-gradient-light);
        color: var(--primary-dark);
    }

    .dropdown-item-lang.active {
        font-weight: 600;
    }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: 0.5s;
    }

    .btn:hover::before {
        left: 100%;
    }

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(46, 122, 184, 0.4);
    }

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

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

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

    .btn-white:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ==========================================================================
   Mobile Navigation Toggle
   ========================================================================== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}

    .nav-toggle span {
        width: 28px;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: var(--transition);
    }

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

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

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

/* ==========================================================================
   Hero Section - FONDO #EEF5FB
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements - AZUL PURO SIN VERDE */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    pointer-events: none;
}

    .hero-decoration.one {
        width: 500px;
        height: 500px;
        background: rgba(200, 220, 240, 0.5);
        top: -200px;
        right: -150px;
    }

    .hero-decoration.two {
        width: 350px;
        height: 350px;
        background: rgba(210, 230, 250, 0.4);
        bottom: -100px;
        left: -100px;
    }

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
}

    .hero-label i {
        color: var(--primary);
    }

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.15;
}

    .hero-title .highlight {
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.8;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-avatars {
    display: flex;
}

    .trust-avatars img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 3px solid var(--white);
        margin-left: -12px;
        object-fit: cover;
        box-shadow: var(--shadow);
    }

        .trust-avatars img:first-child {
            margin-left: 0;
        }

.trust-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

    .trust-text strong {
        color: var(--text-dark);
        display: block;
    }

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

    .hero-image-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--bg-gradient);
        opacity: 0.08;
        z-index: 1;
    }

    .hero-image-wrapper img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        display: block;
    }

/* Floating Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.floating-card.top-right {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card.bottom-left {
    bottom: 40px;
    left: -40px;
    animation-delay: 2s;
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    border-radius: 14px;
    color: var(--white);
    font-size: 1.3rem;
}

.floating-card-text {
    font-size: 0.85rem;
}

    .floating-card-text strong {
        display: block;
        color: var(--text-dark);
        font-weight: 600;
    }

    .floating-card-text span {
        color: var(--text-light);
    }

/* ==========================================================================
   Features Section - FONDO BLANCO
   ========================================================================== */
.features {
    padding: 120px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .section-label i {
        color: var(--icon-color);
    }

.section-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-cards);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--bg-gradient);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--transition);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-light);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    margin-bottom: 24px;
    font-size: 1.8rem;
    color: var(--icon-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--bg-gradient);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Process Section - FONDO #EEF5FB
   ========================================================================== */
.process {
    padding: 120px 0;
    background: var(--bg-page);
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
    position: relative;
}

    .process-card::after {
        content: '';
        position: absolute;
        top: 50px;
        right: -50%;
        width: 100%;
        height: 3px;
        background: var(--bg-gradient);
        opacity: 0.3;
    }

    .process-card:last-child::after {
        display: none;
    }

.process-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

    .process-number span {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 700;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.process-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.9rem;
    box-shadow: var(--shadow-primary);
}

.process-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-text {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    padding: 100px 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FAQ Section - FONDO BLANCO
   ========================================================================== */
.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.faq-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-cards);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

    .faq-item:hover {
        border-color: var(--primary-light);
    }

    .faq-item.active {
        box-shadow: var(--shadow);
        border-color: var(--primary);
    }

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .faq-question h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .faq-question h3 i {
            color: var(--icon-color);
        }

.faq-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--bg-gradient);
    border-color: transparent;
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 25px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: var(--white);
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-4px);
        }

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
    }

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 14px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 8px;
        }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
    }

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
    }

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

/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-primary);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--primary-dark);
        transform: translateY(-5px) rotate(5deg);
        box-shadow: 0 15px 30px rgba(46, 122, 184, 0.4);
    }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .process-card::after {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #e6f2ff 0%, #3F7F8C 60%);
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

        .nav-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-menu .nav-link {
            font-size: 1.2rem;
            padding: 15px 20px;
            width: 100%;
            text-align: center;
            color: var(--white);
        }

    .nav-toggle {
        display: flex;
    }

    .dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        margin-top: 10px;
        border-radius: 12px;
        display: none;
    }

        .dropdown .dropdown-item {
            color: rgba(255, 255, 255, 0.9);
        }

            .dropdown .dropdown-item:hover {
                background: rgba(255, 255, 255, 0.15);
                color: var(--white);
            }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown::before {
        display: none;
    }

    .dropdown-lang {
        position: static;
        transform: none;
    }

        .dropdown-lang .dropdown-item-lang {
            color: rgba(255, 255, 255, 0.9);
        }

            .dropdown-lang .dropdown-item-lang:hover {
                background: rgba(255, 255, 255, 0.15);
                color: var(--white);
            }

    .lang-item {
        margin-left: 0;
    }

    .lang-trigger {
        justify-content: center;
        width: 100%;
        padding: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .floating-card {
        display: none;
    }

    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .trust-avatars img {
        width: 38px;
        height: 38px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
