@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
    --navy-950: #030f22;
    --navy-900: #061f42;
    --navy-850: #0a2a54;
    --navy-800: #0d3264;
    --navy-700: #12407a;
    --navy-600: #1a5296;
    --green:    #47bf2b;
    --green-2:  #2ca91a;
    --green-3:  #39ae23;
    --green-glow: rgba(71,191,43,.35);
    --text-inv: #f5f8ff;
    --ff-head: 'Montserrat', system-ui, sans-serif;
    --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --r-xl: 32px;
    --r-lg: 24px;
    --r-md: 16px;
    --r-sm: 10px;
    --shadow-hero: 0 32px 80px rgba(3,15,36,.35);
    --shadow-card: 0 8px 32px rgba(8,27,60,.10);
    --shadow-card-hover: 0 24px 56px rgba(8,27,60,.18);
    --transition: .22s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.fa-solid, .fa-brands, .fa-regular { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; line-height: 1; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    color: #11213a;
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }

/* ─── LAYOUT ──────────────────────────────────────────────── */
.page-shell { min-height: 100vh; overflow-x: hidden; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.container  { max-width: 1400px; margin: 0 auto; padding-inline: 60px; }
.section-light { background: #fff; }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.revealed {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--green-2);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.eyebrow-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--green-2);
    border-radius: 2px;
}
.eyebrow-tag--light { color: var(--green); }
.eyebrow-tag--light::before { background: var(--green); }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }

.section-title {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #08213f;
    line-height: 1.08;
    letter-spacing: -.04em;
}
.section-title--white { color: #fff; }
.section-sub {
    margin-top: 18px;
    font-size: 1.05rem;
    color: rgba(11,30,62,.58);
    line-height: 1.65;
    max-width: 640px;
    margin-inline: auto;
}
.text-green { color: var(--green); }

/* Shared hero heading scale based on index hero */
.atr-hero__title,
.rm-hero__title,
.payroll-hero__title,
.do-hero__title {
    font-family: var(--ff-head);
    font-size: clamp(1.75rem, 0.6rem + 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.04em;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 28px;
    border-radius: 999px;
    font-family: var(--ff-head);
    font-size: .97rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    letter-spacing: .01em;
}
.button svg { width: 18px; height: 18px; flex-shrink: 0; }
.button:hover { transform: translateY(-2px); }

/* shimmer on hover */
.button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .5s ease;
}
.button:hover::after { transform: translateX(100%); }

.button--primary {
    background: linear-gradient(135deg, #56c930 0%, #3cb01f 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(46,158,30,.3), 0 2px 6px rgba(46,158,30,.2);
}
.button--primary:hover { box-shadow: 0 16px 40px rgba(46,158,30,.4), 0 4px 10px rgba(46,158,30,.25); }

.button--secondary {
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(250,253,255,.7);
    color: #fff;
    backdrop-filter: blur(8px);
    min-width: 250px;
}
.button--secondary:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.9); }

.button--green {
    background: linear-gradient(135deg, #56c930 0%, #3cb01f 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(46,158,30,.28);
}
.button--green:hover { box-shadow: 0 16px 40px rgba(46,158,30,.4); }

.button--outline-navy {
    background: transparent;
    border: 2px solid var(--navy-800);
    color: var(--navy-800);
    font-weight: 700;
}
.button--outline-navy:hover {
    background: var(--navy-800);
    color: #fff;
    box-shadow: 0 10px 28px rgba(13,50,100,.25);
}

.button--navy {
    background: linear-gradient(135deg, #2459c6 0%, #1a49aa 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(29, 79, 181, .26);
}

.button--navy:hover {
    box-shadow: 0 16px 40px rgba(29, 79, 181, .34);
}

/* ─── HEADER ──────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: linear-gradient(180deg, #071f43 0%, #081f40 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 4px 32px rgba(3,12,30,.4);
    backdrop-filter: blur(20px);
}
.site-header__inner {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 108px;
    padding: 12px 60px 14px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 16px; flex-shrink: 0; }
.brand__mark { width: 64px; height: 64px; flex-shrink: 0; }
.brand__logo { height: 64px; width: auto; display: block; }
.brand--footer .brand__logo { height: 44px; }
.brand__text { display: flex; flex-direction: column; gap: 3px; letter-spacing: .18em; }
.brand__name {
    color: #f6f9ff;
    font-family: var(--ff-head);
    font-size: 1.85rem;
    line-height: .95;
    font-weight: 600;
}
.brand__sub { color: rgba(255,255,255,.82); font-size: .78rem; font-weight: 600; line-height: 1; }
.brand--footer .brand__name { font-size: 1.5rem; }
.brand--footer .brand__mark { width: 50px; height: 50px; }

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex: 1;
    color: rgba(248,251,255,.92);
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 500;
}
.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 2px 18px;
    position: relative;
    opacity: .88;
    transition: opacity var(--transition);
}
.nav__link svg { width: 12px; height: 12px; }
.nav__link:hover { opacity: 1; }
.nav__link.is-active { opacity: 1; }
.nav__link.is-active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    width: 36px; height: 3px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-2) 100%);
    box-shadow: 0 0 8px rgba(71,191,43,.5);
}

/* ── Dropdown submenu ── */
.nav__item {
    position: relative;
}
.nav__link--btn {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 2px 18px;
    opacity: .88;
    transition: opacity var(--transition);
}
.nav__link--btn:hover { opacity: 1; }
.nav__chevron {
    font-size: 10px;
    transition: transform .25s ease;
}
.nav__item--dropdown:hover .nav__chevron,
.nav__item--dropdown.is-open .nav__chevron {
    transform: rotate(180deg);
}
.nav__dropdown {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    min-width: 230px;
    background: var(--navy-900);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 200;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.is-open .nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
    display: block;
    padding: 11px 22px;
    color: rgba(248,251,255,.9);
    font-family: var(--ff-head);
    font-size: .95rem;
    font-weight: 500;
    transition: background .15s, color .15s;
}
.nav__dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__dropdown-item:hover {
    background: var(--green);
    color: #fff;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #53c62c 0%, #39ae23 100%);
    color: #fff;
    font-family: var(--ff-head);
    font-size: .92rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(56,160,27,.3), 0 2px 6px rgba(56,160,27,.2);
    flex-shrink: 0;
    transition: transform var(--transition), box-shadow var(--transition);
    letter-spacing: .01em;
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(56,160,27,.4);
}
.header-cta i { font-size: 19px; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero { position: relative; background: var(--navy-850); }
.hero__track-wrapper { overflow: hidden; position: relative; }
.hero__track { position: relative; }

/* dot pattern overlay */
.hero__track-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 2;
}

.hero__slide {
    display: none;
    position: relative;
    overflow: hidden;
    color: var(--text-inv);
    padding-bottom: 0;
    background: linear-gradient(160deg, #0c2d5a 0%, #062040 60%, #041628 100%);
}
.hero__slide.is-active { display: block; animation: heroFadeIn .65s cubic-bezier(.4,0,.2,1) both; }

@keyframes heroFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.hero__slide.is-active .hero__content > * {
    animation: heroSlideUp .7s cubic-bezier(.4,0,.2,1) both;
}
.hero__slide.is-active .hero__eyebrow { animation-delay: .05s; }
.hero__slide.is-active .hero__title  { animation-delay: .12s; }
.hero__slide.is-active .hero__copy   { animation-delay: .2s; }
.hero__slide.is-active .hero__actions{ animation-delay: .28s; }

@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: none; }
}

.hero__bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 55% at 35% 55%, rgba(28,79,158,.45) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 75% 25%, rgba(15,72,160,.2) 0%, transparent 60%);
}

/* Animated glow pulse */
.hero__glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(71,191,43,.08) 0%, transparent 70%);
    top: -100px; left: -100px;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50%       { transform: scale(1.15); opacity: 1; }
}

.hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: none;
    height: clamp(560px, 483px + 10.7vw, 620px);
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}
.hero__content {
    position: relative;
    z-index: 3;
    /* padding-left dinámico alineado con el contenedor del sitio */
    padding: 50px 40px 120px max(60px, calc((100vw - 1400px) / 2 + 60px));
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero__eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: var(--green);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--green-glow);
}
.hero__title {
    font-family: var(--ff-head);
    font-size: clamp(1.75rem, 0.6rem + 4vw, 3.6rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.035em;
    color: #fff;
    margin: 0;
    text-wrap: balance;
}
.hero__title span {
    color: var(--green);
    text-shadow: 0 0 40px rgba(71,191,43,.3);
}
.hero__copy {
    margin: 26px 0 0;
    max-width: 580px;
    font-size: clamp(1rem, 1.35vw, 1.28rem);
    line-height: 1.55;
    color: rgba(235,243,255,.9);
    font-weight: 400;
}
.hero__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 38px;
}

/* Hero visual area */
.hero__visual {
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-height: 620px;
    overflow: hidden;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__slide.is-active .hero__visual { animation: visualFadeIn .9s cubic-bezier(.4,0,.2,1) .1s both; }
@keyframes visualFadeIn {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: none; }
}
.hero__image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}
.hero__visual-fade {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(6,20,42,.85) 0%, rgba(6,20,42,.2) 28%, transparent 44%),
        linear-gradient(180deg, rgba(2,8,18,.1) 0%, rgba(2,8,18,0) 15%, rgba(2,8,18,.18) 100%);
    pointer-events: none;
}
.hero__accent { position: absolute; pointer-events: none; }
.hero__accent--top {
    top: 0; left: 0;
    width: 220px; height: 100%;
    background: linear-gradient(180deg, rgba(12,60,148,.5) 0%, rgba(14,84,172,.2) 100%);
    clip-path: polygon(0 0, 100% 0, 32% 100%, 0 100%);
    mix-blend-mode: screen;
    opacity: .55;
}
.hero__accent--bottom {
    right: -44px; bottom: -36px;
    width: 160px; height: 330px;
    background: linear-gradient(170deg, #4fd328 0%, #2ea91f 100%);
    clip-path: polygon(34% 0, 100% 0, 58% 100%, 0 100%);
    box-shadow: -4px -4px 24px rgba(71,191,43,.2) inset;
}

/* Float badge slide 2 */
.hero__float-badge {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: none;
    z-index: 10;
    background: rgba(255,255,255,.96);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 236px;
    box-shadow: 0 20px 48px rgba(8,27,60,.2), 0 4px 12px rgba(8,27,60,.1);
    color: #0a2044;
    z-index: 5;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.6);
}
.hero__float-badge-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eaf3fd 0%, #d4e8fb 100%);
    color: #245795;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.hero__float-badge-icon i { font-size: 22px; }
.hero__float-badge p { font-size: .86rem; line-height: 1.38; font-weight: 600; margin: 0; color: #0a2044; }

/* Dashboard card slide 3 */
.hero__dashboard-card {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: none;
    background: rgba(255,255,255,.97);
    border-radius: var(--r-md);
    padding: 16px 20px 18px;
    width: 230px;
    box-shadow: 0 20px 48px rgba(8,27,60,.2), 0 4px 12px rgba(8,27,60,.1);
    z-index: 5;
    border: 1px solid rgba(255,255,255,.6);
}
.hero__dashboard-card-header { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.dash-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dash-dot--red    { background: #ff5f57; }
.dash-dot--yellow { background: #febc2e; }
.dash-dot--green  { background: #28c840; }
.dash-label { font-size: .7rem; color: #888; margin-left: 5px; font-weight: 500; }
.dash-stat { margin-bottom: 10px; }
.dash-stat__num { font-family: var(--ff-head); font-size: 1.6rem; font-weight: 900; color: #0a2044; display: block; letter-spacing: -.04em; }
.dash-stat__lbl { font-size: .7rem; color: #888; font-weight: 500; }
.dash-bar-group { display: flex; align-items: flex-end; gap: 5px; height: 52px; margin-bottom: 10px; border-bottom: 1.5px solid #eee; padding-bottom: 2px; }
.dash-bar { flex: 1; border-radius: 3px 3px 0 0; min-height: 4px; }
.dash-ok { display: flex; align-items: center; gap: 6px; font-size: .74rem; color: #444; margin: 0; font-weight: 600; }

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 80px));
    z-index: 20;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.2);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(10px);
}
.slider-arrow:hover { background: rgba(255,255,255,.2); transform: translateY(calc(-50% - 80px)) scale(1.08); }
.slider-arrow i { font-size: 18px; }
.slider-arrow--prev { left: 10px; }
.slider-arrow--next { right: 10px; }

.slider-progress {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 20;
    display: flex;
    gap: 4px;
}
.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,.25);
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.progress-bar__fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--green);
    transition: none;
}

/* ─── STATS BAR ───────────────────────────────────────────── */
/* vive FUERA del .hero — la mitad superior solapa el hero (azul),
   la mitad inferior queda sobre el fondo blanco de .services */
.hero__stats .stat-card { transition: opacity .2s ease; }
.hero__stats.stats-fade .stat-card { opacity: 0; }
.hero__stats {
    --hero-stat-height: 124px;
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: -52px auto 0;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: transparent;
}
.hero__stats::before {
    content: '';
    position: absolute;
    inset: 0 60px;
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: 0 16px 48px rgba(8,27,60,.13), 0 4px 12px rgba(8,27,60,.06);
    z-index: -1;
}
.stat-card {
    min-height: var(--hero-stat-height);
    height: var(--hero-stat-height);
    padding: 18px 18px 18px 16px;
    background: transparent;
    color: #12213d;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform var(--transition);
    cursor: default;
}
.stat-card:hover { transform: translateY(-2px); }
.stat-card:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); padding-left: 24px; }
.stat-card:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; padding-right: 24px; }
.stat-card + .stat-card { border-left: 1px solid rgba(18,33,61,.07); }
.stat-card__icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eaf3fd 0%, #daeafa 100%);
    color: #1a5296;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(26,82,150,.12);
}
.stat-card__icon i { font-size: 26px; }
.stat-card__body { min-width: 0; }
.stat-card__title {
    color: var(--green-2);
    font-family: var(--ff-head);
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.01em;
}
.stat-card__label {
    margin-top: 4px;
    color: #0d2340;
    font-family: var(--ff-head);
    font-size: .8rem;
    font-weight: 700;
    line-height: 1.2;
}
.stat-card p { margin: 3px 0 0; color: rgba(18,33,61,.52); font-size: .74rem; line-height: 1.4; }

/* ─── SERVICES ────────────────────────────────────────────── */
.services { padding: 80px 0 0; }

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

.svc-card {
    border-radius: var(--r-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(12,50,100,.06);
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(71,191,43,.15);
}

/* Rich gradient photo */
.svc-card__photo {
    position: relative;
    height: 210px;
    flex-shrink: 0;
    overflow: hidden;
}
.svc-card__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.svc-card:nth-child(1) .svc-card__photo {
    background:
        radial-gradient(circle at 25% 75%, rgba(71,191,43,.25) 0, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(28,79,158,.35) 0, transparent 45%),
        linear-gradient(145deg, #0c2d60 0%, #1a5296 60%, #0d3264 100%);
}
.svc-card:nth-child(2) .svc-card__photo {
    background:
        radial-gradient(circle at 70% 70%, rgba(71,191,43,.2) 0, transparent 50%),
        radial-gradient(circle at 20% 30%, rgba(100,160,255,.2) 0, transparent 45%),
        linear-gradient(145deg, #112a58 0%, #1c4f9e 55%, #0e3878 100%);
}
.svc-card:nth-child(3) .svc-card__photo {
    background:
        radial-gradient(circle at 60% 40%, rgba(71,191,43,.22) 0, transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(28,79,158,.3) 0, transparent 45%),
        linear-gradient(145deg, #082240 0%, #0f3872 55%, #0a2b55 100%);
}

/* grid pattern on photos */
.svc-card__photo::before {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.svc-card__photo::after {
    content: '';
    position: absolute; inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.15) 100%);
}

.svc-card__icon-wrap {
    width: 68px; height: 68px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 20px rgba(8,27,60,.16);
    display: grid;
    place-items: center;
    color: var(--navy-800);
    margin: -34px auto 0;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,.9);
    transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover .svc-card__icon-wrap {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(71,191,43,.25);
    color: var(--green-2);
}
.svc-card__icon-wrap i { font-size: 30px; }

.svc-card__body { padding: 20px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 {
    font-family: var(--ff-head);
    font-size: 1.12rem;
    font-weight: 800;
    color: #08213f;
    margin-bottom: 12px;
    line-height: 1.22;
}
.svc-card__body p { font-size: .95rem; color: rgba(11,30,62,.6); line-height: 1.6; flex: 1; }
.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--ff-head);
    font-size: .86rem;
    font-weight: 700;
    color: var(--green-2);
    transition: gap var(--transition), color var(--transition);
}
.svc-card__link:hover { gap: 12px; color: var(--green); }
.svc-card__link svg { width: 15px; height: 15px; }

/* CTA Bar */
.cta-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    background: #e8f1fb;
    border-radius: 0 var(--r-xl) var(--r-xl) var(--r-xl);
    padding: 28px 36px;
    margin-top: 150px;
}
.cta-bar::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 0;
    width: 165px;
    height: 32px;
    background: #e8f1fb;
    border-radius: 12px 12px 0 0;
}
.cta-bar::after {
    content: '';
    position: absolute;
    top: -24px;
    left: 165px;
    width: 24px;
    height: 24px;
    background: transparent;
    border-bottom-left-radius: 14px;
    box-shadow: -12px 12px 0 0 #e8f1fb;
}
.cta-bar--process { margin-top: 60px; border-radius: 0 var(--r-xl) var(--r-xl) var(--r-xl); }
.cta-bar__left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.cta-bar__icon {
    width: 100px; height: 100px;
    border-radius: 20px;
    background: var(--navy-800);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: -10px;
    align-self: flex-start;
    position: relative;
    z-index: 2;
}
.cta-bar__icon i { font-size: 54px; }
.cta-bar__left strong { font-family: var(--ff-head); font-size: .98rem; font-weight: 700; color: #08213f; display: block; margin-bottom: 4px; }
.cta-bar__left p { font-size: .86rem; color: rgba(11,30,62,.58); margin: 0; }
.cta-bar__mid {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    border-left: 1px solid rgba(12,50,100,.1);
    border-right: 1px solid rgba(12,50,100,.1);
    color: var(--navy-800);
    flex-shrink: 0;
}
.cta-bar__wa-icon { font-size: 26px; flex-shrink: 0; line-height: 1; align-self: center; }
.button .cta-bar__wa-icon { font-size: 22px; }
.cta-bar__mid strong { display: block; font-family: var(--ff-head); font-size: .93rem; font-weight: 700; color: #08213f; }
.cta-bar__mid span { font-size: .8rem; color: rgba(11,30,62,.56); }
.cta-bar__pills { display: flex; flex-wrap: wrap; gap: 8px; flex-shrink: 0; }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 13px;
    background: rgba(12,50,100,.08);
    border: 1px solid rgba(12,50,100,.1);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy-800);
    font-family: var(--ff-head);
}
.pill i { font-size: 12px; }

