/* ===== ROOT VARIABLES ===== */
:root {
    /* Colores Principales */
    --color-primary: #0b2f4e;
    --color-primary-dark: #081e2f;
    --color-primary-light: #0e4870;
    --color-secondary: #ff751f;
    --color-secondary-dark: #e66610;
    --color-accent: #D4AF37;
    --color-accent-light: #E6C84F;

    /* Colores Neutros */
    --color-white: #FFFFFF;
    --color-light: #F8FAFC;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-300: #CBD5E1;
    --color-gray-600: #475569;
    --color-gray-800: #1E293B;
    --color-dark: #0F172A;

    /* Tipografía */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;

    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Bordes */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;

    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(11, 47, 78, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 47, 78, 0.12);
    --shadow-lg: 0 8px 32px rgba(11, 47, 78, 0.16);

    /* Transiciones */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1320px;
    width: calc(100% - 4rem);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media screen and (max-width: 1024px) {
    .container {
        width: calc(100% - 3rem);
        padding: 0 var(--spacing-md);
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: calc(100% - 2rem);
        padding: 0 var(--spacing-sm);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    background-image:
        linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(11, 47, 78, 0.02) 10px, rgba(11, 47, 78, 0.02) 20px);
    overflow: visible;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(11, 47, 78, 0.1);
    z-index: 1000;
    transition: box-shadow 0.2s ease-out;
    will-change: box-shadow;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    contain: layout style paint;
    border-bottom: 3px solid #ff751f;
}

.nav {
    display: flex;
    align-items: center;
    height: 90px;
    padding: var(--spacing-sm) 0;
    overflow: visible;
}

.nav__menu {
    margin-left: auto;
}

.nav__logo {
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 100;
}

.nav__logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1002;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.nav__logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.logo-ahorra {
    color: var(--color-primary);
}

.logo-t {
    color: var(--color-secondary);
}

.nav__list {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav__link {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--color-primary);
    transition: var(--transition);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
}

.nav__link:hover {
    color: var(--color-secondary);
    background-color: rgba(11, 47, 78, 0.05);
}

.nav__link--blue {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white) !important;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    position: relative;
    margin-right: 1.5rem;
}

.nav__link--blue::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-secondary-dark));
    border-radius: 2px;
}

.nav__link--blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 47, 78, 0.3);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.nav__link--cta {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
}

.nav__link--cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav__social-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
    position: relative;
}

.nav__social-wrapper::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
}

.nav__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.nav__social[aria-label="Facebook"] {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
}

.nav__social[aria-label="TikTok"] {
    background: linear-gradient(135deg, #000000, #25f4ee);
}

.nav__social:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
    background: none;
    border: none;
}

/* Mobile Menu Backdrop */
.nav__backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav__backdrop.show {
    display: block;
    opacity: 1;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: var(--spacing-2xl);
}

/* Background Image & Overlay */
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(11, 47, 78, 0.95) 0%,
        rgba(11, 47, 78, 0.85) 50%,
        rgba(255, 117, 31, 0.7) 100%
    );
}

/* Container */
.hero__container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-xl);
    align-items: center;
    min-height: calc(100vh - 200px);
}

/* Content */
.hero__content {
    animation: fadeInUp 0.8s ease;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    margin-bottom: var(--spacing-md);
    animation: slideInLeft 0.8s ease 0.2s backwards;
    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        0 4px 12px rgba(212, 175, 55, 0.3);
}

.hero__badge-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

.hero__badge-text {
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    animation: slideInLeft 0.8s ease 0.3s backwards;
}

.hero__title .logo-ahorra {
    color: var(--color-white);
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.5),
        0 2px 4px rgba(212, 175, 55, 0.3);
    font-weight: 800;
}

.highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 14px;
    background-color: rgba(255, 117, 31, 0.25);
    z-index: -1;
    border-radius: 4px;
}

.hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    max-width: 600px;
    animation: slideInLeft 0.8s ease 0.4s backwards;
}

.hero__description strong {
    color: var(--color-accent);
    font-weight: 600;
}

