/* ============================================
   GP MEDICAL HEALTH — SUPERSITIO V3
   NEXT-LEVEL PREMIUM DESIGN
   Inspired by: Stripe · MediSensonic · Elevate Medical
   ============================================ */

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #040f1a
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #6FBEBD 0%, #0A2241 100%);
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: #6FBEBD
}

html {
    scrollbar-color: #6FBEBD #040f1a;
    scrollbar-width: thin
}

/* ── DESIGN TOKENS ── */
:root {
    --navy: #0A2241;
    --navy-light: #0f2d56;
    --navy-dark: #061729;
    --navy-deep: #040f1a;
    --teal: #6FBEBD;
    --teal-light: #8dd0cf;
    --teal-dark: #4fa8a7;
    --teal-glow: rgba(111, 190, 189, .5);
    --teal-neon: rgba(111, 190, 189, .35);
    --indigo: #4f46e5;
    --indigo-glow: rgba(79, 70, 229, .25);
    --accent: #25d366;
    --white: #fff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gold: #f0b90b;
    --gradient-mesh: linear-gradient(-45deg, #040f1a 0%, #0A2241 25%, #0f2d56 50%, rgba(111, 190, 189, .18) 75%, rgba(79, 70, 229, .12) 100%);
    --gradient-teal: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
    --gradient-text: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 40%, #a8e6e5 70%, var(--indigo) 100%);
    --gradient-glow-line: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
    --shadow-glow: 0 0 60px rgba(111, 190, 189, .3), 0 0 120px rgba(111, 190, 189, .1);
    --shadow-neon: 0 0 20px var(--teal-neon), 0 4px 30px rgba(10, 34, 65, .3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, .12);
    --shadow-card-hover: 0 20px 60px rgba(111, 190, 189, .15), 0 0 30px rgba(111, 190, 189, .08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: all .6s cubic-bezier(.4, 0, .2, 1);
    --transition-spring: all .4s cubic-bezier(.175, .885, .32, 1.275);
}

/* ── RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--navy-deep);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

ul {
    list-style: none
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 32px
}

.section {
    padding: 140px 0;
    position: relative;
    overflow: hidden
}

/* ── AMBIENT ORBS (reusable glow decorations) ── */
.section--dark::before,
.section--dark::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: .12
}

.section--dark::before {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: -200px;
    right: -200px
}

.section--dark::after {
    width: 400px;
    height: 400px;
    background: var(--indigo);
    bottom: -150px;
    left: -100px
}

/* ── GRADIENT TEXT ── */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.gradient-text .text-reveal__word {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.serif {
    font-family: var(--font-heading);
    font-style: italic
}

.serif .text-reveal__word {
    font-family: var(--font-heading);
    font-style: italic
}

/* ── GLOW LINE DIVIDER ── */
.glow-divider {
    width: 100%;
    height: 1px;
    background: var(--gradient-glow-line);
    opacity: .5;
    margin: 0
}

/* ── PRELOADER ── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .8s, visibility .8s
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.preloader__inner {
    text-align: center
}

.preloader__logo {
    width: 220px;
    margin-bottom: 24px;
    animation: pulse-logo 1.5s ease infinite
}

@keyframes pulse-logo {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.08);
        opacity: .7
    }
}

.preloader__bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, .06);
    border-radius: 4px;
    overflow: hidden
}

.preloader__bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-teal);
    border-radius: 4px;
    animation: load-bar 1.5s ease forwards
}

@keyframes load-bar {
    to {
        width: 100%
    }
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-slow)
}

.header.scrolled {
    background: rgba(4, 15, 26, .92);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(111, 190, 189, .06)
}

.header__top-bar {
    background: linear-gradient(90deg, var(--navy-deep), var(--navy) 50%, var(--navy-deep));
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(111, 190, 189, .08)
}

.header__top-bar-inner {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.header__top-link {
    color: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    letter-spacing: .3px
}

.header__top-link:hover {
    color: var(--teal)
}

.header__top-link i {
    color: var(--teal);
    font-size: 12px
}

.header__nav {
    padding: 16px 0;
    background: rgba(4, 15, 26, .3);
    backdrop-filter: blur(8px)
}

.header.scrolled .header__nav {
    background: transparent;
    backdrop-filter: none;
    padding: 12px 0
}

.header.scrolled .header__top-bar {
    display: none
}

.header__nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header__logo img {
    height: 48px;
    width: auto;
    transition: var(--transition)
}

.header.scrolled .header__logo img {
    height: 40px
}

.header__menu {
    display: flex;
    gap: 2px
}

.header__menu-link {
    color: rgba(255, 255, 255, .6);
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    letter-spacing: .2px
}

.header__menu-link:hover {
    color: var(--white);
    background: rgba(111, 190, 189, .08)
}

.header__menu-link.active {
    color: var(--teal)
}

.header__menu-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--teal-glow)
}

.header__cta {
    position: relative;
    background: transparent;
    color: var(--teal);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid rgba(111, 190, 189, .3);
    overflow: hidden
}

.header__cta::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: conic-gradient(from 0deg, var(--teal), var(--indigo), var(--teal));
    border-radius: var(--radius-full);
    z-index: -2;
    animation: border-spin 4s linear infinite
}

.header__cta::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--navy-deep);
    border-radius: var(--radius-full);
    z-index: -1;
    transition: var(--transition)
}

.header__cta:hover {
    color: var(--navy);
    border-color: transparent
}

.header__cta:hover::after {
    background: var(--gradient-teal)
}

@keyframes border-spin {
    to {
        transform: rotate(360deg)
    }
}

.header__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between
}

.header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition)
}

/* ── MOBILE NAV ── */
.mobile-nav {
    display: none
}

.mobile-nav.open {
    display: block
}

.mobile-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 9998;
    backdrop-filter: blur(8px)
}

.mobile-nav__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
    z-index: 9999;
    padding: 30px;
    display: flex;
    flex-direction: column;
    animation: slide-in .3s ease;
    overflow-y: auto
}