/* ─── INDUSTRIES ──────────────────────────────────────────── */
.industries { padding: 110px 0 90px; }

.industries__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
    margin-bottom: 44px;
}
.ind-card {
    background: #fff;
    border: 1.5px solid rgba(12,50,100,.08);
    border-radius: var(--r-md);
    padding: 26px 12px 22px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: default;
}
.ind-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(11,31,61,.12);
    border-color: rgba(71,191,43,.35);
}
.ind-card:hover .ind-card__icon { color: var(--green-2); }
.ind-card__icon {
    color: var(--navy-800);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    transition: color var(--transition);
}
.ind-card__icon i { font-size: 42px; }
.ind-card h4 {
    font-family: var(--ff-head);
    font-size: .82rem;
    font-weight: 800;
    color: #08213f;
    margin-bottom: 6px;
}
.ind-card p { font-size: .74rem; color: rgba(11,30,62,.5); line-height: 1.45; }
.industries__cta { text-align: center; }

/* ─── HACEMOS LA DIFERENCIA ───────────────────────────────── */
.difference {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 560px;
}
.difference__photo { position: relative; overflow: hidden; }
.difference__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.difference__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(6,31,66,.4) 100%);
    pointer-events: none;
}
.difference__content {
    background: linear-gradient(160deg, #ffffff 0%, #eef4fb 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* dot grid on dark side */
.difference__content::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(8,33,63,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
/* green glow corner */
.difference__content::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(71,191,43,.1) 0%, transparent 70%);
    bottom: -100px; right: -100px;
    pointer-events: none;
}
.difference__inner {
    position: relative;
    z-index: 1;
    padding: 72px 72px 72px 64px;
    max-width: 820px;
}
.difference__inner .section-title { margin-bottom: 38px; line-height: 1.05; color: #08213f; }
.difference__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 36px; }
.diff-item { display: flex; align-items: flex-start; gap: 14px; }
.diff-item__icon {
    width: 46px; height: 46px;
    border-radius: 13px;
    background: rgba(71,191,43,.15);
    color: var(--green);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(71,191,43,.2);
    transition: background var(--transition), transform var(--transition);
}
.diff-item:hover .diff-item__icon { background: rgba(71,191,43,.25); transform: scale(1.08); }
.diff-item__icon i { font-size: 22px; }
.diff-item strong {
    display: block;
    font-family: var(--ff-head);
    font-size: .95rem;
    font-weight: 700;
    color: #08213f;
    margin-bottom: 5px;
}
.diff-item p { font-size: .85rem; color: rgba(11,30,62,.6); line-height: 1.55; margin: 0; }

/* ─── PROCESO ─────────────────────────────────────────────── */
.process { padding: 110px 0 90px; }

.process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    gap: 0;
    --step-navy: #0c2c5e;
    --step-green: #47bf2b;
}
.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

/* ── Number badge ── */
.process-step__num {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--step-navy);
    display: grid;
    place-items: center;
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(11,31,61,.22);
    z-index: 3;
}
.process-step:nth-child(even) .process-step__num { background: var(--step-green); box-shadow: 0 6px 16px rgba(71,191,43,.32); }

/* ── Big circle with icon + colored bottom arc ── */
.process-step__circle {
    position: relative;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--step-navy);
    margin-bottom: 26px;
    box-shadow: 0 12px 30px rgba(11,31,61,.1);
    transition: transform var(--transition);
}
.process-step:hover .process-step__circle { transform: translateY(-6px); }
.process-step__circle i { font-size: 56px; }
/* bottom colored arc */
.process-step__circle::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 5px solid var(--step-navy);
    clip-path: inset(48% 0 0 0);
    pointer-events: none;
}
.process-step:nth-child(even) .process-step__circle::after { border-color: var(--step-green); }

/* ── Dotted connector with chevron ── */
.process-step__connector {
    position: absolute;
    top: 135px;
    left: calc(50% + 75px);
    right: calc(-50% + 75px);
    height: 0;
    border-top: 2.5px dotted rgba(12,50,100,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.process-step__connector i {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--step-navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(11,31,61,.25);
}
/* chevron after an even step is green */
.process-step:nth-child(even) .process-step__connector i { background: var(--step-green); box-shadow: 0 4px 10px rgba(71,191,43,.3); }

/* ── Title + copy ── */
.process-step__body strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--step-navy);
    margin-bottom: 10px;
}
.process-step:nth-child(even) .process-step__body strong { color: var(--step-green); }
.process-step__body p { font-size: .85rem; color: rgba(11,30,62,.6); line-height: 1.55; margin: 0; max-width: 230px; }

/* ─── PROCESO CTA ─────────────────────────────────────────── */
.process-cta {
    position: relative;
    margin-top: 80px;
    padding: 40px 56px 64px;
    border-radius: 26px;
    overflow: hidden;
    background:
        linear-gradient(105deg, #0c2c5e 0%, rgba(12,44,94,.92) 50%, rgba(12,44,94,.82) 100%),
        url('../images/photo-placeholder.svg');
    background-size: cover;
    background-position: center 30%;
    display: grid;
    grid-template-columns: minmax(360px, 1.15fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 30px 48px;
    color: #fff;
}
/* head: whatsapp icon + title */
.process-cta__head {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 22px;
}
.process-cta__icon {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.process-cta__icon i { font-size: 40px; color: #25D366; }
.process-cta__head strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}
.process-cta__head .text-green { color: var(--green); }
.process-cta__head p { font-size: .95rem; color: rgba(220,232,250,.78); margin: 0; }

/* features row */
.process-cta__features {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
}
.process-cta__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 36px;
    max-width: 300px;
    border-left: 1px solid rgba(255,255,255,.16);
}
.process-cta__feature-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: rgba(71,191,43,.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.process-cta__feature-icon i { font-size: 20px; color: var(--green); }
.process-cta__feature strong {
    display: block;
    font-family: var(--ff-head);
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.process-cta__feature p { font-size: .82rem; color: rgba(220,232,250,.72); line-height: 1.45; margin: 0; }

/* button bottom-right */
.process-cta__btn {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    align-self: end;
    font-size: 1.02rem;
    padding: 16px 34px;
}
.process-cta__btn i { font-size: 20px; }

/* ─── CLIENTS ─────────────────────────────────────────────── */
.clients {
    background: #fff;
    padding: 88px 0 80px;
    border-top: 1px solid rgba(11,31,61,.06);
    border-bottom: 1px solid rgba(11,31,61,.06);
    text-align: center;
}
.clients__logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 48px;
    overflow: hidden;
    border: 1px solid rgba(11,31,61,.08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(8,27,60,.06);
}
.client-logo {
    min-width: 0;
    min-height: 124px;
    display: grid;
    place-items: center;
    padding: 24px 20px;
    border-right: 1px solid rgba(11,31,61,.08);
    border-bottom: 1px solid rgba(11,31,61,.08);
    transition: background var(--transition), transform var(--transition);
}
.client-logo:hover {
    background: #f7fbf5;
    transform: scale(1.02);
}
.client-logo__img { max-width: 170px; max-height: 68px; width: 100%; height: auto; object-fit: contain; }
.text-blue { color: var(--navy-700); }

/* ─── PRE-FOOTER CTA ──────────────────────────────────────── */
.pre-cta {
    background: #fff;
    padding: 80px 0;
}
.pre-cta__card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 240px;
    background: linear-gradient(150deg, #0c2d5a 0%, #0a2547 55%, #07203f 100%);
    display: flex;
    align-items: center;
}
/* photo on the right with diagonal cut */
.pre-cta__photo {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 44%;
    clip-path: polygon(22% 0, 100% 0, 100% 100%, 6% 100%);
    z-index: 0;
}
.pre-cta__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.pre-cta__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, #0a2547 0%, rgba(10,37,71,.55) 30%, rgba(10,37,71,.15) 100%);
}
/* green diagonal stripe */
.pre-cta__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    clip-path: polygon(61% 0, 64% 0, 56% 100%, 53% 100%);
    z-index: 1;
}
.pre-cta__body {
    position: relative;
    z-index: 2;
    padding: 32px 56px;
    max-width: 760px;
}
.pre-cta__body h2 {
    font-family: var(--ff-head);
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 14px;
    color: #fff;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--green);
    display: inline-block;
}
.pre-cta__body h2 span { color: var(--green); }
.pre-cta__body p { color: rgba(220,232,250,.8); margin-bottom: 30px; font-size: 1.02rem; line-height: 1.6; max-width: 580px; }
.pre-cta__actions { display: flex; align-items: center; gap: 26px; }
.pre-cta__divider { width: 1px; height: 52px; background: rgba(255,255,255,.2); flex-shrink: 0; }
.pre-cta__hours { display: flex; align-items: center; gap: 14px; }
.pre-cta__hours-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 2px solid #2a7fd4;
    background: rgba(42,127,212,.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.pre-cta__hours-icon i { font-size: 20px; color: #4a9be8; }
.pre-cta__hours strong { display: block; font-family: var(--ff-head); font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.pre-cta__hours span { font-size: .8rem; color: rgba(220,232,250,.68); line-height: 1.4; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
    background: #0a2349;
    padding: 64px 0 0;
    color: rgba(220,232,250,.75);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr 1.4fr;
    gap: 40px 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h5 {
    font-family: var(--ff-head);
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .9rem; font-weight: 500; color: rgba(230,240,252,.85); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green); }
.footer-col--brand .brand { margin-bottom: 20px; }
.footer-col__desc { font-size: .89rem; font-weight: 500; color: rgba(228,238,252,.78); line-height: 1.65; }

/* links with chevron */
.footer-links li { border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-links li:last-child { border-bottom: none; }
.footer-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
}
.footer-links li a i { font-size: 11px; color: var(--green); transition: transform var(--transition); }
.footer-links li a:hover i { transform: translateX(3px); }

.footer-col--contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .88rem;
    font-weight: 500;
    color: rgba(230,240,252,.85);
    margin-bottom: 12px;
}
.footer-col--contact ul li i { font-size: 15px; flex-shrink: 0; margin-top: 3px; color: var(--green); width: 16px; text-align: center; }

.footer-col--repse { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 34px; }
.repse-logo { max-width: 120px; width: 100%; height: auto; }
.repse-caption { font-size: .58rem; font-weight: 600; letter-spacing: .03em; color: rgba(228,238,252,.78); line-height: 1.3; text-transform: uppercase; max-width: 200px; }

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    font-size: .82rem;
    color: rgba(220,232,250,.6);
    border-top: none;
}
.footer-legal { display: flex; align-items: center; gap: 12px; }
.footer-legal a { color: rgba(220,232,250,.6); transition: color var(--transition); }
.footer-legal a:hover { color: var(--green); }
.footer-legal span { opacity: .5; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1280px) {
    .container, .site-header__inner { padding-inline: 36px; }
    .hero__stats { padding-inline: 36px; }
    .hero__content { padding-left: 36px; }
    .hero__stats::before { inset-inline: 36px; }
    .slider-arrow { display: none; }
    .industries__grid { grid-template-columns: repeat(4, 1fr); }
    .difference__inner { padding: 56px 40px; }
    .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 32px 40px; }
    .hero__inner { grid-template-columns: 1fr; min-height: 0; }
    .hero__visual,
    .hero__float-badge,
    .hero__dashboard-card { display: none; }
    .hero__content { padding: 48px 36px 36px; }
}

/* ─── HAMBURGUESA (oculta en desktop) ─────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* backdrop oscuro del drawer */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4,12,28,.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s;
    z-index: 190;
}
.site-header.nav-open + .nav-backdrop { opacity: 1; visibility: visible; }

@media (max-width: 1080px) {
    .clients__logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .site-header { backdrop-filter: none; }
    .site-header__inner { min-height: 0; padding-block: 14px; gap: 16px; }
    .nav-toggle { display: flex; position: relative; z-index: 220; }
    .header-cta { display: none; }
    .nav {
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(330px, 84vw);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        font-size: 1.02rem;
        background: linear-gradient(180deg, #071f43 0%, #0a2a54 100%);
        padding: 88px 24px 32px;
        transform: translateX(100%);
        transition: transform .32s cubic-bezier(.4,0,.2,1);
        box-shadow: none;
        overflow-y: auto;
        z-index: 210;
    }
    .site-header.nav-open .nav { transform: translateX(0); box-shadow: -12px 0 44px rgba(0,0,0,.35); }
    .nav__link { padding: 15px 4px; width: 100%; opacity: 1; border-bottom: 1px solid rgba(255,255,255,.1); }
    .nav__link.is-active::after { display: none; }
    .nav__item--dropdown { width: 100%; }
    .nav__link--btn { width: 100%; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); }
    .nav__dropdown,
    .nav__item--dropdown.is-open .nav__dropdown {
        position: static;
        left: auto;
        min-width: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        margin: 0;
        padding: 0;
        display: none;
    }
    .nav__item--dropdown.is-open .nav__dropdown { display: block; }
    .nav__dropdown-item { padding-left: 18px; }
    .hero__inner { grid-template-columns: 1fr; min-height: 0; }
    .hero__visual,
    .hero__float-badge,
    .hero__dashboard-card { display: none; }
    .slider-arrow { display: none; }
    .hero__content { padding: 52px 36px 32px; }
    .hero__stats { --hero-stat-height: 126px; grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
    .stat-card:nth-child(1) { border-radius: var(--r-lg) 0 0 0; }
    .stat-card:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
    .stat-card:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
    .stat-card:nth-child(4) { border-radius: 0 0 var(--r-lg) 0; }
    .services__grid { grid-template-columns: 1fr 1fr; }
    .industries__grid { grid-template-columns: repeat(4, 1fr); }
    .process__steps { grid-template-columns: 1fr 1fr; gap: 40px; }
    .process-step__connector { display: none; }
    .difference { grid-template-columns: 1fr; }
    .difference__photo { min-height: 320px; }
    .difference__inner { max-width: 100%; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .pre-cta__photo { width: 48%; }
}

@media (max-width: 720px) {
    .container, .site-header__inner { padding-inline: 20px; }
    .brand__logo { height: 48px; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
    .section-head { margin-bottom: 44px; }
    .industries__grid { gap: 16px; }
    .clients { padding: 60px 0 56px; }
    .hero__stats { padding-inline: 20px; }
    .hero__content { padding-inline: 20px; }
    .hero__stats::before { inset-inline: 20px; }
    .hero__visual { display: none; }
    .hero__stats { --hero-stat-height: 132px; grid-template-columns: 1fr; margin-top: 20px; }
    .stat-card { border-radius: 0 !important; border-left: 0 !important; }
    .stat-card:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0 !important; }
    .stat-card:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg) !important; }
    .services { padding-top: 80px; }
    .services__grid { grid-template-columns: 1fr; }
    .cta-bar { flex-direction: column; align-items: flex-start; border-radius: 0 0 var(--r-lg) var(--r-lg); }
    .cta-bar__mid { border: none; padding: 0; }
    .cta-bar .button { width: 100%; justify-content: center; }
    .industries__grid { grid-template-columns: repeat(2, 1fr); }
    .process__steps { grid-template-columns: 1fr; gap: 32px; }
    .process-cta { grid-template-columns: 1fr; padding: 32px 24px 40px; }
    .process-cta__head, .process-cta__features, .process-cta__btn { grid-column: 1; }
    .process-cta__head { grid-row: 1; }
    .process-cta__features { grid-row: 2; flex-direction: column; gap: 22px; }
    .process-cta__feature { border-left: none; padding: 0; max-width: none; }
    .process-cta__btn { grid-row: 3; justify-self: stretch; justify-content: center; }
    .difference__grid { grid-template-columns: 1fr; }
    .difference__inner { padding: 44px 24px; }
    .header-cta { width: 100%; justify-content: center; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
    .clients__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .client-logo { min-height: 104px; padding: 18px 14px; }
    .client-logo__img { max-width: 140px; max-height: 58px; }
    .pre-cta__photo { display: none; }
    .pre-cta__card::before { display: none; }
    .pre-cta__body { padding: 36px 26px; max-width: 100%; }
    .pre-cta__actions { flex-direction: column; align-items: flex-start; gap: 20px; }
    .pre-cta__divider { display: none; }
}

/* ─── WHATSAPP FLOTANTE ───────────────────────────────────── */
.wa-widget { position: fixed; right: 24px; bottom: 24px; z-index: 999; }
.wa-widget__fab {
    width: 62px; height: 62px;
    border-radius: 50%;
    border: none;
    background: #25D366;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(37,211,102,.45);
    transition: transform .25s ease, box-shadow .25s ease;
    animation: waPulse 2.4s infinite;
}
.wa-widget__fab:hover { transform: scale(1.08); }
@keyframes waPulse {
    0%   { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-widget__panel {
    position: absolute;
    bottom: 78px;
    right: 0;
    width: 320px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(11,31,61,.28);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(.96);
    transform-origin: bottom right;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.wa-widget.is-open .wa-widget__panel { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-widget__header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #075E54;
    color: #fff;
    padding: 16px 18px;
    position: relative;
}
.wa-widget__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}
.wa-widget__header strong { display: block; font-family: var(--ff-head); font-size: .98rem; }
.wa-widget__header span { font-size: .76rem; opacity: .8; }
.wa-widget__close {
    position: absolute;
    top: 12px; right: 12px;
    background: none; border: none; color: #fff;
    font-size: 18px; cursor: pointer; opacity: .8;
}
.wa-widget__close:hover { opacity: 1; }
.wa-widget__body {
    padding: 20px 18px;
    background: #e5ddd5;
    background-image: linear-gradient(rgba(229,221,213,.6), rgba(229,221,213,.6));
}
.wa-widget__bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 12px 16px;
    font-size: .9rem;
    color: #303030;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    margin-bottom: 16px;
}
.wa-widget__options { display: flex; flex-direction: column; gap: 10px; }
.wa-widget__option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: #fff;
    border: 1.5px solid rgba(7,94,84,.15);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--ff-head);
    font-size: .9rem;
    font-weight: 600;
    color: #075E54;
    cursor: pointer;
    text-align: left;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.wa-widget__option i { font-size: 16px; color: #25D366; width: 18px; text-align: center; }
.wa-widget__option:hover { background: #f0faf4; border-color: #25D366; transform: translateX(3px); }
@media (max-width: 720px) {
    .wa-widget { right: 16px; bottom: 16px; }
    .wa-widget__fab { width: 56px; height: 56px; font-size: 28px; }
}

/* ═══════════════ HERO ATRACCIÓN DE TALENTO ═══════════════ */
.atr-hero {
    position: relative;
    background: linear-gradient(150deg, #0c2d5a 0%, #0a2547 55%, #07203f 100%);
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}
/* patrón de puntos */
.atr-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}
/* foto con corte diagonal */
.atr-hero__photo {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 50%;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 4% 100%);
    z-index: 1;
}
.atr-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.atr-hero__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(100deg, #0a2547 0%, rgba(10,37,71,.45) 28%, rgba(10,37,71,0) 70%);
}
/* franja verde diagonal */
.atr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    clip-path: polygon(55.5% 0, 58.5% 0, 51.5% 100%, 48.5% 100%);
    z-index: 2;
}

.atr-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 60px;
}
.atr-hero__content { max-width: 600px; }
.atr-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--ff-head);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 22px;
}
.atr-hero__eyebrow::after {
    content: '';
    width: 54px; height: 2px;
    background: var(--green);
    border-radius: 2px;
}
.atr-hero__title {
    color: #fff;
    margin-bottom: 22px;
}
.atr-hero__copy {
    font-size: 1.02rem;
    line-height: 1.6;
    color: rgba(220,232,250,.78);
    max-width: 480px;
    margin-bottom: 34px;
}
.atr-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.button--ghost {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.45);
    color: #fff;
    backdrop-filter: blur(8px);
}
.button--ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.8); }
.button--ghost i { font-size: 15px; }

