:root {
    --page: #ffffff;
    --surface: #f5f5f7;
    --surface-strong: #e8e8ed;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --blue: #0071e3;
    --blue-hover: #0077ed;
    --dark: #000000;
    --dark-soft: #161617;
    --white: #f5f5f7;
    --border: rgba(0, 0, 0, .10);
    --border-dark: rgba(255, 255, 255, .16);
    --success: #087f5b;
    --danger: #c92a2a;
    --radius-large: 32px;
    --radius-medium: 22px;
    --container: 1200px;
    --content: 980px;
    --nav-height: 48px;
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 20px); }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--page);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
section[id] { scroll-margin-top: calc(var(--nav-height) + 20px); }

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}
.section {
    position: relative;
    padding: clamp(88px, 10vw, 150px) 0;
}
.section-muted { background: var(--dark); color: var(--white); }
.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    transform: translateY(-150%);
    padding: 10px 14px;
    color: #fff;
    background: #000;
    border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }
.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;
}

/* Navegación compacta y translúcida */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--text);
    background: rgba(250, 250, 252, .84);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.header-inner {
    min-height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
    font-size: .92rem;
    font-weight: 650;
    letter-spacing: -.02em;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 9px;
    color: #fff;
    background: #000;
    font-size: .76rem;
    font-weight: 700;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    color: rgba(0, 0, 0, .78);
    font-size: .76rem;
    letter-spacing: -.01em;
}
.main-nav a:not(.button) { transition: color .2s ease; }
.main-nav a:not(.button):hover { color: var(--blue); }
.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 0;
    background: transparent;
}
.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 1px;
    margin: 5px auto;
    background: #1d1d1f;
    transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Botones: simples, redondeados y claros */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    color: #fff;
    background: var(--blue);
    font-size: .96rem;
    font-weight: 500;
    line-height: 1;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: var(--blue-hover); border-color: var(--blue-hover); transform: translateY(-1px); }
.button-small { min-height: 30px; padding: 0 14px; font-size: .74rem; }
.button-secondary { color: var(--blue); background: transparent; }
.button-secondary:hover { color: #fff; background: var(--blue); }
.button-block { width: 100%; border: 0; }

/* Tipografía y jerarquía */
h1, h2, h3 {
    margin-top: 0;
    color: inherit;
    font-weight: 650;
    line-height: 1.05;
    letter-spacing: -.045em;
}
h1 { margin-bottom: 24px; font-size: clamp(3.4rem, 7.4vw, 6.9rem); }
h2 { margin-bottom: 20px; font-size: clamp(2.45rem, 5vw, 4.7rem); }
h3 { margin-bottom: 14px; font-size: clamp(1.45rem, 2vw, 2rem); letter-spacing: -.03em; }
p { color: var(--muted); }
.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--blue);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: -.01em;
}
.eyebrow::before { display: none; }