@keyframes slide-in {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0)
    }
}

.mobile-nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(111, 190, 189, .1);
    border: none;
    color: var(--teal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px
}

.mobile-nav__logo {
    width: 160px;
    margin-bottom: 40px
}

.mobile-nav__menu {
    flex: 1
}

.mobile-nav__menu li {
    margin-bottom: 4px
}

.mobile-nav__menu a {
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition)
}

.mobile-nav__menu a:hover {
    background: rgba(111, 190, 189, .1);
    color: var(--teal)
}

.mobile-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    padding: 14px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-top: 20px
}

/* ═══════════════════════════════════════════
   HERO — MESH GRADIENT + SERIF TITLES
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px
}

/* Ambient orbs in hero */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(111, 190, 189, .12) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
    z-index: 2;
    animation: orb-drift 20s ease-in-out infinite alternate
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, .08) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    border-radius: 50%;
    z-index: 2;
    animation: orb-drift 25s ease-in-out infinite alternate-reverse
}

@keyframes orb-drift {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(40px, -30px) scale(1.15)
    }
}

.hero__bg {
    position: absolute;
    inset: 0
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 15, 26, .94) 0%, rgba(10, 34, 65, .88) 30%, rgba(15, 45, 86, .8) 60%, rgba(111, 190, 189, .3) 100%)
}

/* Mesh gradient layer */
.hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .6;
    background: var(--gradient-mesh);
    background-size: 400% 400%;
    animation: mesh-move 15s ease infinite
}

@keyframes mesh-move {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden
}

.hero__particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(111, 190, 189, .25);
    animation: float-particle linear infinite
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0
    }
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 860px
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(111, 190, 189, .06);
    border: 1px solid rgba(111, 190, 189, .15);
    color: var(--teal-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    animation: shimmer 3s ease infinite
}

@keyframes shimmer {

    0%,
    100% {
        border-color: rgba(111, 190, 189, .15);
        box-shadow: none
    }

    50% {
        border-color: rgba(111, 190, 189, .35);
        box-shadow: 0 0 30px rgba(111, 190, 189, .08)
    }
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--teal-glow)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(111, 190, 189, 0)
    }
}