/* tarjeta flotante +10 años */
.atr-hero__badge {
    position: absolute;
    right: 0; bottom: 48px;
    width: 320px;
    background: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 20px 50px rgba(3,15,36,.4);
    z-index: 4;
}
.atr-hero__badge-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.atr-hero__badge-icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: rgba(71,191,43,.14);
    border: 1.5px solid rgba(71,191,43,.3);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.atr-hero__badge-icon i { font-size: 24px; color: var(--green-2); }
.atr-hero__badge-title strong { display: block; font-family: var(--ff-head); font-size: 1.5rem; font-weight: 800; color: #08213f; line-height: 1; }
.atr-hero__badge-title span { font-size: .9rem; font-weight: 600; color: var(--green-2); }
.atr-hero__badge p { font-size: .86rem; color: rgba(11,30,62,.62); line-height: 1.5; margin: 0; }

@media (max-width: 1080px) {
    .atr-hero__photo { display: none; }
    .atr-hero::before { display: none; }
    .atr-hero__badge { position: static; margin-top: 36px; width: 100%; max-width: 360px; }
    .atr-hero__inner { padding: 60px 36px; }
}
@media (max-width: 720px) {
    .atr-hero { min-height: 0; }
    .atr-hero__inner { padding: 48px 20px; }
    .atr-hero__copy { max-width: 100%; }
    .atr-hero__actions .button { width: 100%; justify-content: center; }
}

/* ═══════════════ POR QUÉ CONFÍAN ═══════════════ */
.why-companies { background: #fff; padding: 96px 0; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 48px;
}
.why-card {
    text-align: center;
    background: #fff;
    border: 1.5px solid rgba(11,31,61,.08);
    border-radius: var(--r-lg);
    padding: 38px 26px 32px;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-card:hover {
    box-shadow: 0 18px 40px rgba(11,31,61,.1);
    transform: translateY(-5px);
    border-color: rgba(71,191,43,.25);
}
.why-card__icon {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef5fd 0%, #e2eefb 100%);
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    transition: background var(--transition);
}
.why-card:hover .why-card__icon { background: linear-gradient(135deg, #e3f7db 0%, #d2f1c5 100%); }
.why-card__icon i { font-size: 30px; color: var(--navy-700); transition: color var(--transition); }
.why-card:hover .why-card__icon i { color: var(--green-2); }
.why-card h3 {
    font-family: var(--ff-head);
    font-size: 1.08rem;
    font-weight: 800;
    color: #08213f;
    line-height: 1.25;
    margin-bottom: 12px;
}
.why-card p { font-size: .88rem; color: rgba(11,30,62,.6); line-height: 1.55; margin: 0; }

/* barra inferior oscura */
.why-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: linear-gradient(120deg, #0c2d5a 0%, #07203f 100%);
    border-radius: var(--r-lg);
    padding: 28px 40px;
}
.why-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
    position: relative;
}
.why-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 32px;
    background: rgba(255,255,255,.12);
}
.why-bar__item i { font-size: 22px; color: var(--green); flex-shrink: 0; }
.why-bar__item span { font-family: var(--ff-head); font-size: .92rem; font-weight: 600; color: #fff; line-height: 1.3; }

@media (max-width: 1080px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-bar { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
    .why-bar__item:nth-child(2)::after { display: none; }
}
@media (max-width: 720px) {
    .why-companies { padding: 70px 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-bar { grid-template-columns: 1fr; padding: 26px; }
    .why-bar__item { justify-content: flex-start; }
    .why-bar__item::after { display: none !important; }
}

/* ═══════════════ MODALIDADES ═══════════════ */
.modalidades { background: #f6f9fd; padding: 96px 0; }
.mod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mod-card {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(11,31,61,.07);
    transition: box-shadow var(--transition), transform var(--transition);
    position: relative;
}
.mod-card:hover { box-shadow: 0 22px 50px rgba(11,31,61,.14); transform: translateY(-6px); }
.mod-card__photo { height: 200px; overflow: hidden; }
.mod-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.mod-card:hover .mod-card__photo img { transform: scale(1.06); }
.mod-card__icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--accent);
    display: grid;
    place-items: center;
    margin: -32px 0 0 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 18px rgba(11,31,61,.12);
}
.mod-card__icon i { font-size: 26px; color: var(--accent); }
.mod-card__body { padding: 18px 28px 30px; }
.mod-card__body h3 {
    font-family: var(--ff-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}
.mod-card__body p { font-size: .92rem; color: rgba(11,30,62,.62); line-height: 1.55; margin-bottom: 20px; }
.mod-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--ff-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--accent);
    transition: gap var(--transition);
}
.mod-card__link i { font-size: 13px; transition: transform var(--transition); }
.mod-card__link:hover { gap: 13px; }
.mod-card__link:hover i { transform: translateX(3px); }

@media (max-width: 1080px) {
    .mod-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 720px) {
    .modalidades { padding: 70px 0; }
}

/* detalle de modalidad: oculto, reemplaza la sección de modalidades */
.mod-detail { display: none; scroll-margin-top: 20px; }
.mod-detail.is-open { display: block; animation: modIn .5s cubic-bezier(.22,1,.36,1) both; }
.mod-anim-in { animation: modIn .5s cubic-bezier(.22,1,.36,1) both; }
@keyframes modIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
/* barra superior del detalle: volver + pestañas */
.mod-detail__bar {
    background: #fff;
    border-bottom: 1px solid rgba(11,31,61,.08);
}
.mod-detail__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.mod-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(11,31,61,.14);
    background: #fff;
    cursor: pointer;
    font-family: var(--ff-head);
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy-800);
    flex-shrink: 0;
    transition: gap var(--transition), background var(--transition), border-color var(--transition);
}
.mod-back i { font-size: 12px; transition: transform var(--transition); }
.mod-back:hover { background: #f3f7fc; gap: 13px; border-color: rgba(11,31,61,.25); }
.mod-back:hover i { transform: translateX(-3px); }

.mod-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.mod-tab {
    padding: 9px 20px;
    border-radius: 999px;
    border: none;
    background: #eef3f9;
    cursor: pointer;
    font-family: var(--ff-head);
    font-size: .86rem;
    font-weight: 700;
    color: rgba(11,30,62,.6);
    transition: background var(--transition), color var(--transition);
}
.mod-tab:hover { background: #e3ebf5; color: var(--navy-800); }
.mod-tab.is-active { background: var(--green-2); color: #fff; }
.mod-detail--blue   .mod-tab.is-active { background: #1c5aa8; }
.mod-detail--purple .mod-tab.is-active { background: #7c3aed; }

/* selector (solo móvil) */
.mod-tabs__select {
    display: none;
    appearance: none;
    -webkit-appearance: none;
    padding: 11px 42px 11px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(11,31,61,.14);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%230d3264' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 13px;
    font-family: var(--ff-head);
    font-size: .9rem;
    font-weight: 700;
    color: var(--navy-800);
    cursor: pointer;
}
.mod-detail--blue   .mod-tabs__select { border-color: rgba(28,90,168,.4); }
.mod-detail--purple .mod-tabs__select { border-color: rgba(124,58,237,.4); }

@media (max-width: 600px) {
    .mod-tabs { display: none; }
    .mod-tabs__select { display: block; }
    .mod-detail__bar-inner { gap: 14px; }
}

/* acento del título reutilizable (verde por defecto) */
.rm-accent { color: var(--green-2); }

/* ── variante: foto a la derecha (espejo) ── */
.rm-hero--right .rm-hero__photo {
    left: auto; right: 0;
    clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}
.rm-hero--right.rm-hero::before {
    clip-path: polygon(57% 0, 58% 0, 63.4% 100%, 62.4% 100%);
}
.rm-hero--right .rm-hero__inner { justify-content: flex-start; }
.rm-hero--right.rm-hero::after { left: 60px; right: auto; }

/* ── variante azul (Administrativo) ── */
.mod-detail--blue .rm-accent { color: #1c5aa8; }
.mod-detail--blue .pill-eyebrow { background: #e3ecf9; color: #1c5aa8; }
.mod-detail--blue .pill-eyebrow i { color: #1c5aa8; }
.mod-detail--blue .rm-hero::before { background: #1c5aa8; }
.mod-detail--blue .rm-hero__benefits i { background: #e3ecf9; color: #1c5aa8; }
.mod-detail--blue .rm-label span { color: #1c5aa8; }
.mod-detail--blue .rm-label::after { background: linear-gradient(90deg, rgba(28,90,168,.5), rgba(28,90,168,0)); }
.mod-detail--blue .rm-chip { background: #e9eff9; }
.mod-detail--blue .rm-chip:hover { background: #dde7f6; }
.mod-detail--blue .rm-chip i { color: #1c5aa8; }
.mod-detail--blue .rm-cta__icon { border-color: #2f6fc4; background: rgba(47,111,196,.14); }
.mod-detail--blue .rm-cta__icon i { color: #5b9be8; }

/* ── variante morada (Especializado) ── */
.mod-detail--purple .rm-accent { color: #7c3aed; }
.mod-detail--purple .pill-eyebrow { background: #efe6fc; color: #7c3aed; }
.mod-detail--purple .pill-eyebrow i { color: #7c3aed; }
.mod-detail--purple .rm-hero::before { background: #7c3aed; }
.mod-detail--purple .rm-hero__benefits i { background: #efe6fc; color: #7c3aed; }
.mod-detail--purple .rm-label span { color: #7c3aed; }
.mod-detail--purple .rm-label::after { background: linear-gradient(90deg, rgba(124,58,237,.5), rgba(124,58,237,0)); }
.mod-detail--purple .rm-chip { background: #f1eafc; }
.mod-detail--purple .rm-chip:hover { background: #e8dcfa; }
.mod-detail--purple .rm-chip i { color: #7c3aed; }
.mod-detail--purple .rm-cta__icon { border-color: #9b5cf0; background: rgba(124,58,237,.16); }
.mod-detail--purple .rm-cta__icon i { color: #b388f5; }

/* ═══════════════ RECLUTAMIENTO MASIVO ═══════════════ */
/* etiqueta de sección: texto verde + línea a la derecha */
.rm-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
}
.rm-label span {
    font-family: var(--ff-head);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--green-2);
    white-space: nowrap;
}
.rm-label::after {
    content: '';
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(71,191,43,.5), rgba(71,191,43,0));
}

/* píldora eyebrow */
.pill-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #e4f7dc;
    color: var(--green-2);
    font-family: var(--ff-head);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
}

/* ── HERO: foto izquierda + texto derecha, fondo blanco ── */
.rm-hero {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
}
.rm-hero__photo {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 43%;
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
    z-index: 1;
}
.rm-hero__photo img { width: 100%; height: 100%; object-fit: cover; }
/* línea verde diagonal delgada */
.rm-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green);
    clip-path: polygon(43% 0, 44% 0, 37.6% 100%, 36.6% 100%);
    z-index: 2;
}
/* patrón de puntos arriba a la derecha */
.rm-hero::after {
    content: '';
    position: absolute;
    top: 40px; right: 60px;
    width: 130px; height: 90px;
    background-image: radial-gradient(rgba(12,50,100,.14) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    z-index: 1;
    pointer-events: none;
}
.rm-hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 44px 60px;
    display: flex;
    justify-content: flex-end;
}
.rm-hero__content { width: 52%; max-width: 600px; }
.rm-hero__title {
    color: #0c2c5e;
    margin-bottom: 20px;
}
.rm-hero__copy { font-size: 1rem; line-height: 1.65; color: rgba(11,30,62,.6); max-width: 520px; }
/* lista de beneficios dentro del hero */
.rm-hero__benefits {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 22px;
    max-width: 540px;
}
.rm-hero__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: .85rem;
    font-weight: 600;
    color: #14365f;
    line-height: 1.3;
}
.rm-hero__benefits i {
    font-size: 12px;
    color: var(--green-2);
    background: #e4f7dc;
    width: 23px; height: 23px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

/* ── PERFILES: chips ── */
.rm-perfiles { background: #f6f9fd; padding: 48px 0 16px; }
.rm-perfiles__grid { display: flex; flex-wrap: wrap; gap: 12px; }
.rm-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 0;
    min-width: 135px;
    background: #edf6e8;
    border-radius: 14px;
    padding: 14px 16px;
    font-family: var(--ff-head);
    font-size: .8rem;
    font-weight: 600;
    color: #14365f;
    line-height: 1.25;
    transition: background var(--transition), transform var(--transition);
}
.rm-chip:hover { background: #e1f3d8; transform: translateY(-2px); }
.rm-chip i { font-size: 18px; color: var(--green-2); flex-shrink: 0; }

/* ── CTA ── */
.rm-cta-wrap { background: #f6f9fd; padding: 0 0 56px; }
.rm-cta {
    display: flex;
    align-items: center;
    gap: 38px;
    background: #0a1c39;
    border-radius: 18px;
    padding: 26px 40px;
}
.rm-cta__q { display: flex; align-items: center; gap: 20px; flex-shrink: 0; max-width: 420px; }
.rm-cta__icon {
    width: 62px; height: 62px;
    border-radius: 50%;
    border: 2px solid var(--green);
    background: rgba(71,191,43,.1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.rm-cta__icon i { font-size: 26px; color: var(--green); }
.rm-cta__q strong { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1.25; }
.rm-cta__divider { width: 1px; align-self: stretch; background: rgba(255,255,255,.14); flex-shrink: 0; }
.rm-cta__sub { font-size: .92rem; color: rgba(220,232,250,.62); margin: 0; line-height: 1.5; flex: 1; }
.rm-cta .button { flex-shrink: 0; }

@media (max-width: 1080px) {
    .rm-hero__photo { display: none; }
    .rm-hero::before, .rm-hero::after { display: none; }
    .rm-hero__inner { justify-content: flex-start; padding: 56px 36px; }
    .rm-hero__content { width: 100%; }
    /* (beneficios ahora en el hero) */
    .rm-cta { flex-direction: column; align-items: flex-start; gap: 24px; }
    .rm-cta__q { max-width: 100%; }
    .rm-cta__divider { display: none; }
    .rm-cta .button { width: 100%; justify-content: center; }
}
@media (max-width: 720px) {
    .rm-hero__inner { padding: 44px 20px; }
    .rm-hero__benefits { grid-template-columns: 1fr; }
    .rm-perfiles { padding: 60px 0; }
    .rm-cta__q { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ═══════════════ NUESTRO PROCESO DE RECLUTAMIENTO ═══════════════ */
.recruit-process {
    position: relative;
    background: linear-gradient(160deg, #0c2d5a 0%, #081f40 55%, #061528 100%);
    padding: 80px 0 70px;
    overflow: hidden;
}
.recruit-process::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.recruit-process .container { position: relative; z-index: 1; }

/* top: encabezado + foto */
.recruit-process__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}
.recruit-process__head .section-title { margin-bottom: 18px; line-height: 1.04; }
.recruit-process__sub { font-size: 1.02rem; color: rgba(220,232,250,.72); line-height: 1.6; max-width: 480px; }
.recruit-process__photo {
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 24px 60px rgba(3,12,30,.45);
}
.recruit-process__photo img { width: 100%; height: 100%; object-fit: cover; }

/* pasos */
.recruit-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-bottom: 56px;
}
.rp-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 14px;
}
.rp-step__num {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    margin-bottom: -19px;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(71,191,43,.4);
}
.rp-step__circle {
    width: 104px; height: 104px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--green);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    transition: transform var(--transition);
}
.rp-step:hover .rp-step__circle { transform: translateY(-5px); }
.rp-step__circle i { font-size: 42px; color: var(--navy-800); }
/* conector verde con chevron */
.rp-step__connector {
    position: absolute;
    top: 71px;
    left: calc(50% + 52px);
    right: calc(-50% + 52px);
    height: 0;
    border-top: 2px solid rgba(71,191,43,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.rp-step__connector i {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 11px;
}
.rp-step__title {
    font-family: var(--ff-head);
    font-size: 1.18rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
    padding-bottom: 12px;
    position: relative;
}
.rp-step__title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 34px; height: 3px;
    border-radius: 2px;
    background: var(--green);
}
.rp-step__copy { font-size: .85rem; color: rgba(220,232,250,.62); line-height: 1.55; margin: 0; max-width: 215px; }

/* notas inferiores */
.recruit-process__notes {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 28px 40px;
}
.rp-note { display: flex; align-items: center; gap: 18px; }
.rp-note__icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: rgba(71,191,43,.12);
    border: 1.5px solid rgba(71,191,43,.3);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.rp-note__icon i { font-size: 24px; color: var(--green); }
.rp-note p { font-family: var(--ff-head); font-size: 1.02rem; font-weight: 600; color: #fff; line-height: 1.45; margin: 0; }
.rp-note__divider { width: 1px; height: 56px; background: rgba(255,255,255,.14); }

@media (max-width: 1080px) {
    .recruit-process__top { grid-template-columns: 1fr; }
    .recruit-process__photo { height: 260px; order: -1; }
    .recruit-process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px 14px; }
    .rp-step__connector { display: none; }
    .recruit-process__notes { grid-template-columns: 1fr; gap: 22px; }
    .rp-note__divider { display: none; }
}
@media (max-width: 720px) {
    .recruit-process { padding: 64px 0 56px; }
    .recruit-process__steps { grid-template-columns: 1fr; gap: 34px; }
    .rp-step__copy { max-width: 280px; }
}

/* ═══════════════ NOSOTROS ═══════════════ */
/* quiénes somos */
.about-intro { background: #fff; padding: 96px 0; }
.about-intro__inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.about-intro__media { position: relative; }
.about-intro__media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 24px 56px rgba(11,31,61,.16);
}
.about-intro__badge {
    position: absolute;
    right: -18px; bottom: 34px;
    background: var(--navy-800);
    color: #fff;
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 16px 36px rgba(11,31,61,.3);
    text-align: center;
}
.about-intro__badge strong { display: block; font-family: var(--ff-head); font-size: 1.9rem; font-weight: 900; line-height: 1; color: var(--green); }
.about-intro__badge span { font-size: .8rem; font-weight: 600; color: rgba(220,232,250,.85); max-width: 130px; display: inline-block; line-height: 1.3; margin-top: 4px; }
.about-intro__text .section-title { margin-bottom: 20px; }
.about-intro__text p { font-size: 1rem; color: rgba(11,30,62,.66); line-height: 1.7; margin-bottom: 16px; }
.about-intro__text p strong { color: var(--navy-800); font-weight: 700; }

/* misión, visión y razón de ser */
.about-mv {
    background:
        radial-gradient(circle at 8% 18%, rgba(154, 217, 119, .08) 0 110px, transparent 111px),
        radial-gradient(circle at 92% 14%, rgba(160, 222, 122, .08) 0 110px, transparent 111px),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 96px 0;
}
.about-mv__intro {
    max-width: 1320px;
    margin: 0 auto 34px;
    text-align: center;
}
.about-mv__eyebrow {
    margin: 0;
    color: var(--green-2);
    font-family: var(--ff-head);
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
}
.about-mv__intro-rule {
    width: 56px;
    height: 3px;
    margin: 12px auto 18px;
    border-radius: 999px;
    background: var(--green-2);
}
.about-mv__title {
    margin: 0 auto 18px;
    max-width: 24ch;
    font-family: var(--ff-head);
    font-size: clamp(2.6rem, 4.4vw, 3.95rem);
    line-height: .96;
    letter-spacing: -.05em;
    color: #08213f;
    font-weight: 700;
}
.about-mv__title span {
    color: var(--green-2);
    white-space: nowrap;
}
.about-mv__lead {
    margin: 0 auto;
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.52;
    color: rgba(11, 30, 62, .84);
}
.about-mv__core {
    display: grid;
    grid-template-columns: minmax(0, .97fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(8, 27, 60, .08);
    border: 1px solid rgba(14, 34, 72, .06);
    background: #fff;
}
.about-purpose-card {
    padding: 42px 40px 34px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}
.about-purpose-card--mission {
    background: linear-gradient(180deg, #071d4b 0%, #0b275a 100%);
    color: #fff;
}
.about-purpose-card--vision {
    background: linear-gradient(180deg, #f4f9ef 0%, #f7fbf4 100%);
    color: #08213f;
    position: relative;
}
.about-purpose-card--vision::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 92px;
    height: 92px;
    background-image: radial-gradient(circle, rgba(102, 191, 64, .24) 1.2px, transparent 1.3px);
    background-size: 12px 12px;
    opacity: .55;
}
.about-purpose-card__icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
}
.about-purpose-card--mission .about-purpose-card__icon {
    color: #7dd93a;
    border: 1px solid rgba(255,255,255,.14);
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), rgba(255,255,255,.04));
    box-shadow: inset 0 0 0 2px rgba(121, 215, 43, .16);
}
.about-purpose-card--vision .about-purpose-card__icon {
    color: var(--green-2);
    background: linear-gradient(180deg,#eff8ea 0%,#f8fbf5 100%);
    border: 1px solid rgba(92,188,76,.12);
}
.about-purpose-card__eyebrow {
    margin: 0 0 4px;
    font-family: var(--ff-head);
    font-size: 1.02rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--green-2);
}
.about-purpose-card h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: clamp(3rem, 4vw, 4.2rem);
    line-height: .95;
    letter-spacing: -.05em;
    font-weight: 700;
}
.about-purpose-card--mission h3 { color: #fff; }
.about-purpose-card--vision h3 { color: #08213f; }
.about-purpose-card__rule {
    width: 42px;
    height: 3px;
    border-radius: 999px;
    margin: 18px 0 22px;
    background: var(--green-2);
}
.about-purpose-card__copy {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.78;
}
.about-purpose-card--mission .about-purpose-card__copy { color: rgba(239, 245, 252, .95); }
.about-purpose-card--vision .about-purpose-card__copy { color: rgba(11, 30, 62, .88); }
.about-purpose-card__note {
    margin-top: 34px;
    border-radius: 20px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: center;
}
.about-purpose-card__note i { font-size: 2rem; }
.about-purpose-card__note p {
    margin: 0;
    font-size: .96rem;
    line-height: 1.62;
}
.about-purpose-card--mission .about-purpose-card__note {
    border: 1px solid rgba(214, 228, 246, .28);
    background: rgba(255,255,255,.03);
}
.about-purpose-card--mission .about-purpose-card__note i { color: var(--green-2); }
.about-purpose-card--mission .about-purpose-card__note p { color: rgba(239, 245, 252, .96); }
.about-purpose-card--vision .about-purpose-card__note {
    border: 1px solid rgba(92,188,76,.18);
    background: rgba(255,255,255,.58);
}
.about-purpose-card--vision .about-purpose-card__note i { color: var(--green-2); }
.about-purpose-card--vision .about-purpose-card__note p { color: rgba(11, 30, 62, .9); }
.about-mv__photo {
    margin: 0;
    min-height: 520px;
}
.about-mv__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-mv__values {
    margin-top: 20px;
    display: grid;
    grid-template-columns: minmax(220px, 1.15fr) repeat(5, minmax(0, 1fr));
    gap: 0;
    border-radius: 28px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 36px rgba(8, 27, 60, .06);
    border: 1px solid rgba(14, 34, 72, .06);
    overflow: hidden;
}
.about-mv__values-intro,
.about-mv-value {
    padding: 26px 24px;
    min-height: 188px;
}
.about-mv__values-intro {
    display: flex;
    align-items: center;
    gap: 18px;
}
.about-mv__values-accent {
    width: 3px;
    align-self: stretch;
    border-radius: 999px;
    background: var(--green-2);
}
.about-mv__values-intro h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: 1.15rem;
    line-height: 1.28;
    color: #08213f;
    font-weight: 700;
}
.about-mv__values-intro h3 span { color: var(--green-2); }
.about-mv-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.about-mv-value:not(:last-child),
.about-mv__values-intro {
    border-right: 1px solid rgba(14, 34, 72, .09);
}
.about-mv-value__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    color: var(--green-2);
    background: linear-gradient(180deg, #eff8ea 0%, #f9fbf6 100%);
}
.about-mv-value__content h4 {
    margin: 0 0 10px;
    font-family: var(--ff-head);
    font-size: 1.08rem;
    line-height: 1.25;
    color: #08213f;
    font-weight: 700;
}
.about-mv-value__content p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.58;
    color: rgba(11, 30, 62, .78);
}

/* cifras */
.about-stats { background: linear-gradient(120deg, #0c2d5a 0%, #07203f 100%); padding: 56px 0; }
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-stat { text-align: center; position: relative; }
.about-stat:not(:last-child)::after {
    content: '';
    position: absolute; right: -12px; top: 50%;
    transform: translateY(-50%);
    width: 1px; height: 70px;
    background: rgba(255,255,255,.12);
}
.about-stat__icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(71,191,43,.12);
    border: 1.5px solid rgba(71,191,43,.3);
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
}
.about-stat__icon i { font-size: 24px; color: var(--green); }
.about-stat__icon img { width: 38px; height: 38px; object-fit: contain; }
.about-stat__logo { display: block; width: min(150px, 82%); height: 34px; object-fit: contain; margin: 0 auto 6px; }
.about-stat strong { display: block; font-family: var(--ff-head); font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.about-stat span { font-size: .9rem; color: rgba(220,232,250,.7); font-weight: 500; }

@media (max-width: 1080px) {
    .about-intro__inner { grid-template-columns: 1fr; gap: 50px; }
    .about-intro__media { order: -1; }
    .about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .about-stat:nth-child(2)::after { display: none; }
    .about-mv__core { grid-template-columns: 1fr; }
    .about-purpose-card,
    .about-mv__photo { min-height: 0; }
    .about-mv__photo { order: 2; height: 420px; }
    .about-mv__values { grid-template-columns: 1fr 1fr; }
    .about-mv__values-intro { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid rgba(14, 34, 72, .09); }
}
@media (max-width: 720px) {
    .about-intro { padding: 70px 0; }
    .about-mv { padding: 70px 0; }
    .about-intro__media img { height: 320px; }
    .about-stats__grid { grid-template-columns: 1fr; gap: 30px; }
    .about-stat::after { display: none !important; }
    .about-mv__title { max-width: none; font-size: clamp(2.35rem, 9vw, 3.1rem); }
    .about-mv__lead { font-size: 1rem; }
    .about-purpose-card { padding: 30px 22px 24px; }
    .about-purpose-card__icon { width: 82px; height: 82px; font-size: 2rem; margin-bottom: 18px; }
    .about-purpose-card h3 { font-size: 3rem; }
    .about-purpose-card__copy { font-size: 1rem; line-height: 1.65; }
    .about-purpose-card__note { grid-template-columns: 1fr; }
    .about-mv__photo { height: 320px; }
    .about-mv__values { grid-template-columns: 1fr; }
    .about-mv__values-intro,
    .about-mv-value { min-height: 0; }
    .about-mv__values-intro { border-bottom: 1px solid rgba(14, 34, 72, .09); }
    .about-mv-value { border-right: 0 !important; padding: 22px 20px; }
}

/* ═══════════════ CONTACTO ═══════════════ */
.contact-hero {
    position: relative;
    background: linear-gradient(160deg, #0c2d5a 0%, #081f40 60%, #061528 100%);
    padding: 84px 0 76px;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .section-title { margin-bottom: 16px; }
.contact-hero__sub { font-size: 1.08rem; color: rgba(220,232,250,.75); line-height: 1.6; max-width: 600px; }

.contact-main { background: #f6f9fd; padding: 80px 0; }
.contact-main__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }

/* info */
.contact-info h2, .contact-form-wrap h2 {
    font-family: var(--ff-head);
    font-size: 1.5rem;
    font-weight: 800;
    color: #08213f;
    margin-bottom: 10px;
}
.contact-info__lead, .contact-form__lead { font-size: .95rem; color: rgba(11,30,62,.6); line-height: 1.6; margin-bottom: 28px; }
.contact-info__list { display: flex; flex-direction: column; gap: 18px; }
.contact-info__list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-info__icon {
    width: 50px; height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, #e3f7db 0%, #d2f1c5 100%);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.contact-info__icon i { font-size: 20px; color: var(--green-2); }
.contact-info__list strong { display: block; font-family: var(--ff-head); font-size: .95rem; font-weight: 700; color: #08213f; margin-bottom: 3px; }
.contact-info__list a, .contact-info__list span { font-size: .92rem; color: rgba(11,30,62,.66); line-height: 1.45; transition: color var(--transition); }
.contact-info__list a:hover { color: var(--green-2); }

/* formulario */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 38px 36px;
    box-shadow: 0 12px 40px rgba(11,31,61,.08);
}
.contact-form { margin-top: 6px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label span { display: block; font-family: var(--ff-head); font-size: .82rem; font-weight: 700; color: #1a3050; margin-bottom: 7px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    font-family: var(--ff-body);
    font-size: .92rem;
    color: #11213a;
    padding: 12px 15px;
    border: 1.5px solid rgba(11,31,61,.14);
    border-radius: 10px;
    background: #fbfcfe;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(11,30,62,.4); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(71,191,43,.14);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form__btn { width: 100%; justify-content: center; margin-top: 6px; }

/* mapa */
.contact-map { line-height: 0; }
.contact-map iframe { display: block; filter: grayscale(.15); }

@media (max-width: 1080px) {
    .contact-main__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
    .contact-hero { padding: 64px 0 56px; }
    .contact-main { padding: 60px 0; }
    .contact-form__row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrap { padding: 28px 22px; }
}

/* ═══════════════ PÁGINAS DE SERVICIO (acentos) ═══════════════ */
.svc-intro {
    font-size: 1rem;
    color: rgba(11,30,62,.6);
    line-height: 1.6;
    max-width: 620px;
    margin: -14px 0 26px;
}
/* acento azul (Maquila de Nómina) */
.svc-blue .rm-accent { color: #1c5aa8; }
.svc-blue .pill-eyebrow { background: #e3ecf9; color: #1c5aa8; }
.svc-blue .pill-eyebrow i { color: #1c5aa8; }
.svc-blue .rm-hero::before { background: #1c5aa8; }
.svc-blue .rm-hero__benefits i { background: #e3ecf9; color: #1c5aa8; }
.svc-blue .rm-label span { color: #1c5aa8; }
.svc-blue .rm-label::after { background: linear-gradient(90deg, rgba(28,90,168,.5), rgba(28,90,168,0)); }
.svc-blue .rm-chip { background: #e9eff9; }
.svc-blue .rm-chip:hover { background: #dde7f6; }
.svc-blue .rm-chip i { color: #1c5aa8; }
.svc-blue .rm-cta__icon { border-color: #2f6fc4; background: rgba(47,111,196,.14); }
.svc-blue .rm-cta__icon i { color: #5b9be8; }
/* acento morado (Servicio Especializado) */
.svc-purple .rm-accent { color: #7c3aed; }
.svc-purple .pill-eyebrow { background: #efe6fc; color: #7c3aed; }
.svc-purple .pill-eyebrow i { color: #7c3aed; }
.svc-purple .rm-hero::before { background: #7c3aed; }
.svc-purple .rm-hero__benefits i { background: #efe6fc; color: #7c3aed; }
.svc-purple .rm-label span { color: #7c3aed; }
.svc-purple .rm-label::after { background: linear-gradient(90deg, rgba(124,58,237,.5), rgba(124,58,237,0)); }
.svc-purple .rm-chip { background: #f1eafc; }
.svc-purple .rm-chip:hover { background: #e8dcfa; }
.svc-purple .rm-chip i { color: #7c3aed; }
.svc-purple .rm-cta__icon { border-color: #9b5cf0; background: rgba(124,58,237,.16); }
.svc-purple .rm-cta__icon i { color: #b388f5; }

/* ═══════════════ MAQUILA DE NÓMINA (REDISEÑO) ═══════════════ */
.payroll-page {
    background:
        radial-gradient(circle at 20% 0%, rgba(28, 90, 168, .12), transparent 26%),
        radial-gradient(circle at 85% 18%, rgba(71, 191, 43, .10), transparent 20%),
        #f5f8fd;
}

.payroll-section {
    padding: 78px 0;
}

.payroll-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 100%, rgba(179, 219, 153, .18) 0 180px, transparent 181px),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    color: #0a2448;
    padding: 40px 0 54px;
}

.payroll-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 34%, rgba(78, 128, 210, .08), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(92, 188, 76, .08), transparent 18%);
    pointer-events: none;
}

.payroll-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.02fr);
    gap: 28px;
    align-items: start;
}

.payroll-hero__content {
    max-width: 700px;
    padding-top: 34px;
}

.payroll-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f0f7ea 0%, #eef5e8 100%);
    border: 1px solid rgba(92, 188, 76, .1);
    color: var(--green-2);
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.payroll-hero__badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(92, 188, 76, .18);
    background: #fff;
    font-size: 1.35rem;
}

.payroll-hero__title {
    margin: 24px 0 0;
    color: #0a2448;
    max-width: 13.5ch;
}

.payroll-hero__title span {
    display: block;
    color: var(--green-2);
}

.payroll-hero__rule {
    display: block;
    width: 84px;
    height: 3px;
    margin: 18px 0 16px;
    border-radius: 999px;
    background: var(--green-2);
}

.payroll-hero__copy {
    margin: 0;
    max-width: 650px;
    font-size: 1.02rem;
    line-height: 1.58;
    color: rgba(11, 30, 62, .84);
}

.payroll-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 34px;
}

.payroll-hero__actions .button--outline-navy {
    border-color: rgba(92, 188, 76, .72);
    color: var(--green-2);
    background: rgba(255, 255, 255, .9);
}

.payroll-hero__actions .button--outline-navy:hover {
    background: rgba(92, 188, 76, .08);
}

.payroll-hero__visual {
    position: relative;
    min-height: 0;
}

.payroll-hero__photo {
    position: relative;
    min-height: 720px;
    margin-top: 34px;
    border-radius: 0 0 34px 34px;
    overflow: hidden;
    clip-path: polygon(18% 0, 100% 0, 100% 86%, 93% 95%, 68% 98%, 44% 100%, 15% 96%, 0 86%, 0 11%);
    box-shadow: 0 22px 54px rgba(7, 18, 42, .14);
}

.payroll-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.payroll-hero__photo::after {
    content: '';
    position: absolute;
    left: -1%;
    right: -1%;
    bottom: -2px;
    height: 138px;
    background: #fbfdff;
    clip-path: polygon(0 78%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.payroll-hero__highlights {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 48px;
    padding: 0 26px;
}

.payroll-hero__highlight {
    display: grid;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.payroll-hero__highlight-icon {
    width: 82px;
    height: 82px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #f1f8ec 0%, #eef5e8 100%);
    color: var(--green-2);
    font-size: 2rem;
    box-shadow: inset 0 0 0 1px rgba(92, 188, 76, .07);
}

.payroll-hero__highlight p {
    margin: 0;
    color: #0a2448;
    font-family: var(--ff-head);
    font-size: .92rem;
    font-weight: 700;
    line-height: 1.25;
}

.payroll-problem {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 16%, rgba(132, 214, 63, .14) 0 140px, transparent 141px),
        radial-gradient(circle at 88% 18%, rgba(96, 145, 255, .16) 0 200px, transparent 201px),
        linear-gradient(180deg, #0a2448 0%, #0b2a56 100%);
}

.payroll-problem__hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, .98fr);
    gap: 28px;
    align-items: start;
}

.payroll-problem__copy {
    padding-top: 36px;
}

.payroll-problem__title {
    margin: 0;
    max-width: 11ch;
    color: #fff;
    font-family: var(--ff-head);
    font-size: clamp(2.6rem, 4.9vw, 4.9rem);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.05em;
}

.payroll-problem__title span {
    color: var(--green-2);
}

.payroll-problem__rule {
    display: block;
    width: 84px;
    height: 3px;
    margin: 20px 0 22px;
    border-radius: 999px;
    background: var(--green-2);
}

.payroll-problem__sub {
    margin: 0;
    max-width: 660px;
    color: rgba(237, 243, 252, .9);
    font-size: 1.04rem;
    line-height: 1.56;
}

.payroll-problem__media {
    margin: 0;
    min-height: 580px;
    border-radius: 0 0 30px 30px;
    overflow: hidden;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 16%);
    box-shadow: 0 20px 46px rgba(7, 18, 42, .12);
}

.payroll-problem__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.payroll-problem__benefits {
    margin-top: 16px;
    --payroll-problem-gap: 18px;
    --payroll-problem-edge-space: 24px;
    --payroll-problem-per-view: 3;
}

.payroll-problem__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.payroll-problem__arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.payroll-problem__arrow:hover {
    transform: translateY(-1px);
    background: #fff;
    color: #0a2448;
    border-color: #fff;
}

.payroll-problem__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payroll-problem__dots button {
    width: 10px;
    height: 10px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .26);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.payroll-problem__dots button.is-active {
    width: 28px;
    background: var(--green-2);
}

.payroll-problem__viewport {
    position: relative;
    overflow: hidden;
    padding: 28px 72px 34px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.payroll-problem__viewport::before,
.payroll-problem__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 42px;
    pointer-events: none;
    z-index: 2;
}

.payroll-problem__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #0b2a56 0%, rgba(11, 42, 86, 0) 100%);
}

.payroll-problem__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #0b2a56 0%, rgba(11, 42, 86, 0) 100%);
}

.payroll-problem__track {
    display: flex;
    gap: var(--payroll-problem-gap);
    padding: 0 var(--payroll-problem-edge-space) 10px;
    transition: transform .35s ease;
}

.payroll-problem-card {
  flex: 0 0 calc((100% - (var(--payroll-problem-gap) * (var(--payroll-problem-per-view) - 1)) - (var(--payroll-problem-edge-space) * 2)) / var(--payroll-problem-per-view));
    min-width: 0;
    padding: 28px 22px 26px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(10, 27, 54, .08);
    border: 1px solid rgba(14, 34, 72, .06);
    text-align: center;
}

.payroll-problem-card__icon {
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f1f8ec 0%, #eef5e8 100%);
    color: var(--green-2);
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    margin: 0 auto 18px;
}

.payroll-problem-card h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: 1.04rem;
    line-height: 1.25;
    color: #0f2247;
    font-weight: 700;
}

.payroll-problem-card__rule {
    display: inline-block;
    width: 54px;
    height: 3px;
    margin: 16px 0 16px;
    border-radius: 999px;
    background: var(--green-2);
}

.payroll-problem-card p {
    margin: 0;
    color: rgba(14, 34, 72, .72);
    line-height: 1.58;
    font-size: .94rem;
}

.payroll-problem__cta-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
}

.payroll-problem__cta-line {
    height: 1px;
    background: rgba(255, 255, 255, .18);
}

.payroll-problem__cta {
    border-color: rgba(255, 255, 255, .34);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.payroll-problem__cta:hover {
    border-color: rgba(92, 188, 76, .86);
    background: rgba(92, 188, 76, .12);
    color: #fff;
}

.payroll-admin {
    background: linear-gradient(180deg, rgba(245,248,253,.95), rgba(240,245,252,.98));
}

.payroll-admin__layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: stretch;
}

.payroll-admin__media {
    min-height: 760px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(10, 27, 54, .12);
}

.payroll-admin__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.payroll-admin__content {
    display: flex;
    flex-direction: column;
    padding-top: 22px;
}

.payroll-admin__title {
    margin: 0;
    max-width: 800px;
    font-family: var(--ff-head);
    font-size: clamp(2.9rem, 4.7vw, 5.1rem);
    line-height: .98;
    letter-spacing: -.045em;
    color: var(--navy);
    font-weight: 700;
}

.payroll-admin__title span {
    color: var(--green);
}

.payroll-admin__rule {
    width: 78px;
    height: 3px;
    border-radius: 999px;
    margin: 28px 0 22px;
    background: linear-gradient(90deg, var(--green), #7cd85f);
}

.payroll-admin__sub {
    margin: 0 0 28px;
    max-width: 820px;
    color: rgba(14, 34, 72, .82);
    font-size: 1.1rem;
    line-height: 1.5;
}

.payroll-admin__points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.payroll-admin__points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(14, 34, 72, .82);
    font-size: 1rem;
    line-height: 1.45;
}

.payroll-admin__points li i {
    color: var(--green);
    margin-top: 3px;
    flex-shrink: 0;
}

.payroll-admin__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.payroll-admin-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .08);
    box-shadow: 0 18px 44px rgba(10, 27, 54, .08);
    padding: 24px 26px 22px;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.payroll-admin-card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-height: 0;
    text-align: center;
}

.payroll-admin-card__icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: radial-gradient(circle at 50% 50%, #f4faee 0%, #eef7e8 100%);
    color: #5d883f;
    border: 1px solid rgba(98, 178, 55, .12);
    font-size: 2rem;
}

.payroll-admin-card h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: .98rem;
    line-height: 1.15;
    color: #0f2247;
    font-weight: 700;
}

.payroll-admin-card__rule {
    width: 66px;
    height: 3px;
    border-radius: 999px;
    margin: 14px auto 18px;
    background: linear-gradient(90deg, var(--green), #72d850);
}

.payroll-admin-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payroll-admin-card li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(14, 34, 72, .82);
    line-height: 1.4;
    font-size: .9rem;
}

.payroll-admin-card li i {
    color: var(--green);
    margin-top: 3px;
    flex-shrink: 0;
}

.payroll-admin__cta {
    margin-top: 26px;
    padding: 34px 38px;
    border-radius: 26px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 1px minmax(300px, .7fr);
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, #071d4b 0%, #0c275c 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.payroll-admin__cta::before {
    content: "";
    position: absolute;
    inset: auto auto -44px -36px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px dotted rgba(144, 194, 67, .45);
}

.payroll-admin__cta-brand {
    position: relative;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7fd938;
    font-size: 4rem;
    flex-shrink: 0;
}

.payroll-admin__cta-brand-ring {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 2px solid rgba(123, 214, 58, .28);
    background: radial-gradient(circle at 50% 50%, rgba(126, 216, 58, .08), rgba(126, 216, 58, 0));
}

.payroll-admin__cta-copy h3 {
    margin: 0 0 12px;
    max-width: 640px;
    font-family: var(--ff-head);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.06;
    color: #fff;
    font-weight: 700;
}

.payroll-admin__cta-copy h3 span {
    color: #7cd85f;
}

.payroll-admin__cta-copy p {
    margin: 0;
    max-width: 620px;
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(238, 244, 252, .9);
}

.payroll-admin__cta-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, .14);
}

.payroll-admin__cta-action {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payroll-admin__cta-action .button {
    width: fit-content;
    min-width: 292px;
}

.payroll-admin__cta-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: rgba(238, 244, 252, .92);
}

.payroll-admin__cta-note i {
    font-size: 1.55rem;
    color: #fff;
    margin-top: 2px;
}

.payroll-admin__cta-note p {
    margin: 0;
    max-width: 280px;
    line-height: 1.42;
}

.payroll-benefits {
    background: #fff;
}

.payroll-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.payroll-benefit-card {
    border-radius: 22px;
    padding: 24px 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(14, 34, 72, .06);
    box-shadow: 0 12px 30px rgba(10, 27, 54, .07);
}

.payroll-benefit-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: rgba(71, 191, 43, .10);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.payroll-benefit-card h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: 1.03rem;
    line-height: 1.25;
    color: #0f2247;
    font-weight: 800;
}

.payroll-benefit-card p {
    margin: 10px 0 0;
    color: rgba(14, 34, 72, .72);
    line-height: 1.6;
    font-size: .96rem;
}

.payroll-process {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0a2349 0%, #081c3a 100%);
}

.payroll-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.payroll-step {
    position: relative;
    padding: 26px 18px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
}

.payroll-step__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(71, 191, 43, .15);
    color: #9bf27f;
    display: grid;
    place-items: center;
    font-family: var(--ff-head);
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.payroll-step h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: 1.02rem;
    line-height: 1.28;
    font-weight: 800;
}

.payroll-step p {
    margin: 10px 0 0;
    color: rgba(225, 235, 251, .78);
    line-height: 1.6;
    font-size: .94rem;
}

.payroll-ally {
    background: #f6f9fd;
}

.payroll-ally__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 28px;
    align-items: center;
}

.payroll-ally__media {
    border-radius: 28px;
    overflow: hidden;
    min-height: 460px;
    box-shadow: 0 20px 50px rgba(10, 27, 54, .12);
}

.payroll-ally__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payroll-ally__content {
    max-width: 620px;
}

.payroll-ally__list {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.payroll-ally__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: .96rem;
    font-weight: 700;
    color: #0f2247;
    line-height: 1.4;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 10px 22px rgba(10, 27, 54, .06);
}

.payroll-ally__list i {
    color: var(--green);
    margin-top: 2px;
}

.payroll-ally__content .button {
    margin-top: 28px;
}

.payroll-trust {
    background: #fff;
}

.payroll-trust__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.payroll-trust__fact {
    border-radius: 20px;
    padding: 20px 18px;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    border: 1px solid rgba(14, 34, 72, .06);
    box-shadow: 0 12px 30px rgba(10, 27, 54, .07);
}

.payroll-trust__fact strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.95rem;
    line-height: 1;
    font-weight: 900;
    color: #1c5aa8;
    letter-spacing: -.04em;
}

.payroll-trust__fact span {
    display: block;
    margin-top: 8px;
    color: rgba(14, 34, 72, .72);
    font-size: .96rem;
    line-height: 1.45;
}

.payroll-trust__logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.payroll-trust__logo {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .06);
    box-shadow: 0 10px 24px rgba(10, 27, 54, .06);
    min-height: 96px;
    display: grid;
    place-items: center;
    padding: 16px;
}

.payroll-trust__logo-mark {
    width: 100%;
    display: grid;
    place-items: center;
    min-height: 48px;
}

.payroll-trust__logo-mark img {
    max-height: 34px;
    max-width: 90%;
    object-fit: contain;
}

.payroll-trust__logo-mark span {
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 800;
    color: #0d3264;
}

.payroll-final {
    background: #f6f9fd;
    padding-bottom: 84px;
}

.payroll-final__card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    border-radius: 28px;
    background: linear-gradient(135deg, #081a38 0%, #0c2147 52%, #08182f 100%);
    box-shadow: 0 24px 60px rgba(4, 12, 28, .24);
}

.payroll-final__media {
    min-height: 340px;
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.payroll-final__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.payroll-final__content {
    padding: 42px 42px 38px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payroll-final__sub {
    color: rgba(225, 235, 251, .76);
    max-width: 640px;
}

.payroll-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.payroll-final__secondary {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .72);
}

.payroll-final__secondary:hover {
    background: rgba(255, 255, 255, .14);
}

/* ─── DESARROLLO ORGANIZACIONAL + SERVICIOS ESPECIALIZADOS ─── */
.do-page {
    background: #f4f7fb;
}

.do-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(180deg, #081f43 0%, #0a2a59 100%);
    color: #fff;
}

.do-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 24% 20%, rgba(69, 194, 255, .12) 0 160px, transparent 160px),
        radial-gradient(circle at 72% 18%, rgba(79, 214, 52, .08) 0 220px, transparent 220px);
    pointer-events: none;
}

.do-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 210px;
    background: #f7f9fc;
    clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

.do-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
    align-items: stretch;
    gap: 0;
    min-height: 1024px;
    padding-top: 28px;
}

.do-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 640px;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(111, 201, 62, .28);
}

.do-hero__eyebrow-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(122, 224, 102, .28);
    background: rgba(78, 201, 54, .08);
    color: var(--green);
    font-size: 24px;
}

.do-hero__eyebrow-text {
    display: grid;
    gap: 4px;
}

.do-hero__eyebrow-text strong {
    color: var(--green);
    font-family: var(--ff-head);
    font-size: .98rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.do-hero__eyebrow-text span {
    color: #dff3d6;
    font-family: var(--ff-head);
    font-size: .98rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.do-pill {
    background: rgba(78, 201, 54, .16);
    border: 1px solid rgba(122, 224, 102, .24);
    color: #d0f7c0;
}

.do-pill i {
    color: #84ee62;
}

.do-pill--blue {
    background: rgba(67, 125, 230, .16);
    border-color: rgba(109, 168, 255, .24);
    color: #d8e7ff;
}

.do-pill--blue i {
    color: #8ab8ff;
}

.do-pill--light {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
    color: #fff;
}

.do-hero__content {
    max-width: 650px;
    padding: 96px 0 0;
    align-self: start;
}

.do-hero__title {
    margin-bottom: 22px;
    max-width: 620px;
}

.do-hero__title span {
    color: var(--green);
}

.do-hero__copy {
    max-width: 560px;
    font-size: 1.06rem;
    line-height: 1.72;
    color: rgba(240, 247, 255, .85);
}

.do-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.do-hero__secondary {
    background: rgba(255, 255, 255, .05);
    color: #fff;
    border-color: rgba(255, 255, 255, .42);
}

.do-hero__secondary:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    box-shadow: none;
}

.do-hero__visual {
    position: relative;
    justify-self: end;
    width: 100%;
    align-self: stretch;
}

.do-hero__visual-shell {
    position: relative;
    height: 100%;
    min-height: 1024px;
}

.do-hero__photo {
    position: relative;
    overflow: hidden;
    height: 760px;
    min-height: 760px;
    margin-top: 12px;
    border-radius: 0 0 34px 34px;
    box-shadow: none;
    clip-path: polygon(18% 0, 100% 0, 100% 84%, 93% 95%, 48% 100%, 25% 89%, 0 54%, 0 17%);
}

.do-hero__photo::after {
    content: '';
    position: absolute;
    left: -1%;
    right: -1%;
    bottom: -2px;
    height: 162px;
    background: #f7f9fc;
    clip-path: polygon(0 82%, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.do-hero__photo img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.do-hero__panel {
    position: absolute;
    right: 64px;
    bottom: 118px;
    z-index: 3;
    width: 414px;
    padding: 28px 28px 22px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(18, 40, 79, .06);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(9, 28, 63, .15);
    backdrop-filter: blur(10px);
}

.do-hero__panel-head {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.do-hero__panel-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #64c646 0%, #49b632 100%);
    color: #fff;
    font-size: 1.65rem;
}

.do-hero__panel h2 {
    margin: 0;
    color: #112550;
    font-family: var(--ff-head);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -.03em;
}

.do-hero__panel-list {
    display: grid;
}

.do-hero__panel-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    color: #12224b;
    font-size: 1rem;
    line-height: 1.3;
}

.do-hero__panel-list li + li {
    border-top: 1px solid rgba(17, 37, 80, .09);
}

.do-hero__panel-check {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #6ccb4b 0%, #50b93a 100%);
    color: #fff;
    font-size: .82rem;
}

.do-hero__bottom {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    width: fit-content;
    display: grid;
    justify-items: center;
    gap: 10px;
    color: #0b244d;
}

.do-hero__bottom-arrow {
    color: var(--green);
    font-size: 1.8rem;
}

.do-hero__bottom strong {
    font-family: var(--ff-head);
    font-size: 1.06rem;
    font-weight: 700;
    color: #0b244d;
}

.do-fact {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .07);
    border-radius: 24px;
    padding: 28px 28px 26px;
    box-shadow: 0 10px 24px rgba(8, 27, 60, .07);
    min-height: 168px;
}

.do-fact__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #eff7e8 0%, #dff4d0 100%);
    color: var(--green-2);
    font-size: 24px;
}

.do-fact__body {
    flex: 1;
}

.do-fact strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #0b2d62;
    margin-bottom: 8px;
}

.do-fact span {
    color: rgba(11, 30, 62, .62);
    font-size: .92rem;
    line-height: 1.45;
}

.do-fact p {
    margin-top: 8px;
    color: rgba(11, 30, 62, .52);
    line-height: 1.45;
    font-size: .82rem;
}

.do-section {
    padding: 112px 0;
}

.do-section[id] {
    scroll-margin-top: 132px;
}

.do-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.do-section-head > div:first-child {
    flex: 1;
    max-width: 820px;
}

.do-section-head .button {
    flex-shrink: 0;
    margin-top: 10px;
}

.do-challenges__layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: stretch;
}

.do-challenges__feature {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 30px;
    background:
        radial-gradient(circle at top right, rgba(69, 194, 255, .14) 0 140px, transparent 140px),
        linear-gradient(135deg, #0c244a 0%, #0d2c63 100%);
    color: #fff;
    box-shadow: 0 22px 56px rgba(7, 18, 42, .22);
}

.do-challenges__feature::after {
    content: '';
    position: absolute;
    inset: auto -50px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
}

.do-challenges__feature-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-family: var(--ff-head);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.do-challenges__feature h3 {
    font-family: var(--ff-head);
    font-size: clamp(1.5rem, 2vw, 2.15rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 14px;
}

.do-challenges__feature p {
    color: rgba(240,247,255,.82);
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 420px;
}

.do-challenges__feature-points {
    display: grid;
    gap: 12px;
}

.do-challenges__feature-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.do-challenges__feature-points i {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: rgba(84, 206, 57, .16);
    color: #83ec64;
    flex-shrink: 0;
}

.do-challenges__feature-points span {
    font-size: .92rem;
    font-weight: 600;
    color: #fff;
}

.do-challenges__strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.do-challenges__strip-item {
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .06);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 12px 28px rgba(8, 27, 60, .05);
}

.do-challenges__strip-item strong {
    display: block;
    font-family: var(--ff-head);
    font-size: .92rem;
    font-weight: 800;
    color: #0b2d62;
    margin-bottom: 6px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.do-challenges__strip-item span {
    color: rgba(11, 30, 62, .62);
    line-height: 1.5;
    font-size: .92rem;
}

.do-solutions {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 18%, rgba(150, 217, 114, .16) 0 92px, transparent 93px),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.do-solutions::before,
.do-solutions::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.do-solutions::before {
    left: 10px;
    top: 58px;
    width: 70px;
    height: 160px;
    background-image: radial-gradient(rgba(110, 157, 222, .32) 1.8px, transparent 1.8px);
    background-size: 22px 22px;
}

.do-solutions::after {
    right: -102px;
    top: 56px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 1px solid rgba(120, 154, 216, .18);
    box-shadow:
        0 0 0 22px rgba(120, 154, 216, .06),
        0 0 0 44px rgba(120, 154, 216, .05),
        0 0 0 66px rgba(120, 154, 216, .04);
}

.do-solutions__hero-head {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto 34px;
    text-align: center;
}

.do-solutions__kicker {
    margin: 0;
    color: #4ab236;
    font-family: var(--ff-head);
    font-size: 1.02rem;
    font-weight: 800;
    text-transform: uppercase;
}

.do-solutions__kicker-line {
    display: block;
    width: 66px;
    height: 3px;
    margin: 14px auto 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #67cb4a 0%, #47b735 100%);
}

.do-solutions__title {
    margin: 0;
    color: #0a1f4d;
    font-family: var(--ff-head);
    font-size: clamp(2.7rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.05em;
}

.do-solutions__title span {
    color: #49bb35;
}

.do-solutions__sub {
    max-width: 930px;
    margin: 18px auto 0;
    color: rgba(11, 30, 62, .78);
    font-size: 1.06rem;
    line-height: 1.62;
}

.do-solutions__layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.do-solution-card {
    display: grid;
    grid-template-columns: 298px minmax(0, 1fr);
    min-height: 500px;
    background: linear-gradient(180deg, #f7fbf4 0%, #f4f9f1 100%);
    border: 1px solid rgba(18, 40, 79, .05);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(9, 28, 63, .06);
}

.do-solution-card--blue {
    background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.do-solution-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.do-solution-card__content {
    padding: 28px 36px 24px;
}

.do-solution-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #51ba37 0%, #43a92d 100%);
    color: #fff;
    font-size: 2rem;
}

.do-solution-card__icon--blue {
    background: linear-gradient(180deg, #2357c4 0%, #1a48aa 100%);
}

.do-solution-card h3 {
    margin: 0;
    color: #0c1f50;
    font-family: var(--ff-head);
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.03em;
}

.do-solution-card__rule {
    display: inline-block;
    width: 76px;
    height: 3px;
    margin: 18px 0 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #48b733 0%, #75d657 100%);
}

.do-solution-card__rule--blue {
    background: linear-gradient(90deg, #2256c2 0%, #4a7fe1 100%);
}

.do-solution-card__list {
    display: grid;
}

.do-solution-card__list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: #13224c;
    font-size: 1.02rem;
    line-height: 1.3;
}

.do-solution-card__list li + li {
    border-top: 1px solid rgba(17, 37, 80, .1);
}

.do-solution-card__check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #60c547 0%, #46ac31 100%);
    color: #fff;
    font-size: .75rem;
}

.do-solution-card__check--blue {
    background: linear-gradient(180deg, #2c62ce 0%, #204fae 100%);
}

.do-solution-card__button {
    margin-top: 22px;
    min-width: 272px;
    justify-content: center;
}

.do-solution-card__button--blue {
    background: linear-gradient(180deg, #2357c4 0%, #1a48aa 100%);
    border-color: #1a48aa;
}

.do-solution-card__button--blue:hover {
    background: linear-gradient(180deg, #2b63d4 0%, #1f51bd 100%);
    border-color: #1f51bd;
}

.do-accordion--grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.do-track {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .06);
    box-shadow: 0 16px 36px rgba(8, 27, 60, .08);
}

.do-track--featured::after {
    content: '';
    position: absolute;
    inset: auto -20px -44px auto;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66,200,47,.16) 0, rgba(66,200,47,.06) 42%, transparent 70%);
    pointer-events: none;
}

.do-track::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, #42c82f 0%, #1fae59 100%);
}

.do-track--blue::before {
    background: linear-gradient(180deg, #2f6fc4 0%, #1f4f9d 100%);
}

.do-track__head span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef7e8;
    color: var(--green-2);
    font-family: var(--ff-head);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.do-track--blue .do-track__head span {
    background: #eaf1fc;
    color: #1c5aa8;
}

.do-track__head h3 {
    margin-top: 16px;
    font-family: var(--ff-head);
    font-size: 1.8rem;
    line-height: 1.06;
    letter-spacing: -.04em;
    font-weight: 800;
    color: #08213f;
}

.do-track p {
    margin-top: 14px;
    color: rgba(11, 30, 62, .64);
    line-height: 1.68;
    font-size: .98rem;
}

.do-track__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.do-track__chips span {
    padding: 9px 12px;
    border-radius: 999px;
    background: #f6f9fd;
    color: #0b2d62;
    font-size: .84rem;
    font-weight: 600;
    border: 1px solid rgba(14, 34, 72, .06);
}

.do-track__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-family: var(--ff-head);
    font-weight: 700;
    color: #0b2d62;
    transition: gap .2s ease, color .2s ease;
}

.do-track__cta:hover {
    gap: 13px;
    color: var(--green-2);
}

.do-solution-explorer {
    margin-top: 28px;
}

.do-solution-explorer__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.do-solution-explorer__head h3 {
    font-family: var(--ff-head);
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 800;
    color: #08213f;
    margin-top: 8px;
}

.do-solution-explorer__head p:last-child {
    max-width: 520px;
    color: rgba(11, 30, 62, .6);
    line-height: 1.6;
    font-size: .96rem;
    margin: 0;
}

.do-accordion {
    display: grid;
    gap: 14px;
}

.do-accordion-item {
    border: 1px solid rgba(14, 34, 72, .08);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 27, 60, .05);
    overflow: hidden;
}

.do-accordion-item[open] {
    box-shadow: 0 18px 40px rgba(8, 27, 60, .08);
}

.do-accordion-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
}

.do-accordion-summary::-webkit-details-marker { display: none; }

.do-accordion-summary__meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.do-accordion-summary__num {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0b2348 0%, #12386f 100%);
    color: #fff;
    font-family: var(--ff-head);
    font-weight: 800;
    flex-shrink: 0;
}

.do-accordion-summary strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.12rem;
    font-weight: 800;
    color: #08213f;
}

.do-accordion-summary p {
    margin: 4px 0 0;
    color: rgba(11, 30, 62, .55);
    font-size: .9rem;
}

.do-accordion-summary > i {
    color: #1c5aa8;
    transition: transform .25s ease;
}

.do-accordion-item[open] .do-accordion-summary > i {
    transform: rotate(180deg);
}

.do-accordion-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 18px;
    padding: 0 24px 24px;
}

.do-accordion-panel__copy {
    background: #f8fbff;
    border-radius: 20px;
    padding: 22px;
    border: 1px solid rgba(14, 34, 72, .05);
}

.do-accordion-panel__copy p {
    margin: 0;
    color: rgba(11, 30, 62, .68);
    line-height: 1.7;
}

.do-accordion-panel__aside {
    border-radius: 20px;
    padding: 22px;
    background: linear-gradient(135deg, #0b2348 0%, #102f5d 100%);
    color: #fff;
}

.do-accordion-panel__icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: rgba(84, 206, 57, .16);
    color: #83ec64;
    font-size: 24px;
}

.do-accordion-panel__aside ul {
    display: grid;
    gap: 10px;
}

.do-accordion-panel__aside li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,.92);
    line-height: 1.45;
    font-size: .92rem;
}

.do-accordion-panel__aside li i {
    color: #83ec64;
    margin-top: 2px;
}

.do-impact {
    position: relative;
    overflow: hidden;
    padding: 88px 0 94px;
    background:
        radial-gradient(circle at 100% 16%, rgba(144, 224, 116, .24) 0 88px, transparent 89px),
        radial-gradient(circle at 0 100%, rgba(152, 220, 113, .22) 0 78px, transparent 79px),
        linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.do-impact::before,
.do-impact::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(100, 142, 221, .15);
    pointer-events: none;
}

.do-impact::before {
    width: 320px;
    height: 320px;
    right: -118px;
    top: -84px;
    box-shadow:
        0 0 0 22px rgba(100, 142, 221, .06),
        0 0 0 44px rgba(100, 142, 221, .05),
        0 0 0 66px rgba(100, 142, 221, .04),
        0 0 0 88px rgba(100, 142, 221, .03);
}

.do-impact::after {
    width: 260px;
    height: 260px;
    left: -132px;
    bottom: -136px;
    box-shadow:
        0 0 0 20px rgba(100, 142, 221, .06),
        0 0 0 40px rgba(100, 142, 221, .05),
        0 0 0 60px rgba(100, 142, 221, .04);
}

.do-impact__head {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto 42px;
    text-align: center;
}

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

.do-impact__line {
    width: 188px;
    height: 2px;
    background: linear-gradient(90deg, rgba(78, 192, 63, 0) 0%, rgba(78, 192, 63, .72) 78%, rgba(78, 192, 63, .72) 100%);
    position: relative;
}

.do-impact__line:last-child {
    background: linear-gradient(90deg, rgba(78, 192, 63, .72) 0%, rgba(78, 192, 63, .72) 22%, rgba(78, 192, 63, 0) 100%);
}

.do-impact__line::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #58bd43;
    transform: translateY(-50%);
}

.do-impact__line:last-child::after {
    right: auto;
    left: -2px;
}

.do-impact__badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #eff9eb 0%, #e7f4e0 100%);
    box-shadow: inset 0 0 0 1px rgba(76, 184, 62, .08);
    color: #52b93e;
    font-size: 2rem;
}

.do-impact__kicker {
    margin: 0 0 10px;
    font-family: var(--ff-head);
    font-size: 1.02rem;
    font-weight: 800;
    color: #42b031;
    text-transform: uppercase;
}

.do-impact__title {
    margin: 0;
    color: #0b1f4d;
    font-family: var(--ff-head);
    font-size: clamp(2.5rem, 4.8vw, 4.15rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.do-impact__title span {
    color: #47bf2b;
}

.do-impact__sub {
    max-width: 930px;
    margin: 18px auto 0;
    color: rgba(11, 30, 62, .78);
    font-size: 1.08rem;
    line-height: 1.65;
}

.do-impact__carousel {
    position: relative;
    z-index: 1;
    --impact-gap: 18px;
    --impact-per-view: 3;
    --impact-edge-space: 24px;
}

.do-impact__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.do-impact__arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(14, 34, 72, .12);
    background: #fff;
    color: #0a2448;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.do-impact__arrow:hover {
    transform: translateY(-1px);
    background: #0a2448;
    color: #fff;
    border-color: #0a2448;
}

.do-impact__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.do-impact__dots button {
    width: 10px;
    height: 10px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(14, 34, 72, .18);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.do-impact__dots button.is-active {
    width: 28px;
    background: var(--green-2);
}

.do-impact__viewport {
    position: relative;
    overflow: hidden;
    padding: 28px 72px 34px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.do-impact__viewport::before,
.do-impact__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 42px;
    pointer-events: none;
    z-index: 2;
}

.do-impact__viewport::before {
    left: 0;
    background: linear-gradient(90deg, #f4f7fb 0%, rgba(244, 247, 251, 0) 100%);
}

.do-impact__viewport::after {
    right: 0;
    background: linear-gradient(270deg, #f4f7fb 0%, rgba(244, 247, 251, 0) 100%);
}

.do-impact__track {
    display: flex;
    gap: var(--impact-gap);
    padding: 0 var(--impact-edge-space) 10px;
    will-change: transform;
    transition: transform .35s ease;
}

.do-impact-card {
    flex: 0 0 calc((100% - (var(--impact-gap) * (var(--impact-per-view) - 1)) - (var(--impact-edge-space) * 2)) / var(--impact-per-view));
    min-width: 0;
    display: grid;
    grid-template-columns: 118px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 236px;
    padding: 30px 26px 26px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(18, 40, 79, .06);
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(9, 28, 63, .08);
}

.do-impact-card__icon {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #f3faef 0%, #eef6eb 100%);
    color: #10295d;
    font-size: 2.45rem;
    box-shadow: inset 0 0 0 1px rgba(53, 171, 42, .06);
}

.do-impact-card__body {
    width: 100%;
    padding-top: 0;
}

.do-impact-card__num {
    display: block;
    margin-bottom: 4px;
    color: #4aba37;
    font-family: var(--ff-head);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
}

.do-impact-card h3 {
    margin: 0;
    color: #0d1f50;
    font-family: var(--ff-head);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.2;
}

.do-impact-card__rule {
    display: inline-block;
    width: 74px;
    height: 3px;
    margin: 16px 0 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #42b431 0%, #7ad85a 100%);
}

.do-impact-card p {
    margin: 0;
    color: rgba(11, 30, 62, .82);
    font-size: 1rem;
    line-height: 1.58;
}

.do-impact__cta {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    margin-top: 34px;
    padding: 26px 30px;
    background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
    border: 1px solid rgba(32, 56, 103, .05);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(9, 28, 63, .06);
}

.do-impact__cta::after {
    content: '';
    position: absolute;
    right: 332px;
    top: 26px;
    bottom: 26px;
    width: 1px;
    background: rgba(17, 37, 80, .12);
}

.do-impact__cta-mark {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, #17387b 0%, #091b4a 82%);
    color: #fff;
    font-size: 2rem;
}

.do-impact__cta-copy strong {
    display: block;
    margin-bottom: 6px;
    color: #10224e;
    font-family: var(--ff-head);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
}

.do-impact__cta-copy p {
    margin: 0;
    color: rgba(11, 30, 62, .82);
    font-size: 1rem;
}

.do-impact__cta-button {
    min-width: 292px;
    justify-content: center;
    padding-inline: 28px;
    font-size: 1rem;
}

.do-challenges {
    background: #f4f7fb;
}

.do-cards {
    display: grid;
    gap: 20px;
}

.do-challenges__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.do-card {
    min-height: 252px;
    padding: 28px 26px 26px;
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .06);
    border-radius: 26px;
    box-shadow: 0 12px 28px rgba(8, 27, 60, .06);
}

.do-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #edf7ea 0%, #dff3d2 100%);
    color: var(--green-2);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.do-card__icon i {
    font-size: 23px;
}

.do-card h3 {
    font-family: var(--ff-head);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.18;
    color: #08213f;
}

.do-card p {
    margin-top: 10px;
    color: rgba(11, 30, 62, .62);
    line-height: 1.58;
    font-size: .94rem;
}

.do-solutions {
    background: #fff;
}

.do-note {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px 32px;
    background: linear-gradient(135deg, #0b2348 0%, #0f2f63 100%);
    border-radius: 24px;
    color: #fff;
}

.do-note__icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(52, 199, 50, .16);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.do-note__icon i {
    color: #74e054;
    font-size: 26px;
}

.do-note__body {
    flex: 1;
}

.do-note__body strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.do-note__body p {
    margin: 0;
    color: rgba(225, 235, 251, .8);
    line-height: 1.55;
}

.do-repse {
    background: #f4f7fb;
}

.do-repse__top {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.12fr);
    align-items: start;
    gap: 40px;
}

.do-repse__intro {
    position: relative;
}

.do-repse__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(112, 185, 74, .1);
    color: #0b2445;
    border: 1px solid rgba(112, 185, 74, .18);
    font-size: .94rem;
    font-weight: 600;
}

.do-repse__badge i {
    color: var(--green-2);
    font-size: 1rem;
}

.do-repse__heading {
    font-family: var(--ff-head);
    font-size: clamp(2.5rem, 4.5vw, 4.3rem);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.04em;
    color: #08213f;
    margin: 24px 0 18px;
    max-width: 10ch;
}

.do-repse__line {
    width: 84px;
    height: 3px;
    border-radius: 999px;
    background: var(--green-2);
}

.do-repse__lead {
    margin: 18px 0 0;
    max-width: 540px;
    color: rgba(11, 30, 62, .78);
    line-height: 1.6;
    font-size: 1.06rem;
}

.do-repse__media-wrap {
    position: relative;
    margin-top: 28px;
    padding: 0 34px 34px 0;
}

.do-repse__media {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 52px rgba(8, 27, 60, .12);
    border: 1px solid rgba(14, 34, 72, .08);
    aspect-ratio: 587 / 327;
}

.do-repse__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.do-repse__compliance-card {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .08);
    box-shadow: 0 18px 34px rgba(8, 27, 60, .12);
}

.do-repse__compliance-card p {
    margin: 0;
    color: rgba(11, 30, 62, .78);
    font-size: .96rem;
    line-height: 1.48;
}

.do-repse__compliance-card strong {
    color: var(--green-2);
    font-weight: 700;
}

.do-repse__compliance-icon,
.do-repse__cta-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #eff8ea 0%, #f8fcf5 100%);
    color: var(--green-2);
    font-size: 1.45rem;
}

.do-repse__services {
    display: grid;
    gap: 24px;
}

.do-repse__services-head {
    padding-top: 8px;
}

.do-repse__services-kicker {
    display: grid;
    grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
    align-items: center;
    gap: 16px;
}

.do-repse__services-kicker span {
    height: 2px;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, rgba(92, 188, 76, .72) 0 6px, transparent 6px 11px);
}

.do-repse__services-kicker p {
    margin: 0;
    font-family: var(--ff-head);
    font-size: clamp(1.6rem, 2.3vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -.03em;
    color: #08213f;
}

.do-repse__services-copy {
    margin: 18px auto 0;
    max-width: 590px;
    text-align: center;
    color: rgba(11, 30, 62, .78);
    line-height: 1.62;
}

.do-repse__service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(14, 34, 72, .07);
    box-shadow: 0 16px 34px rgba(8, 27, 60, .06);
}

.do-repse-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 220px) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 0;
    padding: 18px 4px;
    border-bottom: 1px solid rgba(14, 34, 72, .09);
}

.do-repse-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #edf7e8 0%, #f6fbf3 100%);
    color: #0e2448;
    font-size: 1.4rem;
    margin: 0;
}

.do-repse-card__body {
    display: contents;
}

.do-repse-card h3 {
    margin: 0;
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a2448;
    letter-spacing: -.02em;
}

.do-repse-card__divider {
    display: none;
}

.do-repse-card p {
    margin: 0;
    color: rgba(11, 30, 62, .72);
    line-height: 1.5;
    font-size: .93rem;
    max-width: none;
}

.do-repse-card:last-child {
    border-bottom: none;
}

.do-repse__bottom {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .74fr);
    gap: 24px;
    align-items: stretch;
}

.do-repse__reasons {
    padding: 34px 34px 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, #071d46 0%, #0e2a63 100%);
    color: #fff;
    box-shadow: 0 20px 46px rgba(6, 20, 51, .18);
}

.do-repse__reasons h3 {
    margin: 0 0 26px;
    text-align: center;
    font-family: var(--ff-head);
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.03em;
}

.do-repse__reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.do-repse-reason {
    padding: 0 18px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.do-repse-reason:first-child {
    border-left: none;
}

.do-repse-reason i {
    font-size: 1.9rem;
    color: #8bd646;
    margin-bottom: 14px;
}

.do-repse-reason h4 {
    margin: 0 0 10px;
    font-family: var(--ff-head);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
}

.do-repse-reason p {
    margin: 0;
    color: rgba(231, 239, 252, .78);
    font-size: .95rem;
    line-height: 1.58;
}

.do-repse__cta {
    padding: 34px 30px 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(243,248,238,.98) 100%);
    border: 1px solid rgba(14, 34, 72, .06);
    box-shadow: 0 18px 38px rgba(8, 27, 60, .07);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.do-repse__cta h3 {
    margin: 20px 0 12px;
    font-family: var(--ff-head);
    font-size: clamp(1.6rem, 2vw, 2.3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
    color: #0a2448;
}

.do-repse__cta p {
    margin: 0;
    color: rgba(11, 30, 62, .72);
    line-height: 1.6;
}

.do-repse__cta .button {
    margin-top: auto;
    min-width: 100%;
    justify-content: center;
}

.do-process {
    background: #fff;
}

.do-process__hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.02fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 26px;
}

.do-process__content {
    padding-top: 2px;
}

.do-process__crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: rgba(11, 30, 62, .72);
    font-size: .95rem;
    margin-bottom: 28px;
}

.do-process__crumbs span:first-child {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: #f4f7fb;
    display: grid;
    place-items: center;
    color: #0d2247;
}

.do-process__crumbs strong {
    color: var(--green-2);
    font-weight: 700;
}

.do-process__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(112, 185, 74, .1);
    color: #0b2445;
    border: 1px solid rgba(112, 185, 74, .16);
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
}

.do-process__badge i {
    color: var(--green-2);
}

.do-process__title {
    margin: 18px 0 0;
    font-family: var(--ff-head);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    line-height: .94;
    letter-spacing: -.05em;
    color: #0a2448;
}

.do-process__title span {
    display: block;
    margin-top: 10px;
    color: var(--green-2);
}

.do-process__rule {
    width: 96px;
    height: 3px;
    border-radius: 999px;
    background: var(--green-2);
    margin: 20px 0 18px;
}

.do-process__lead {
    margin: 0;
    max-width: 610px;
    color: rgba(11, 30, 62, .82);
    line-height: 1.55;
    font-size: 1.08rem;
}

.do-process__lead strong {
    color: #0a2448;
    font-weight: 700;
}

.do-process__media {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(8, 27, 60, .1);
    border: 1px solid rgba(14, 34, 72, .08);
    aspect-ratio: 758 / 357;
}

.do-process__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.do-process__timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
    margin-top: 18px;
}

.do-step {
    position: relative;
    text-align: center;
    padding-top: 28px;
}

.do-step__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--green-2);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--ff-head);
    font-size: .98rem;
    font-weight: 700;
    z-index: 2;
}

.do-step__icon {
    width: 114px;
    height: 114px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef8ea 0%, #f7fbf3 100%);
    display: grid;
    place-items: center;
    color: #0a2448;
    font-size: 2.6rem;
    position: relative;
}

.do-step__connector {
    position: absolute;
    top: 58px;
    left: calc(100% - 8px);
    width: 58px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-2);
}

.do-step__connector span {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(92, 188, 76, .78) 0 5px, transparent 5px 10px);
}

.do-step__connector i {
    font-size: 1.25rem;
}

.do-step h3 {
    font-family: var(--ff-head);
    font-size: 1.08rem;
    font-weight: 700;
    color: #08213f;
    margin: 0;
}

.do-step__rule {
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--green-2);
    margin: 12px auto 10px;
}

.do-step p {
    color: rgba(11, 30, 62, .78);
    line-height: 1.58;
    font-size: .92rem;
    margin: 0;
}

.do-process__why {
    margin-top: 28px;
    padding: 30px 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.96) 100%);
    border: 1px solid rgba(14, 34, 72, .07);
    box-shadow: 0 16px 34px rgba(8, 27, 60, .06);
    display: grid;
    grid-template-columns: minmax(220px, .68fr) minmax(0, 1.32fr);
    gap: 18px;
    align-items: start;
}

.do-process__why-intro h3 {
    margin: 0 0 14px;
    font-family: var(--ff-head);
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: #0a2448;
}

.do-process__why-intro h3 span {
    color: var(--green-2);
}

.do-process__why-intro {
    align-self: center;
}

.do-process__why-intro p {
    margin: 0;
    max-width: 300px;
    color: rgba(11, 30, 62, .78);
    line-height: 1.62;
}

.do-process__why-carousel {
    min-width: 0;
}

.do-process__why-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 16px;
}

.do-process__why-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(14, 34, 72, .12);
    background: #fff;
    color: #0a2448;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.do-process__why-arrow:hover {
    transform: translateY(-1px);
    background: #0a2448;
    color: #fff;
    border-color: #0a2448;
}

.do-process__why-arrow:disabled {
    opacity: .38;
    cursor: default;
    transform: none;
    background: #fff;
    color: #0a2448;
    border-color: rgba(14, 34, 72, .12);
}

.do-process__why-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.do-process__why-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    padding: 0;
    border-radius: 999px;
    background: rgba(14, 34, 72, .18);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}

.do-process__why-dots button.is-active {
    width: 28px;
    background: var(--green-2);
}

.do-process__why-viewport {
    overflow: hidden;
}

.do-process__why-track {
    display: flex;
    gap: 0;
    transition: transform .35s ease;
}

.do-process-benefit {
    flex: 0 0 calc(100% / 3);
    min-width: 0;
    padding: 0 18px;
    text-align: center;
    border-left: 1px solid rgba(14, 34, 72, .1);
}

.do-process-benefit:first-child {
    border-left: none;
}

.do-process-benefit__icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #eef8ea 0%, #f7fbf3 100%);
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: #0a2448;
}

.do-process-benefit:nth-child(3) .do-process-benefit__icon,
.do-process-benefit:nth-child(4) .do-process-benefit__icon,
.do-process-benefit:nth-child(5) .do-process-benefit__icon {
    color: var(--green-2);
}

.do-process-benefit h4 {
    margin: 0 0 8px;
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0a2448;
}

.do-process-benefit p {
    margin: 0;
    color: rgba(11, 30, 62, .78);
    line-height: 1.58;
    font-size: .88rem;
}

.do-process__cta {
    margin-top: 14px;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #061b44 0%, #0b2759 100%);
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    box-shadow: 0 20px 42px rgba(6, 20, 51, .16);
}

.do-process__cta-mark {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: rgba(92, 188, 76, .12);
    border: 1px solid rgba(92, 188, 76, .24);
    color: var(--green-2);
    display: grid;
    place-items: center;
    font-size: 1.85rem;
}

.do-process__cta p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(235, 242, 252, .92);
}

