/* ===== VARIABLES ===== */
:root {
    --primary: #035282;
    --primary-dark: #024068;
    --primary-light: #046a9e;
    --secondary: #eb691c;
    --secondary-dark: #d45a14;
    --secondary-light: #f07d3a;
    --dark: #0a0f1a;
    --dark-2: #141b2d;
    --gray-900: #1a2332;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 40px -12px rgba(3,82,130,0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font);
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

.text-accent {
    color: var(--secondary);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(235, 105, 28, 0.08);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.btn:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
}

.btn--primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(235, 105, 28, 0.2);
}

.btn--primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(235, 105, 28, 0.4);
}

.btn--primary:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 2px 10px rgba(235, 105, 28, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: inherit;
}

.btn--outline:hover {
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(3, 82, 130, 0.2);
}

.btn--outline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--outline:active {
    transform: translateY(0) scale(0.97);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

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

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(235, 105, 28, 0.2); }
    50% { box-shadow: 0 4px 25px rgba(235, 105, 28, 0.45); }
}

.btn--pulse {
    animation: btn-pulse 2.5s ease-in-out infinite;
}

.btn--pulse:hover {
    animation: none;
}

/* Ripple effect */
@keyframes ripple-effect {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    animation: ripple-effect 0.6s ease-out;
}

/* Smooth focus styles */
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(3, 82, 130, 0.3), 0 4px 15px rgba(3, 82, 130, 0.1);
}

.btn--primary:focus-visible {
    box-shadow: 0 0 0 3px rgba(235, 105, 28, 0.3), 0 8px 25px rgba(235, 105, 28, 0.3);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo__img {
    height: 85px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.header.scrolled .logo__img {
    height: 65px;
    filter: none;
}

.logo__text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo__dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    margin-top: 8px;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header.scrolled .nav__link {
    color: var(--gray-700);
}

.header.scrolled .hamburger span {
    background: var(--dark);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--secondary);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
    color: var(--primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header__actions .btn--primary {
    animation: btn-pulse 2.5s ease-in-out infinite;
}

.header__actions .btn--primary:hover {
    animation: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: background 0.3s ease;
    transition: var(--transition);
}

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

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

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

/* ===== HERO FULL (Image de fond immersive) ===== */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-full__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(3,82,130,0.6) 100%);
    z-index: 1;
}

.hero-full__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-full__badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
}

.hero-full__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-full__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-full__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #ffffff;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.btn--white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(3, 82, 130, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn--white:hover::before {
    width: 300px;
    height: 300px;
}

.btn--white:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.btn--white:active {
    transform: translateY(0) scale(0.97);
}

.btn--outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn--outline-white::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: inherit;
}

.btn--outline-white:hover {
    color: var(--primary);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.btn--outline-white:hover::after {
    transform: scaleY(1);
    transform-origin: top;
}

.btn--outline-white:active {
    transform: translateY(0) scale(0.97);
}

@media (max-width: 768px) {
    .hero-full {
        min-height: 80vh;
    }

    .hero-full__content {
        padding: 100px 16px 60px;
    }

    .hero-full__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-full__subtitle {
        font-size: 1rem;
    }

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

@media (max-width: 480px) {
    .hero-full {
        min-height: 70vh;
    }

    .hero-full__content {
        padding: 90px 12px 50px;
    }

    .hero-full__badge {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
}

/* Modern About Layout */
.about-modern {
    text-align: center;
}

.about-modern__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-bottom: 64px;
}

.about-modern__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-modern__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.about-modern__header {
    text-align: left;
}

.about-modern__header .section-title {
    text-align: left;
}

.about-modern__header .btn {
    margin-top: 28px;
}

.about-modern__desc {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-top: 20px;
}

.about-modern__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.about-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    padding: 32px 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

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

.about-stat-card__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.about-stat-card__number.counted {
    animation: countPulse 0.4s ease;
}

@keyframes countPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

.about-stat-card__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-modern__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.about-feature {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--gray-100);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about-feature__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 82, 130, 0.08);
    border-radius: 50%;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.about-feature:hover .about-feature__icon {
    background: var(--primary);
    color: var(--white);
}

.about-feature h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.about-modern__cta {
    margin-top: 16px;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--gray-100);
}

.services__header {
    text-align: center;
    margin-bottom: 64px;
}

.services__header .section-subtitle {
    margin: 0 auto;
}

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

.srv-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.srv-card[data-color="blue"]::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.srv-card[data-color="orange"]::before {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.srv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(3, 82, 130, 0.12);
    border-color: transparent;
}

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