.hero__description--secondary {
    font-size: 1.1rem;
    margin-top: -0.5rem;
    opacity: 0.95;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: slideInLeft 0.8s ease 0.5s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn--hero {
    padding: 1.125rem 2.5rem;
    font-size: 1.0625rem;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(255, 117, 31, 0.35);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 117, 31, 0.45);
}

.btn--primary svg {
    transition: transform 0.3s ease;
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

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

.btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

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

.btn--white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--full {
    width: 100%;
}

/* Stats */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    animation: slideInLeft 0.8s ease 0.6s backwards;
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Hero CTA Special Button */
.hero__cta-wrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero__cta-special {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary);
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow:
        0 8px 24px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 600px;
}

.hero__cta-special:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(212, 175, 55, 0.5),
        0 0 50px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}

.hero__cta-arrow {
    color: var(--color-primary);
    animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Floating Cards */
.hero__cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero__card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease backwards;
}

.hero__card--1 {
    animation-delay: 0.4s;
}

.hero__card--2 {
    animation-delay: 0.5s;
}

.hero__card--3 {
    animation-delay: 0.6s;
}

.hero__card:hover {
    transform: translateX(-8px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero__card-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
}

.hero__card-content {
    flex: 1;
}

.hero__card-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.hero__card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

/* Decorative Shapes */
.hero__shape {
    position: absolute;
    z-index: 5;
    opacity: 0.08;
    pointer-events: none;
}

.hero__shape--1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

.hero__shape--2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(225deg, var(--color-secondary), var(--color-accent));
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    filter: blur(60px);
    animation: pulse 6s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.08;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.12;
    }
}

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

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.section-title--decorated {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title--decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-secondary));
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
        opacity: 1;
    }
    50% {
        background-position: 200% center;
        opacity: 0.8;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
    position: relative;
}

.section-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    padding: 0.5rem 1.25rem;
    background: rgba(255, 117, 31, 0.08);
    border-radius: 4px;
    border-left: 3px solid var(--color-secondary);
}

.services .section-header {
    margin-bottom: 4rem;
}

.services .section-title {
    color: var(--color-primary);
    font-size: 2.75rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-sm);
    font-weight: 700;
}

.services .section-subtitle {
    color: #5a6a7a;
    font-size: 1.0625rem;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.services__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(11, 47, 78, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover {
    border-color: rgba(11, 47, 78, 0.12);
    box-shadow: 0 12px 40px rgba(11, 47, 78, 0.08);
    transform: translateY(-8px);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-item__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 47, 78, 0.04), rgba(11, 47, 78, 0.08));
    border-radius: 16px;
    color: var(--color-primary);
    transition: all 0.4s ease;
}

.service-item:hover .service-item__icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    transform: scale(1.05);
}

.service-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    margin: 0;
}

.service-item__tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #fff8f0, #ffe8d6);
    border: 1px solid rgba(255, 117, 31, 0.15);
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.service-item__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.service-item__intro {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(11, 47, 78, 0.1);
}

.service-item__description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #5a6a7a;
    margin: 0;
    text-align: center;
}

.service-item__features {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.service-item__feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
}

.service-item__feature-icon {
    width: 6px;
    height: 6px;
    background: var(--color-secondary);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-item__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(11, 47, 78, 0.12);
    border-radius: 8px;
    margin-top: auto;
}

.service-item__link:hover {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: var(--color-primary);
    gap: 0.875rem;
}

.service-item__link svg {
    transition: transform 0.3s ease;
}

.service-item__link:hover svg {
    transform: translateX(4px);
}

/* ===== FINANCIAL ADVISORY SECTION ===== */
.financial-advisory {
    padding: 4rem 0;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #0b2f4e 0%, #1a4a6e 100%);
    position: relative;
}

.financial-advisory__headline {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-accent);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-style: italic;
}

.financial-advisory__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.financial-advisory__content {
    flex: 1;
    min-width: 280px;
}

.financial-advisory__badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.financial-advisory__title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.financial-advisory__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.financial-advisory__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    flex: 1.5;
    min-width: 400px;
}

.financial-advisory__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
}