.do-process__cta strong {
    color: var(--green-2);
    font-weight: 700;
}

.do-trust {
    background: #f4f7fb;
}

.do-trust__head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 28px;
}

.do-trust__title {
    margin: 0;
    font-family: var(--ff-head);
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: .98;
    letter-spacing: -.05em;
    color: #0a2448;
}

.do-trust__title span {
    color: var(--green-2);
}

.do-trust__title .do-trust__brand-name {
    color: var(--navy-700);
}

.do-trust__title-rule {
    width: 90px;
    height: 3px;
    border-radius: 999px;
    margin: 18px auto 18px;
    background: var(--green-2);
}

.do-trust__sub {
    margin: 0 auto;
    max-width: 830px;
    color: rgba(11, 30, 62, .78);
    font-size: 1.08rem;
    line-height: 1.58;
}

.do-trust__badge {
    margin: 18px auto 0;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0a2448;
    font-family: var(--ff-head);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 700;
}

.do-trust__badge strong {
    color: var(--green-2);
}

.do-trust__badge-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, #edf7e8 0%, #f7fbf3 100%);
    display: grid;
    place-items: center;
    color: var(--green-2);
    font-size: 1.35rem;
}

.do-trust__logo-board {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0;
    padding: 22px 38px;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(14, 34, 72, .07);
    box-shadow: 0 16px 34px rgba(8, 27, 60, .06);
}

