﻿:root {
    --ink: #121212;
    --muted: #666b73;
    --line: #e8e4df;
    --paper: #fbfaf7;
    --soft: #f3efe9;
    --dark: #101010;
    --accent: #fe5b2c;
    --accent-2: #ffbc00;
    --green: #0f7f5f;
    --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

picture { display: contents; }

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    font-weight: 900;
    z-index: 100;
    border-radius: 0 0 6px 0;
}

.skip-link:focus {
    left: 0;
    outline: 3px solid var(--accent-2);
    outline-offset: 2px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 84px;
    padding: 16px clamp(24px, 4vw, 60px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(18, 18, 18, .08);
    backdrop-filter: blur(16px);
}

.brand, .main-nav, .actions, .footer nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    min-width: 270px;
    font-weight: 900;
    font-size: 25px;
    color: #101820;
    letter-spacing: 0;
}

.brand img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 8px;
    background: #f4f8fb;
    padding: 5px;
}

.brand span {
    line-height: 1;
}

.brand img, .whatsapp img { animation: pulseLogo 4s ease-in-out infinite; }

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

.main-nav a, .client-link {
    font-weight: 900;
    font-size: 16px;
    color: #15191d;
}

.main-nav a {
    position: relative;
    padding: 12px 4px;
    letter-spacing: 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.main-nav a:hover, .client-link:hover { color: var(--accent); }

.client-link {
    min-width: 136px;
    text-align: center;
    border: 1px solid rgba(16, 24, 32, .88);
    border-radius: 6px;
    padding: 13px 18px;
    transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}

.client-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

/* Botón Muninfor — variante rellena que destaca al lado del client-link outlined */
.muninfor-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.muninfor-link:hover {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* Logo Muninfor — técnica mask: el PNG define la forma, el color sigue al texto */
.muninfor-logo {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: currentColor;
    -webkit-mask: url('/assets/leopardsync/muninfor-logo.png') no-repeat center / contain;
    mask: url('/assets/leopardsync/muninfor-logo.png') no-repeat center / contain;
    flex-shrink: 0;
    transition: transform .22s ease;
}

.muninfor-link:hover .muninfor-logo {
    transform: rotate(-8deg) scale(1.08);
}

.hero {
    min-height: calc(100vh - 82px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(28px, 6vw, 88px);
    align-items: center;
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 32px);
}

.hero.compact {
    min-height: 55vh;
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-copy h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(42px, 7vw, 92px);
    line-height: .92;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--muted);
}

.compact .hero-copy { display: grid; justify-items: center; }

.eyebrow {
    margin: 0 0 16px !important;
    color: var(--accent) !important;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
    font-size: 13px !important;
}

.hero-media {
    position: relative;
    min-height: 360px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 45%, #2b2b2b, #111 70%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 90px rgba(0, 0, 0, .16);
}

.hero-media img { max-height: 680px; object-fit: contain; }
.hero-home .hero-media img { animation: floatImage 5.5s ease-in-out infinite; filter: drop-shadow(0 28px 44px rgba(0, 0, 0, .24)); }
.hero-security .hero-media img { width: 100%; height: 620px; object-fit: cover; }

.original-home-hero {
    position: relative;
    max-width: none;
    min-height: calc(100vh - 82px);
    padding: clamp(44px, 6vw, 92px) max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
    color: #fff;
    background:
        linear-gradient(135deg, rgba(56, 201, 244, .12), transparent 34%),
        linear-gradient(180deg, #151515 0%, #0e0e0e 100%);
    overflow: hidden;
}

.original-home-hero::before {
    content: "";
    position: absolute;
    inset: 11% 6% auto auto;
    width: min(44vw, 620px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.original-home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 201, 244, .9), transparent);
}

.original-home-hero .hero-copy {
    position: relative;
    z-index: 2;
}

.original-home-hero .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(52px, 7.8vw, 116px);
    line-height: .88;
    text-wrap: balance;
}

.original-home-hero .hero-copy p {
    color: rgba(255, 255, 255, .76);
}

.original-home-hero .button.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 520px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 800;
}

.hero-trust img {
    width: 82px;
    padding: 8px;
    border-radius: 6px;
    background: #fff;
}

.original-hero-media {
    isolation: isolate;
    min-height: min(72vh, 720px);
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.original-hero-media::before,
.original-hero-media::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    z-index: -1;
}

.original-hero-media::before {
    inset: 8% 4% 8% 14%;
    animation: slowSpin 18s linear infinite;
}

.original-hero-media::after {
    inset: 18% 13% 18% 2%;
    transform: rotate(18deg);
    animation: slowSpin 24s linear reverse infinite;
}

.hero-home .original-hero-media .hero-leopard {
    width: min(44vw, 610px);
    max-height: 78vh;
    object-fit: contain;
    transform-origin: center bottom;
    animation: heroLeopard 6s ease-in-out infinite;
    filter: drop-shadow(0 34px 54px rgba(0, 0, 0, .38));
}

.hero-home .original-hero-media .hero-mark {
    position: absolute;
    top: 12%;
    left: 10%;
    width: 70px;
    z-index: 3;
    animation: floatMark 4.8s ease-in-out infinite;
}

.hero-home .original-hero-media .hero-chip {
    position: absolute;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .36);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .25);
    z-index: 3;
}

.chip-one {
    right: 7%;
    top: 18%;
    animation: floatChipOne 5.6s ease-in-out infinite;
}

.chip-two {
    left: 8%;
    bottom: 24%;
    animation: floatChipTwo 5.2s ease-in-out infinite;
}

.hero-caption {
    position: absolute;
    right: 0;
    bottom: 9%;
    z-index: 4;
    max-width: 300px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #fff;
    background: rgba(16, 16, 16, .72);
    backdrop-filter: blur(14px);
    font-weight: 900;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .25);
    animation: captionRise 5.8s ease-in-out infinite;
}

.home-mosaic-hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, 1fr);
    gap: 18px;
    max-width: 1180px;
    min-height: auto;
    margin: 0 auto;
    padding: 24px 20px 42px;
}

.mosaic-copy-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 620px;
    padding: clamp(36px, 6vw, 78px);
    border-radius: 30px;
    color: #fff;
    background: #062644;
    isolation: isolate;
}

.mosaic-copy-card::before {
    content: "";
    position: absolute;
    inset: auto -18% -18% auto;
    width: 54%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 201, 244, .16), transparent 64%);
    z-index: -1;
    animation: captionRise 7s ease-in-out infinite;
}

.mosaic-copy-card h1 {
    max-width: 500px;
    margin: 28px 0 0;
    font-size: clamp(46px, 5.4vw, 72px);
    line-height: .96;
    letter-spacing: 0;
}

.mosaic-copy-card p {
    max-width: 480px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(16px, 1.35vw, 18px);
    font-weight: 700;
}

.mosaic-pill {
    width: fit-content;
    min-width: 220px;
    padding: 10px 21px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    color: #fff;
    background: rgba(4, 25, 46, .62);
    font-weight: 900;
    font-size: 13px;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.mosaic-pill:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 201, 244, .9);
    background: rgba(56, 201, 244, .22);
}

.mosaic-spark {
    width: 46px;
    margin: 0 0 -2px -26px;
    filter: brightness(1.1) saturate(1.1);
    animation: floatMark 4.6s ease-in-out infinite;
}

.mosaic-watermark {
    position: absolute;
    right: -46px;
    bottom: -62px;
    width: min(30%, 190px);
    opacity: .055;
    filter: none;
    pointer-events: none;
    animation: none !important;
}

.mosaic-right {
    display: grid;
    grid-template-rows: 1fr;
    gap: 18px;
    align-content: stretch;
}

.cyber-card {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 122, 255, .32), transparent 26%),
        radial-gradient(circle at 78% 18%, rgba(56, 201, 244, .18), transparent 28%),
        linear-gradient(135deg, #06141c 0%, #0d2331 46%, #05090d 100%);
    border: 1px solid rgba(56, 201, 244, .18);
    box-shadow: inset 0 0 60px rgba(0, 122, 255, .12), 0 22px 60px rgba(0, 0, 0, .16);
}

.cyber-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, .16) 45%, transparent 56%),
        radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(56, 201, 244, .12) 39% 40%, transparent 41%);
    transform: translateX(-120%);
    animation: glassSweep 4.8s ease-in-out infinite;
}