.financial-advisory__feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.financial-advisory__btn {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .financial-advisory__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .financial-advisory__features {
        min-width: 100%;
        justify-items: start;
    }

    .financial-advisory__feature {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .financial-advisory__features {
        grid-template-columns: 1fr;
    }

    .financial-advisory__title {
        font-size: 1.5rem;
    }
}

/* ===== START SAVING SECTION ===== */
.start-saving {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    position: relative;
    overflow: hidden;
}

.start-saving::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.start-saving::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.start-saving__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.start-saving__title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.start-saving__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.start-saving__buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.saving-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 3.5rem 2rem;
    min-height: 180px;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    border: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.saving-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    transition: all 0.4s ease;
    z-index: 0;
}

.saving-btn:hover::before {
    background: linear-gradient(135deg, rgba(255, 117, 31, 0.90), rgba(212, 175, 55, 0.90));
}

/* Individual button backgrounds */
.saving-btn--1 {
    background-image: url('/images/cups-bg.jpg');
}

.saving-btn--2 {
    background-image: url('/images/factura-bg.jpg');
}

.saving-btn--3 {
    background-image: url('/images/sinfactura-bg.jpg');
}

.saving-btn__text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
    text-align: center;
    letter-spacing: 0.5px;
}

.saving-btn:hover .saving-btn__text {
    color: var(--color-white);
}

.saving-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--color-accent);
}

/* Individual button backgrounds */
.saving-btn--1 {
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.saving-btn--2 {
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.saving-btn--3 {
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #F0F7FF 0%, #FFF5F0 100%);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.benefit-card__icon {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card__icon svg {
    stroke: var(--color-primary);
    width: 48px;
    height: 48px;
}

.benefit-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.benefit-card__description {
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.cta__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

/* ===== NEW CONTACT SECTION ===== */
.contact-new {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0a1f33 100%);
    position: relative;
    overflow: hidden;
}

.contact-new__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-new__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.contact-new__shape--1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 117, 31, 0.15);
    top: -200px;
    right: -100px;
}

.contact-new__shape--2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    left: -100px;
}

.contact-new__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - CTA */
.contact-new__cta {
    color: white;
}

.contact-new__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 117, 31, 0.2);
    border: 1px solid rgba(255, 117, 31, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.contact-new__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.contact-new__title span {
    color: var(--color-secondary);
    position: relative;
}

.contact-new__title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 117, 31, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.contact-new__desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 2.5rem;
    max-width: 400px;
}

.contact-new__quick {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.contact-new__quick-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.contact-new__quick-buttons {
    display: flex;
    gap: 1rem;
}

.contact-new__quick-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-new__quick-btn--whatsapp {
    background: #25D366;
    color: white;
}

.contact-new__quick-btn--whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-new__quick-btn--phone {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-new__quick-btn--phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Right Side - Form */
.contact-new__form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.contact-new__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-new__field {
    position: relative;
    margin-bottom: 1.25rem;
}

.contact-new__field input,
.contact-new__field select {
    width: 100%;
    padding: 1.25rem 1rem 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1rem;
    background: #f8fafc;
    color: var(--color-gray-800);
    transition: all 0.3s ease;
}

.contact-new__field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.2s ease;
}

.contact-new__field input:focus,
.contact-new__field select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(11, 47, 78, 0.1);
}

.contact-new__field input:focus + label,
.contact-new__field input:not(:placeholder-shown) + label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.contact-new__field--select label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
}

.contact-new__field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230b2f4e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.contact-new__submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--color-secondary), #e55a00);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-family);
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-new__submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 117, 31, 0.4);
}

.contact-new__submit:hover svg {
    transform: translateX(4px);
}

.contact-new__submit svg {
    transition: transform 0.3s ease;
}

.contact-new__privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.contact-new__privacy svg {
    color: var(--color-primary);
}