.do-trust__board-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(14, 34, 72, .08);
    margin: 10px 0;
}

.do-trust__brand {
    min-height: 100px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 10px 12px;
}

.do-trust__brand span {
    font-family: var(--ff-head);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
}

.do-trust__brand img {
    display: block;
    width: 100%;
    max-width: 138px;
    max-height: 58px;
    object-fit: contain;
}

.brand--bimbo span { color: #e6211a; font-size: 3rem; }
.brand--modelo span { color: #163d87; font-size: 2.15rem; }
.brand--lala span { color: #1653a4; font-size: 3rem; }
.brand--cemex span { color: #164598; font-size: 2.55rem; }
.brand--soriana span { color: #e12425; font-size: 2.55rem; }
.brand--femsa span { color: #981d21; font-size: 2.45rem; }
.brand--oxxo span { color: #d82025; font-size: 2.9rem; }
.brand--pepsico span { color: #1957ab; font-size: 2.2rem; }
.brand--gmexico span { color: #3b3b3b; font-size: 2rem; }
.brand--kavak span { color: #111; font-size: 2.65rem; }
.brand--mercedes span { color: #4f4f4f; font-size: 1.8rem; }
.brand--dhl span { color: #d51d22; font-size: 2.9rem; }

.do-trust__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 22px;
    padding: 18px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(14, 34, 72, .07);
    box-shadow: 0 14px 30px rgba(8, 27, 60, .05);
}

.do-trust__fact {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 8px 26px;
    min-height: 0;
    border-left: 1px solid rgba(14, 34, 72, .08);
}

.do-trust__fact:first-child {
    border-left: none;
}

.do-trust__fact-icon {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #edf7e8 0%, #f7fbf3 100%);
    color: var(--green-2);
    font-size: 1.95rem;
}

.do-trust__fact-body {
    flex: 1;
}

.do-trust__fact strong {
    display: block;
    font-family: var(--ff-head);
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1;
    color: var(--green-2);
    margin-bottom: 6px;
}

.do-trust__fact span {
    display: block;
    color: #0a2448;
    font-family: var(--ff-head);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.45;
}

.do-trust__fact p {
    margin-top: 2px;
    color: #0a2448;
    line-height: 1.35;
    font-size: .95rem;
    font-weight: 700;
}

.do-trust__testimonials {
    margin-top: 18px;
    padding: 10px 0 0;
    border-radius: 24px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(14, 34, 72, .07);
    box-shadow: 0 16px 34px rgba(8, 27, 60, .06);
}

.do-trust__testimonials h3 {
    margin: 0;
    text-align: center;
    font-family: var(--ff-head);
    font-size: clamp(1.9rem, 2.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: #0a2448;
}

.do-trust__testimonials h3 span {
    color: var(--green-2);
}

.do-trust__testimonials-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 18px 18px;
}

.do-trust__testimonial-arrow {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid rgba(14, 34, 72, .08);
    background: #fff;
    color: var(--green-2);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(8, 27, 60, .08);
}

.do-trust__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.do-testimonial {
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(14, 34, 72, .06);
    padding: 24px 22px 20px;
    box-shadow: 0 10px 24px rgba(8, 27, 60, .05);
}

.do-testimonial__quote {
    color: var(--green-2);
    font-size: 1.65rem;
    margin-bottom: 10px;
}

.do-testimonial > p {
    margin: 0;
    color: rgba(11, 30, 62, .82);
    line-height: 1.72;
    min-height: 120px;
}

.do-testimonial__meta {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: end;
}

.do-testimonial__brand {
    font-family: var(--ff-head);
    font-weight: 800;
    line-height: 1;
}

.do-testimonial__meta strong {
    display: block;
    color: #0a2448;
    font-family: var(--ff-head);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.do-testimonial__meta span,
.do-testimonial__meta small {
    display: block;
    color: rgba(11, 30, 62, .72);
    font-size: .92rem;
    line-height: 1.4;
}

.do-trust__cta {
    margin-top: 18px;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #061b44 0%, #0b2759 100%);
    color: #fff;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    box-shadow: 0 20px 42px rgba(6, 20, 51, .16);
}

.do-trust__cta-icon {
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: rgba(92, 188, 76, .12);
    border: 1px solid rgba(92, 188, 76, .24);
    color: var(--green-2);
    display: grid;
    place-items: center;
    font-size: 1.85rem;
}

.do-trust__cta p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    color: rgba(235, 242, 252, .92);
}

.do-trust__cta strong {
    color: var(--green-2);
    font-weight: 700;
}

@media (max-width: 1180px) {
    .payroll-hero__grid,
    .payroll-ally__grid,
    .payroll-final__card {
        grid-template-columns: 1fr;
    }

.payroll-hero__visual {
    min-height: 0;
    padding-top: 28px;
}

    .payroll-hero__photo {
        min-height: 560px;
        clip-path: none;
    }

    .payroll-hero__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px;
        padding: 0;
    }

    .payroll-problem__grid,
    .payroll-benefits__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payroll-problem__hero {
        grid-template-columns: 1fr;
    }

    .payroll-problem__media {
        min-height: 420px;
        clip-path: none;
    }

    .payroll-problem__benefits {
        --payroll-problem-edge-space: 24px;
        --payroll-problem-per-view: 2;
    }

    .payroll-timeline,
    .payroll-trust__facts,
    .payroll-trust__logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payroll-admin__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .payroll-admin__media {
        min-height: 460px;
    }

    .payroll-admin__content {
        padding-top: 0;
    }

    .payroll-admin__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .payroll-admin__cta {
        grid-template-columns: 1fr;
        padding: 30px 28px;
    }

    .payroll-admin__cta-divider {
        display: none;
    }

    .payroll-final__media {
        min-height: 280px;
        clip-path: none;
    }

    .payroll-final__content {
        padding: 30px 26px 34px;
    }

    .do-section-head,
    .do-challenges__layout,
    .do-solutions__layout,
    .do-repse__top,
    .do-repse__bottom,
    .do-process__hero,
    .do-process__why,
    .do-process__cta,
    .do-trust__facts,
    .do-trust__cta,
    .do-accordion-panel,
    .do-impact__cta {
        grid-template-columns: 1fr;
    }

    .do-section-head,
    .do-solution-explorer__head {
        align-items: flex-start;
    }

    .do-challenges__strip,
    .do-accordion--grid,
    .do-process__timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .do-impact__cta::after {
        display: none;
    }

    .do-impact__cta-button {
        min-width: 0;
        width: 100%;
    }

    .do-solutions {
        padding-top: 76px;
    }

    .do-solution-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .do-solution-card__media {
        height: 300px;
    }

    .do-solution-card__content {
        padding: 24px 22px 22px;
    }

    .do-solution-card__button {
        width: 100%;
        min-width: 0;
    }

    .do-hero__visual {
        justify-self: start;
        width: min(100%, 720px);
    }

    .do-challenges__grid,
    .do-repse__service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .do-impact__carousel {
        --impact-per-view: 2;
    }

    .do-impact-card {
        flex-basis: calc((100% - var(--impact-gap) - (var(--impact-edge-space) * 2)) / 2);
    }

    .do-track,
    .do-accordion-item,
    .do-trust__fact,
    .do-repse-card,
    .do-card {
        border-radius: 24px;
    }

    .do-accordion-panel {
        grid-template-columns: 1fr;
    }

    .do-repse__intro { max-width: none; }

    .do-repse__reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 0;
    }

    .do-repse__cta .button {
        min-width: 0;
        width: 100%;
    }

    .do-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .do-hero__content {
        max-width: none;
        padding-top: 48px;
        padding-bottom: 20px;
    }

    .do-hero__visual {
        width: 100%;
        justify-self: stretch;
    }

    .do-hero__visual-shell {
        min-height: 0;
    }

    .do-hero__photo {
        height: 620px;
        min-height: 620px;
        clip-path: none;
        border-radius: 32px;
    }

    .do-hero__photo::after {
        height: 0;
    }

    .do-hero__panel {
        position: static;
        width: min(100%, 480px);
        margin: -90px 0 0 auto;
    }

    .do-hero__bottom {
        position: static;
        transform: none;
        margin: 16px auto 0;
    }

    .do-impact__cta {
        gap: 18px;
    }

    .do-solution-explorer__head p:last-child,
    .do-repse__lead,
    .do-repse__services-copy {
        max-width: none;
    }

    .do-track__head h3 {
        font-size: 1.55rem;
    }

    .do-trust__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .do-trust__logo-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 20px 22px;
    }

    .do-trust__testimonial-grid {
        grid-template-columns: 1fr;
    }

    .do-trust__testimonials-shell {
        grid-template-columns: 1fr;
    }

    .do-trust__testimonial-arrow {
        display: none;
    }

    .do-process__crumbs {
        margin-bottom: 22px;
    }

    .do-process__title {
        font-size: clamp(2.8rem, 6vw, 4.4rem);
    }

    .do-process__timeline {
        gap: 30px 22px;
    }

    .do-step__connector {
        display: none;
    }

    .do-process__why-intro p {
        max-width: none;
    }

    .do-process-benefit {
        flex-basis: 50%;
    }
}

@media (max-width: 720px) {
    .payroll-section {
        padding: 60px 0;
    }

    .payroll-hero {
        padding: 34px 0 54px;
    }

    .payroll-hero__badge {
        font-size: .86rem;
        padding: 10px 16px 10px 10px;
        gap: 10px;
    }

    .payroll-hero__badge-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .payroll-hero__copy {
        font-size: .98rem;
    }

    .payroll-problem__title {
        max-width: none;
        font-size: clamp(2.25rem, 10vw, 3.55rem);
    }

    .payroll-problem__sub {
        font-size: 1rem;
    }

    .payroll-problem__media {
        min-height: 320px;
    }

    .payroll-problem__controls {
        justify-content: space-between;
    }

    .payroll-problem__benefits {
        --payroll-problem-edge-space: 18px;
        --payroll-problem-per-view: 1;
    }

    .payroll-problem__viewport {
        padding: 18px 24px 24px;
    }

    .payroll-problem-card {
        padding: 24px 20px 22px;
    }

    .payroll-problem-card__icon {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .payroll-problem__cta-wrap {
        grid-template-columns: 1fr;
    }

    .payroll-problem__cta-line {
        display: none;
    }

    .payroll-problem__cta {
        width: 100%;
        justify-content: center;
    }

    .payroll-problem__grid,
    .payroll-benefits__grid,
    .payroll-admin__layout,
    .payroll-admin__grid,
    .payroll-timeline,
    .payroll-trust__facts,
    .payroll-trust__logos,
    .payroll-ally__list {
        grid-template-columns: 1fr;
    }

    .payroll-admin__media {
        min-height: 280px;
    }

    .payroll-admin__title {
        font-size: clamp(2.25rem, 9vw, 3.7rem);
    }

    .payroll-admin__sub {
        font-size: 1rem;
    }

    .payroll-admin__points li {
        font-size: .96rem;
    }

    .payroll-admin-card,
    .payroll-admin-card:nth-child(5) {
        grid-column: auto;
        min-height: 0;
    }

    .payroll-admin-card {
        padding: 22px 20px 20px;
    }

    .payroll-admin-card__head {
        min-height: 0;
        gap: 14px;
    }

    .payroll-admin-card__icon {
        width: 74px;
        height: 74px;
        font-size: 1.7rem;
    }

    .payroll-admin-card__rule {
        margin-left: 88px;
    }

    .payroll-admin__cta {
        padding: 28px 20px;
        gap: 18px;
    }

    .payroll-admin__cta-brand {
        width: 110px;
        height: 110px;
        font-size: 2.7rem;
    }

    .payroll-admin__cta-copy h3 {
        font-size: 2rem;
    }

    .payroll-admin__cta-action .button {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .payroll-problem-card,
    .payroll-benefit-card,
    .payroll-trust__fact,
    .payroll-trust__logo {
        padding-left: 18px;
        padding-right: 18px;
    }

    .payroll-trust__fact strong {
        font-size: 1.7rem;
    }

    .payroll-final__actions,
    .payroll-hero__actions {
        flex-direction: column;
    }

    .payroll-hero__actions .button,
    .payroll-final__actions .button {
        width: 100%;
        justify-content: center;
    }

    .payroll-hero__title {
        max-width: none;
    }

    .payroll-hero__photo {
        min-height: 360px;
        border-radius: 28px;
    }

    .payroll-hero__photo::after {
        display: none;
    }

    .payroll-hero__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 10px;
        margin-top: 22px;
    }

    .payroll-hero__highlight-icon {
        width: 72px;
        height: 72px;
        font-size: 1.7rem;
    }

    .do-hero {
        padding: 16px 0 28px;
    }

    .do-impact {
        padding: 72px 0 78px;
    }

    .do-solutions__title {
        font-size: clamp(2.15rem, 8vw, 3.1rem);
    }

    .do-solutions__sub {
        font-size: 1rem;
    }

    .do-impact__eyebrow {
        gap: 22px;
    }

    .do-impact__line {
        width: 120px;
    }

    .do-impact__badge {
        width: 72px;
        height: 72px;
        font-size: 1.7rem;
    }

    .do-impact__title {
        font-size: clamp(2.1rem, 8vw, 3rem);
    }

    .do-impact__sub {
        font-size: 1rem;
    }

    .do-impact__controls {
        justify-content: space-between;
    }

    .do-impact__carousel {
        --impact-per-view: 1;
        --impact-edge-space: 18px;
    }

    .do-impact__viewport {
        padding: 18px 24px 24px;
    }

    .do-impact-card {
        flex-basis: 100%;
        grid-template-columns: 96px 1fr;
        min-height: 0;
        padding: 24px 20px;
        gap: 12px;
    }

    .do-impact-card__icon {
        width: 82px;
        height: 82px;
        font-size: 2rem;
    }

    .do-impact-card__num {
        font-size: 2.5rem;
    }

    .do-impact__cta {
        gap: 18px;
        padding: 22px 20px;
    }

    .do-solution-card__media {
        height: 240px;
    }

    .do-solution-card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
        margin-bottom: 16px;
    }

    .do-solution-card h3 {
        font-size: 1.22rem;
    }

    .do-solution-card__list li {
        font-size: .96rem;
        padding: 12px 0;
    }

    .do-hero__grid {
        min-height: 0;
        padding-top: 12px;
        gap: 0;
    }

    .do-hero__copy {
        font-size: .98rem;
    }

    .do-hero__content {
        padding-top: 24px;
    }

    .do-hero__photo {
        height: 360px;
        min-height: 360px;
    }

    .do-hero__panel {
        width: 100%;
        margin-top: -32px;
        padding: 22px 20px 18px;
        border-radius: 24px;
    }

    .do-hero__panel-head {
        grid-template-columns: 52px 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .do-hero__panel-icon {
        width: 52px;
        height: 52px;
        font-size: 1.45rem;
    }

    .do-hero__panel h2 {
        font-size: 1.05rem;
    }

    .do-hero__panel-list li {
        padding: 14px 0;
        gap: 12px;
        font-size: .96rem;
    }

    .do-impact-card {
        justify-items: start;
    }

    .do-impact-card__body {
        width: 100%;
    }

    .do-impact__cta-mark {
        width: 68px;
        height: 68px;
        font-size: 1.75rem;
    }

    .do-impact__cta-copy strong {
        font-size: 1.12rem;
    }

    .do-process__crumbs {
        gap: 10px;
        font-size: .9rem;
    }

    .do-process__crumbs span:first-child {
        width: 32px;
        height: 32px;
    }

    .do-process__title {
        font-size: clamp(2.35rem, 10vw, 3.55rem);
    }

    .do-process__badge {
        font-size: .82rem;
        padding: 9px 14px;
    }

    .do-process__lead {
        font-size: 1rem;
    }

    .do-process__media {
        aspect-ratio: 16 / 10;
    }

    .do-process__timeline {
        grid-template-columns: 1fr;
    }

    .do-process__why-controls {
        justify-content: space-between;
    }

    .do-process-benefit {
        flex-basis: 100%;
        padding: 0;
        border-left: none;
    }

    .do-step {
        padding-top: 26px;
    }

    .do-step__icon {
        width: 96px;
        height: 96px;
        font-size: 2.2rem;
        margin-bottom: 16px;
    }

    .do-process__why {
        padding: 24px 20px;
    }

    .do-process-benefit__icon {
        width: 68px;
        height: 68px;
        margin-bottom: 14px;
        font-size: 1.7rem;
    }

    .do-process__cta {
        padding: 22px 20px;
    }

    .do-process__cta-mark {
        width: 56px;
        height: 56px;
        font-size: 1.55rem;
    }

    .do-process__cta .button {
        width: 100%;
        justify-content: center;
    }

    .do-repse__heading {
        font-size: clamp(2.2rem, 11vw, 3.35rem);
        max-width: none;
    }

    .do-repse__services-kicker {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .do-repse__services-kicker span {
        display: none;
    }

    .do-repse__services-kicker p,
    .do-repse__services-copy {
        text-align: left;
    }

    .do-repse__media-wrap {
        padding: 0 0 90px;
    }

    .do-repse__compliance-card {
        left: 18px;
        right: 18px;
        max-width: none;
    }

    .do-repse__service-grid,
    .do-repse__reasons-grid {
        grid-template-columns: 1fr;
    }

    .do-repse__service-grid {
        padding: 12px 18px;
    }

    .do-repse-card {
        grid-template-columns: 52px 1fr;
        gap: 14px;
        padding: 16px 0;
    }

    .do-repse-card__icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .do-repse-card__body {
        display: grid;
        gap: 8px;
    }

    .do-repse-card h3 {
        font-size: 1rem;
    }

    .do-repse-reason {
        padding: 0 0 22px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .do-repse-reason:first-child {
        border-top: none;
        padding-top: 0;
    }

    .do-section {
        padding: 76px 0;
    }

    .do-section-head,
    .do-solution-explorer__head {
        flex-direction: column;
        gap: 16px;
    }

    .do-section-head .button,
    .do-solution-explorer__head .button {
        width: 100%;
        justify-content: center;
    }

    .do-challenges__feature,
    .do-track,
    .do-accordion-summary,
    .do-accordion-panel__copy,
    .do-accordion-panel__aside,
    .do-repse__reasons,
    .do-repse__cta,
    .do-trust__fact,
    .do-repse-card,
    .do-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .do-note {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .do-note .button {
        width: 100%;
        justify-content: center;
    }

    .do-solutions__callout {
        flex-direction: column;
    }

    .do-accordion-summary {
        align-items: flex-start;
    }

    .do-accordion-summary__meta {
        align-items: flex-start;
    }

    .do-accordion-summary__num {
        width: 48px;
        height: 48px;
    }

    .do-accordion-panel,
    .do-track,
    .do-note {
        gap: 18px;
    }

    .do-trust__fact,
    .do-fact {
        min-height: 0;
    }

    .do-trust__title {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
    }

    .do-trust__sub {
        font-size: 1rem;
    }

    .do-trust__badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .do-trust__logo-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 16px 14px;
    }

    .do-trust__brand {
        min-height: 82px;
        padding: 8px;
    }

    .brand--bimbo span,
    .brand--lala span,
    .brand--dhl span {
        font-size: 2.2rem;
    }

    .brand--modelo span,
    .brand--pepsico span,
    .brand--gmexico span,
    .brand--mercedes span {
        font-size: 1.45rem;
    }

    .brand--cemex span,
    .brand--soriana span,
    .brand--femsa span,
    .brand--oxxo span,
    .brand--kavak span {
        font-size: 1.85rem;
    }

    .do-trust__facts {
        grid-template-columns: 1fr;
        padding: 12px 10px;
    }

    .do-trust__fact {
        padding: 14px 12px;
        border-left: none;
        border-top: 1px solid rgba(14, 34, 72, .08);
    }

    .do-trust__fact:first-child {
        border-top: none;
    }

    .do-trust__fact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .do-trust__fact strong {
        font-size: 2rem;
    }

    .do-trust__testimonials {
        padding-top: 16px;
    }

    .do-trust__testimonials-shell {
        padding: 12px 14px 16px;
    }

    .do-testimonial {
        padding: 20px 18px 18px;
    }

    .do-testimonial > p {
        min-height: 0;
    }

    .do-testimonial__meta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .do-trust__cta {
        padding: 22px 20px;
    }

    .do-trust__cta .button {
        width: 100%;
        justify-content: center;
    }

    .do-hero__eyebrow {
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .do-hero__eyebrow-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .do-hero__eyebrow-text strong,
    .do-hero__eyebrow-text span {
        font-size: .86rem;
    }

    .do-hero__bottom {
        margin-top: 10px;
    }
}