.network-lines {
    position: absolute;
    inset: 0;
    opacity: .72;
    background-image:
        linear-gradient(28deg, transparent 0 46%, rgba(156, 103, 168, .45) 47% 48%, transparent 49%),
        linear-gradient(151deg, transparent 0 46%, rgba(58, 218, 238, .22) 47% 48%, transparent 49%),
        radial-gradient(circle at 12% 22%, #9b6ca8 0 2px, transparent 3px),
        radial-gradient(circle at 31% 63%, #9b6ca8 0 2px, transparent 3px),
        radial-gradient(circle at 58% 28%, #9b6ca8 0 2px, transparent 3px),
        radial-gradient(circle at 78% 70%, #9b6ca8 0 2px, transparent 3px);
    background-size: 145px 145px, 170px 170px, 170px 170px, 150px 150px, 190px 190px, 160px 160px;
    animation: networkMove 14s linear infinite;
}

.scan-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0 42%, rgba(56, 201, 244, .28) 50%, transparent 58%);
    transform: translateY(-100%);
    animation: scanDown 4s ease-in-out infinite;
    mix-blend-mode: screen;
}

.orbital-ring {
    position: absolute;
    left: 50%;
    top: 51%;
    border: 1px solid rgba(56, 201, 244, .26);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    pointer-events: none;
}

.ring-one {
    width: 310px;
    height: 190px;
    animation: orbitOne 9s linear infinite;
}

.ring-two {
    width: 240px;
    height: 300px;
    animation: orbitTwo 12s linear infinite reverse;
}

.particle-field i {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #38c9f4;
    box-shadow: 0 0 16px #38c9f4;
    opacity: .78;
    animation: particleFloat 5.5s ease-in-out infinite;
}

.particle-field i:nth-child(1) { left: 16%; top: 24%; animation-delay: .1s; }
.particle-field i:nth-child(2) { left: 34%; top: 70%; animation-delay: .9s; }
.particle-field i:nth-child(3) { left: 62%; top: 18%; animation-delay: 1.4s; }
.particle-field i:nth-child(4) { left: 82%; top: 62%; animation-delay: 2.1s; }
.particle-field i:nth-child(5) { left: 72%; top: 36%; animation-delay: 2.8s; }
.particle-field i:nth-child(6) { left: 22%; top: 48%; animation-delay: 3.3s; }
}

.lock-visual {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(34vw, 230px);
    height: 150px;
    transform: translate(-50%, -36%);
    border: 7px solid rgba(56, 201, 244, .9);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(56, 201, 244, .08), rgba(0, 122, 255, .05));
    box-shadow: 0 0 30px rgba(56, 201, 244, .75), inset 0 0 34px rgba(56, 201, 244, .2);
    animation: lockGlow 3.6s ease-in-out infinite;
}

.lock-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% - 5px);
    width: 126px;
    height: 98px;
    transform: translateX(-50%);
    border: 7px solid rgba(56, 201, 244, .9);
    border-bottom: 0;
    border-radius: 90px 90px 0 0;
    box-shadow: 0 0 24px rgba(56, 201, 244, .58);
}

.lock-visual span {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 42px;
    height: 42px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(56, 201, 244, .96);
    box-shadow: 0 0 28px rgba(56, 201, 244, .95);
}

.lock-visual span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 34px;
    width: 22px;
    height: 56px;
    transform: translateX(-50%);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: rgba(56, 201, 244, .96);
}

.holo-stage {
    position: absolute;
    inset: 28px;
    display: grid;
    place-items: center;
    perspective: 900px;
}

.holo-stage::before {
    content: "";
    position: absolute;
    width: min(72%, 360px);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(56, 201, 244, .28), transparent 58%),
        conic-gradient(from 0deg, transparent, rgba(56, 201, 244, .45), transparent, rgba(0, 122, 255, .42), transparent);
    filter: blur(.2px);
    animation: holoSpin 10s linear infinite;
}

.holo-stage::after {
    content: "";
    position: absolute;
    width: min(64%, 320px);
    height: 42px;
    bottom: 14%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(56, 201, 244, .34), transparent 70%);
    filter: blur(10px);
    animation: shadowPulse 3.8s ease-in-out infinite;
}

.shield-core {
    position: relative;
    z-index: 2;
    width: min(42vw, 220px);
    aspect-ratio: .82;
    display: grid;
    place-items: center;
    clip-path: polygon(50% 0, 92% 17%, 82% 74%, 50% 100%, 18% 74%, 8% 17%);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .02)),
        linear-gradient(180deg, rgba(56, 201, 244, .92), rgba(0, 122, 255, .72));
    box-shadow:
        0 0 38px rgba(56, 201, 244, .72),
        inset 0 0 36px rgba(255, 255, 255, .18);
    animation: shieldFloat 4.6s ease-in-out infinite;
}

.shield-core::before {
    content: "";
    position: absolute;
    inset: 10px;
    clip-path: inherit;
    border: 1px solid rgba(255, 255, 255, .42);
}

.shield-core::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, .42) 48%, transparent 58%);
    transform: translateX(-120%);
    animation: shieldSweep 3.6s ease-in-out infinite;
}

.shield-lock {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 58px;
    border: 6px solid #fff;
    border-radius: 16px;
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, .7));
}

.shield-lock::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% - 4px);
    width: 46px;
    height: 38px;
    transform: translateX(-50%);
    border: 6px solid #fff;
    border-bottom: 0;
    border-radius: 34px 34px 0 0;
}

.shield-lock span {
    position: absolute;
    left: 50%;
    top: 48%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
}

.shield-lock span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 13px;
    width: 8px;
    height: 20px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #fff;
}

.holo-card {
    position: absolute;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    color: #e9fbff;
    background: rgba(5, 24, 36, .72);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
    font-size: 13px;
    font-weight: 900;
}

.holo-card span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38c9f4;
    box-shadow: 0 0 14px #38c9f4;
}

.card-a {
    left: 7%;
    top: 18%;
    animation: cardFloatA 4.8s ease-in-out infinite;
}

.card-b {
    right: 7%;
    top: 25%;
    animation: cardFloatB 5.4s ease-in-out infinite;
}

.card-c {
    right: 13%;
    bottom: 25%;
    animation: cardFloatC 5s ease-in-out infinite;
}

.cyber-label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    padding: 9px 13px;
    border: 1px solid rgba(56, 201, 244, .28);
    border-radius: 999px;
    color: #dff8ff;
    background: rgba(3, 18, 28, .68);
    backdrop-filter: blur(12px);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.incibe-card {
    align-self: start;
    width: 100%;
    min-height: 176px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e3f2f8, #f6fbfd);
    color: #0a0f12;
    text-align: left;
    border: 1px solid rgba(0, 122, 255, .1);
    box-shadow: 0 18px 50px rgba(6, 38, 68, .08);
    animation: captionRise 6.4s ease-in-out infinite;
}

.incibe-card p {
    margin: 0;
    max-width: 420px;
    font-size: clamp(18px, 1.8vw, 23px);
    line-height: .98;
    font-weight: 900;
}

.certification-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.certification-row img {
    width: 74px;
    flex: 0 0 auto;
    mix-blend-mode: multiply;
}

.protect-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding-left: 20px;
    border-left: 1px solid rgba(6, 38, 68, .14);
    color: #67727b;
    font-size: 23px;
    line-height: .78;
    font-weight: 900;
}

.protect-brand em {
    color: #e83b3f;
    font-style: normal;
}

.protect-brand i {
    position: relative;
    width: 38px;
    height: 42px;
    flex: 0 0 auto;
    clip-path: polygon(50% 0, 96% 18%, 82% 82%, 50% 100%, 18% 82%, 4% 18%);
    background: linear-gradient(135deg, #6f7b84 0 45%, #f1c900 45% 58%, #6f7b84 58%);
}

.protect-brand i::before,
.protect-brand i::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #e83b3f;
}

.protect-brand i::before {
    width: 7px;
    height: 7px;
    left: 11px;
    bottom: 12px;
}

.protect-brand i::after {
    width: 6px;
    height: 6px;
    right: 9px;
    top: 14px;
    box-shadow: -11px 12px 0 #e83b3f;
}

.trust-combo {
    max-width: var(--max);
    margin: -12px auto 0;
    padding: 0 clamp(18px, 4vw, 32px) clamp(34px, 5vw, 58px);
    display: grid;
    justify-items: end;
    gap: 26px;
}

.trust-single {
    max-width: 960px;
    margin: 10px auto 0;
    padding: clamp(30px, 5vw, 58px) clamp(24px, 6vw, 68px);
    border-radius: 28px;
    background: #dcecf5;
    text-align: center;
    box-shadow: 0 18px 54px rgba(6, 38, 68, .08);
}