.contact-new__privacy a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-new__privacy a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-new {
        padding: 4rem 0;
    }

    .contact-new__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-new__title {
        font-size: 2.5rem;
    }

    .contact-new__desc {
        max-width: 100%;
    }

    .contact-new__form-row {
        grid-template-columns: 1fr;
    }

    .contact-new__quick-buttons {
        flex-direction: column;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-2xl) 0 var(--spacing-md);
    border-top: 3px solid var(--color-secondary);
    box-shadow: 0 -4px 20px rgba(11, 47, 78, 0.08);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer__logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    padding: 0.6rem 0.875rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 117, 31, 0.2);
    transition: var(--transition);
}

.footer__title:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 117, 31, 0.3);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer__links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer__social {
    display: flex;
    gap: var(--spacing-md);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer__social-link:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 117, 31, 0.3);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer__bottom .logo-ahorra {
    color: var(--color-white);
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
        width: 80%;
        max-width: 350px;
        height: 100vh;
        box-shadow: -2px 0 24px rgba(0, 0, 0, 0.15);
        padding: var(--spacing-2xl) var(--spacing-lg);
        transition: right 0.4s ease;
        z-index: 2000;
        overflow-y: auto;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
        width: 100%;
        margin-top: var(--spacing-xl);
    }

    .nav__item {
        width: 100%;
    }

    .nav__link {
        display: block;
        width: 100%;
        padding: var(--spacing-md) var(--spacing-sm);
        font-size: 1.1rem;
        color: var(--color-primary);
        font-weight: 600;
    }

    .nav__link--cta {
        background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
        color: var(--color-white);
        padding: var(--spacing-md) var(--spacing-lg);
        border-radius: var(--border-radius-md);
        text-align: center;
    }

    .nav__toggle,
    .nav__close {
        display: block;
        z-index: 2001;
    }

    .nav__toggle {
        font-size: 1.75rem;
        color: var(--color-primary);
        cursor: pointer;
        padding: 0.5rem;
    }

    .nav__close {
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
        font-size: 2rem;
        color: var(--color-primary);
        cursor: pointer;
        background: rgba(11, 47, 78, 0.1);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        min-height: auto;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: var(--spacing-lg);
    }

    .hero__card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }

    .hero__cta-wrapper {
        justify-content: center;
        margin-top: var(--spacing-xl);
    }

    .hero__cta-special {
        max-width: 100%;
    }

    .hero__stats {
        gap: var(--spacing-md);
    }

    .hero__stat-number {
        font-size: 2rem;
    }

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

    .services .section-title {
        font-size: 2.25rem;
    }

    .services__wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .service-item {
        padding: 1.75rem;
    }

    .service-item__icon {
        width: 64px;
        height: 64px;
    }

    .service-item__icon svg {
        width: 34px;
        height: 34px;
    }

    .contact__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-item__title {
        font-size: 1.125rem;
    }

    .contact__container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .contact__info {
        position: static;
    }

    .contact__form {
        padding: 2rem;
    }

    .form-row--2 {
        grid-template-columns: 1fr;
    }

    .start-saving__title {
        font-size: 2.25rem;
    }

    .start-saving__subtitle {
        font-size: 1.125rem;
    }

    .start-saving__buttons {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .saving-btn {
        padding: 2rem 1.25rem;
    }

    .saving-btn__text {
        font-size: 1.125rem;
    }

    .cta__title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
    }

    .hero__badge {
        padding: 0.4rem 1rem;
    }

    .hero__badge-text {
        font-size: 0.75rem;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .hero__buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .btn {
        width: 100%;
    }

    .hero__stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .hero__stat {
        text-align: center;
    }

    .hero__stat-number {
        font-size: 2rem;
    }

    .hero__stat-label {
        font-size: 0.8125rem;
    }

    .hero__cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hero__card {
        padding: 1rem;
    }

    .hero__card:hover {
        transform: translateX(0) translateY(-4px);
    }

    .hero__card-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .hero__card-value {
        font-size: 1.25rem;
    }

    .hero__cta-wrapper {
        justify-content: center;
        margin-top: var(--spacing-md);
    }

    .hero__cta-special {
        font-size: 0.9375rem;
        padding: 1rem 1.5rem;
        max-width: 100%;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .contact .section-title {
        font-size: 1.75rem;
    }

    .contact__container {
        gap: var(--spacing-lg);
    }

    .contact__info-header h3 {
        font-size: 1.5rem;
    }

    .contact__form {
        padding: 1.5rem;
    }

    .contact__form-header h3 {
        font-size: 1.5rem;
    }

    .contact__form {
        padding: 2rem;
    }

    .services .section-title {
        font-size: 1.75rem;
    }

    .services__wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item__icon {
        width: 60px;
        height: 60px;
    }

    .service-item__icon svg {
        width: 32px;
        height: 32px;
    }

    .service-item__title {
        font-size: 1.125rem;
    }

    .service-item__description {
        font-size: 0.875rem;
    }

    .service-item__feature {
        font-size: 0.8125rem;
    }

    .service-item:hover {
        transform: translateY(-4px);
    }

    .start-saving__title {
        font-size: 2rem;
    }

    .start-saving__subtitle {
        font-size: 1rem;
    }

    .start-saving__buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .saving-btn {
        padding: 2.5rem 1.5rem;
        min-height: 150px;
        width: 100%;
        max-width: 300px;
    }

    .saving-btn__text {
        font-size: 1.5rem;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITIES ===== */
.scroll-header {
    box-shadow: var(--shadow-md);
}

/* Prevent flash of unstyled content */
.nav__link {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-lg) var(--spacing-md);
    box-shadow: 0 -4px 20px rgba(11, 47, 78, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--color-secondary);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.cookie-banner__text {
    flex: 1;
}

.cookie-banner__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    font-family: 'Inter', sans-serif;
}

.cookie-banner__description {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__buttons {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.cookie-btn--accept {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(255, 117, 31, 0.3);
}

.cookie-btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 117, 31, 0.4);
}

.cookie-btn--reject {
    background-color: transparent;
    color: var(--color-gray-600);
    border: 2px solid var(--color-gray-300);
}

.cookie-btn--reject:hover {
    background-color: var(--color-gray-100);
    border-color: var(--color-gray-600);
    color: var(--color-gray-800);
}

.cookie-banner__link {
    color: var(--color-primary);
    font-size: 0.9rem;
    text-decoration: underline;
    transition: var(--transition);
}

.cookie-banner__link:hover {
    color: var(--color-secondary);
}

/* Responsive Cookie Banner */
@media screen and (max-width: 968px) {
    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-banner__buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-banner__link {
        margin-top: var(--spacing-xs);
        display: inline-block;
    }
}

@media screen and (max-width: 576px) {
    .cookie-banner {
        padding: var(--spacing-md);
    }

    .cookie-banner__title {
        font-size: 1.1rem;
    }

    .cookie-banner__description {
        font-size: 0.85rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 80px;
        right: 15px;
    }
}

/* ===== NOTIFICATION SYSTEM ===== */
.notification {
    position: fixed;
    top: 90px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: notificationSlideIn 0.3s ease;
    max-width: 400px;
    color: white;
}

.notification--success {
    background-color: #10B981;
}

.notification--error {
    background-color: #EF4444;
}

.notification__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification__icon {
    font-size: 1.25rem;
    font-weight: bold;
}

.notification__message {
    margin: 0;
    font-size: 0.95rem;
}

@keyframes notificationSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Active nav link */
.nav__link.active-link {
    color: var(--color-primary);
}

/* ===== INVOICE UPLOAD MODAL ===== */
.invoice-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.invoice-modal.show {
    display: block;
}

.invoice-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 47, 78, 0.8);
    backdrop-filter: blur(4px);
}