.srv-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}

.srv-card[data-color="blue"] .srv-card__icon {
    background: linear-gradient(135deg, rgba(3, 82, 130, 0.1), rgba(3, 82, 130, 0.05));
    color: var(--primary);
}

.srv-card[data-color="orange"] .srv-card__icon {
    background: linear-gradient(135deg, rgba(235, 105, 28, 0.12), rgba(235, 105, 28, 0.05));
    color: var(--secondary);
}

.srv-card:hover .srv-card__icon {
    transform: scale(1.08);
}

.srv-card[data-color="blue"]:hover .srv-card__icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(3, 82, 130, 0.25);
}

.srv-card[data-color="orange"]:hover .srv-card__icon {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(235, 105, 28, 0.25);
}

.srv-card__content {
    flex: 1;
}

.srv-card__content h3 {
    font-size: 1.1rem;
    font-weight: 750;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.srv-card__content > p {
    font-size: 0.84rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 18px;
}

.srv-card__content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
}

.srv-card__content ul li {
    font-size: 0.82rem;
    color: var(--gray-700);
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.srv-card__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.srv-card[data-color="blue"] .srv-card__content ul li::before {
    background: var(--primary);
    opacity: 0.5;
}

.srv-card[data-color="orange"] .srv-card__content ul li::before {
    background: var(--secondary);
    opacity: 0.5;
}

.srv-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 650;
    margin-top: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding-bottom: 4px;
}

.srv-card__btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.srv-card[data-color="blue"] .srv-card__btn {
    color: var(--primary);
}

.srv-card[data-color="blue"] .srv-card__btn::after {
    background: var(--primary);
}

.srv-card[data-color="orange"] .srv-card__btn {
    color: var(--secondary);
}

.srv-card[data-color="orange"] .srv-card__btn::after {
    background: var(--secondary);
}

.srv-card:hover .srv-card__btn::after {
    width: 100%;
}

.srv-card__btn span {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
}

.srv-card:hover .srv-card__btn span {
    transform: translateX(6px);
}

.services__cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== PARTNERS ===== */
.partners {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #035282, #eb691c, #035282);
}

.partners__header {
    text-align: center;
    margin-bottom: 56px;
}

.partners__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.partners__line {
    display: block;
    width: 40px;
    height: 2px;
    background: #035282;
    opacity: 0.4;
}

.partners__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #035282;
    line-height: 1.3;
}

.partners__title strong {
    font-weight: 900;
    color: #eb691c;
}

.partners .section-tag {
    color: #035282;
    font-weight: 600;
}