.trust-single h2 {
    max-width: 760px;
    margin: 0 auto 26px;
    color: #090f14;
    font-size: clamp(18px, 2.3vw, 24px);
    line-height: .98;
    font-weight: 900;
}

.trust-single-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    gap: clamp(22px, 5vw, 76px);
}

.trust-card {
    width: min(470px, 100%);
    padding: 20px 24px;
    border-radius: 18px;
    background: #edf8fd;
    border: 1px solid rgba(0, 122, 255, .16);
    box-shadow: 0 20px 58px rgba(6, 38, 68, .08);
}

.trust-card p {
    max-width: 390px;
    margin: 0 0 14px;
    color: #101820;
    font-size: clamp(18px, 2vw, 21px);
    line-height: .95;
    font-weight: 900;
}

.trust-card-logos {
    display: flex;
    align-items: center;
    gap: 18px;
}

.trust-card-logos img {
    width: 48px;
    mix-blend-mode: multiply;
}

.trust-strip {
    width: 100%;
    min-height: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 22px;
    padding: 24px clamp(26px, 6vw, 74px);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 20px 70px rgba(6, 38, 68, .05);
}

.trust-leopard {
    width: clamp(88px, 10vw, 128px);
}

.trust-incibe {
    width: clamp(112px, 14vw, 170px);
}

.protect-brand.large {
    font-size: clamp(25px, 3vw, 38px);
}

.protect-brand.large i {
    width: clamp(44px, 5vw, 62px);
    height: clamp(48px, 5.5vw, 68px);
}

.about-shield {
    max-width: 1260px;
    margin: 0 auto;
    padding: clamp(72px, 8vw, 112px) clamp(18px, 4vw, 28px) clamp(62px, 8vw, 104px);
    display: grid;
    grid-template-columns: minmax(230px, .82fr) minmax(340px, 1.05fr) minmax(260px, .86fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: start;
    color: #062644;
}

.about-heading .eyebrow {
    margin: 0 0 24px;
    color: #062644;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-heading h2 {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(30px, 3.35vw, 44px);
    line-height: 1.02;
    letter-spacing: 0;
    color: #062644;
}

.about-story {
    padding-top: 12px;
    font-size: clamp(16px, 1.45vw, 18px);
    line-height: 1.5;
    color: #526a7d;
}

.about-years {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: end;
    gap: 10px;
    margin-bottom: 12px;
    color: #062644;
}

.about-years span {
    padding-bottom: 18px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    font-weight: 900;
}

.about-years strong {
    font-size: clamp(96px, 11vw, 142px);
    line-height: .78;
    letter-spacing: 0;
}

.about-years em {
    align-self: start;
    padding-top: 10px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    font-style: normal;
    color: #062644;
}

.about-years,
.experience-badge strong,
.pricing-showcase-badge strong {
    transform-origin: center;
}

.about-story p {
    margin: 0 0 18px;
    max-width: 46ch;
}

.about-story a {
    color: #062644;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.about-signature {
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(6, 38, 68, .14);
    display: grid;
    grid-template-columns: 76px 1px 1fr;
    align-items: center;
    gap: 22px;
}

.about-signature img,
.about-signature picture > img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.about-signature span {
    display: block;
    width: 1px;
    height: 74px;
    background: rgba(6, 38, 68, .14);
}

.about-signature p {
    margin: 0;
    color: #526a7d;
    font-size: 16px;
    line-height: 1.22;
}

.about-signature strong {
    display: block;
    color: #062644;
    font-size: 18px;
    line-height: 1.15;
}

.about-photo {
    margin: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 28px 70px rgba(6, 38, 68, .16);
}

.about-photo img,
.about-photo picture > img {
    width: 100%;
    height: clamp(420px, 40vw, 500px);
    object-fit: cover;
    object-position: 67% center;
    filter: saturate(.94) contrast(.96);
    transition: transform .7s ease, filter .7s ease;
}

.about-photo:hover img,
.about-photo:hover picture > img {
    transform: scale(1.045);
    filter: saturate(1) contrast(1);
}

.subpage-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, .8fr);
    gap: clamp(30px, 6vw, 82px);
    align-items: center;
    max-width: var(--max);
    min-height: 56vh;
    margin: 0 auto;
    padding: clamp(46px, 6vw, 76px) clamp(18px, 4vw, 32px);
}

.subpage-hero .hero-copy h1 {
    max-width: 680px;
    font-size: clamp(40px, 5vw, 68px);
    line-height: .98;
}

.subpage-hero .hero-copy p {
    max-width: 600px;
}

.subpage-visual {
    position: relative;
    min-height: 330px;
    border-radius: 8px;
    overflow: hidden;
}

.visual-main {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 8px;
}

.visual-badge,
.mini-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .16);
}

.visual-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 10px 16px;
}

.visual-badge img,
.mini-logo img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.pricing-panel,
.contact-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    background:
        radial-gradient(circle at 90% 8%, rgba(56, 201, 244, .2), transparent 34%),
        linear-gradient(145deg, #111, #202020);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.contact-panel {
    align-items: center;
    justify-content: center;
    min-height: 340px;
    text-align: center;
    background:
        radial-gradient(circle at 82% 12%, rgba(56, 201, 244, .34), transparent 34%),
        linear-gradient(145deg, #0e75b8 0%, #0b4f86 100%);
    color: #fff;
    border: 1px solid rgba(56, 201, 244, .22);
    box-shadow: 0 20px 58px rgba(6, 38, 68, .14);
    overflow: hidden;
}

.contact-panel::before {
    content: "";
    position: absolute;
    inset: -40% auto auto -30%;
    width: 90%;
    height: 90%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: rotate(18deg);
    animation: glassSweep 6s ease-in-out infinite;
}

.contact-panel .mini-logo {
    background: #fff;
    color: #101820;
    box-shadow: 0 12px 32px rgba(6, 38, 68, .1);
}

.contact-panel p,
.contact-panel span {
    color: rgba(255, 255, 255, .78);
}

.contact-panel a {
    max-width: 100%;
    color: #062644;
    overflow-wrap: anywhere;
}

.pricing-panel .mini-logo,
.contact-panel .mini-logo {
    padding: 8px 14px 8px 8px;
}

.pricing-preview span,
.pricing-preview small {
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
}

.contact-panel span,
.contact-panel p {
    color: rgba(255, 255, 255, .78);
    font-weight: 850;
}

.pricing-preview strong {
    display: block;
    margin: 8px 0;
    font-size: clamp(74px, 10vw, 126px);
    line-height: .9;
}

.pricing-preview small {
    display: block;
    max-width: 340px;
    font-size: 16px;
}

.plan-bars {
    display: grid;
    gap: 12px;
}

.plan-bars i {
    display: block;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, .28));
}

.plan-bars i:nth-child(2) { width: 78%; }
.plan-bars i:nth-child(3) { width: 56%; }

.pricing-panel a,
.contact-panel a {
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1;
    font-weight: 900;
}

.contact-panel a {
    color: #fff;
}

.contact-panel > * {
    position: relative;
    z-index: 1;
}

.contact-panel-items {
    width: 100%;
    display: grid;
    gap: 12px;
}

.contact-panel-items a,
.contact-panel-items div {
    display: grid;
    gap: 5px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    text-align: left;
    backdrop-filter: blur(10px);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.contact-panel-items a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .34);
}

.contact-panel-items span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.contact-panel-items strong {
    color: #fff;
    font-size: clamp(18px, 2.1vw, 28px);
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.hero-plain {
    min-height: 64vh;
    background: var(--dark);
    color: #fff;
    max-width: none;
    padding-left: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
    padding-right: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
}

.hero-plain .hero-copy p { color: rgba(255, 255, 255, .72); }

.hero-plain .hero-media {
    background: transparent;
    min-height: 460px;
    box-shadow: none;
}

.hero-plain .hero-media img {
    max-height: 560px;
    animation: floatImage 5.5s ease-in-out infinite;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 6px;
    font-weight: 900;
    border: 1px solid transparent;
}

.button.primary { background: var(--accent); color: white; }
.button.ghost { border-color: var(--ink); color: var(--ink); }
.button { transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(56, 201, 244, .22); }
.actions { margin-top: 30px; flex-wrap: wrap; }

.band {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px clamp(18px, 4vw, 32px);
}

.incibe img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.split {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 32px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}

.split h2, .section-head h2, .contact-info h2, .legal-page h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1;
    letter-spacing: 0;
}