.invoice-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(11, 47, 78, 0.3);
    animation: slideUp 0.4s ease;
}

.invoice-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(11, 47, 78, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.invoice-modal__close:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.invoice-modal__header {
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 2px solid var(--color-gray-100);
}

.invoice-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 117, 31, 0.1), rgba(255, 117, 31, 0.2));
    border-radius: 50%;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.invoice-modal__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.invoice-modal__subtitle {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.invoice-modal__form {
    padding: 2rem;
}

.invoice-modal__submit {
    margin-top: 1.5rem;
}

/* File Upload Component */
.file-upload {
    position: relative;
    border: 2px dashed var(--color-gray-300);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--color-gray-100);
}

.file-upload:hover {
    border-color: var(--color-secondary);
    background: rgba(255, 117, 31, 0.05);
}

.file-upload.dragover {
    border-color: var(--color-secondary);
    background: rgba(255, 117, 31, 0.1);
    transform: scale(1.02);
}

.file-upload__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload__content {
    pointer-events: none;
}

.file-upload__icon {
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.file-upload__text {
    margin-bottom: 0.5rem;
}

.file-upload__button {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 1.05rem;
}

.file-upload__drag {
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

.file-upload__info {
    color: var(--color-gray-600);
    font-size: 0.85rem;
    margin: 0;
}

.file-upload__preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--color-secondary);
}