.partners__track {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners__slider {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: partnerScroll 30s linear infinite;
}

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

.partners__link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partners__link[href="#"] {
    cursor: default;
}

.partners__slider img {
    display: block;
    height: 90px;
    width: 160px;
    padding: 16px;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.partners__link:hover img {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(3, 82, 130, 0.12);
    border-color: #035282;
}

@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }

    .partners__header {
        margin-bottom: 32px;
    }

    .partners__title {
        font-size: 1.75rem;
    }

    .partners__slider img {
        height: 70px;
        width: 120px;
        padding: 12px;
    }

    .partners__slider {
        gap: 24px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 128px 24px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonials__line {
    display: block;
    width: 32px;
    height: 1px;
    background: rgba(235, 105, 28, 0.3);
}

.testimonials__title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 300;
    color: var(--gray-900);
    line-height: 1.1;
}

.testimonials__title span {
    font-weight: 900;
    color: var(--secondary);
}

.testimonials__title em {
    font-style: italic;
    color: var(--secondary);
}

.testimonials__slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.testimonials__content {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.testimonials__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 48px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonials__slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonials__slide.exit-left {
    opacity: 0;
    transform: translateX(-50px);
}

.testimonials__quote-icon {
    color: var(--primary);
    opacity: 0.1;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.testimonials__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.testimonials__text {
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 300;
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.6;
    margin: 0 0 32px;
    padding: 0 40px;
}

.testimonials__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.testimonials__author strong {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonials__author span {
    font-size: 0.813rem;
    color: var(--gray-500);
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.testimonials__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.testimonials__arrow {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonials__arrow:hover {
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.testimonials__arrow:active {
    transform: scale(0.95);
}

.testimonials__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonials__dot {
    height: 6px;
    width: 6px;
    border-radius: 100px;
    border: none;
    background: var(--gray-200);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials__dot.active {
    width: 32px;
    background: var(--primary);
}

.testimonials__dot:hover:not(.active) {
    background: var(--gray-400);
}

.testimonials__watermark {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 900;
    color: var(--gray-900);
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 0;
    background: var(--gray-100);
}

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

.faq__list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__list--centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
    border-color: rgba(3, 82, 130, 0.2);
    box-shadow: 0 4px 15px rgba(3, 82, 130, 0.06);
}

.faq-item.active {
    box-shadow: 0 8px 30px rgba(3, 82, 130, 0.1);
    border-color: var(--primary);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item__question:hover {
    color: var(--primary);
}

.faq-item__question svg {
    flex-shrink: 0;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.active .faq-item__question svg {
    transform: rotate(180deg);
    color: var(--secondary);
}

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

.faq-item__answer p {
    padding: 0 24px 20px;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.faq__image {
    position: sticky;
    top: 120px;
}

.faq__image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.faq__image-placeholder {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(3,82,130,0.03), rgba(235,105,28,0.03));
}

.faq__image-placeholder svg {
    width: 100%;
    height: auto;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(235, 105, 28, 0.08);
}

.cta-section__inner {
    text-align: center;
    position: relative;
}

.cta-section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section__text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-section__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.cta-section__buttons .btn--outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.cta-section__buttons .btn--outline::after {
    background: var(--white);
}

.cta-section__buttons .btn--outline:hover {
    color: var(--primary);
    border-color: var(--white);
    background: transparent;
}

.cta-section__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-stat {
    text-align: center;
}

.cta-stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
}

.cta-stat__label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    padding: 80px 0;
    background: var(--white);
}

.newsletter__inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.newsletter__icon {
    color: var(--secondary);
    margin-bottom: 20px;
}

.newsletter__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.newsletter__text {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.newsletter__form {
    display: flex;
    gap: 12px;
}

.newsletter__input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.938rem;
    transition: var(--transition);
    outline: none;
}

.newsletter__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(3, 82, 130, 0.1);
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--gray-100);
}

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

.contact__info p {
    color: var(--gray-700);
    margin-bottom: 32px;
    font-size: 1.0625rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
}

.contact__detail svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact__form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.938rem;
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(3, 82, 130, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding-top: 80px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo__img--footer {
    height: 70px;
    filter: brightness(0) invert(1);
}

.footer__brand .logo__text {
    color: var(--white);
}

.footer__description {
    margin: 20px 0 28px;
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--gray-500);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--gray-400);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(235, 105, 28, 0.3);
}

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

.footer__column h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__column a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

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

.footer__column li {
    font-size: 0.875rem;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    margin-top: 40px;
}

.footer__bottom p {
    font-size: 0.813rem;
    color: var(--gray-600);
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 0.813rem;
    color: var(--gray-600);
}

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

/* ===== WHATSAPP FLOAT ===== */
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.modal__header {
    margin-bottom: 28px;
}

.modal__header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal__header p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.modal__form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal__form .form-group {
    margin-bottom: 14px;
}

.modal__form input,
.modal__form textarea,
.modal__form select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    resize: vertical;
    background: var(--white);
}

.modal__form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.modal__form input:focus,
.modal__form textarea:focus,
.modal__form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(3, 82, 130, 0.1);
}

@media (max-width: 768px) {
    .modal {
        padding: 32px 24px;
    }

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

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

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__visual {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-modern__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-modern__header {
        text-align: center;
    }

    .about-modern__header .section-title {
        text-align: center;
    }

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

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

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


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

    .faq__image {
        display: none;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 998;
        flex: none;
        justify-content: flex-start;
    }

    .nav.active {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .nav__link {
        font-size: 1.125rem;
        color: var(--gray-800);
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .header__actions .btn {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero__title {
        font-size: 2.25rem;
    }

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

    .testimonials__slide {
        padding: 24px 16px;
    }

    .testimonials__text {
        padding: 0;
    }

    .testimonials__nav {
        position: static;
        transform: none;
        justify-content: center;
        gap: 16px;
        margin-top: 24px;
    }

    .testimonials__watermark {
        display: none;
    }

    .cta-section__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .newsletter__form {
        flex-direction: column;
    }

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

    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .about-modern__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-modern__features {
        grid-template-columns: 1fr;
    }

    .about-stat-card {
        padding: 24px 16px;
    }

    .about-stat-card__number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero__title {
        font-size: 1.875rem;
    }

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

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

    .testimonials {
        padding: 80px 16px;
    }

    .testimonials__header {
        margin-bottom: 48px;
    }

    .testimonials__arrow {
        width: 36px;
        height: 36px;
    }
}