.split p { color: var(--muted); font-size: 18px; }
.split img { border-radius: 8px; width: 100%; max-height: 680px; object-fit: cover; }
.split img, .incibe img { transition: transform .45s ease, box-shadow .45s ease; }
.split:hover img, .incibe:hover img { transform: scale(1.025); box-shadow: 0 18px 60px rgba(0, 0, 0, .16); }

.security-photo-callout {
    position: relative;
    max-width: min(100%, 1220px);
    margin: 0 auto clamp(58px, 8vw, 96px);
    padding: 0 clamp(12px, 2vw, 22px);
}

.security-photo-callout > img,
.security-photo-callout > picture > img {
    width: 100%;
    min-height: clamp(360px, 45vw, 520px);
    max-height: 560px;
    object-fit: cover;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 24px 70px rgba(6, 38, 68, .16);
    filter: saturate(.9) contrast(.98);
}

.security-photo-callout::after {
    content: "";
    position: absolute;
    inset: 0 clamp(12px, 2vw, 22px);
    pointer-events: none;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, rgba(6, 38, 68, .12), rgba(6, 38, 68, 0) 45%);
}

.security-callout-card {
    position: absolute;
    top: 0;
    right: clamp(12px, 2vw, 22px);
    z-index: 1;
    width: min(390px, calc(100% - 44px));
    padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 42px);
    background: rgba(244, 250, 252, .96);
    color: #062644;
    box-shadow: 0 22px 60px rgba(6, 38, 68, .12);
}

.security-callout-card h2 {
    margin: 0 0 18px;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.02;
    color: #062644;
}

.security-callout-card p {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 1.38;
    color: #24455d;
}

.security-callout-card a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #062644;
    font-weight: 900;
    border-bottom: 2px solid #007aff;
}

.security-callout-card a span {
    color: #007aff;
    transition: transform .25s ease;
}

.security-callout-card a:hover span { transform: translateX(5px); }

.security-deep-dive {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 32px) clamp(58px, 8vw, 94px);
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(32px, 6vw, 86px);
    align-items: start;
}

.security-deep-dive h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(36px, 5.8vw, 74px);
    line-height: .94;
    color: #062644;
}

.security-copy {
    font-size: 18px;
    color: #526a7d;
}

.security-copy p { margin: 0 0 18px; }

.security-copy h3 {
    margin: 8px 0 18px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    color: #062644;
}

.security-copy ul {
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.security-copy li {
    position: relative;
    padding: 18px 18px 18px 46px;
    background: #fff;
    border: 1px solid rgba(0, 122, 255, .16);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(6, 38, 68, .06);
}

.security-copy li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 24px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #007aff;
    box-shadow: 0 0 0 7px rgba(0, 122, 255, .12);
}

.security-copy strong { color: #062644; }

.security-experience-band {
    position: relative;
    max-width: min(100%, 1220px);
    margin: 0 auto clamp(64px, 9vw, 110px);
    padding: 0 clamp(12px, 2vw, 22px);
    overflow: hidden;
}

.security-experience-band > img,
.security-experience-band > picture > img {
    width: 100%;
    height: clamp(360px, 44vw, 520px);
    object-fit: cover;
    object-position: center 38%;
    border-radius: 8px;
    filter: saturate(.92) contrast(.96);
    box-shadow: 0 24px 70px rgba(6, 38, 68, .14);
}

.security-experience-band::after {
    content: "";
    position: absolute;
    inset: 0 clamp(12px, 2vw, 22px);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(6, 38, 68, .08), rgba(6, 38, 68, 0) 48%, rgba(6, 38, 68, .28));
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    right: clamp(42px, 8vw, 120px);
    bottom: 0;
    z-index: 1;
    min-width: min(320px, 58vw);
    padding: clamp(28px, 4vw, 46px) clamp(28px, 5vw, 56px);
    background: rgba(6, 38, 68, .94);
    color: #fff;
    overflow: hidden;
}

.experience-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
    transform: translateX(-100%);
    animation: badgeSweep 4.5s ease-in-out infinite;
}

.experience-badge strong {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    font-size: clamp(58px, 8vw, 104px);
    line-height: .82;
    letter-spacing: 0;
}

.experience-badge strong b,
.pricing-showcase-badge strong b {
    font: inherit;
}

.experience-badge span {
    font-size: clamp(28px, 4vw, 54px);
    line-height: .95;
}

.experience-badge p {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    font-size: clamp(28px, 4vw, 52px);
    line-height: .94;
    font-weight: 900;
}

@keyframes badgeSweep {
    0%, 52% { transform: translateX(-110%); }
    100% { transform: translateX(110%); }
}

.split.dark-band {
    max-width: none;
    background: var(--dark);
    color: #fff;
    padding-left: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
    padding-right: max(clamp(18px, 4vw, 32px), calc((100vw - var(--max)) / 2 + 32px));
}

.split.dark-band p { color: rgba(255, 255, 255, .72); }

.wide-image {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 32px) clamp(72px, 9vw, 120px);
}

.wide-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .12);
}

.image-stack {
    position: relative;
    min-height: 520px;
}

.image-stack img {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.image-stack .stack-main {
    inset: 0 auto auto 10%;
    width: 68%;
    max-height: 520px;
    object-fit: cover;
}

.image-stack .stack-logo {
    right: 2%;
    bottom: 2%;
    width: 34%;
    background: var(--dark);
    padding: 26px;
}

.benefit-strip {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 32px) clamp(72px, 9vw, 120px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.benefit span {
    color: var(--accent);
    font-weight: 900;
}

.benefit h3 {
    margin: 12px 0 8px;
    font-size: 22px;
}

.benefit p { color: var(--muted); }

.pricing-benefits {
    padding-bottom: clamp(42px, 6vw, 76px);
    gap: 0;
}

.pricing-benefits .benefit {
    min-height: 200px;
    padding: 30px clamp(22px, 3vw, 36px) 22px;
    border-top: 0;
    border-left: 1px solid var(--line);
}

.pricing-benefits .benefit:first-child {
    border-left: 0;
}

.pricing-benefits .benefit span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #062644;
    font-size: 13px;
    font-weight: 900;
}

.pricing-benefits .benefit span::before {
    content: "";
    width: 18px;
    height: 3px;
    border-radius: 999px;
    background: #38c9f4;
}

.pricing-benefits .benefit h3 {
    max-width: 9ch;
    margin-top: 10px;
    color: #062644;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.02;
}

.pricing-benefits .benefit p {
    max-width: 260px;
    margin-top: clamp(42px, 5vw, 64px);
    color: #526a7d;
    font-size: 15px;
    line-height: 1.45;
}

.pricing-showcase {
    position: relative;
    max-width: none;
    margin: 0 auto clamp(42px, 6vw, 78px);
    overflow: hidden;
}

.pricing-showcase img,
.pricing-showcase picture > img {
    width: 100%;
    height: clamp(420px, 52vw, 620px);
    object-fit: cover;
    object-position: center;
    filter: saturate(.92) contrast(.96);
}

.pricing-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 38, 68, .18), rgba(6, 38, 68, 0) 48%, rgba(6, 38, 68, .2));
    pointer-events: none;
}

.pricing-showcase-badge {
    position: absolute;
    right: max(24px, calc((100vw - var(--max)) / 2 + 36px));
    bottom: 0;
    z-index: 1;
    width: min(360px, 42vw);
    min-height: 180px;
    padding: clamp(30px, 4vw, 48px);
    background: rgba(221, 241, 249, .92);
    color: #062644;
    box-shadow: 0 22px 60px rgba(6, 38, 68, .16);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(56, 201, 244, .22);
}

.pricing-showcase-badge strong {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: clamp(48px, 5.8vw, 78px);
    line-height: .78;
    letter-spacing: 0;
}

.pricing-showcase-badge span {
    font-size: clamp(22px, 2.8vw, 36px);
    line-height: .95;
}

.pricing-showcase-badge p {
    margin: 18px 0 0;
    font-size: clamp(20px, 2.35vw, 32px);
    line-height: 1.08;
    font-weight: 900;
}

.features, .pricing-grid, .steps {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 32px) clamp(72px, 9vw, 120px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.features article, .steps article, .plan-card, .contact-info, details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.features article:hover, .steps article:hover, .plan-card:hover, details:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 201, 244, .45);
    box-shadow: 0 22px 50px rgba(18, 18, 18, .08);
}

.features span {
    display: inline-block;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 18px;
}

.features h3, .steps h3, .plan-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

.features p, .steps p, .plan-card li, .trial { color: var(--muted); }
.security-grid { grid-template-columns: repeat(4, 1fr); }

.faq, .pricing-section, .contact-wrap, .legal-page {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 32px);
}