/* HERO TITLE */
.hero__title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -.03em;
    text-shadow: 0 2px 40px rgba(0, 0, 0, .3)
}

.hero__title .serif {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    display: inline
}

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
    font-weight: 400
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px
}

/* Hero Stats — Glassmorphism */
.hero__stats {
    display: flex;
    gap: 0;
    padding: 0;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(111, 190, 189, .12);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .05)
}

.hero__stat {
    text-align: center;
    padding: 28px 40px;
    position: relative
}

.hero__stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(111, 190, 189, .1)
}

.hero__stat:last-child::after {
    display: none
}

.hero__stat-number {
    font-family: var(--font-sans);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--teal);
    text-shadow: 0 0 40px rgba(111, 190, 189, .25)
}

.hero__stat-plus {
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: 700
}

.hero__stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    margin-top: 4px;
    letter-spacing: .5px
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3
}

.hero__scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .3);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce-down 2s ease infinite
}

@keyframes bounce-down {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

/* ═══════════════════════════════════════════
   BUTTONS — GLOW + MAGNETIC
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-spring);
    border: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: .2px
}

.btn--primary {
    background: var(--gradient-teal);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(111, 190, 189, .25)
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow)
}

.btn--outline {
    border: 1px solid rgba(111, 190, 189, .2);
    color: rgba(255, 255, 255, .7);
    background: rgba(111, 190, 189, .04);
    backdrop-filter: blur(12px)
}

.btn--outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(111, 190, 189, .08);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon)
}

.btn--cita {
    background: var(--gradient-teal);
    color: var(--navy);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 0 0 0 var(--teal-glow);
    animation: neon-pulse 2.5s ease infinite
}

@keyframes neon-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(111, 190, 189, .4), 0 4px 20px rgba(111, 190, 189, .2)
    }

    50% {
        box-shadow: 0 0 0 12px rgba(111, 190, 189, 0), 0 8px 40px rgba(111, 190, 189, .3)
    }
}

.btn--accent {
    background: var(--gradient-teal);
    color: var(--navy)
}

.btn--accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow)
}

.btn--lg {
    padding: 16px 36px;
    font-size: 16px
}

.btn--sm {
    padding: 10px 22px;
    font-size: 13px
}

/* ═══════════════════════════════════════════
   SECTION HEADERS — SERIF TITLES
   ═══════════════════════════════════════════ */
.section__header {
    margin-bottom: 80px
}

.section__header--center {
    text-align: center
}

.section__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--teal-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: var(--font-body);
    background: rgba(111, 190, 189, .06);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(111, 190, 189, .1)
}

.section__tag--light {
    color: var(--teal-light)
}

.section__tag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%
}

.section__title {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -.03em
}

.section__title--light {
    color: var(--white)
}

.section__subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400
}

.section__subtitle--light {
    color: rgba(255, 255, 255, .45)
}

/* ═══════════════════════════════════════════
   ABOUT — EDITORIAL CLEAN
   ═══════════════════════════════════════════ */
.about {
    background: var(--white);
    position: relative;
    padding: 160px 0
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: var(--gray-200)
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.about__description {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 500
}

.about__text p {
    margin-bottom: 16px;
    color: var(--gray-600);
    font-size: 15px
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--navy);
    font-size: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: var(--transition)
}

.about__feature:hover {
    border-color: var(--teal);
    box-shadow: 0 0 20px rgba(111, 190, 189, .08);
    transform: translateX(4px)
}

.about__feature i {
    color: var(--teal);
    font-size: 14px
}

.about__cards {
    display: flex;
    flex-direction: column;
    gap: 0
}

/* EDITORIAL STYLE CARDS — Left accent, no shadow */
.about__card {
    padding: 36px 36px 36px 32px;
    border-radius: 0;
    background: transparent;
    transition: var(--transition);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    cursor: default;
    border: none;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: none;
    border-left: 3px solid transparent
}