/* Hero tipo lanzamiento de producto */
.hero {
    min-height: auto;
    padding-top: clamp(78px, 9vw, 126px);
    padding-bottom: 20px;
    overflow: hidden;
    text-align: center;
    background: #fff;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 66px; align-items: center; }
.hero-copy { width: min(100%, 1030px); margin-inline: auto; }
.hero-copy h1 { max-width: 1010px; margin-inline: auto; }
.hero-lead {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(1.22rem, 2.1vw, 1.65rem);
    line-height: 1.35;
    letter-spacing: -.02em;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }
.hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: .88rem;
}
.hero-points li::before { content: "✓"; margin-right: 7px; color: var(--blue); font-weight: 700; }
.hero-glow { display: none; }
.hero-visual { width: min(100%, 1120px); margin-inline: auto; }
.visual-shell {
    position: relative;
    min-height: 560px;
    padding: clamp(26px, 5vw, 66px);
    overflow: hidden;
    color: var(--white);
    text-align: left;
    border-radius: var(--radius-large) var(--radius-large) 0 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(0, 113, 227, .78), transparent 25%),
        radial-gradient(circle at 78% 18%, rgba(157, 67, 255, .64), transparent 28%),
        radial-gradient(circle at 72% 82%, rgba(0, 216, 255, .30), transparent 30%),
        #000;
    box-shadow: 0 26px 90px rgba(0, 0, 0, .17);
    isolation: isolate;
}
.visual-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .52;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 95%);
}
.visual-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: 690px;
    margin: 0 auto 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-dark);
}
.visual-topbar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .34); }
.visual-topbar strong { margin-left: auto; color: #fff; font-size: .78rem; font-weight: 500; }
.workflow-card {
    display: flex;
    align-items: center;
    gap: 17px;
    width: min(100%, 690px);
    margin-inline: auto;
    padding: 19px 21px;
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    background: rgba(20, 20, 22, .65);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.workflow-card.active { border-color: rgba(108, 190, 255, .6); background: rgba(0, 113, 227, .23); }
.workflow-card strong { color: #fff; font-size: 1rem; }
.workflow-card small { display: block; margin-top: 3px; color: rgba(255, 255, 255, .62); }
.workflow-number {
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: .8rem;
    font-weight: 600;
}
.workflow-line { width: 1px; height: 20px; margin: 0 auto; background: rgba(255, 255, 255, .24); }
.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: min(100%, 690px);
    margin: 24px auto 0;
}
.metrics-row div {
    padding: 18px 12px;
    text-align: center;
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    background: rgba(20, 20, 22, .58);
    backdrop-filter: blur(18px);
}
.metrics-row strong, .metrics-row span { display: block; }
.metrics-row strong { color: #fff; font-size: 1.08rem; }
.metrics-row span { margin-top: 4px; color: rgba(255, 255, 255, .56); font-size: .72rem; }

.trust-strip { background: var(--surface); }
.trust-items {
    display: flex;
    justify-content: center;
    gap: 25px 42px;
    padding-block: 27px;
    overflow-x: auto;
    color: #6e6e73;
    font-size: .74rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Encabezados de sección */
.section-heading { max-width: 860px; margin: 0 auto 62px; text-align: center; }
.section-heading p { max-width: 720px; margin-inline: auto; font-size: clamp(1.05rem, 1.8vw, 1.32rem); line-height: 1.45; }

/* Tarjetas grandes tipo bento/producto */
.services-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.service-card {
    position: relative;
    min-height: 430px;
    padding: clamp(30px, 4vw, 52px);
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-large);
    background: var(--surface);
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 30px;
    margin-bottom: clamp(72px, 10vw, 130px);
    padding: 0 12px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(0, 113, 227, .09);
    font-size: .78rem;
    font-weight: 600;
}
.service-card h3 { max-width: 460px; }
.service-card p { max-width: 500px; min-height: auto; font-size: 1.04rem; }
.service-card ul {
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--border);
    list-style: none;
    color: #515154;
    font-size: .88rem;
}
.service-card li + li { margin-top: 8px; }
.service-card li::before { content: "↗"; margin-right: 9px; color: var(--blue); }
.service-card:nth-child(2),
.service-card:nth-child(5),
.service-card-wide {
    color: var(--white);
    background:
        radial-gradient(circle at 80% 10%, rgba(0, 113, 227, .48), transparent 32%),
        var(--dark-soft);
}
.service-card:nth-child(2) p,
.service-card:nth-child(5) p,
.service-card-wide p { color: rgba(255, 255, 255, .66); }
.service-card:nth-child(2) ul,
.service-card:nth-child(5) ul,
.service-card-wide ul { color: rgba(255, 255, 255, .78); border-color: var(--border-dark); }
.service-card:nth-child(2) .service-index,
.service-card:nth-child(5) .service-index,
.service-card-wide .service-index { color: #75baff; background: rgba(0, 113, 227, .18); }
.service-card-wide {
    grid-column: 1 / -1;
    min-height: 350px;
    display: grid;
    grid-template-columns: 90px minmax(0, 1.35fr) minmax(260px, .65fr);
    align-items: center;
    gap: 36px;
}
.service-card-wide .service-index { margin-bottom: 0; }
.service-card-wide p { margin-bottom: 0; }
.service-card-wide ul { margin: 0; padding: 0 0 0 30px; border-top: 0; border-left: 1px solid var(--border-dark); }

/* Sobre nosotros en fondo negro */
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(58px, 8vw, 112px); align-items: start; }
.about-grid .section-heading { margin: 0; text-align: left; }
.about-grid .section-heading h2 { max-width: 560px; }
.about-grid .eyebrow { color: #75baff; }
.about-copy { font-size: clamp(1.08rem, 1.65vw, 1.35rem); line-height: 1.5; }
.about-copy p { color: rgba(255, 255, 255, .62); }
.about-copy > p:first-child { margin-top: 0; color: #fff; font-size: clamp(1.3rem, 2vw, 1.72rem); letter-spacing: -.02em; }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 38px; }
.values-grid div { padding: 24px; border: 1px solid var(--border-dark); border-radius: var(--radius-medium); background: rgba(255, 255, 255, .06); }
.values-grid strong, .values-grid span { display: block; }
.values-grid strong { color: #fff; font-size: 1.05rem; }
.values-grid span { margin-top: 7px; color: rgba(255, 255, 255, .55); font-size: .88rem; }

/* Misión y visión */
.mission-section { padding-top: 24px; background: var(--surface); }
.mission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.statement-card {
    min-height: 430px;
    padding: clamp(32px, 4.5vw, 58px);
    border: 0;
    border-radius: var(--radius-large);
    background: #fff;
}
.statement-card:nth-child(2) { color: #fff; background: linear-gradient(145deg, #082d5b, #0071e3 70%, #2f94ff); }
.statement-card span { color: var(--blue); font-size: .84rem; font-weight: 600; }
.statement-card:nth-child(2) span { color: rgba(255, 255, 255, .74); }
.statement-card h2 { margin-top: clamp(90px, 12vw, 160px); font-size: clamp(2rem, 3.7vw, 3.55rem); }

/* Metodología */
.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.step {
    min-height: 310px;
    padding: 28px;
    border: 0;
    border-radius: var(--radius-medium);
    background: var(--surface);
}
.step > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 74px;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(0, 113, 227, .09);
    font-size: .82rem;
    font-weight: 600;
}
.step h3 { font-size: 1.55rem; }
.step p { margin-bottom: 0; }

/* Cobro */
.pricing-section { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(54px, 8vw, 110px); align-items: start; }
.pricing-grid .section-heading { margin: 0; text-align: left; }
.pricing-grid .section-heading p { margin-left: 0; }
.pricing-list { padding: 12px 32px; border-radius: var(--radius-large); background: #fff; }
.pricing-list > div { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 27px 0; border-bottom: 1px solid var(--border); }
.pricing-list > div:last-child { border-bottom: 0; }
.pricing-list span { color: var(--blue); font-size: .78rem; font-weight: 600; }
.pricing-list strong { display: block; color: var(--text); font-size: 1.06rem; }
.pricing-list p { margin: 5px 0 0; }

/* Contacto */
.contact-section { color: #fff; background: #000; }
.contact-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(54px, 8vw, 110px); align-items: start; }
.contact-copy h2 { max-width: 590px; }
.contact-copy > p { max-width: 540px; color: rgba(255, 255, 255, .62); font-size: 1.12rem; }
.contact-copy .eyebrow { color: #75baff; }
.contact-note { display: flex; flex-direction: column; gap: 4px; margin-top: 36px; padding-left: 18px; border-left: 2px solid var(--blue); }
.contact-note strong { color: #fff; }
.contact-note span { color: rgba(255, 255, 255, .55); }
.contact-form-wrap { padding: clamp(24px, 4vw, 42px); border-radius: var(--radius-large); background: #fff; box-shadow: 0 30px 90px rgba(0, 0, 0, .28); }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: #1d1d1f; font-size: .84rem; font-weight: 600; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 15px;
    color: #1d1d1f;
    background: var(--surface);
    border: 1px solid transparent;
    border-radius: 13px;
    outline: none;
    font-weight: 400;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, .12);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.checkbox-label { display: grid !important; grid-template-columns: auto 1fr; align-items: start; gap: 11px !important; color: #6e6e73 !important; font-weight: 400 !important; }
.checkbox-label input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.honeypot { position: absolute; left: -9999px; }
.alert { margin-bottom: 18px; padding: 14px 16px; border-radius: 13px; font-size: .92rem; }
.alert-success { color: var(--success); background: #ebfbee; border: 1px solid #b2f2bb; }
.alert-error { color: var(--danger); background: #fff5f5; border: 1px solid #ffc9c9; }

/* Footer */
.site-footer { padding: 58px 0 24px; color: var(--text); background: var(--surface); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .8fr; gap: 50px; }
.footer-grid h3 { font-size: .74rem; font-weight: 600; letter-spacing: 0; }
.footer-grid a:not(.brand), .footer-grid p { display: block; margin: 8px 0; color: var(--muted); font-size: .8rem; }
.footer-grid a:not(.brand):hover { color: var(--blue); }
.footer-brand { margin-bottom: 16px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--border); color: #86868b; font-size: .72rem; }

/* Accesibilidad y animación */
:focus-visible { outline: 3px solid rgba(0, 113, 227, .5); outline-offset: 3px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .65, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Tablet */
@media (max-width: 1068px) {
    .container { width: min(calc(100% - 40px), var(--container)); }
    .services-grid { gap: 16px; }
    .service-card { min-height: 390px; }
    .service-card-wide { grid-template-columns: 72px 1fr 1fr; }
    .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .step { min-height: 270px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* Menú móvil y tablet vertical */
@media (max-width: 834px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .menu-toggle { display: block; margin-left: auto; }
    .main-nav {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-height: calc(100dvh - var(--nav-height));
        padding: 28px 24px 44px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        color: var(--text);
        background: rgba(250, 250, 252, .98);
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    }
    .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
    .main-nav a { padding: 15px 4px; border-bottom: 1px solid var(--border); font-size: 1.55rem; font-weight: 600; letter-spacing: -.03em; }
    .main-nav .button { min-height: 48px; margin-top: 22px; padding-inline: 24px; border-bottom: 0; font-size: 1rem; }
    .hero-grid { gap: 50px; }
    .visual-shell { min-height: 520px; }
    .about-grid, .pricing-grid, .contact-grid { grid-template-columns: 1fr; gap: 54px; }
    .about-grid .section-heading, .pricing-grid .section-heading { max-width: 760px; text-align: center; margin-inline: auto; }
    .pricing-grid .section-heading p { margin-inline: auto; }
    .mission-grid { grid-template-columns: 1fr; }
    .statement-card { min-height: 360px; }
}

/* Teléfono */
@media (max-width: 734px) {
    :root { --radius-large: 24px; --radius-medium: 18px; }
    .container { width: min(calc(100% - 24px), var(--container)); }
    .section { padding: 76px 0; }
    h1 { font-size: clamp(2.7rem, 13vw, 4.15rem); }
    h2 { font-size: clamp(2.15rem, 10vw, 3.35rem); }
    .hero { padding-top: 64px; padding-bottom: 12px; }
    .hero-lead { font-size: 1.15rem; }
    .hero-actions { display: grid; width: min(100%, 330px); margin-inline: auto; }
    .hero-actions .button { width: 100%; }
    .hero-points { display: grid; justify-items: center; gap: 8px; }
    .hero-grid { gap: 42px; }
    .visual-shell { min-height: auto; padding: 20px 14px 28px; border-radius: 24px 24px 0 0; }
    .visual-topbar { padding-inline: 4px; }
    .workflow-card { gap: 12px; padding: 15px; }
    .workflow-number { flex-basis: 34px; width: 34px; height: 34px; }
    .workflow-card strong { font-size: .92rem; }
    .workflow-card small { font-size: .73rem; }
    .metrics-row { grid-template-columns: 1fr; }
    .trust-items { justify-content: flex-start; padding-inline: 4px; }
    .section-heading { margin-bottom: 42px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: auto; padding: 30px; }
    .service-index { margin-bottom: 70px; }
    .service-card-wide { grid-column: auto; display: block; min-height: auto; }
    .service-card-wide .service-index { margin-bottom: 70px; }
    .service-card-wide ul { margin-top: 24px; padding: 20px 0 0; border-top: 1px solid var(--border-dark); border-left: 0; }
    .values-grid, .form-row, .steps-grid { grid-template-columns: 1fr; }
    .statement-card { min-height: 340px; padding: 30px; }
    .statement-card h2 { margin-top: 95px; }
    .step { min-height: auto; }
    .step > span { margin-bottom: 52px; }
    .pricing-list { padding-inline: 22px; }
    .contact-form-wrap { padding: 22px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 390px) {
    .container { width: min(calc(100% - 20px), var(--container)); }
    .service-card, .statement-card { padding: 26px; }
    .contact-form-wrap { padding: 18px; }
}

/* Páginas individuales de servicios */
.main-nav a[aria-current="page"] { color: var(--blue); }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--blue);
    font-size: .96rem;
    font-weight: 600;
}
.service-link span { transition: transform .2s ease; }
.service-link:hover span { transform: translateX(4px); }
.service-card { display: flex; flex-direction: column; }
.service-card:nth-child(2) .service-link,
.service-card:nth-child(5) .service-link { color: #75baff; }

.services-page-hero,
.service-hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 10%, rgba(0, 113, 227, .14), transparent 28%),
        radial-gradient(circle at 15% 70%, rgba(113, 63, 255, .10), transparent 30%),
        #fff;
}
.services-page-hero { padding-top: clamp(96px, 12vw, 170px); }
.services-page-hero-inner,
.service-hero-inner { text-align: center; }
.services-page-hero-inner { max-width: 1040px; }
.services-page-hero h1 { font-size: clamp(3.3rem, 7vw, 6.5rem); }
.services-page-hero .hero-lead { max-width: 830px; }

.services-catalog-section { background: var(--surface); }
.services-directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.service-directory-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding: clamp(30px, 4vw, 50px);
    border-radius: var(--radius-large);
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
    transition: transform .3s ease, box-shadow .3s ease;
}
.service-directory-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.service-directory-card:nth-child(3n + 2) {
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(0, 113, 227, .55), transparent 32%),
        var(--dark-soft);
}
.service-directory-card:nth-child(3n + 2) p { color: rgba(255, 255, 255, .66); }
.service-directory-card:nth-child(3n + 2) .service-link { color: #75baff; }
.service-directory-card .service-index { margin-bottom: 46px; }
.directory-eyebrow { margin-bottom: 12px; color: var(--blue); font-size: .82rem; font-weight: 600; }
.service-directory-card:nth-child(3n + 2) .directory-eyebrow { color: #75baff; }
.service-directory-card h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
.service-directory-card p { max-width: 540px; font-size: 1.04rem; }
.directory-actions { margin-top: auto; }

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 70px;
    color: var(--muted);
    font-size: .78rem;
}
.breadcrumbs a:hover { color: var(--blue); }
.service-hero { padding-top: 60px; }
.service-hero-copy { max-width: 1050px; margin-inline: auto; }
.service-page-index {
    display: block;
    margin: 0 auto 22px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
}
.service-hero h1 { font-size: clamp(3.15rem, 7vw, 6.4rem); }
.service-hero .hero-lead { max-width: 850px; }
.service-promise {
    max-width: 980px;
    margin: clamp(70px, 10vw, 130px) auto 0;
    padding: clamp(30px, 5vw, 58px);
    text-align: left;
    border-radius: var(--radius-large);
    color: #fff;
    background:
        radial-gradient(circle at 82% 12%, rgba(0, 113, 227, .68), transparent 36%),
        #000;
}
.service-promise span { color: #75baff; font-size: .82rem; font-weight: 600; }
.service-promise p {
    max-width: 850px;
    margin: 26px 0 0;
    color: #fff;
    font-size: clamp(1.65rem, 3.4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.04em;
}

.split-heading-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(55px, 8vw, 110px);
    align-items: start;
}
.split-heading-grid .section-heading { margin: 0; text-align: left; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.check-card {
    min-height: 190px;
    padding: 26px;
    border-radius: var(--radius-medium);
    background: var(--surface);
}
.check-card > span {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 40px;
    border-radius: 50%;
    color: var(--blue);
    background: rgba(0, 113, 227, .10);
    font-weight: 700;
}
.check-card p { margin: 0; color: var(--text); font-size: 1.04rem; font-weight: 550; }

.service-scope-section .eyebrow { color: #75baff; }
.service-scope-section .section-heading p { color: rgba(255, 255, 255, .6); }
.scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.scope-card {
    padding: clamp(30px, 4vw, 50px);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, .06);
}
.scope-card-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 38px; }
.scope-card-heading span {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #75baff;
    background: rgba(0, 113, 227, .18);
    font-size: .78rem;
    font-weight: 600;
}
.scope-card-heading h3 { margin: 0; }
.feature-list,
.plan-features { margin: 0; padding: 0; list-style: none; }
.feature-list li {
    position: relative;
    padding: 16px 0 16px 28px;
    color: rgba(255, 255, 255, .74);
    border-bottom: 1px solid var(--border-dark);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #75baff;
    font-weight: 700;
}

.service-process-section { background: var(--surface); }
.service-process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.service-process-step {
    min-height: 300px;
    padding: 28px;
    border-radius: var(--radius-medium);
    background: #fff;
}
.service-process-step > span {
    display: inline-block;
    margin-bottom: 80px;
    color: var(--blue);
    font-size: .8rem;
    font-weight: 600;
}
.service-process-step h3 { font-size: 1.55rem; }
.service-process-step p { margin-bottom: 0; }

.service-plans-section { background: #fff; }
.plans-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 610px;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: #fff;
}
.plan-card-featured {
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 82% 10%, rgba(0, 113, 227, .70), transparent 34%),
        #0c0c0d;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .16);
}
.plan-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #fff;
    background: var(--blue);
    font-size: .7rem;
    font-weight: 600;
}
.plan-card h3 { margin-top: 22px; font-size: 1.8rem; }
.plan-card-featured h3 { color: #fff; }
.plan-description { min-height: 74px; }
.plan-card-featured .plan-description { color: rgba(255, 255, 255, .62); }
.plan-price { margin: 30px 0; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan-card-featured .plan-price { border-color: var(--border-dark); }
.plan-price strong { display: block; font-size: clamp(1.75rem, 2.7vw, 2.5rem); line-height: 1.08; letter-spacing: -.04em; }
.plan-price span { display: block; margin-top: 8px; color: var(--muted); font-size: .8rem; }
.plan-card-featured .plan-price span { color: rgba(255, 255, 255, .55); }
.plan-features { margin-bottom: 34px; }
.plan-features li {
    position: relative;
    padding: 10px 0 10px 24px;
    color: #515154;
    font-size: .92rem;
}
.plan-card-featured .plan-features li { color: rgba(255, 255, 255, .78); }
.plan-features li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.plan-card-featured .plan-features li::before { color: #75baff; }
.plan-card .button { width: 100%; margin-top: auto; }
.plan-card-featured .button { border-color: #fff; color: #000; background: #fff; }
.plan-card-featured .button:hover { color: #fff; background: transparent; }
.billing-note {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 30px;
    margin-top: 24px;
    padding: 30px 34px;
    border-radius: var(--radius-medium);
    background: var(--surface);
}
.billing-note strong { font-size: 1rem; }
.billing-note p { margin: 0; }

.service-final-cta { color: #fff; background: #000; }
.service-final-cta-inner { max-width: 950px; text-align: center; }
.service-final-cta .eyebrow { color: #75baff; }
.service-final-cta h2 { max-width: 900px; margin-inline: auto; }
.service-final-cta p { max-width: 720px; margin: 0 auto; color: rgba(255, 255, 255, .62); font-size: 1.15rem; }
.service-final-cta .button-secondary { color: #75baff; border-color: #75baff; }
.service-final-cta .button-secondary:hover { color: #000; background: #75baff; }

@media (max-width: 1068px) {
    .plans-grid { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
    .plan-card { min-height: auto; }
    .service-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 834px) {
    .services-directory-grid,
    .split-heading-grid,
    .scope-grid { grid-template-columns: 1fr; }
    .split-heading-grid .section-heading { text-align: center; margin-inline: auto; }
    .billing-note { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 734px) {
    .services-page-hero,
    .service-hero { padding-top: 64px; }
    .breadcrumbs { justify-content: flex-start; margin-bottom: 48px; }
    .service-hero-inner,
    .service-hero-copy { text-align: left; }
    .service-hero .hero-actions { margin-left: 0; }
    .service-page-index { margin-left: 0; }
    .service-promise { margin-top: 70px; padding: 28px; }
    .check-grid,
    .service-process-grid { grid-template-columns: 1fr; }
    .check-card { min-height: auto; }
    .check-card > span { margin-bottom: 30px; }
    .scope-card { padding: 28px; }
    .service-process-step { min-height: auto; }
    .service-process-step > span { margin-bottom: 56px; }
    .service-directory-card { min-height: auto; padding: 30px; }
    .service-directory-card .service-index { margin-bottom: 60px; }
    .plan-card { padding: 28px; }
    .plan-badge { position: static; align-self: flex-start; margin-bottom: 18px; }
    .plan-card h3 { margin-top: 0; }
    .billing-note { padding: 24px; }
}

@media (min-width: 735px) {
    .services-grid .service-card:last-child,
    .services-directory-grid .service-directory-card:last-child {
        grid-column: 1 / -1;
        min-height: 350px;
    }
}