.process {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(76px, 9vw, 122px) clamp(18px, 4vw, 32px);
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(36px, 6vw, 86px);
    align-items: start;
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px;
}

.process .section-head {
    position: sticky;
    top: 116px;
    max-width: none;
    margin-bottom: 0;
}

.process .section-head .eyebrow {
    margin: 0 0 20px;
    color: #062644;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0;
}

.process .section-head .eyebrow::first-letter {
    color: #ff5b2c;
}

.process .section-head h2 {
    max-width: 10ch;
    font-size: clamp(34px, 4.1vw, 50px);
    line-height: .98;
    color: #062644;
}

.steps { padding-left: 0; padding-right: 0; padding-bottom: 0; }
.steps article img { width: 44px; margin-bottom: 20px; }

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

.process-grid article {
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(34px, 4vw, 46px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.process-grid article:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 122, 255, .28);
    box-shadow: 0 22px 60px rgba(6, 38, 68, .08);
}

.step-mark {
    position: relative;
    width: fit-content;
    min-width: 90px;
    min-height: 70px;
    color: #062644;
}

.step-mark span {
    position: absolute;
    left: 9px;
    top: 21px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 4px solid #062644;
    border-radius: 50%;
    background: #fff;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
}

.step-mark strong {
    position: relative;
    z-index: 1;
    display: block;
    padding-left: 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 62px;
    line-height: .82;
    letter-spacing: 0;
}

.process-grid h3 {
    margin: auto 0 18px;
    color: #062644;
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1;
}

.process-grid p {
    max-width: 360px;
    margin: 0;
    color: #607487;
    font-size: 17px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details summary {
    cursor: pointer;
    font-weight: 900;
    font-size: 18px;
}

details p { color: var(--muted); margin-bottom: 0; }

.pricing-section.muted {
    background: var(--soft);
    max-width: none;
}

.pricing-section {
    padding-top: clamp(44px, 6vw, 72px);
}

.pricing-section.muted > * {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid { padding: 0; }

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.plan-card.featured {
    border-color: var(--accent);
    box-shadow: 0 24px 60px rgba(56, 201, 244, .12);
}

.badge {
    width: fit-content;
    margin: 0 0 16px;
    color: #fff;
    background: var(--green);
    border-radius: 5px;
    padding: 5px 9px;
    font-weight: 900;
    font-size: 12px;
}

.price {
    margin: 10px 0 24px;
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
}

.plan-card ul {
    padding-left: 18px;
    margin: 0 0 28px;
    display: grid;
    gap: 10px;
}

.plan-card .button { margin-top: auto; }

.contact-wrap {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 24px;
}

.contact-page-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
    align-items: start;
}

.map-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, .08);
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 430px;
    border: 0;
    filter: saturate(.9) contrast(1.04);
}

.contact-detail {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-detail a, .contact-detail p {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
    font-weight: 800;
}

.stats-strip {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 32px) clamp(72px, 9vw, 120px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.stat {
    border-radius: 8px;
    background: var(--dark);
    color: #fff;
    padding: 30px;
}

.stat strong {
    display: block;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
}

.stat span { color: rgba(255, 255, 255, .72); font-weight: 800; }

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.contact-form label {
    display: grid;
    gap: 10px;
    color: #111;
    font-size: 15px;
    font-weight: 500;
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid #d2d9e2;
    border-radius: 0;
    padding: 13px 12px;
    font: inherit;
    background: #fff;
    color: #111;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #062644;
    box-shadow: 0 0 0 3px rgba(56, 201, 244, .15);
}

.contact-form textarea { min-height: 136px; resize: vertical; }
.wide, .contact-form .success { grid-column: 1 / -1; }
.success { margin: 0; color: var(--green); font-weight: 900; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info a {
    color: var(--accent);
    font-weight: 900;
}

.contact-map-hero {
    position: relative;
    min-height: clamp(520px, 62vw, 690px);
    margin: 0 auto clamp(52px, 7vw, 88px);
    overflow: hidden;
    background: #dff1f7;
    isolation: isolate;
}

.contact-map-hero iframe {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.9) contrast(1.04);
    pointer-events: none;
}

.contact-map-hit {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-map-card {
    position: relative;
    z-index: 2;
    width: min(360px, calc(100% - 36px));
    min-height: 464px;
    margin-left: clamp(18px, 8vw, 104px);
    padding: clamp(34px, 4.5vw, 58px) 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    background:
        linear-gradient(145deg, rgba(151, 216, 164, .98), rgba(125, 202, 149, .96)),
        #8bd09c;
    color: #041212;
    box-shadow: 0 30px 90px rgba(6, 38, 68, .22);
}

.contact-map-card img {
    width: 86px;
    height: auto;
    margin: 0 auto 72px;
    align-self: center;
    object-fit: contain;
}

.contact-map-card h2 {
    margin: 0 0 6px;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1;
    color: #041212;
}

.contact-map-card a,
.contact-map-card p {
    margin: 0;
    color: #041212;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.45;
    font-weight: 500;
    text-decoration: none;
}

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

.legal-page {
    max-width: 840px;
    min-height: 60vh;
}

.legal-page h2 { margin-top: 34px; }

.footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 30px;
    padding: 54px clamp(18px, 4vw, 52px);
    background: var(--dark);
    color: #fff;
}

.footer p {
    max-width: 520px;
    color: rgba(255, 255, 255, .72);
}

.footer a { color: rgba(255, 255, 255, .82); }
.footer-contact {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
    font-weight: 800;
    max-width: 280px;
}
.copyright { grid-column: 1 / -1; margin: 0; }

.whatsapp {
    position: fixed;
    left: 18px;
    bottom: 24px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 36px);
    padding: 9px 13px;
    border-radius: 8px;
    background: #101010;
    color: #fff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    font-weight: 900;
    font-size: 13px;
}

.whatsapp img { border-radius: 50%; background: #fff; }

.footer-rich {
    max-width: calc(100% - 24px);
    margin: 0 auto;
    padding: 0 0 58px;
    display: grid;
    grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    background: #062644;
    color: #fff;
}

.footer-cta {
    padding: clamp(42px, 7vw, 84px) clamp(28px, 5vw, 56px);
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.footer-cta h2 {
    max-width: 420px;
    margin: 0;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: 0;
}

.footer-cta p {
    max-width: 390px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 235px;
    margin-top: 26px;
    padding: 14px 20px;
    border: 1px solid rgba(255, 255, 255, .88);
    color: #fff;
    font-weight: 900;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.footer-button:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #062644;
}

.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: clamp(22px, 4vw, 52px);
    padding: clamp(42px, 7vw, 78px) clamp(28px, 5vw, 56px) 26px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: clamp(28px, 5vw, 58px) clamp(34px, 6vw, 74px);
}

.footer-columns h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1;
}

.footer-columns nav,
.footer-columns div {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-columns a {
    color: #bfe8ff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.footer-columns nav a {
    text-decoration: none;
}

.footer-columns a:hover {
    color: #fff;
}

.footer-branding {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 34px;
}

.footer-incibe {
    width: 138px;
    max-width: 100%;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .16));
}

.footer-leopard {
    width: 116px;
    max-width: 100%;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .18));
}

.footer-rich .copyright {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 22px clamp(28px, 5vw, 56px);
    border-top: 1px solid rgba(255, 255, 255, .18);
    background: #062644;
    color: #bfe8ff;
    text-align: center;
}

.footer-rich .copyright a {
    color: inherit;
    font-weight: 800;
    text-decoration: none;
}

.footer-rich .copyright a:hover {
    color: #fff;
    text-decoration: underline;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition: opacity .85s ease var(--delay, 0ms), transform .85s cubic-bezier(.2,.8,.2,1) var(--delay, 0ms), filter .85s ease var(--delay, 0ms);
    will-change: opacity, transform, filter;
}

.reveal-left {
    transform: translateX(-42px);
}

.reveal-right {
    transform: translateX(42px) scale(.98);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0) scale(1);
}

.mosaic-copy-card .reveal {
    transform: translateY(18px);
}

.mosaic-copy-card .reveal.is-visible {
    transform: translateY(0);
}

.plan-card.reveal,
.features article.reveal,
.steps article.reveal,
.benefit.reveal,
.stat.reveal {
    transform: translateY(34px) scale(.96);
}

.plan-card.reveal.is-visible,
.features article.reveal.is-visible,
.steps article.reveal.is-visible,
.benefit.reveal.is-visible,
.stat.reveal.is-visible {
    transform: translateY(0) scale(1);
}

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

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-18px) rotate(1.5deg); }
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.055); }
}