.about__card:first-child {
    border-top: 1px solid var(--gray-200)
}

.about__card::before {
    display: none
}

.about__card:hover {
    transform: none;
    box-shadow: none;
    border-left-color: var(--teal);
    background: var(--gray-50);
    border-color: var(--gray-200)
}

.about__card-icon {
    flex-shrink: 0
}

.about__card-icon img {
    width: 52px;
    height: 52px
}

.about__card h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.about__card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7
}

/* ── VIDEO ── */
.video-section {
    background: var(--gray-50)
}

.video-section__wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(10, 34, 65, .15);
    aspect-ratio: 16/9;
    border: 1px solid var(--gray-200)
}

.video-section__wrapper iframe {
    width: 100%;
    height: 100%
}

/* ═══════════════════════════════════════════
   SERVICES — EDITORIAL PREMIUM
   ═══════════════════════════════════════════ */
.services {
    background: var(--white);
    position: relative;
    padding: 160px 0
}

.services__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative
}

.services__grid .service-card:first-child {
    grid-row: span 1
}

/* SERVICE CARDS — Full-bleed editorial style */
.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    overflow: hidden;
    background: var(--white);
    border: none;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
    transition: var(--transition-slow);
    position: relative
}

/* Alternate layout: odd cards have image on right, even on left */
.service-card:nth-child(even) {
    direction: rtl
}

.service-card:nth-child(even)>* {
    direction: ltr
}

.service-card:first-child {
    border-top: 1px solid var(--gray-200)
}

.service-card::before,
.service-card::after {
    display: none
}

.service-card:hover {
    transform: none;
    box-shadow: none
}

.service-card__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: auto;
    height: 100%;
    min-height: 480px
}

.services__grid .service-card:first-child .service-card__image-wrap {
    aspect-ratio: auto;
    height: 100%
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.25, .46, .45, .94);
    filter: saturate(.9)
}

.service-card:hover .service-card__image {
    transform: scale(1.04);
    filter: saturate(1)
}

.service-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(4, 15, 26, .35) 100%);
    opacity: .5;
    transition: var(--transition)
}

.service-card:hover .service-card__image-overlay {
    opacity: .3
}

.service-card__content {
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

/* Decorative large number */
.service-card__content::before {
    content: counter(service-counter, decimal-leading-zero);
    position: absolute;
    top: 40px;
    right: 48px;
    font-size: 6rem;
    font-weight: 800;
    font-family: var(--font-sans);
    color: var(--gray-100);
    line-height: 1;
    letter-spacing: -.04em;
    pointer-events: none;
    transition: var(--transition-slow)
}

.services__grid {
    counter-reset: service-counter
}

.service-card {
    counter-increment: service-counter
}

.service-card:hover .service-card__content::before {
    color: rgba(111, 190, 189, .08)
}

.service-card__title {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -.02em;
    line-height: 1.2
}

.service-card__content p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 28px;
    line-height: 1.8;
    max-width: 400px
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    padding-bottom: 4px;
    border-bottom: 2px solid var(--navy)
}

.service-card__link:hover {
    color: var(--navy);
    gap: 10px
}

/* ═══════════════════════════════════════════
   MEDICINA LABORAL — DARK + GLOW
   ═══════════════════════════════════════════ */
.laboral {
    background: var(--navy-deep);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    padding: 120px 0;
    position: relative;
    overflow: hidden
}

.laboral__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020a14 0%, var(--navy-deep) 30%, var(--navy) 60%, rgba(111, 190, 189, .06) 100%)
}

.laboral__bg::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 190, 189, .06) 0%, transparent 70%);
    border-radius: 50%
}

.laboral .container {
    position: relative;
    z-index: 2
}

.laboral__types {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px
}

.laboral__type {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(111, 190, 189, .04);
    border: 1px solid rgba(111, 190, 189, .1);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-spring);
    letter-spacing: .3px
}

.laboral__type:hover {
    background: rgba(111, 190, 189, .12);
    color: var(--teal);
    border-color: rgba(111, 190, 189, .25);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(111, 190, 189, .1)
}