.file-upload__preview svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.file-upload__filename {
    flex: 1;
    color: var(--color-primary);
    font-weight: 600;
    text-align: left;
    word-break: break-word;
}

.file-upload__remove {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.file-upload__remove:hover {
    background: #EF4444;
    color: white;
}

/* Modal Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Form Help and Error Messages */
.form-help {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    color: #3B82F6;
}

.form-help svg {
    flex-shrink: 0;
}

.form-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    color: #EF4444;
    animation: shake 0.3s ease;
}

.form-error svg {
    flex-shrink: 0;
}

.form-input.error {
    border-color: #EF4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-input.success {
    border-color: #10B981;
    background: rgba(16, 185, 129, 0.05);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive Modal */
@media screen and (max-width: 576px) {
    .invoice-modal__content {
        width: 95%;
        max-height: 95vh;
    }

    .invoice-modal__header {
        padding: 2rem 1.5rem 1rem;
    }

    .invoice-modal__icon {
        width: 60px;
        height: 60px;
    }

    .invoice-modal__icon svg {
        width: 32px;
        height: 32px;
    }

    .invoice-modal__title {
        font-size: 1.5rem;
    }

    .invoice-modal__subtitle {
        font-size: 0.9rem;
    }

    .invoice-modal__form {
        padding: 1.5rem;
    }

    .file-upload {
        padding: 1.5rem;
    }

    .file-upload__icon {
        width: 32px;
        height: 32px;
    }

    .file-upload__button {
        font-size: 0.95rem;
    }

    .file-upload__drag {
        display: block;
        margin-top: 0.25rem;
        font-size: 0.85rem;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials .section-title {
    color: var(--color-white);
}

.testimonials .section-title .highlight {
    color: var(--color-white);
}

.testimonials .section-title .highlight::after {
    background-color: var(--color-primary);
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(11, 47, 78, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(11, 47, 78, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 47, 78, 0.12);
}

.testimonial-card--featured {
    border: 2px solid var(--color-secondary);
    transform: scale(1.02);
}

.testimonial-card--featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.testimonial-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-secondary);
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.25rem;
}

.testimonial-card__location {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin: 0;
}

.testimonial-card__saving {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 117, 31, 0.1), rgba(212, 175, 55, 0.1));
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

.testimonial-card__saving-label {
    display: block;
    font-size: 0.6875rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card__saving-amount {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.testimonial-card__stars {
    margin-bottom: 1rem;
    color: #f59e0b;
    font-size: 1.125rem;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin: 0;
    font-style: italic;
}

/* Responsive Testimonials */
@media screen and (max-width: 968px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .testimonial-card--featured {
        transform: none;
        order: -1;
    }

    .testimonial-card--featured:hover {
        transform: translateY(-8px);
    }
}

@media screen and (max-width: 576px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card__header {
        flex-wrap: wrap;
    }

    .testimonial-card__saving {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ===== FAQ LINKS SECTION ===== */
.faq-links {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-links .section-title {
    color: var(--color-primary);
}

.faq-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(11, 47, 78, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 47, 78, 0.15);
}

.faq-card__image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.faq-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.faq-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 47, 78, 0.4) 100%);
}

.faq-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.faq-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 117, 31, 0.1), rgba(255, 117, 31, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-card:hover .faq-card__icon {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: white;
    transform: scale(1.1);
}

.faq-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.faq-card__description {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.faq-card__link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.faq-card:hover .faq-card__link {
    color: var(--color-secondary-dark);
    letter-spacing: 1px;
}

/* Responsive FAQ Cards */
@media screen and (max-width: 968px) {
    .faq-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .faq-card__image {
        height: 120px;
    }

    .faq-card__content {
        padding: 1.25rem;
    }

    .faq-card__title {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 768px) {
    .faq-links {
        padding: 3rem 0;
    }

    .faq-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .faq-card__image {
        height: 140px;
    }
}

/* ===== FAQ PAGE STYLES ===== */
.faq-page {
    padding: 120px 0 4rem;
    min-height: 100vh;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.faq-page__header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-page__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.faq-page__subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

.faq__category {
    margin-bottom: 3rem;
}

.faq__category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-secondary);
    display: inline-block;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__item {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(11, 47, 78, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    border-color: rgba(11, 47, 78, 0.15);
    box-shadow: 0 4px 12px rgba(11, 47, 78, 0.06);
}

.faq__item.active {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 20px rgba(255, 117, 31, 0.1);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.faq__question:hover {
    color: var(--color-secondary);
}

.faq__item.active .faq__question {
    color: var(--color-secondary);
}

.faq__icon {
    flex-shrink: 0;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-gray-600);
}

.faq__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq__back-link:hover {
    background: var(--color-primary-dark);
    transform: translateX(-5px);
}

/* Responsive FAQ Page */
@media screen and (max-width: 768px) {
    .faq-page {
        padding: 100px 0 3rem;
    }

    .faq-page__title {
        font-size: 2rem;
    }

    .faq__category-title {
        font-size: 1.25rem;
    }

    .faq__question {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .faq__answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.how-it-works .section-header {
    margin-bottom: 4rem;
}

.how-it-works .section-title {
    color: var(--color-primary);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.step__number {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 117, 31, 0.3);
    z-index: 1;
}

.step__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(11, 47, 78, 0.05), rgba(11, 47, 78, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.4s ease;
    position: relative;
}

.step:hover .step__icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(11, 47, 78, 0.2);
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.step__description {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
}

.step__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    padding-top: 2.5rem;
    flex-shrink: 0;
}

/* Responsive How It Works */
@media screen and (max-width: 968px) {
    .steps {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .step {
        flex: 0 0 calc(50% - 2rem);
        max-width: none;
    }

    .step__connector {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .how-it-works {
        padding: 3rem 0;
    }

    .steps {
        flex-direction: column;
        gap: 2.5rem;
    }

    .step {
        flex: 1;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .step__icon {
        width: 80px;
        height: 80px;
    }

    .step__icon svg {
        width: 32px;
        height: 32px;
    }

    .step__title {
        font-size: 1.125rem;
    }

    .step__description {
        font-size: 0.875rem;
    }
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 4rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.partners .section-header {
    margin-bottom: 3rem;
}

.partners .section-title {
    font-size: 2rem;
    color: var(--color-primary);
}

.partners__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners__track {
    display: flex;
    gap: 3rem;
    animation: scroll-partners 30s linear infinite;
    width: max-content;
}

.partners__track:hover {
    animation-play-state: paused;
}

.partners__logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 1rem;
    box-shadow: 0 2px 12px rgba(11, 47, 78, 0.06);
    transition: all 0.3s ease;
}

.partners__logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(11, 47, 78, 0.12);
}

.partners__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Partners */
@media screen and (max-width: 768px) {
    .partners {
        padding: 3rem 0;
    }

    .partners .section-title {
        font-size: 1.75rem;
    }

    .partners__logo {
        width: 120px;
        height: 60px;
        padding: 0.75rem;
    }

    .partners__track {
        gap: 2rem;
        animation-duration: 25s;
    }
}

@media screen and (max-width: 576px) {
    .partners__logo {
        width: 100px;
        height: 50px;
        padding: 0.5rem;
    }

    .partners__track {
        gap: 1.5rem;
        animation-duration: 20s;
    }
}