@keyframes heroLeopard {
    0%, 100% { transform: translateY(0) rotate(-1.2deg) scale(1); }
    50% { transform: translateY(-18px) rotate(1.1deg) scale(1.025); }
}

@keyframes floatMark {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    50% { transform: translate3d(12px, -18px, 0) rotate(8deg); }
}

@keyframes floatChipOne {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-14px, 18px, 0); }
}

@keyframes floatChipTwo {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(18px, -14px, 0); }
}

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

@keyframes slowSpin {
    to { transform: rotate(360deg); }
}

@keyframes networkMove {
    to { background-position: 145px 145px, -170px 170px, 170px 170px, -150px 150px, 190px -190px, -160px 160px; }
}

@keyframes lockGlow {
    0%, 100% { filter: brightness(1); transform: translate(-50%, -36%) scale(1); }
    50% { filter: brightness(1.22); transform: translate(-50%, -39%) scale(1.025); }
}

@keyframes glassSweep {
    0%, 35% { transform: translateX(-120%); opacity: 0; }
    48% { opacity: 1; }
    70%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes scanDown {
    0%, 18% { transform: translateY(-100%); opacity: 0; }
    38% { opacity: 1; }
    72%, 100% { transform: translateY(100%); opacity: 0; }
}

@keyframes orbitOne {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitTwo {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: .45; }
    50% { transform: translate3d(12px, -18px, 0) scale(1.45); opacity: 1; }
}

@keyframes holoSpin {
    to { transform: rotate(360deg); }
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateZ(-1deg); }
    50% { transform: translateY(-18px) rotateX(8deg) rotateZ(1deg); }
}

@keyframes shieldSweep {
    0%, 32% { transform: translateX(-130%); opacity: 0; }
    48% { opacity: 1; }
    72%, 100% { transform: translateX(130%); opacity: 0; }
}

@keyframes shadowPulse {
    0%, 100% { transform: scale(.86); opacity: .5; }
    50% { transform: scale(1.08); opacity: .9; }
}

@keyframes cardFloatA {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(12px, -12px, 0); }
}

@keyframes cardFloatB {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-12px, 14px, 0); }
}

@keyframes cardFloatC {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-10px, -16px, 0); }
}

@media (max-width: 980px) {
    .site-header { flex-wrap: wrap; }
    .brand { min-width: auto; }
    .main-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; flex: auto; }
    .hero, .split, .contact-wrap, .contact-page-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .original-home-hero { padding-top: 54px; }
    .home-mosaic-hero { grid-template-columns: 1fr; }
    .about-shield {
        grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
        gap: 36px;
    }
    .process {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process .section-head {
        position: static;
    }
    .process .section-head h2 {
        max-width: 14ch;
    }
    .about-photo {
        grid-column: 1 / -1;
        width: min(520px, 100%);
        justify-self: end;
    }
    .subpage-hero { grid-template-columns: 1fr; min-height: auto; }
    .mosaic-copy-card { min-height: 520px; }
    .mosaic-right { grid-template-columns: 1fr; grid-template-rows: auto; align-items: stretch; }
    .cyber-card { min-height: 360px; }
    .incibe-card { width: 100%; min-height: auto; }
    .trust-combo { justify-items: stretch; }
    .trust-single { margin-left: 18px; margin-right: 18px; }
    .original-home-hero::before { width: 80vw; opacity: .65; }
    .original-hero-media { min-height: 560px; }
    .original-hero-media .hero-leopard { width: min(74vw, 560px); }
    .security-grid, .features, .pricing-grid, .steps, .process-grid, .stats-strip, .benefit-strip { grid-template-columns: repeat(2, 1fr); }
    .footer { grid-template-columns: 1fr; }
    .footer-rich { grid-template-columns: 1fr; }
    .footer-cta { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
    .footer-main { grid-template-columns: 1fr; }
    .footer-branding { grid-template-columns: repeat(2, auto); justify-content: start; }
    .image-stack { min-height: 430px; }
    .contact-map-card {
        margin-left: clamp(18px, 6vw, 54px);
    }
}

@media (max-width: 640px) {
    .site-header { align-items: flex-start; gap: 14px; }
    .brand { font-size: 21px; }
    .brand img { width: 54px; height: 54px; }
    .main-nav a, .client-link { font-size: 15px; }
    .client-link { width: 100%; text-align: center; }
    .hero-copy h1 { font-size: 42px; }
    .original-home-hero .hero-copy h1 { font-size: clamp(44px, 15vw, 70px); }
    .home-mosaic-hero { padding: 14px; }
    .about-shield {
        grid-template-columns: 1fr;
        padding-top: 58px;
    }
    .about-heading h2 { max-width: 12ch; }
    .about-story { padding-top: 0; }
    .about-years strong { font-size: clamp(86px, 28vw, 118px); }
    .about-signature {
        grid-template-columns: 64px 1px 1fr;
        gap: 16px;
    }
    .about-signature img,
    .about-signature picture > img {
        width: 60px;
        height: 60px;
    }
    .about-photo {
        width: 100%;
        justify-self: stretch;
        border-radius: 26px;
    }
    .about-photo img,
    .about-photo picture > img { height: 390px; }
    .process {
        padding-top: 58px;
    }
    .process-grid article {
        min-height: 300px;
    }
    .mosaic-copy-card { min-height: 500px; padding: 34px 26px; border-radius: 24px; }
    .mosaic-copy-card h1 { font-size: clamp(38px, 11vw, 54px); }
    .mosaic-spark { margin-left: -18px; }
    .mosaic-right { grid-template-columns: 1fr; }
    .incibe-card { width: 100%; min-height: auto; border-radius: 22px; }
    .certification-row { gap: 14px; }
    .certification-row img { width: 60px; }
    .protect-brand { font-size: 19px; min-height: 46px; padding-left: 14px; }
    .protect-brand i { width: 32px; height: 36px; }
    .cyber-card { min-height: 260px; }
    .lock-visual { width: 210px; height: 142px; }
    .lock-visual::before { width: 116px; height: 92px; }
    .trust-strip { grid-template-columns: 1fr; min-height: auto; }
    .trust-card { padding: 18px; }
    .trust-single-logos { grid-template-columns: 1fr; }
    .subpage-hero .hero-copy h1 { font-size: clamp(40px, 12vw, 62px); }
    .subpage-visual { min-height: 320px; }
    .visual-main { min-height: 320px; }
    .hero-media { min-height: 300px; }
    .original-hero-media { min-height: 420px; }
    .original-hero-media .hero-leopard { width: min(86vw, 380px); }
    .hero-caption { left: 18px; right: 18px; bottom: 4%; max-width: none; }
    .hero-mark { width: 52px; left: 3%; }
    .hero-chip { width: 52px; height: 52px; }
    .hero-trust { align-items: flex-start; }
    .features, .security-grid, .pricing-grid, .steps, .process-grid, .stats-strip, .benefit-strip { grid-template-columns: 1fr; }
    .contact-stack {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .contact-form-brand {
        justify-items: start;
        gap: 26px;
    }
    .contact-form-brand > span {
        height: 72px;
        margin-left: 86px;
    }
    .contact-form-brand img {
        margin-left: 38px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .process-grid article { min-height: 300px; }
    .footer { grid-template-columns: 1fr; }
    .footer nav { align-items: flex-start; flex-direction: column; }
    .footer-rich { max-width: calc(100% - 12px); }
    .footer-columns { grid-template-columns: 1fr; }
    .footer-branding { grid-template-columns: 1fr; justify-items: start; }
    .footer-cta h2 { font-size: clamp(30px, 10vw, 42px); }
    .whatsapp span { display: none; }
    .image-stack { min-height: auto; display: grid; gap: 14px; }
    .image-stack img { position: static; width: 100% !important; }
    .contact-map-hero {
        min-height: 680px;
        display: flex;
        align-items: flex-start;
        padding: 24px 18px;
    }
    .contact-map-card {
        width: 100%;
        min-height: 420px;
        margin: 0;
        padding: 34px 28px;
    }
    .contact-map-card img {
        margin-bottom: 54px;
    }
}

/* ==================================================================
   REDESIGN: alineamiento con leopardsync.com original
   Hero centrado, eliminacion de mosaic, toggle de precios, CTA claro
   ================================================================== */

.hero-centered {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(72px, 10vw, 132px) clamp(18px, 4vw, 32px) clamp(48px, 7vw, 80px);
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 24px;
}

.hero-centered .eyebrow { margin: 0; }
.hero-centered h1 {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(40px, 7vw, 86px);
    line-height: .96;
    letter-spacing: -.01em;
    font-weight: 900;
}
.hero-centered p {
    margin: 0;
    max-width: 60ch;
    font-size: clamp(17px, 1.6vw, 20px);
    color: var(--muted);
}
.hero-centered .actions { margin-top: 6px; justify-content: center; }

.process-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 18px;
}

.cta-band {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 32px);
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 18px;
}

.cta-band h2 {
    margin: 0;
    max-width: 22ch;
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1;
    font-weight: 900;
}

.cta-band p {
    margin: 0;
    max-width: 56ch;
    color: var(--muted);
    font-size: 18px;
}

.cta-band .actions { margin-top: 6px; justify-content: center; }

.pricing-toggle {
    display: inline-flex;
    margin: 0 auto 32px;
    padding: 5px;
    background: var(--soft);
    border-radius: 999px;
    gap: 4px;
}

.pricing-toggle button {
    border: 0;
    background: transparent;
    padding: 11px 26px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: background .25s ease, color .25s ease;
}

.pricing-toggle button.is-active {
    background: var(--ink);
    color: #fff;
}

.pricing-toggle button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.pricing-grid.is-toggled {
    grid-template-columns: repeat(4, 1fr);
}

[data-period="monthly"] .plan-card[data-period="annual"],
[data-period="annual"]  .plan-card[data-period="monthly"] {
    display: none;
}

.plan-card.enterprise .price {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.1;
}

.contact-stack {
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(58px, 8vw, 92px) clamp(18px, 4vw, 32px);
    display: grid;
    grid-template-columns: minmax(220px, .42fr) minmax(0, 1fr);
    gap: clamp(44px, 7vw, 86px);
    align-items: start;
}

.contact-form-brand {
    display: grid;
    justify-items: center;
    gap: 38px;
    color: #101010;
}

.contact-form-brand h2 {
    justify-self: start;
    margin: 0;
    font-size: clamp(36px, 4.4vw, 50px);
    line-height: 1;
    color: #101010;
    font-weight: 900;
}

.contact-form-brand > span {
    display: block;
    width: 1px;
    height: 96px;
    background: #062644;
}

.contact-form-brand img {
    width: 136px;
    height: auto;
    object-fit: contain;
}

.contact-form-section .contact-form {
    padding-top: 4px;
}

.contact-form-section .contact-form label:first-child {
    grid-column: 1 / -1;
}

.contact-form-section .contact-form label:nth-of-type(6) {
    grid-column: 1 / -1;
}

.contact-send {
    width: max-content;
    min-width: 156px;
    padding: 15px 28px;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.contact-send span {
    margin-left: 16px;
}

.contact-send:hover {
    transform: translateY(-2px);
    background: #062644;
}

/* Hero 2-col exclusivo de /seguridad/ con candado animado */
.hero-cyber {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 32px) clamp(40px, 6vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(28px, 6vw, 80px);
    align-items: center;
}

.hero-cyber .hero-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 76px);
    line-height: .96;
    letter-spacing: -.01em;
    font-weight: 900;
}