.laboral__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 80px
}

/* LABORAL ITEMS with GLOW */
.laboral__item {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(111, 190, 189, .06);
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
    position: relative
}

.laboral__item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(ellipse at 50% 0%, rgba(111, 190, 189, .08) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition)
}

.laboral__item:hover {
    border-color: rgba(111, 190, 189, .2);
    transform: translateY(-6px)
}

.laboral__item:hover::before {
    opacity: 1
}

.laboral__item-icon {
    margin-bottom: 16px;
    position: relative
}

.laboral__item-icon img {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    filter: drop-shadow(0 0 12px rgba(111, 190, 189, .2))
}

.laboral__item:hover .laboral__item-icon img {
    filter: drop-shadow(0 0 20px rgba(111, 190, 189, .4))
}

.laboral__item h4 {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 500
}

/* IN-PLANT */
.inplant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: rgba(111, 190, 189, .02);
    border: 1px solid rgba(111, 190, 189, .06);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden
}

.inplant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-glow-line);
    opacity: .5
}

.inplant__image img {
    border-radius: var(--radius-lg)
}

.inplant__title {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 16px 0;
    letter-spacing: -.02em
}

.inplant__subtitle {
    color: var(--teal-light);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px
}

.inplant__content p {
    color: rgba(255, 255, 255, .5);
    font-size: 15px
}

.inplant__list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 20px 0 28px
}

.inplant__list span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-light);
    font-weight: 500;
    font-size: 14px
}

/* ═══════════════════════════════════════════
   UNIDAD MOVIL
   ═══════════════════════════════════════════ */
.movil {
    background: var(--gray-50);
    position: relative
}

.movil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-glow-line);
    opacity: .4
}

.movil__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px
}

.movil__title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin: 16px 0 20px;
    letter-spacing: -.02em
}

.movil__hero-content p {
    color: var(--gray-600);
    margin-bottom: 12px;
    font-size: 15px
}

.movil__hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 80px rgba(10, 34, 65, .12);
    border: 1px solid var(--gray-200)
}

.movil__benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.movil__benefit {
    text-align: center;
    padding: 36px 20px;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: var(--transition-spring);
    position: relative
}

.movil__benefit::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    border-radius: 0 0 4px 4px;
    transition: var(--transition)
}

.movil__benefit:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--teal)
}

.movil__benefit:hover::before {
    width: 60px
}

.movil__benefit-icon {
    margin-bottom: 20px
}

.movil__benefit-icon img {
    width: 52px;
    height: 52px;
    margin: 0 auto
}

.movil__benefit h4 {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px
}

.movil__benefit p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6
}

/* ═══════════════════════════════════════════
   RESULTS — DARK + NUMBERS
   ═══════════════════════════════════════════ */
.results {
    background: var(--navy-deep);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    position: relative;
    overflow: hidden
}

.results__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020a14 0%, var(--navy-deep) 30%, var(--navy) 60%, rgba(111, 190, 189, .08) 100%)
}

/* Ambient orbs for results */
.results::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(111, 190, 189, .1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1
}

.results .container {
    position: relative;
    z-index: 2
}

.results__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.results__item {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    transition: var(--transition);
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(111, 190, 189, .06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px)
}

.results__item:hover {
    background: rgba(111, 190, 189, .06);
    border-color: rgba(111, 190, 189, .15);
    transform: translateY(-4px)
}

.results__number {
    font-family: var(--font-sans);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--teal);
    text-shadow: 0 0 40px rgba(111, 190, 189, .3);
    letter-spacing: -.02em
}

.results__plus {
    font-size: 1.8rem;
    color: var(--teal);
    font-weight: 700
}

.results__item p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    margin-top: 10px;
    line-height: 1.5;
    letter-spacing: .3px
}

/* ── TRAINING ── */
.training {
    background: var(--white)
}

.training__slider {
    position: relative;
    overflow: hidden
}

.training__track {
    display: flex;
    gap: 16px;
    transition: transform .5s ease
}

