:root {
    --bg: #f7f8fa;
    --bg-soft: #ffffff;
    --bg-ink: #090b10;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-solid: #ffffff;
    --line: rgba(14, 19, 31, 0.1);
    --line-strong: rgba(14, 19, 31, 0.16);
    --text: #111318;
    --muted: #666d7a;
    --muted-dark: #a9b0be;
    --accent: #285dff;
    --accent-violet: #6d5dfc;
    --accent-soft: rgba(40, 93, 255, 0.12);
    --shadow: 0 24px 70px rgba(17, 19, 24, 0.1);
    --shadow-tight: 0 14px 34px rgba(17, 19, 24, 0.09);
    --radius: 8px;
    --radius-lg: 20px;
    --max: 1180px;
    --header-offset: 98px;
    --step--1: clamp(0.875rem, 0.82rem + 0.18vw, 1rem);
    --step-0: clamp(1rem, 0.96rem + 0.22vw, 1.125rem);
    --step-1: clamp(1.25rem, 1.14rem + 0.45vw, 1.5rem);
    --step-2: clamp(1.625rem, 1.42rem + 0.8vw, 2.125rem);
    --step-3: clamp(2.5rem, 2.18rem + 1.1vw, 3.5rem);
    --step-4: clamp(3.5rem, 2.95rem + 2.2vw, 5rem);
    --body-leading: 1.68;
    --heading-leading-tight: 0.98;
    --heading-leading: 1.06;
    --space-copy: 1.25rem;
    --space-heading: 1rem;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: var(--step-0);
    line-height: var(--body-leading);
    background:
    linear-gradient(180deg, rgba(247, 248, 250, 0.92), rgba(247, 248, 250, 1) 34%),
    repeating-linear-gradient(90deg, rgba(9, 11, 16, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(180deg, rgba(9, 11, 16, 0.025) 0 1px, transparent 1px 96px);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

.page-shell {
    position: relative;
    isolation: isolate;
}

.ambient {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(135deg, rgba(40, 93, 255, 0.08), transparent 24%),
    linear-gradient(225deg, rgba(109, 93, 252, 0.07), transparent 28%);
}

.ambient::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.48;
    background-image:
    linear-gradient(rgba(9, 11, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 16, 0.04) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
}

.container {
    width: min(100% - 40px, var(--max));
    margin: 0 auto;
}

.section {
    padding: 104px 0;
}

.section-tight {
    padding: 72px 0;
}

.section-tight + #servicios.section {
    padding-top: 48px;
}

#porque.section,
#equipo.section,
#faq.section {
    padding: 68px 0;
}

#clientes.section-tight {
    padding: 52px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 34px;
    padding: 7px 12px;
    color: #263145;
    font-size: clamp(0.6875rem, 0.66rem + 0.14vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(17, 19, 24, 0.06);
    backdrop-filter: blur(18px);
}

.eyebrow::before {
    content: none;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-chip-center {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.section-heading h2,
.editorial-copy h2,
.cta-panel h2 {
    margin: var(--space-heading) 0 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: var(--heading-leading-tight);
    letter-spacing: 0;
}

.section-heading p,
.editorial-copy p,
.cta-panel p {
    margin: var(--space-copy) 0 0;
    color: var(--muted);
    font-size: var(--step-0);
    line-height: 1.72;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: clamp(0.9375rem, 0.9rem + 0.22vw, 1.0625rem);
    font-weight: 700;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #0b0d13, #242936);
    box-shadow: 0 16px 34px rgba(10, 12, 18, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 20px 44px rgba(10, 12, 18, 0.28);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.76);
    border-color: var(--line);
    box-shadow: 0 12px 30px rgba(17, 19, 24, 0.08);
    backdrop-filter: blur(16px);
}

.btn-accent {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-violet));
    box-shadow: 0 18px 40px rgba(40, 93, 255, 0.26);
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex: 0 0 auto;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 16px 0;
    min-height: var(--header-offset);
    transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

body.header-sticky {
    padding-top: 0;
}

body.header-sticky .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 66px;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(14, 19, 31, 0.08);
    box-shadow: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding: 0 14px 0 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(14, 19, 31, 0.09);
    border-radius: 999px;
    box-shadow: 0 18px 48px rgba(17, 19, 24, 0.08);
    backdrop-filter: blur(24px) saturate(1.3);
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

body.is-on-hero .site-header {
    background: transparent !important;
}

body.is-on-hero .site-header {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

body.is-on-hero.header-sticky .site-header {
    background: transparent !important;
}

body.is-on-hero .nav {
    background: rgba(0,0,0,0) !important;
    background-color: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

body.is-on-hero .brand,
body.is-on-hero .nav-links a {
    color: rgba(255, 255, 255, 0.92);
}

body.is-on-hero .nav-links a:hover {
    color: #ffffff;
}

body.is-on-hero .nav-cta {
    color: #ffffff;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

body.is-on-hero .menu-toggle {
    color: #ffffff;
    background: transparent;
    border-color: transparent;
}

body.header-sticky .nav {
    animation: nav-enter 280ms ease-out;
    min-height: 66px;
    padding: 0 20px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.brand-logo {
    display: block;
    height: 25px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 12px;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    color: #3e4553;
    font-size: clamp(0.875rem, 0.84rem + 0.16vw, 1rem);
    font-weight: 650;
    line-height: 1.2;
    border-radius: 999px;
    transition: color 180ms ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 7px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 180ms ease;
}

.nav-links a:hover {
    color: var(--text);
    background: transparent;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    position: relative;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: background 180ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    top: 6px;
}

.menu-open .menu-toggle span {
    background: transparent;
}

.menu-open .menu-toggle span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-open .menu-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: max(760px, 100svh);
    box-sizing: border-box;
    display: grid;
    align-items: center;
    padding: calc(var(--header-offset) + 20px) 0 72px;
    color: #ffffff;
    isolation: isolate;
    background: linear-gradient(180deg, #050608 0%, #0b0d12 42%, #12161f 100%);
    overflow: clip;
}

.hero::before {
    content: none;
}

@keyframes nav-enter {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 690px;
    margin: 1.5rem 0 0;
    color: rgba(228, 233, 243, 0.78);
    font-size: clamp(1rem, 0.96rem + 0.28vw, 1.125rem);
    line-height: 1.74;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 2rem;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 46px;
    max-width: 650px;
}

.hero-stat {
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
}

.hero-stat strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-stat span {
    display: block;
    margin-top: 4px;
    color: rgba(228, 233, 243, 0.68);
    font-size: 0.84rem;
    line-height: 1.45;
}

.hero .btn-primary {
    color: #0b0d13;
    background: linear-gradient(135deg, #ffffff, #dfe6f3);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
}

.hero .btn-primary:hover {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.hero .btn-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.enterprise-mockup,
.showcase-mockup {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #080a0f, #151a25 58%, #07080c);
    box-shadow: 0 34px 90px rgba(8, 10, 15, 0.34);
    color: #fff;
}

.enterprise-mockup {
    min-height: 620px;
    border-radius: 28px;
    padding: 18px;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.hero-systems {
    display: grid;
    align-items: center;
    min-height: 560px;
    padding: 24px;
}

.hero-systems.enterprise-mockup {
    overflow: visible;
    border: none;
    background: transparent;
    box-shadow: none;
}

.hero-systems.enterprise-mockup::before {
    display: none;
}

.hero-systems-stage {
    position: relative;
    min-height: 512px;
}

.hero-systems-stage::before,
.hero-systems-stage::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-systems-stage::before {
    top: 38px;
    right: 36px;
    width: 118px;
    height: 118px;
    background: radial-gradient(circle, rgba(79, 127, 255, 0.4), transparent 70%);
    filter: blur(8px);
}

.hero-systems-stage::after {
    left: 26px;
    bottom: 32px;
    width: 154px;
    height: 154px;
    background: radial-gradient(circle, rgba(109, 93, 252, 0.3), transparent 72%);
    filter: blur(10px);
}

.system-card {
    position: absolute;
    inset: 0;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(155deg, rgba(9, 12, 18, 0.95), rgba(16, 21, 33, 0.9));
    box-shadow: 0 30px 60px rgba(4, 8, 20, 0.28);
    backdrop-filter: blur(22px);
    transform-origin: center;
    opacity: 0;
    animation: hero-system-carousel 20s infinite ease-in-out;
}

.system-card:nth-child(2) {
    animation-delay: 5s;
}

.system-card:nth-child(3) {
    animation-delay: 10s;
}

.system-card:nth-child(4) {
    animation-delay: 15s;
}

.system-card.is-active {
    opacity: 1;
}

.system-card-top,
.system-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.system-card-head {
    align-items: end;
}

.system-card-head p {
    margin: 0 0 6px;
    color: var(--muted-dark);
    font-size: clamp(0.6875rem, 0.67rem + 0.08vw, 0.75rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.system-card-head h3 {
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(1.625rem, 1.5rem + 0.45vw, 2rem);
    line-height: 1.08;
}

.system-score {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(122, 153, 255, 0.34);
    background: rgba(40, 93, 255, 0.14);
    color: #e8eeff;
    font-size: 0.78rem;
    font-weight: 800;
}

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

.system-table .table-row {
    grid-template-columns: 1.2fr 0.8fr 0.65fr;
}

.browser-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.browser-copy strong {
    display: block;
}

.browser-copy span {
    display: block;
    margin-top: 8px;
    color: var(--muted-dark);
    line-height: 1.55;
}

.browser-preview {
    display: grid;
    gap: 10px;
}

.browser-preview i {
    display: block;
    height: 62px;
    border-radius: 16px;
    background:
    linear-gradient(135deg, rgba(84, 130, 255, 0.82), rgba(12, 18, 32, 0.28)),
    rgba(255, 255, 255, 0.08);
}

.browser-preview i:nth-child(2) {
    height: 22px;
    width: 76%;
}

.browser-preview i:nth-child(3) {
    height: 22px;
    width: 54%;
}

.system-bars {
    display: grid;
}

.mobile-frame {
    display: grid;
    place-items: center;
    min-height: 0;
    padding-top: 4px;
    overflow: hidden;
}

.mobile-screen {
    width: min(100%, 210px);
    height: 100%;
    max-height: 100%;
    aspect-ratio: 10 / 18.8;
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
    linear-gradient(180deg, rgba(17, 24, 40, 0.9), rgba(8, 12, 20, 0.96)),
    rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.mobile-topbar,
.mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mobile-topbar span,
.mobile-panel-head span {
    color: var(--muted-dark);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-topbar strong,
.mobile-panel-head strong {
    font-size: 0.72rem;
}

.mobile-stat {
    padding: 12px;
    border-radius: 18px;
    background:
    linear-gradient(135deg, rgba(79, 127, 255, 0.28), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.mobile-stat span {
    display: block;
    color: var(--muted-dark);
    font-size: 0.68rem;
}

.mobile-stat strong {
    display: block;
    margin-top: 6px;
    font-size: 1.8rem;
}

.mobile-stat small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.64rem;
}

.mobile-actions,
.mobile-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

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

.mobile-action-card,
.mobile-summary-card {
    padding: 8px 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-action-card {
    display: grid;
    justify-items: start;
    gap: 6px;
}

.mobile-action-card i,
.mobile-list-item i {
    display: block;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(96, 142, 255, 0.95), rgba(109, 93, 252, 0.55));
}

.mobile-action-card i {
    width: 20px;
    height: 20px;
}

.mobile-action-card span,
.mobile-summary-card span {
    color: var(--muted-dark);
    font-size: 0.6rem;
    line-height: 1.3;
}

.mobile-panel {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.mobile-list {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.mobile-list-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.mobile-list-item i {
    width: 24px;
    height: 24px;
}

.mobile-list-item strong,
.mobile-summary-card strong {
    display: block;
    font-size: 0.72rem;
}

.mobile-list-item span {
    display: block;
    margin-top: 2px;
    color: var(--muted-dark);
    font-size: 0.58rem;
    line-height: 1.3;
}

.chat-flow {
    display: grid;
    gap: 12px;
}

.chat-bubble {
    max-width: 88%;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.92rem;
    line-height: 1.55;
}

.chat-bubble.bot {
    justify-self: start;
    background: rgba(255, 255, 255, 0.09);
    color: #f3f6ff;
}

.chat-bubble.user {
    justify-self: end;
    background: linear-gradient(135deg, rgba(40, 93, 255, 0.84), rgba(109, 93, 252, 0.74));
    color: #fff;
}

@keyframes hero-system-carousel {
    0% {
        opacity: 0;
        transform: translate3d(-42px, 18px, 0) scale(0.9) rotate(-8deg);
    }
    6% {
        opacity: 0.55;
    }
    12%,
    22% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    28% {
        opacity: 0;
        transform: translate3d(54px, -20px, 0) scale(0.92) rotate(8deg);
    }
    100% {
        opacity: 0;
        transform: translate3d(54px, -20px, 0) scale(0.92) rotate(8deg);
    }
}

.enterprise-mockup::before,
.showcase-mockup::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(ellipse at 70% 10%, rgba(40, 93, 255, 0.28), transparent 34%),
    radial-gradient(ellipse at 16% 86%, rgba(109, 93, 252, 0.18), transparent 36%);
    pointer-events: none;
}

.enterprise-screen {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 584px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(20px);
}

.mockup-topbar,
.showcase-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.window-dots {
    display: flex;
    gap: 7px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
}

.mockup-search {
    flex: 1;
    max-width: 260px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.mockup-badge {
    padding: 7px 10px;
    color: #dce5ff;
    font-size: 0.76rem;
    font-weight: 700;
    border: 1px solid rgba(122, 153, 255, 0.34);
    border-radius: 999px;
    background: rgba(40, 93, 255, 0.14);
}

.mockup-layout {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 18px;
}

.mockup-sidebar {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.side-pill {
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.side-pill.active {
    background: linear-gradient(135deg, rgba(40, 93, 255, 0.8), rgba(109, 93, 252, 0.78));
    box-shadow: 0 12px 28px rgba(40, 93, 255, 0.22);
}

.mockup-main {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 16px;
    min-width: 0;
}

.mockup-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.mockup-title h3 {
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0;
}

.mockup-title p {
    margin: 5px 0 0;
    color: var(--muted-dark);
    font-size: 0.86rem;
}

.quote-score {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    background:
    radial-gradient(circle at 50% 50%, #111725 54%, transparent 55%),
    conic-gradient(from 40deg, var(--accent) 0 76%, rgba(255, 255, 255, 0.12) 76% 100%);
}

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

.metric-card,
.flow-card,
.table-wrap,
.cpq-panel,
.cpq-summary,
.cpq-table {
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
}

.metric-card {
    min-height: 96px;
    padding: 14px;
    border-radius: 16px;
}

.metric-card span {
    display: block;
    color: var(--muted-dark);
    font-size: 0.78rem;
    line-height: 1.35;
}

.metric-card strong {
    display: block;
    margin-top: 12px;
    font-size: 1.38rem;
    letter-spacing: 0;
}

.mockup-content {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 14px;
    min-height: 0;
}

.table-wrap {
    overflow: hidden;
    border-radius: 18px;
}

.table-row {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.65fr;
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8ecf8;
    font-size: 0.84rem;
}

.table-row:first-child {
    color: var(--muted-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.055);
}

.status {
    justify-self: start;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(40, 93, 255, 0.2);
    color: #dfe7ff;
}

.flow-stack {
    display: grid;
    gap: 12px;
}

.flow-card {
    padding: 14px;
    border-radius: 16px;
}

.flow-card span {
    display: block;
    color: var(--muted-dark);
    font-size: 0.76rem;
}

.flow-card strong {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
}

.progress-line {
    height: 8px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-line i {
    display: block;
    width: var(--value);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--accent-violet));
}

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

.trust-card,
.service-card,
.process-step,
.logo-card,
.team-card,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 36px rgba(17, 19, 24, 0.06);
    backdrop-filter: blur(18px);
}

.trust-card {
    min-height: 176px;
    padding: 24px;
}

.trust-card strong,
.service-card h3,
.process-step h3,
.team-card h3 {
    display: block;
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(1.625rem, 2vw, 2.125rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.trust-card p,
.service-card p,
.process-step p,
.team-card p,
.faq-content p {
    margin: 0.95rem 0 0;
    color: var(--muted);
    font-size: var(--step-0);
    line-height: 1.68;
}

.trust-index {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    background: #10131b;
}

.services-heading {
    max-width: 720px;
    margin-bottom: 32px;
    margin-inline: auto;
    text-align: center;
}

.services-heading h2 {
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: var(--heading-leading-tight);
    letter-spacing: 0;
}

.services-tabs {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
    gap: 20px;
}

.services-tabs-nav,
.services-tabs-panel {
    border: 1px solid rgba(14, 19, 31, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 20px 52px rgba(17, 19, 24, 0.07);
    backdrop-filter: blur(18px);
}

.services-tabs-nav {
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 16px;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    color: #454d5c;
    font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
    font-weight: 650;
    line-height: 1.35;
    text-align: left;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.service-tab:hover {
    transform: translateX(3px);
    color: var(--text);
}

.service-tab.is-active {
    color: var(--text);
    border-color: rgba(40, 93, 255, 0.76);
    background: rgba(255, 255, 255, 0.9);
}

.service-tab-dot {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: #3d4655;
    box-shadow: none;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.service-tab-dot.icon-system {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M3 4.5A1.5 1.5 0 0 1 4.5 3h11A1.5 1.5 0 0 1 17 4.5v11a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 15.5v-11Zm2 1.5v3h4V5.5H5Zm5.5 0v3H15V5.5h-4.5ZM5 10.5v4h4v-4H5Zm5.5 0v4H15v-4h-4.5Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M3 4.5A1.5 1.5 0 0 1 4.5 3h11A1.5 1.5 0 0 1 17 4.5v11a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 3 15.5v-11Zm2 1.5v3h4V5.5H5Zm5.5 0v3H15V5.5h-4.5ZM5 10.5v4h4v-4H5Zm5.5 0v4H15v-4h-4.5Z'/%3E%3C/svg%3E");
}

.service-tab-dot.icon-crm {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M6.25 9a2.75 2.75 0 1 1 0-5.5 2.75 2.75 0 0 1 0 5.5Zm7.5 0a2.75 2.75 0 1 1 0-5.5 2.75 2.75 0 0 1 0 5.5ZM2.5 15.25c0-2.05 1.68-3.75 3.75-3.75h.5c2.07 0 3.75 1.7 3.75 3.75V17H2.5v-1.75Zm7 1.75v-1.25c0-1.16-.32-2.25-.89-3.19.5-.67 1.3-1.06 2.14-1.06h.5c2.07 0 3.75 1.7 3.75 3.75V17H9.5Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M6.25 9a2.75 2.75 0 1 1 0-5.5 2.75 2.75 0 0 1 0 5.5Zm7.5 0a2.75 2.75 0 1 1 0-5.5 2.75 2.75 0 0 1 0 5.5ZM2.5 15.25c0-2.05 1.68-3.75 3.75-3.75h.5c2.07 0 3.75 1.7 3.75 3.75V17H2.5v-1.75Zm7 1.75v-1.25c0-1.16-.32-2.25-.89-3.19.5-.67 1.3-1.06 2.14-1.06h.5c2.07 0 3.75 1.7 3.75 3.75V17H9.5Z'/%3E%3C/svg%3E");
}

.service-tab-dot.icon-cpq {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5 3h7.5a1 1 0 0 1 .71.29l2.5 2.5a1 1 0 0 1 .29.71V16a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm1.5 3.5h7V5h-1.62a1.5 1.5 0 0 1-1.5-1.5H6.5v3Zm0 3h7v1.5h-7V9.5Zm0 3h5v1.5h-5v-1.5Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M5 3h7.5a1 1 0 0 1 .71.29l2.5 2.5a1 1 0 0 1 .29.71V16a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm1.5 3.5h7V5h-1.62a1.5 1.5 0 0 1-1.5-1.5H6.5v3Zm0 3h7v1.5h-7V9.5Zm0 3h5v1.5h-5v-1.5Z'/%3E%3C/svg%3E");
}

.service-tab-dot.icon-ai {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M10 2.5a3.25 3.25 0 0 1 3.25 3.25v.64a4.75 4.75 0 0 1 1.57 7.98 4.74 4.74 0 0 1-3.07 3.08v.05a1 1 0 0 1-1 1h-1.5a1 1 0 0 1-1-1v-.05a4.74 4.74 0 0 1-3.07-3.08 4.75 4.75 0 0 1 1.57-7.98v-.64A3.25 3.25 0 0 1 10 2.5Zm-1 5.75a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5H9Zm-1 3a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5H8Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M10 2.5a3.25 3.25 0 0 1 3.25 3.25v.64a4.75 4.75 0 0 1 1.57 7.98 4.74 4.74 0 0 1-3.07 3.08v.05a1 1 0 0 1-1 1h-1.5a1 1 0 0 1-1-1v-.05a4.74 4.74 0 0 1-3.07-3.08 4.75 4.75 0 0 1 1.57-7.98v-.64A3.25 3.25 0 0 1 10 2.5Zm-1 5.75a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5H9Zm-1 3a.75.75 0 0 0 0 1.5h4a.75.75 0 0 0 0-1.5H8Z'/%3E%3C/svg%3E");
}

.service-tab-dot.icon-mobile {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M7 2.5h6A1.5 1.5 0 0 1 14.5 4v12A1.5 1.5 0 0 1 13 17.5H7A1.5 1.5 0 0 1 5.5 16V4A1.5 1.5 0 0 1 7 2.5Zm0 2v10.5h6V4.5H7Zm2 11.75a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='black' d='M7 2.5h6A1.5 1.5 0 0 1 14.5 4v12A1.5 1.5 0 0 1 13 17.5H7A1.5 1.5 0 0 1 5.5 16V4A1.5 1.5 0 0 1 7 2.5Zm0 2v10.5h6V4.5H7Zm2 11.75a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z'/%3E%3C/svg%3E");
}

.service-tab.is-active .service-tab-dot {
    background: #202733;
}

.services-tabs-panel {
    min-height: auto;
    padding: 48px;
    display: grid;
    align-content: start;
}

.services-panel-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 10px;
    margin-bottom: 18px;
    font-size: clamp(0.6875rem, 0.67rem + 0.08vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #22314d;
    border: 1px solid rgba(14, 19, 31, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.services-tabs-panel h3 {
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.services-tabs-panel p {
    max-width: 900px;
    margin: 1.25rem 0 0;
    color: #4e5562;
    font-size: var(--step-0);
    line-height: 1.72;
}

.services-points {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.services-points li {
    position: relative;
    padding-left: 20px;
    color: #2f3745;
    line-height: 1.5;
}

.services-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.64em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-violet));
}

.services-panel-link {
    width: fit-content;
    margin-top: 28px;
    color: #0d121b;
    font-weight: 800;
    font-size: clamp(0.98rem, 0.95rem + 0.16vw, 1.0625rem);
    transition: color 180ms ease, transform 180ms ease;
}

.services-panel-link::after {
    content: " ->";
}

.services-panel-link:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.editorial {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
    gap: 56px;
    align-items: center;
    padding: 56px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    color: #fff;
    background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #08090e, #161b26 56%, #0a0d14);
    box-shadow: 0 34px 90px rgba(8, 10, 15, 0.28);
    overflow: hidden;
}

.editorial-copy p {
    color: var(--muted-dark);
}

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

.proof-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.proof-item i {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-violet));
    box-shadow: 0 0 0 6px rgba(40, 93, 255, 0.12);
}

.proof-item strong {
    display: block;
    font-size: clamp(1rem, 0.97rem + 0.14vw, 1.125rem);
    line-height: 1.45;
}

.process-section {
    position: relative;
    width: 100%;
    margin-top: 26px;
}

.process-stage {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 110px 0 68px;
    border-radius: 0;
    color: #fff;
    background:
    linear-gradient(to top, rgba(4, 6, 10, 0.96) 0%, rgba(7, 10, 15, 0.82) 24%, rgba(10, 13, 19, 0.54) 52%, rgba(14, 17, 24, 0.22) 78%, rgba(17, 20, 28, 0.08) 100%),
    linear-gradient(180deg, #151922 0%, #0d1017 100%);
    box-shadow: 0 40px 100px rgba(7, 10, 16, 0.24);
    isolation: isolate;
    min-height: 900px;
}

.process-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
    background: transparent;
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(to top, rgba(3, 5, 9, 0.98) 0%, rgba(5, 8, 13, 0.9) 20%, rgba(8, 11, 17, 0.72) 42%, rgba(11, 14, 20, 0.4) 66%, rgba(14, 17, 24, 0.16) 84%, rgba(14, 17, 24, 0) 100%);
}

.process-stage::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.process-heading {
    max-width: 920px;
    margin-inline: auto;
    margin-bottom: 64px;
}

.process-heading .eyebrow {
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    letter-spacing: 0.12em;
}

.process-heading h2,
.process-heading p {
    color: #fff;
}

.process-heading h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: var(--heading-leading-tight);
}

.process-heading p {
    max-width: 720px;
    margin-inline: auto;
    color: rgba(233, 237, 245, 0.86);
    font-size: var(--step-0);
    line-height: 1.74;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    counter-reset: process;
}

.process-step {
    position: relative;
    min-height: 286px;
    padding: 34px 46px 36px;
    counter-increment: process;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 32px;
    background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 26%, rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.03) 78%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(69, 74, 88, 0.42), rgba(32, 36, 47, 0.48));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.process-step::before {
    content: "Paso 0" counter(process);
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.6875rem, 0.67rem + 0.08vw, 0.8125rem);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.process-step h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.625rem, 2vw, 2.125rem);
    line-height: 1.08;
    max-width: 11ch;
}

.process-step p {
    max-width: 30ch;
    margin-top: 24px;
    color: rgba(231, 236, 243, 0.9);
    font-size: var(--step-0);
    line-height: 1.72;
}

.process-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.process-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    color: #111318;
    font-weight: 800;
    font-size: clamp(0.9375rem, 0.9rem + 0.22vw, 1.0625rem);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.process-cta::after {
    content: none;
}

.process-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.showcase {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.64fr) minmax(420px, 1fr);
    gap: 32px;
    align-items: stretch;
}

.showcase-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    padding: 22px;
}

.showcase-copy h2 {
    margin: 16px 0 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.showcase-copy p {
    color: var(--muted);
    font-size: var(--step-0);
    line-height: 1.72;
}

.showcase-notes {
    display: grid;
    gap: 10px;
    margin-top: 32px;
}

.showcase-notes span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3d4655;
    font-weight: 700;
}

.showcase-notes span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.showcase-mockup {
    min-height: 520px;
    padding: 18px;
    border-radius: 24px;
}

.showcase-screen {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px;
    height: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.cpq-grid {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 16px;
    min-height: 0;
}

.cpq-panel,
.cpq-summary,
.cpq-table {
    border-radius: 16px;
    padding: 16px;
}

.cpq-panel h3,
.cpq-summary h3 {
    margin: 0 0 16px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(1.125rem, 1.02rem + 0.28vw, 1.375rem);
    line-height: 1.15;
    letter-spacing: 0;
}

.config-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: var(--muted-dark);
    font-size: 0.9rem;
}

.config-row strong {
    color: #fff;
}

.price {
    margin: 24px 0 4px;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0;
}

.mini-chart {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 118px;
    margin-top: 24px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.mini-chart i {
    flex: 1;
    min-width: 12px;
    height: var(--bar);
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(40, 93, 255, 0.62));
}

.cpq-table {
    grid-column: 1 / -1;
    padding: 0;
    overflow: hidden;
}

.logos-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: logos-marquee 26s linear infinite;
}

.logo-card {
    display: grid;
    place-items: center;
    flex: 0 0 276px;
    width: 276px;
    min-height: 144px;
    padding: 18px 22px;
    color: #7c8491;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(1.2rem, 1.1rem + 0.28vw, 1.35rem);
    font-weight: 700;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    filter: grayscale(1);
    transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, filter 180ms ease;
}

.client-logo {
    display: block;
    width: min(100%, 196px);
    max-height: 76px;
    object-fit: contain;
}

.logos-marquee:hover .logos-track {
    animation-play-state: paused;
}

.logo-card:hover {
    transform: translateY(-3px);
    color: var(--text);
    filter: grayscale(0);
}

@keyframes logos-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 7px));
    }
}

.team-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: 48px;
    align-items: center;
}

.team-stage {
    --team-front-y: 102px;
    --team-left-x: -94%;
    --team-left-y: 24px;
    --team-left-scale: 0.62;
    --team-right-x: -4%;
    --team-right-y: 42px;
    --team-right-scale: 0.64;
    position: relative;
    min-height: 610px;
    isolation: isolate;
}

.team-copy {
    max-width: 520px;
}

.team-copy h2 {
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.team-copy p {
    margin: 1.25rem 0 0;
    color: var(--muted);
    font-size: var(--step-0);
    line-height: 1.72;
}

.team-points {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.team-point {
    padding: 18px 20px;
    border: 1px solid rgba(14, 19, 31, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 16px 32px rgba(17, 19, 24, 0.05);
    backdrop-filter: blur(16px);
}

.team-point strong {
    display: block;
    color: #10131b;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
    line-height: 1.2;
}

.team-point span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: clamp(0.9375rem, 0.91rem + 0.12vw, 1rem);
    line-height: 1.65;
}

.team-spotlight {
    --card-width: min(100%, 420px);
    --card-height: 535px;
    position: absolute;
    top: 0;
    left: 50%;
    width: var(--card-width);
    height: var(--card-height);
    overflow: hidden;
    border-radius: 34px;
    border: none;
    background: transparent;
    box-shadow: 0 38px 90px rgba(17, 19, 24, 0.14);
    transform-origin: center center;
}

.team-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(rgba(17, 19, 24, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 24, 0.04) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    pointer-events: none;
}

.team-spotlight-1 {
    animation: team-card-one 12s ease-in-out infinite;
}

.team-spotlight-2 {
    animation: team-card-two 12s ease-in-out infinite;
}

.team-spotlight-3 {
    animation: team-card-three 12s ease-in-out infinite;
}

.team-spotlight-action {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    padding: 0;
    color: #141821;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(17, 19, 24, 0.08);
    border-radius: 50%;
    box-shadow: 0 16px 30px rgba(17, 19, 24, 0.12);
    cursor: pointer;
}

.team-spotlight-action span,
.team-spotlight-action span::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.team-spotlight-action span::before {
    transform: rotate(90deg);
}

.team-portrait {
    position: absolute;
    inset: 0;
    display: block;
}

.team-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-portrait-glow {
    position: absolute;
    left: 50%;
    bottom: 21%;
    width: 52%;
    height: 33%;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(214, 194, 187, 0.32), rgba(214, 194, 187, 0) 72%);
    filter: blur(18px);
}

.team-portrait-head {
    position: absolute;
    left: 50%;
    top: 24%;
    width: 19%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #f0c3a6, #dfab8c);
    box-shadow: inset 0 -6px 12px rgba(147, 82, 53, 0.18);
}

.team-portrait-body {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 58%;
    height: 56%;
    border-radius: 30% 30% 10% 10% / 16% 16% 8% 8%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #59626f, #343b45 62%, #2b3139);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.team-portrait-device {
    position: absolute;
    left: 50%;
    bottom: 12%;
    width: 40%;
    height: 12%;
    border-radius: 18px;
    transform: translateX(-50%) rotate(-12deg);
    background: linear-gradient(180deg, #d4cbc8, #b6aca9);
    box-shadow: 0 16px 28px rgba(17, 19, 24, 0.14);
}

.team-portrait-founder .team-portrait-head {
    background: linear-gradient(180deg, #f0c4a1, #dca17d);
}

.team-portrait-founder .team-portrait-body {
    background: linear-gradient(180deg, #50545c, #2f333a 58%, #292d33);
}

.team-portrait-founder {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 19, 24, 0.04));
}

.team-portrait-builder .team-portrait-head {
    background: linear-gradient(180deg, #82573d, #5e3d29);
}

.team-portrait-builder .team-portrait-body {
    background: linear-gradient(180deg, #536556, #304737 58%, #233629);
}

.team-portrait-ops .team-portrait-head {
    background: linear-gradient(180deg, #f4d3b9, #d9b098);
}

.team-portrait-ops .team-portrait-body {
    background: linear-gradient(180deg, #d0a05a, #ba8541 58%, #a57235);
}

.team-caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 84px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 34px rgba(17, 19, 24, 0.12);
    backdrop-filter: blur(16px);
}

.team-caption strong {
    display: block;
    color: #10131b;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(1.1rem, 1.01rem + 0.34vw, 1.4rem);
    line-height: 1.06;
}

.team-caption span {
    display: block;
    margin-top: 6px;
    color: #252b37;
    font-size: clamp(0.85rem, 0.82rem + 0.14vw, 0.95rem);
    line-height: 1.35;
}

.team-flag {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(17, 19, 24, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.team-flag-mx {
    background: linear-gradient(90deg, #0f7b3b 0 33.333%, #ffffff 33.333% 66.666%, #cf2b37 66.666% 100%);
}

.team-flag-us {
    background:
    linear-gradient(180deg, #b22234 0 14%, #ffffff 14% 28%, #b22234 28% 42%, #ffffff 42% 56%, #b22234 56% 70%, #ffffff 70% 84%, #b22234 84% 100%);
}

.team-flag-ar {
    background:
    linear-gradient(180deg, #6cb4ff 0 33.333%, #ffffff 33.333% 66.666%, #6cb4ff 66.666% 100%);
}

@keyframes team-card-one {
    0%, 28% {
        transform: translateX(-50%) translateY(var(--team-front-y)) scale(1);
        filter: blur(0);
        opacity: 1;
        z-index: 3;
    }
    33%, 61% {
        transform: translateX(var(--team-left-x)) translateY(var(--team-left-y)) scale(var(--team-left-scale));
        filter: blur(5px);
        opacity: 0.38;
        z-index: 1;
    }
    66%, 94% {
        transform: translateX(var(--team-right-x)) translateY(var(--team-right-y)) scale(var(--team-right-scale));
        filter: blur(4px);
        opacity: 0.44;
        z-index: 2;
    }
    100% {
        transform: translateX(-50%) translateY(var(--team-front-y)) scale(1);
        filter: blur(0);
        opacity: 1;
        z-index: 3;
    }
}

@keyframes team-card-two {
    0%, 28% {
        transform: translateX(var(--team-right-x)) translateY(var(--team-right-y)) scale(var(--team-right-scale));
        filter: blur(4px);
        opacity: 0.44;
        z-index: 2;
    }
    33%, 61% {
        transform: translateX(-50%) translateY(var(--team-front-y)) scale(1);
        filter: blur(0);
        opacity: 1;
        z-index: 3;
    }
    66%, 94% {
        transform: translateX(var(--team-left-x)) translateY(var(--team-left-y)) scale(var(--team-left-scale));
        filter: blur(5px);
        opacity: 0.38;
        z-index: 1;
    }
    100% {
        transform: translateX(var(--team-right-x)) translateY(var(--team-right-y)) scale(var(--team-right-scale));
        filter: blur(4px);
        opacity: 0.44;
        z-index: 2;
    }
}

@keyframes team-card-three {
    0%, 28% {
        transform: translateX(var(--team-left-x)) translateY(var(--team-left-y)) scale(var(--team-left-scale));
        filter: blur(5px);
        opacity: 0.38;
        z-index: 1;
    }
    33%, 61% {
        transform: translateX(var(--team-right-x)) translateY(var(--team-right-y)) scale(var(--team-right-scale));
        filter: blur(4px);
        opacity: 0.44;
        z-index: 2;
    }
    66%, 94% {
        transform: translateX(-50%) translateY(var(--team-front-y)) scale(1);
        filter: blur(0);
        opacity: 1;
        z-index: 3;
    }
    100% {
        transform: translateX(var(--team-left-x)) translateY(var(--team-left-y)) scale(var(--team-left-scale));
        filter: blur(5px);
        opacity: 0.38;
        z-index: 1;
    }
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px 24px;
    text-align: left;
    color: var(--text);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 800;
    font-size: clamp(1.0625rem, 1rem + 0.28vw, 1.25rem);
    line-height: 1.4;
}

.faq-question svg {
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
}

.faq-content p {
    margin: 0;
    padding: 0 24px 22px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    padding: 72px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #08090e, #141a25 62%, #0c0f17);
    box-shadow: 0 34px 90px rgba(8, 10, 15, 0.28);
}

.cta-panel p {
    max-width: 650px;
    color: var(--muted-dark);
}

.cta-panel .btn {
    margin-top: 30px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 78px 0 28px;
    color: #fff;
    background: #14120f;
}

.footer-backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
    linear-gradient(180deg, rgba(16, 14, 12, 0.54), rgba(12, 11, 10, 0.92)),
    linear-gradient(180deg, rgba(10, 10, 10, 0.24), rgba(10, 10, 10, 0.7)),
    url("assets/img_footer.jpg") center / cover no-repeat;
    filter: saturate(0.86);
}

.footer-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.78) 72%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.42) 38%, rgba(0, 0, 0, 0.78) 72%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
}

.footer-shell {
    position: relative;
    z-index: 1;
}

.footer-contact {
    max-width: 980px;
    margin: 0 auto 78px;
    text-align: center;
}

.footer-contact .eyebrow {
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
}

.footer-contact h2 {
    margin: 22px 0 0;
    color: #fff;
    font-family: "Space Grotesk", "Inter", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.footer-contact p {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 0.96rem + 0.22vw, 1.15rem);
    line-height: 1.72;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 34px;
    padding: 0 30px;
    color: #111318;
    font-size: clamp(1rem, 0.96rem + 0.18vw, 1.125rem);
    font-weight: 700;
    line-height: 1.1;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
}

.footer-cta::after {
    content: "›";
    margin-left: 12px;
    font-size: 1.4em;
    line-height: 1;
}

.footer-divider {
    height: 1px;
    margin: 0 0 52px;
    background: rgba(255, 255, 255, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 72px;
    align-items: start;
    max-width: 760px;
    margin-left: auto;
}

.footer-col h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: clamp(0.9rem, 0.86rem + 0.12vw, 1rem);
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    text-align: left;
}

.footer-col a {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.78rem, 0.75rem + 0.08vw, 0.84rem);
    line-height: 1.3;
    text-align: left;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(2px);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 64px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-monogram,
.footer-copyright {
    color: rgba(255, 255, 255, 0.88);
}

.footer-monogram {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.footer-monogram-logo {
    display: block;
    height: 30px;
    width: auto;
}

.footer-copyright {
    justify-self: center;
    font-size: clamp(0.9375rem, 0.91rem + 0.12vw, 1rem);
    line-height: 1.4;
}

.footer-socials {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-socials a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

@media (max-width: 1080px) {
    .hero-grid,
    .editorial,
    .showcase-grid {
    grid-template-columns: 1fr;
    }

    .hero-grid {
    gap: 42px;
    }

    .enterprise-mockup {
    max-width: 720px;
    margin: 0 auto;
    transform: none;
    }

    .hero-systems {
    width: 100%;
    }

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

    .services-tabs {
    grid-template-columns: 1fr;
    }

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

    .process-step:nth-child(4),
    .process-step:nth-child(5) {
    grid-column: span 1;
    }

    .process-stage {
    min-height: auto;
    padding: 72px 26px 42px;
    }

    .process-step {
    grid-column: span 1;
    min-height: 280px;
    padding: 32px 28px 26px;
    }

    .showcase-copy {
    min-height: auto;
    }

    .team-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    }

    .team-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    }

    .team-stage {
    --team-front-y: 96px;
    --team-left-x: -86%;
    --team-left-y: 28px;
    --team-right-x: -10%;
    --team-right-y: 42px;
    min-height: 560px;
    }

    .team-spotlight {
    --card-width: min(100%, 380px);
    --card-height: 490px;
    left: 50%;
    }

    .site-footer {
    padding: 64px 0 28px;
    }

    .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
    }

    .logo-card {
    flex-basis: 200px;
    width: 200px;
    }
}

@media (max-width: 860px) {
    .container {
    width: min(100% - 28px, var(--max));
    }

    .site-header {
    padding: 12px 0;
    }

    .nav {
    min-height: 60px;
    border-radius: 28px;
    }

    .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-tight);
    backdrop-filter: blur(24px);
    }

    .menu-open .nav-links {
    display: flex;
    }

    body.is-on-hero .nav-links {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(9, 12, 18, 0.92);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
    }

    .nav-links a {
    padding: 14px;
    }

    .nav-cta {
    display: none;
    }

    .menu-toggle {
    display: inline-flex;
    }

    .hero {
    min-height: auto;
    padding: calc(var(--header-offset) + 12px) 0 60px;
    }

    .hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.25rem);
    }

    .hero-meta {
    grid-template-columns: 1fr;
    }

    .enterprise-mockup,
    .showcase-mockup {
    min-height: auto;
    border-radius: 20px;
    padding: 12px;
    }

    .hero-systems {
    min-height: 500px;
    }

    .hero-systems-stage {
    min-height: 472px;
    }

    .system-card {
    padding: 18px;
    }

    .enterprise-screen,
    .showcase-screen {
    min-height: auto;
    padding: 14px;
    }

    .mockup-layout,
    .mockup-content,
    .cpq-grid {
    grid-template-columns: 1fr;
    }

    .system-metrics,
    .browser-hero {
    grid-template-columns: 1fr;
    }

    .mockup-sidebar {
    display: none;
    }

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

    .chat-bubble {
    max-width: 100%;
    }

    .section {
    padding: 78px 0;
    }

    .section-tight {
    padding: 54px 0;
    }

    .section-tight + #servicios.section {
    padding-top: 34px;
    }

    #porque.section,
    #equipo.section,
    #faq.section {
    padding: 52px 0;
    }

    #clientes.section-tight {
    padding: 40px 0;
    }

    .trust-grid,
    .process-grid,
    .footer-grid {
    grid-template-columns: 1fr;
    }

    .site-footer {
    padding: 56px 0 24px;
    }

    .footer-contact {
    margin-bottom: 54px;
    }

    .footer-contact h2 {
    font-size: clamp(2.5rem, 9vw, 4.2rem);
    }

    .footer-divider {
    margin-bottom: 38px;
    }

    .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
    }

    .footer-monogram,
    .footer-copyright,
    .footer-socials {
    justify-self: center;
    }

    .team-copy {
    text-align: left;
    }

    .team-stage {
    --team-front-y: 82px;
    --team-left-x: -72%;
    --team-left-y: 28px;
    --team-left-scale: 0.56;
    --team-right-x: -16%;
    --team-right-y: 44px;
    --team-right-scale: 0.58;
    min-height: 470px;
    }

    .team-spotlight {
    --card-width: min(100%, 300px);
    --card-height: 410px;
    border-radius: 26px;
    }

    .team-spotlight-action {
    top: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
    }

    .team-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-height: 88px;
    padding: 18px 20px;
    border-radius: 22px;
    }

    .logo-card {
    flex-basis: 180px;
    width: 180px;
    }

    .services-tabs-panel {
    min-height: auto;
    padding: 30px 24px;
    }

    .service-tab {
    min-height: 52px;
    font-size: clamp(0.98rem, 0.94rem + 0.22vw, 1.0625rem);
    }

    .process-stage {
    padding: 56px 18px 28px;
    border-radius: 0;
    }

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

    .process-step,
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    padding: 24px 22px;
    }

    .process-step h3 {
    font-size: clamp(1.625rem, 6vw, 1.9rem);
    }

    .process-heading h2 {
    font-size: clamp(2.5rem, 10vw, 3.25rem);
    }

    .process-heading p {
    font-size: 1rem;
    }

    .process-cta {
    width: 100%;
    max-width: 280px;
    }

    .editorial,
    .showcase,
    .cta-panel {
    padding: 26px;
    border-radius: 22px;
    }

    .process-step {
    min-height: auto;
    }

    .process-step::before {
    margin-bottom: 28px;
    }

    .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
    }
}

@media (max-width: 520px) {
    .btn {
    width: 100%;
    }

    .hero-actions {
    width: 100%;
    }

    .hero-copy p,
    .section-heading p,
    .showcase-copy p {
    font-size: 1rem;
    }

    .mockup-topbar,
    .mockup-title,
    .showcase-topbar {
    align-items: flex-start;
    flex-direction: column;
    }

    .quote-score {
    width: 62px;
    height: 62px;
    }

    .price {
    font-size: 2.05rem;
    }

    .team-layout {
    gap: 22px;
    }

    .team-stage {
    --team-front-y: 64px;
    --team-left-x: -64%;
    --team-left-y: 20px;
    --team-left-scale: 0.48;
    --team-right-x: -20%;
    --team-right-y: 30px;
    --team-right-scale: 0.5;
    min-height: 340px;
    }

    .team-spotlight {
    --card-width: min(100%, 220px);
    --card-height: 320px;
    border-radius: 22px;
    }

    .team-caption strong {
    font-size: 0.96rem;
    }

    .team-caption span {
    font-size: 0.78rem;
    }

    .footer-contact p {
    font-size: 0.98rem;
    }

    .footer-cta {
    width: 100%;
    max-width: 220px;
    }

    .footer-col h3 {
    font-size: 1.18rem;
    }

    .footer-col a {
    font-size: 0.98rem;
    }

    .logo-card {
    flex-basis: 156px;
    width: 156px;
    min-height: 92px;
    }
}