.hero-cyber .hero-copy p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(17px, 1.6vw, 20px);
    max-width: 56ch;
}

.hero-cyber .actions { margin-top: 28px; flex-wrap: wrap; }

.lock-cyber {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 4vw, 40px);
    background:
        radial-gradient(circle at 50% 50%, rgba(56, 201, 244, .25), transparent 60%),
        linear-gradient(135deg, #06141c 0%, #0d2331 46%, #05090d 100%);
    border: 1px solid rgba(56, 201, 244, .22);
    box-shadow: inset 0 0 80px rgba(0, 122, 255, .12), 0 24px 70px rgba(0, 0, 0, .22);
}

.lock-cyber::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, .16) 43%, transparent 54%),
        radial-gradient(circle at 50% 50%, rgba(56, 201, 244, .18), transparent 42%);
    transform: translateX(-120%);
    animation: lockGlassSweep 5.2s ease-in-out infinite;
    z-index: 4;
    pointer-events: none;
}

.lock-cyber .network-lines,
.lock-cyber .scan-line,
.lock-cyber .orbital-ring,
.lock-cyber .particle-field {
    pointer-events: none;
}

.lock-energy {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, transparent, rgba(56, 201, 244, .56), transparent 36%, rgba(0, 122, 255, .48), transparent 70%),
        radial-gradient(circle, rgba(56, 201, 244, .2), transparent 58%);
    filter: blur(.2px);
    animation: lockEnergySpin 9s linear infinite, lockEnergyBreathe 3.8s ease-in-out infinite;
    opacity: .82;
}

.lock-inner-pulse {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 52%;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(56, 201, 244, .46);
    box-shadow: 0 0 28px rgba(56, 201, 244, .5), inset 0 0 24px rgba(56, 201, 244, .18);
    animation: lockCorePulse 2.4s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

.lock-data-streams {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.lock-data-streams span {
    position: absolute;
    left: 9%;
    right: 9%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(56, 201, 244, .96), rgba(255, 255, 255, .72), rgba(56, 201, 244, .96), transparent);
    box-shadow: 0 0 24px rgba(56, 201, 244, .78);
    animation: lockDataMove 3.2s ease-in-out infinite;
}

.lock-data-streams span:nth-child(1) { top: 29%; animation-delay: 0s; }
.lock-data-streams span:nth-child(2) { top: 51%; animation-delay: .65s; }
.lock-data-streams span:nth-child(3) { top: 72%; animation-delay: 1.25s; }

.lock-scan {
    position: absolute;
    inset: 0;
    z-index: 6;
    background: linear-gradient(180deg, transparent 0 44%, rgba(56, 201, 244, .28) 50%, transparent 58%);
    transform: translateY(-100%);
    animation: lockScanDown 4.4s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

.lock-particles {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    mix-blend-mode: screen;
}

.lock-particles i {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #9ff5ff;
    opacity: 0;
    box-shadow: 0 0 18px rgba(56, 201, 244, .95), 0 0 32px rgba(0, 122, 255, .55);
    animation: lockParticleRise 4.8s ease-in-out infinite;
}

.lock-particles i:nth-child(1) { left: 34%; top: 62%; animation-delay: .1s; }
.lock-particles i:nth-child(2) { left: 44%; top: 54%; animation-delay: .55s; }
.lock-particles i:nth-child(3) { left: 52%; top: 48%; animation-delay: 1s; }
.lock-particles i:nth-child(4) { left: 59%; top: 58%; animation-delay: 1.45s; }
.lock-particles i:nth-child(5) { left: 48%; top: 68%; animation-delay: 1.9s; }
.lock-particles i:nth-child(6) { left: 38%; top: 38%; animation-delay: 2.35s; }
.lock-particles i:nth-child(7) { left: 61%; top: 35%; animation-delay: 2.8s; }
.lock-particles i:nth-child(8) { left: 69%; top: 51%; animation-delay: 3.25s; }

.lock-image {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 10px;
    /* El JPG tiene su propio fondo oscuro que combina con el wrapper oscuro: se ven todos los detalles del candado */
    filter: contrast(1.12) brightness(1.18) saturate(1.16) drop-shadow(0 0 38px rgba(56, 201, 244, .66));
    will-change: transform, filter;
    animation: lockFloatGlow 5.6s ease-in-out infinite, lockMicroZoom 8s ease-in-out infinite;
}

.lock-video {
    background: #06141c;
}

.home-mosaic-hero {
    max-width: 1260px;
    min-height: calc(100vh - 104px);
    padding: 10px clamp(10px, 1.6vw, 20px) 20px;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 1fr);
    gap: 14px;
}

.mosaic-copy-card {
    min-height: clamp(600px, calc(100vh - 124px), 735px);
    border-radius: 30px;
    padding: clamp(54px, 7vw, 112px);
    justify-content: center;
    background: #062644;
}

.mosaic-copy-card h1 {
    max-width: 520px;
    margin-top: 28px;
    font-size: clamp(48px, 5.3vw, 72px);
    line-height: .98;
}

.mosaic-copy-card p {
    max-width: 500px;
    margin-top: 16px;
    font-size: clamp(15px, 1.15vw, 17px);
    line-height: 1.45;
    font-weight: 500;
}

.mosaic-spark {
    position: relative;
    display: block;
    width: 54px;
    height: 42px;
    margin: 0 0 -2px -30px;
    transform: rotate(-18deg);
}

.mosaic-spark::before,
.mosaic-spark::after,
.mosaic-spark i {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 8px;
    width: 5px;
    height: 34px;
    border-radius: 999px;
    background: #ff5b2c;
    transform-origin: bottom center;
    box-shadow: 0 0 12px rgba(255, 91, 44, .35);
}

.mosaic-spark::before { transform: rotate(-38deg); }
.mosaic-spark::after { transform: rotate(0deg); height: 42px; }
.mosaic-spark i { transform: rotate(34deg); height: 28px; }

.mosaic-spark::after {
    animation: sparkPop 2.8s ease-in-out infinite;
}

.mosaic-pill {
    min-width: 188px;
    padding: 9px 20px;
    font-size: 12px;
}

.mosaic-watermark {
    right: -48px;
    bottom: -56px;
    width: min(28%, 190px);
    opacity: .07;
}

.mosaic-right {
    grid-template-rows: minmax(280px, .94fr) minmax(230px, .72fr);
    gap: 16px;
}

.mosaic-lock {
    min-height: 0;
    height: 100%;
    padding: 0;
    border-radius: 8px;
    border: 0;
    background: #06141c;
}

.mosaic-lock::before {
    display: none;
}

.mosaic-lock .lock-image {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    filter: none;
    animation: none;
}

.hero-trust-single {
    max-width: none;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: clamp(34px, 5vw, 58px) clamp(28px, 5vw, 70px);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-trust-single h2 {
    max-width: 720px;
    margin-bottom: 26px;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: .98;
}

.hero-trust-single .trust-single-logos {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 4vw, 46px);
    overflow: visible;
}

.hero-trust-single .trust-leopard {
    width: clamp(170px, 15vw, 230px);
    transform: scale(1.55);
    transform-origin: center;
}

.hero-trust-single .trust-incibe {
    width: clamp(190px, 17vw, 250px);
    transform: scale(1.2);
    transform-origin: center;
}

.hero-trust-single .protect-brand.large {
    font-size: clamp(18px, 2vw, 27px);
}

.hero-trust-single .protect-brand.large i {
    width: clamp(34px, 4vw, 48px);
    height: clamp(38px, 4.5vw, 54px);
}

@keyframes sparkPop {
    0%, 100% { transform: rotate(0deg) scaleY(.92); opacity: .82; }
    50% { transform: rotate(0deg) scaleY(1.08); opacity: 1; }
}

/* Combina float vertical + leve oscilacion + pulso de glow */
@keyframes lockFloatGlow {
    0% {
        transform: translateY(0) rotate(-.6deg) scale(1);
        filter: contrast(1.08) brightness(1.08) saturate(1.08) drop-shadow(0 0 28px rgba(56, 201, 244, .45));
    }
    50% {
        transform: translateY(-18px) rotate(.6deg) scale(1.02);
        filter: contrast(1.12) brightness(1.18) saturate(1.12) drop-shadow(0 0 66px rgba(56, 201, 244, .95));
    }
    100% {
        transform: translateY(0) rotate(-.6deg) scale(1);
        filter: contrast(1.08) brightness(1.08) saturate(1.08) drop-shadow(0 0 28px rgba(56, 201, 244, .45));
    }
}

@keyframes lockEnergySpin {
    to { transform: rotate(360deg); }
}

@keyframes lockEnergyBreathe {
    0%, 100% { opacity: .42; filter: blur(.2px); }
    50% { opacity: .9; filter: blur(1px); }
}

@keyframes lockCorePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(.72); opacity: .35; }
    50% { transform: translate(-50%, -50%) scale(1.22); opacity: .9; }
}