.training__card {
    flex: 0 0 calc(25% - 12px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    transition: var(--transition-spring)
}

.training__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--teal)
}

.training__card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.training__card h4 {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy)
}

.training__controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px
}

.training__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition-spring);
    font-size: 14px
}

.training__btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: scale(1.1)
}

/* ── CLIENTS ── */
.clients {
    background: var(--navy-deep);
    overflow: hidden;
    border-top: 1px solid rgba(111, 190, 189, .04);
    border-bottom: 1px solid rgba(111, 190, 189, .04)
}

.clients .section__title--light {
    color: var(--white)
}

.clients .section__tag {
    color: var(--teal-light)
}

.clients__marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite
}

.clients__track {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 0 24px
}

.clients__track img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .3;
    transition: var(--transition)
}

.clients__track img:hover {
    opacity: .7
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ── TESTIMONIALS ── */
.testimonials {
    background: var(--gray-50)
}

.testimonials__carousel {
    overflow: hidden;
    position: relative
}

.testimonials__track {
    display: flex;
    transition: transform .5s ease
}

.testimonial-card {
    flex: 0 0 calc(50% - 12px);
    margin-right: 24px;
    padding: 36px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition-spring);
    position: relative
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-teal);
    transition: var(--transition)
}

.testimonial-card:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--teal);
    transform: translateY(-4px)
}

.testimonial-card:hover::before {
    width: 80px
}

.testimonial-card__stars {
    margin-bottom: 16px
}

.testimonial-card__stars i {
    color: var(--gold);
    font-size: 14px
}

.testimonial-card__quote {
    font-size: 15px;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 80px
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100)
}

.testimonial-card__author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(111, 190, 189, .3)
}

.testimonial-card__author strong {
    display: block;
    font-size: 14px;
    color: var(--navy)
}

.testimonial-card__author span {
    font-size: 12px;
    color: var(--gray-400)
}

.testimonials__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px
}

.testimonials__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gray-300);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition-spring)
}

.testimonials__btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: scale(1.1)
}

.testimonials__dots {
    display: flex;
    gap: 6px
}

.testimonials__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition)
}

.testimonials__dot.active {
    background: var(--teal);
    width: 24px;
    border-radius: 4px
}

/* ═══════════════════════════════════════════
   LEAD CAPTURE — GLASSMORPHISM
   ═══════════════════════════════════════════ */
.lead-section {
    background: var(--navy-deep);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
    padding: 140px 0
}

.lead-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(111, 190, 189, .06) 0%, transparent 60%);
    border-radius: 50%
}

.lead-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, .04) 0%, transparent 60%);
    border-radius: 50%
}

.lead-section .container {
    position: relative;
    z-index: 2
}

.lead__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center
}

.lead__info h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.02em
}

.lead__info p {
    color: rgba(255, 255, 255, .45);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.8
}

.lead__perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px
}

.lead__perk {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .6);
    font-size: 14px
}

.lead__perk i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(111, 190, 189, .08);
    color: var(--teal);
    border-radius: 50%;
    font-size: 13px;
    border: 1px solid rgba(111, 190, 189, .12)
}

.lead__trust {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(111, 190, 189, .03);
    border: 1px solid rgba(111, 190, 189, .06);
    border-radius: var(--radius-md)
}

.lead__trust i {
    color: var(--teal);
    font-size: 18px
}

.lead__trust span {
    color: rgba(255, 255, 255, .4);
    font-size: 13px
}

/* GLASSMORPHISM CARD */
.lead__card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(111, 190, 189, .12);
    border-radius: var(--radius-xl);
    padding: 44px;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .06)
}

.lead__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-glow-line);
    opacity: .5
}

.lead__card::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(111, 190, 189, .04) 0%, transparent 55%);
    border-radius: 50%;
    pointer-events: none
}

.lead__card-header {
    text-align: center;
    margin-bottom: 32px
}

.lead__card-header h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px
}

.lead__card-header p {
    color: rgba(255, 255, 255, .35);
    font-size: 13px
}

/* STEPS */
.lead__steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px
}

.lead__step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    font-weight: 600;
    letter-spacing: .3px
}

.lead__step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: var(--transition)
}

.lead__step.active .lead__step-num {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--navy);
    box-shadow: 0 0 18px rgba(111, 190, 189, .3)
}

.lead__step.active {
    color: var(--teal)
}

.lead__step.completed .lead__step-num {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--navy)
}

.lead__step-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px
}

.lead__step-line.active {
    background: var(--teal);
    box-shadow: 0 0 8px rgba(111, 190, 189, .3)
}

/* FORM */
.lead__form-step {
    display: none
}

.lead__form-step.active {
    display: block;
    animation: fadeStep .4s ease
}

@keyframes fadeStep {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lead__field {
    margin-bottom: 18px
}

.lead__field label {
    display: block;
    color: rgba(255, 255, 255, .5);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.lead__field input,
.lead__field select,
.lead__field textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(111, 190, 189, .08);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none
}

.lead__field input::placeholder,
.lead__field textarea::placeholder {
    color: rgba(255, 255, 255, .2)
}

.lead__field input:focus,
.lead__field select:focus,
.lead__field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(111, 190, 189, .1), 0 0 20px rgba(111, 190, 189, .05);
    background: rgba(111, 190, 189, .04)
}

.lead__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236FBEBD' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer
}

.lead__field select option {
    background: var(--navy);
    color: var(--white)
}

.lead__field textarea {
    resize: vertical;
    min-height: 80px
}

.lead__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.lead__form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px
}

.lead__form-actions .btn {
    flex: 1;
    justify-content: center
}

.btn--back {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .5)
}

.btn--back:hover {
    background: rgba(255, 255, 255, .08);
    color: var(--white)
}

.btn--submit {
    background: var(--gradient-teal);
    color: var(--navy);
    font-weight: 700
}

/* SUCCESS */
.lead__success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    animation: fadeStep .5s ease
}

.lead__success.show {
    display: block
}

.lead__success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(111, 190, 189, .08);
    border: 1px solid rgba(111, 190, 189, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--teal);
    animation: pop .5s var(--transition-spring)
}

@keyframes pop {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.lead__success h3 {
    font-family: var(--font-sans);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px
}

.lead__success p {
    color: rgba(255, 255, 255, .4);
    margin-bottom: 24px
}

/* ── CONTACT ── */
.contact {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%)
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.contact__title {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin: 16px 0 20px;
    letter-spacing: -.02em
}

.contact__info p {
    color: var(--gray-500);
    margin-bottom: 28px;
    font-size: 15px
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start
}

.contact__detail i {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    color: var(--teal-dark);
    border-radius: var(--radius-md);
    font-size: 16px;
    flex-shrink: 0;
    border: 1px solid var(--gray-200)
}

.contact__detail strong {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.contact__detail a {
    color: var(--navy);
    font-weight: 500;
    font-size: 14px
}

.contact__detail a:hover {
    color: var(--teal-dark)
}

.contact__social {
    display: flex;
    gap: 10px
}

.contact__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--transition-spring)
}

.contact__social a:hover {
    background: var(--teal);
    color: var(--navy);
    transform: translateY(-3px) scale(1.05)
}

.contact__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 16px 60px rgba(10, 34, 65, .1);
    border: 1px solid var(--gray-200)
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
    background: var(--navy-deep);
    padding: 80px 0 0;
    position: relative;
    color: rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(111, 190, 189, .04)
}

.footer__wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--white);
    line-height: 0
}

.footer__wave svg {
    width: 100%;
    height: 50px
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(111, 190, 189, .04)
}

.footer__logo {
    width: 180px;
    margin-bottom: 16px
}

.footer__slogan {
    font-size: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .3)
}

.footer__social {
    display: flex;
    gap: 8px;
    margin-top: 20px
}

.footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(111, 190, 189, .08);
    color: rgba(255, 255, 255, .4);
    transition: var(--transition-spring);
    font-size: 14px
}