@keyframes lockDataMove {
    0%, 100% { transform: translateX(-28%) scaleX(.18); opacity: 0; }
    42% { opacity: 1; }
    72% { transform: translateX(28%) scaleX(1); opacity: .95; }
}

@keyframes lockParticleRise {
    0% { transform: translate3d(0, 18px, 0) scale(.45); opacity: 0; }
    28% { opacity: .92; }
    72% { opacity: .55; }
    100% { transform: translate3d(12px, -72px, 0) scale(1.25); opacity: 0; }
}

@keyframes lockMicroZoom {
    0%, 100% { scale: 1; }
    50% { scale: 1.018; }
}

@keyframes lockScanDown {
    0%, 18% { transform: translateY(-100%); opacity: 0; }
    42% { opacity: 1; }
    76%, 100% { transform: translateY(100%); opacity: 0; }
}

@keyframes lockGlassSweep {
    0%, 34% { transform: translateX(-120%); opacity: 0; }
    48% { opacity: .9; }
    72%, 100% { transform: translateX(120%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .lock-image,
    .lock-energy,
    .lock-inner-pulse,
    .lock-particles i,
    .lock-data-streams span,
    .lock-scan,
    .lock-cyber::before { animation: none; }
}

@media (max-width: 980px) {
    .pricing-grid.is-toggled { grid-template-columns: repeat(2, 1fr); }
    .pricing-benefits { grid-template-columns: repeat(2, 1fr); }
    .pricing-benefits .benefit:nth-child(odd) { border-left: 0; }
    .pricing-showcase-badge {
        right: 28px;
        width: min(340px, 52vw);
    }
    .home-mosaic-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 14px;
    }
    .mosaic-copy-card {
        min-height: 560px;
        padding: 52px clamp(28px, 8vw, 70px);
    }
    .mosaic-right {
        grid-template-rows: auto;
    }
    .mosaic-lock {
        min-height: 340px;
    }
    .hero-trust-single {
        min-height: 250px;
    }
    .hero-centered { padding-top: clamp(48px, 12vw, 88px); padding-bottom: clamp(28px, 6vw, 56px); }
    .hero-cyber { grid-template-columns: 1fr; text-align: center; }
    .hero-cyber .hero-copy p { margin-inline: auto; }
    .hero-cyber .actions { justify-content: center; }
    .lock-cyber { min-height: 360px; }
    .security-deep-dive { grid-template-columns: 1fr; gap: 28px; }
    .security-deep-dive h2 { max-width: 13ch; }
    .security-callout-card {
        position: relative;
        inset: auto;
        width: calc(100% - 36px);
        margin: -86px auto 0;
        border-radius: 8px;
    }
    .security-photo-callout::after { display: none; }
    .experience-badge { right: clamp(28px, 7vw, 70px); }
}

@media (max-width: 640px) {
    .pricing-grid.is-toggled { grid-template-columns: 1fr; }
    .pricing-benefits { grid-template-columns: 1fr; }
    .pricing-benefits .benefit {
        min-height: auto;
        border-left: 0;
        border-top: 1px solid var(--line);
    }
    .pricing-benefits .benefit p {
        margin-top: 22px;
    }
    .pricing-showcase img,
    .pricing-showcase picture > img {
        height: 430px;
    }
    .pricing-showcase-badge {
        left: 18px;
        right: 18px;
        width: auto;
        min-height: 0;
        padding: 26px;
    }
    .pricing-showcase-badge strong {
        justify-content: center;
    }
    .pricing-showcase-badge p {
        text-align: center;
    }
    .home-mosaic-hero {
        padding: 10px 10px 28px;
    }
    .mosaic-copy-card {
        min-height: 540px;
        border-radius: 26px;
        padding: 46px 28px;
    }
    .mosaic-copy-card h1 {
        font-size: clamp(42px, 14vw, 58px);
        max-width: 8ch;
    }
    .mosaic-pill {
        min-width: 172px;
        font-size: 11px;
    }
    .mosaic-lock {
        min-height: 300px;
    }
    .hero-trust-single {
        border-radius: 26px;
        padding: 32px 22px;
    }
    .hero-trust-single .trust-single-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
    .hero-trust-single .trust-leopard {
        width: 122px;
        transform: scale(1.45);
    }
    .hero-trust-single .trust-incibe {
        width: 138px;
        transform: scale(1.18);
    }
    .hero-trust-single .protect-brand.large {
        font-size: 16px;
    }
    .pricing-toggle button { padding: 10px 18px; font-size: 13px; }
    .hero-centered h1 { font-size: clamp(36px, 11vw, 56px); }
    .process-icon { width: 48px; height: 48px; }
    .security-photo-callout,
    .security-experience-band { padding-inline: 0; }
    .security-photo-callout > img,
    .security-photo-callout > picture > img,
    .security-experience-band > img,
    .security-experience-band > picture > img { border-radius: 0; }
    .security-callout-card { width: calc(100% - 28px); }
    .security-experience-band::after { inset-inline: 0; border-radius: 0; }
    .experience-badge {
        right: 14px;
        left: 14px;
        min-width: 0;
        text-align: center;
    }
    .experience-badge strong { justify-content: center; }
}