.footer__social a:hover {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--navy);
    transform: scale(1.1)
}

.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.footer__col li {
    margin-bottom: 8px
}

.footer__col a {
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    gap: 6px
}

.footer__col a:hover {
    color: var(--teal)
}

.footer__col a i {
    font-size: 10px;
    color: var(--teal)
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .3px
}

/* ── WHATSAPP ── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
    animation: pulse-wa 2s ease infinite;
    transition: var(--transition)
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .4)
}

.whatsapp-float i {
    font-size: 20px
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .4)
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
    }
}

/* ═══════════════════════════════════════════
   ANIMATIONS — TEXT REVEAL + SCROLL
   ═══════════════════════════════════════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

[data-animate="fade-right"] {
    transform: translateX(-30px)
}

[data-animate="fade-left"] {
    transform: translateX(30px)
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0)
}

/* Text split reveal */
.text-reveal {
    overflow: hidden
}

.text-reveal__word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1), opacity .6s ease;
    transition-delay: var(--word-delay, 0s)
}

.text-reveal.visible .text-reveal__word {
    transform: translateY(0);
    opacity: 1
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media(max-width:1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .services__grid .service-card {
        grid-template-columns: 1fr
    }

    .service-card__image-wrap {
        min-height: 300px !important
    }

    .service-card__content {
        padding: 40px 32px
    }

    .service-card:nth-child(even) {
        direction: ltr
    }

    .movil__hero,
    .contact__grid,
    .lead__grid {
        grid-template-columns: 1fr
    }

    .movil__benefits {
        grid-template-columns: repeat(2, 1fr)
    }

    .results__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .results__item::after {
        display: none
    }

    .inplant {
        grid-template-columns: 1fr;
        padding: 40px
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr
    }

    .training__card {
        flex: 0 0 calc(33.33% - 12px)
    }

    .lead__info {
        text-align: center
    }

    .lead__perks {
        align-items: center
    }
}

@media(max-width:768px) {
    .section {
        padding: 80px 0
    }

    .header__menu,
    .header__cta {
        display: none
    }

    .header__hamburger {
        display: flex
    }

    .header__top-bar {
        display: none
    }

    .header__nav {
        background: rgba(4, 15, 26, .85);
        backdrop-filter: blur(20px)
    }

    .hero {
        min-height: 100svh;
        padding: 100px 0 60px
    }

    .hero__title {
        font-size: clamp(2rem, 7vw, 2.8rem)
    }

    .hero__stats {
        flex-direction: column
    }

    .hero__stat {
        padding: 20px 28px
    }

    .hero__stat::after {
        width: 60%;
        height: 1px;
        right: auto;
        left: 20%;
        top: auto;
        bottom: 0
    }

    .laboral__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .service-card {
        grid-template-columns: 1fr !important
    }

    .service-card__image-wrap {
        min-height: 260px !important
    }

    .service-card__content {
        padding: 32px 24px
    }

    .service-card__content::before {
        font-size: 4rem;
        top: 20px;
        right: 20px
    }

    .service-card:nth-child(even) {
        direction: ltr
    }

    .movil__benefits {
        grid-template-columns: 1fr 1fr
    }

    .results__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testimonial-card {
        flex: 0 0 100%;
        margin-right: 0
    }

    .footer__grid {
        grid-template-columns: 1fr
    }

    .training__card {
        flex: 0 0 calc(50% - 8px)
    }

    .lead__row {
        grid-template-columns: 1fr
    }

    .lead__card {
        padding: 28px 20px
    }

    .whatsapp-float span {
        display: none
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%
    }

    .whatsapp-float i {
        font-size: 24px
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    .laboral__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .laboral__types {
        gap: 8px
    }

    .laboral__type {
        padding: 8px 14px;
        font-size: 12px
    }

    .movil__benefits {
        grid-template-columns: 1fr
    }

    .results__grid {
        grid-template-columns: 1fr 1fr
    }

    .inplant {
        padding: 24px
    }

    .training__card {
        flex: 0 0 calc(80% - 8px)
    }
}