/* ═══════════════════════════════════════
   RESET & VARIABLES
   ═══════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F2EFE9;
    --bg-accent: #1E3A5F;
    --text: #1C1F26;
    --text-muted: #4A4F5A;
    --accent: #3869AB;
    --accent-hover: #2C5478;
    --accent-deep: #78B7EE;
    --border: rgba(107, 114, 128, 0.15);
    --border-strong: rgba(107, 114, 128, 0.25);
    --font-display: 'Jost', 'Futura', 'Helvetica Neue', sans-serif;
    --font-body: 'Jost', 'Futura', 'Helvetica Neue', sans-serif;
    --font-brand: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --container: 1400px;
    --gutter: clamp(1.5rem, 4vw, 4rem);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-color: var(--bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    background-size: 256px 256px;
    background-attachment: fixed;
    color: var(--text);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    cursor: none;
}

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

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════ */
.cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    opacity: 0;
}

.cursor.is-visible {
    opacity: 1;
}

.cursor.is-hovering {
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--accent);
}

/* ═══════════════════════════════════════
   GRAIN & ATMOSPHERE
   ═══════════════════════════════════════ */
/* Grain texture moved to body background-image to avoid
   a fixed overlay layer that breaks Safari 26 Liquid Glass */

/* ═══════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent-deep), var(--accent), var(--accent-hover));
    z-index: 10001;
}

/* ═══════════════════════════════════════
   CONTAINER & UTILITIES
   ═══════════════════════════════════════ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.label::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
}

.section-padding {
    padding: clamp(6rem, 14vh, 12rem) 0;
}

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

.line-accent {
    width: 40px;
    height: 1px;
    background: var(--accent);
    display: block;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.section-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
}

.section-media__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.section-media--contact .section-media__image {
    object-position: center 30%;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    background-color: transparent;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.is-scrolled {
    background-color: rgba(242, 239, 233, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.nav.menu-open {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: clamp(28px, 3vw, 38px);
    overflow: visible;
}

.nav__logo {
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.nav__logo:hover {
    opacity: 0.75;
}

.nav__logo-img {
    height: clamp(56px, 6vw, 76px);
    width: auto;
}

.nav__ig {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.nav__ig:hover {
    color: var(--accent);
}

.nav__ig svg {
    width: clamp(27px, 3vw, 33px);
    height: clamp(27px, 3vw, 33px);
    fill: currentColor;
}

.nav__links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav__links a {
    font-size: clamp(0.85rem, 1.2vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    transition: color 0.4s ease;
}

.nav__links a:hover {
    color: var(--accent);
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.5s var(--ease-out);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__menu-btn {
    display: none;
    font-size: clamp(0.85rem, 1.2vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s var(--ease-out), visibility 0s linear 0.6s;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition-delay: 0s;
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: var(--text);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s ease;
}

.mobile-menu.is-open .mobile-menu__links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__links li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(2) a { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(3) a { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(4) a { transition-delay: 0.25s; }

.mobile-menu__links a:hover {
    color: var(--accent);
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Image overlay to blend with site palette */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

/* Ambient glow */
.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -10%;
    width: 55%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(62, 109, 148, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: clamp(7.5rem, 10vh, 9rem);
    padding-bottom: clamp(4rem, 8vh, 6rem);
}

.hero__label {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__label::before {
    display: none;
}

.hero__heading {
    margin-bottom: 2.5rem;
}

.hero-line {
    display: inline-block;
    overflow: hidden;
    vertical-align: baseline;
    padding-bottom: 0.3em;
}

.hero-line__inner {
    display: block;
    transform: translateY(110%);
    animation: heroReveal 1.4s var(--ease-out) forwards;
}

.hero-line:nth-child(1) .hero-line__inner {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    animation-delay: 0.3s;
}

.hero-line:nth-child(2) .hero-line__inner {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.2rem, 6.5vw, 6rem);
    line-height: 1;
    letter-spacing: -0.01em;
    animation-delay: 0.5s;
    color: var(--accent);
}

@keyframes heroReveal {
    to { transform: translateY(0); }
}

.hero__descriptor {
    max-width: 420px;
    margin-left: 38%;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.85;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.9s forwards;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border);
}

.hero__desc-statement {
    margin: 0;
    color: var(--text);
    font-weight: 400;
}

.hero__desc-rule {
    display: block;
    width: 0;
    height: 1px;
    background: var(--accent);
    border: none;
    margin: 1.1rem 0;
    animation: ruleExpand 0.8s var(--ease-out) 1.7s forwards;
}

@keyframes ruleExpand {
    to { width: 2.5rem; }
}

.hero__desc-punch {
    margin: 0;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--text);
}

.hero__cta {
    display: inline-block;
    margin-top: 2rem;
    margin-left: 76%;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.1s forwards;
}

.hero__cta:hover {
    background: var(--accent);
    color: #fff;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.6; }
}

/* Geometric accent */
.hero__geo {
    position: absolute;
    right: -4%;
    top: 14%;
    left: auto;
    bottom: auto;
    transform: translate(0, 0);
    width: clamp(338px, 33.8vw, 532px);
    aspect-ratio: 1;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1.5s var(--ease-out) 0.6s forwards;
}

.hero__geo-ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    animation: geoSpin 40s linear infinite;
}

.hero__geo-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateX(-50%);
}

.hero__geo-ring--inner {
    inset: 25%;
    border-style: dashed;
    border-color: var(--border);
    animation-direction: reverse;
    animation-duration: 30s;
}

.hero__geo-ring--inner::before {
    display: none;
}

.hero__geo-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    transform: translate(-50%, -50%);
}


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

.hero__brand-mark {
    display: block;
    position: absolute;
    left: var(--gutter);
    bottom: 4rem;
    width: clamp(158px, 15.75vw, 248px);
    height: auto;
    opacity: 0.27;
    pointer-events: none;
    user-select: none;
}

.hero__scroll {
    position: absolute;
    bottom: 3rem;
    right: var(--gutter);
    left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
    z-index: 2;
}

.hero__scroll-line {
    width: 40px;
    height: 1px;
    background: var(--border-strong);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    will-change: transform;
    animation: scrollLine 2.5s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    50.01% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero__scroll-text {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   KEYWORDS BAR
   ═══════════════════════════════════════ */
.keywords {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    overflow: hidden;
    background: rgba(56, 105, 171, 0.04);
    font-family: var(--font-brand);
}

.keywords__track {
    display: flex;
    width: max-content;
    animation: keywordsScroll 30s linear infinite;
}

.keywords__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.keywords__item {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    white-space: nowrap;
    padding: 0 2rem;
}

.keywords__sep {
    width: 4px;
    height: 4px;
    background: var(--accent);
    opacity: 0.55;
    flex-shrink: 0;
    transform: rotate(45deg);
}

@keyframes keywordsScroll {
    to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════ */
.services {
    border-bottom: 1px solid var(--border);
    font-family: var(--font-brand);
    position: relative;
    isolation: isolate;
}

.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg) 0%, rgba(232, 228, 221, 0.6) 50%, var(--bg) 100%);
    pointer-events: none;
    z-index: 0;
}

.services > :not(.section-media) {
    position: relative;
    z-index: 1;
}

.services__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(3rem, 7vh, 6rem);
    flex-wrap: wrap;
    gap: 1rem;
}

.services__title {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Accordion blocks layout — 2×2 with diagonal dividers */
.services__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

/* Diagonal vertical divider */
.services__blocks::before {
    content: '';
    position: absolute;
    top: -1%;
    left: 50%;
    width: 1px;
    height: 102%;
    background: var(--border-strong);
    transform: rotate(1.5deg);
    transform-origin: top center;
    z-index: 2;
    pointer-events: none;
}

/* Diagonal horizontal divider — top set dynamically via --row-split */
.services__blocks::after {
    content: '';
    position: absolute;
    left: -1%;
    top: var(--row-split, 50%);
    width: 102%;
    height: 1px;
    background: var(--border-strong);
    transform: rotate(-0.8deg);
    transform-origin: center left;
    z-index: 2;
    pointer-events: none;
}

/* Block wrapper */
.svc-block {
    border: none;
    border-radius: 0;
    overflow: hidden;
    padding: clamp(0.5rem, 1vw, 0.8rem);
    transition: background 0.4s ease;
    position: relative;
}

.svc-block:hover {
    background: rgba(62, 109, 148, 0.03);
}

/* Block header (number + title bar) */
.svc-block__header {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.2rem, 2.5vw, 2rem);
    background: rgba(62, 109, 148, 0.03);
    border-bottom: 1px solid var(--border);
}

.svc-block__number {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(62, 109, 148, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.svc-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--text);
}

.svc-block__badge {
    margin-left: auto;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    background: var(--accent);
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    white-space: nowrap;
}

/* Accordion item */
.svc-accordion {
    border-top: 1px solid var(--border);
}

.svc-accordion:first-child {
    border-top: none;
}

/* Accordion trigger button */
.svc-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1.2rem, 2.5vw, 2rem);
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.01em;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.4s ease, color 0.3s ease;
    position: relative;
}

.svc-accordion__trigger:focus-visible {
    outline-offset: -2px;
}

.svc-accordion__trigger:hover {
    background: rgba(62, 109, 148, 0.04);
    color: var(--accent);
}

/* Plus/minus icon */
.svc-accordion__icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.svc-accordion__icon::before,
.svc-accordion__icon::after {
    content: '';
    position: absolute;
    background: var(--accent);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.35s ease;
}

.svc-accordion__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.svc-accordion__icon::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

/* Open state: rotate plus to minus */
.svc-accordion.is-open > .svc-accordion__trigger .svc-accordion__icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.svc-accordion:not(.svc-accordion--sub).is-open > .svc-accordion__trigger {
    color: var(--accent);
    background: rgba(56, 105, 171, 0.03);
}

/* Accordion panel (content) */
.svc-accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.svc-accordion.is-open > .svc-accordion__panel {
    grid-template-rows: 1fr;
}

.svc-accordion__panel > .svc-accordion__body {
    overflow: hidden;
}

.svc-accordion__body {
    padding: 0 clamp(1.2rem, 2.5vw, 2rem) clamp(1.2rem, 2vw, 1.8rem);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.svc-accordion.is-open > .svc-accordion__panel > .svc-accordion__body {
    opacity: 1;
    transform: translateY(0);
}

.svc-accordion__text {
    color: var(--text-muted);
    font-size: clamp(0.84rem, 0.92vw, 0.92rem);
    line-height: 1.85;
    font-weight: 300;
}

/* Sub-accordions (nested, indented) */
.svc-accordion--sub {
    border-top: 1px solid var(--border);
    border-left: 2px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.svc-accordion--sub.is-open {
    border-left-color: rgba(56, 105, 171, 0.25);
    background: rgba(56, 105, 171, 0.015);
}

.svc-accordion--sub > .svc-accordion__trigger {
    font-size: clamp(0.8rem, 0.9vw, 0.88rem);
    color: var(--text-muted);
    padding: clamp(0.8rem, 1.2vw, 1rem) clamp(1.2rem, 2.5vw, 2rem);
    padding-left: clamp(1.4rem, 2.8vw, 2.2rem);
}

.svc-accordion--sub > .svc-accordion__trigger:hover {
    color: var(--accent);
}

.svc-accordion--sub.is-open > .svc-accordion__trigger {
    color: var(--accent);
    font-weight: 400;
}

.svc-accordion--sub .svc-accordion__icon {
    width: 10px;
    height: 10px;
}

.svc-accordion--sub .svc-accordion__body {
    padding-left: clamp(1.4rem, 2.8vw, 2.2rem);
}

.svc-accordion--sub .svc-accordion__text {
    font-size: clamp(0.8rem, 0.88vw, 0.88rem);
}

/* Staggered reveal for sub-accordions */
.svc-accordion--tier .svc-accordion--sub:nth-child(2) {
    transition-delay: 0.05s;
}
.svc-accordion--tier .svc-accordion--sub:nth-child(3) {
    transition-delay: 0.1s;
}
.svc-accordion--tier .svc-accordion--sub:nth-child(4) {
    transition-delay: 0.15s;
}

/* Price indicator */
.svc-block__price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    background: rgba(56, 105, 171, 0.04);
    border: 1px solid rgba(56, 105, 171, 0.15);
    border-radius: 2px;
}

.svc-block__price::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
}

/* Tier comparison — stacked expandable */
.svc-tiers {
    display: flex;
    flex-direction: column;
    margin-top: 1.2rem;
}

.svc-accordion--tier {
    border: 1px solid var(--border);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.svc-accordion--tier + .svc-accordion--tier {
    margin-top: -1px;
}

.svc-accordion--tier.svc-tier--pro {
    border-color: rgba(56, 105, 171, 0.25);
    background: rgba(56, 105, 171, 0.04);
}

.svc-accordion--tier > .svc-accordion__trigger {
    padding: 1rem 1.2rem;
    align-items: flex-start;
    gap: 0.8rem;
}

.svc-accordion--tier.is-open > .svc-accordion__trigger {
    background: rgba(56, 105, 171, 0.02);
}

.svc-tier__info {
    flex: 1;
    min-width: 0;
}

.svc-tier__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.svc-tier--pro .svc-tier__label {
    color: var(--accent);
}

.svc-tier__desc {
    font-size: clamp(0.76rem, 0.85vw, 0.84rem);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.svc-tier__pricing {
    text-align: right;
    flex-shrink: 0;
}

.svc-tier__monthly {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 0.15rem;
    white-space: nowrap;
}

.svc-accordion--tier .svc-accordion__body {
    padding: 0 1.2rem 1.2rem;
}

.svc-tier__includes-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.svc-tier__includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-tier__includes li {
    position: relative;
    padding-left: 1.1rem;
    font-size: clamp(0.8rem, 0.88vw, 0.88rem);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.75;
}

.svc-tier__includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 4px;
    background: var(--accent);
    opacity: 0.4;
    transform: rotate(45deg);
}

/* ─── Asesoría incluida banner ─── */
.services__included {
    margin-top: clamp(3rem, 6vh, 5rem);
    display: flex;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: clamp(1.5rem, 3vw, 2.2rem);
    background: var(--accent);
    color: #fff;
    border-radius: 2px;
}

.services__included-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 0.15rem;
    opacity: 0.8;
}

.services__included-title {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.1vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.services__included-desc {
    font-size: clamp(0.78rem, 0.9vw, 0.9rem);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.8;
}

/* ─── Servicios Individuales ─── */
.services__individual {
    margin-top: clamp(4rem, 8vh, 7rem);
    padding-top: clamp(3rem, 6vh, 5rem);
    border-top: 1px solid var(--border);
}

.services__individual-header {
    margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.services__individual-title {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.services__individual-desc {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 300;
    line-height: 1.7;
    max-width: 600px;
}

.services__individual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2vw, 2rem);
}

.services__individual-card {
    border: 1px solid var(--border);
    padding: clamp(1.5rem, 2.5vw, 2rem);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.services__individual-card:hover {
    background: rgba(62, 109, 148, 0.03);
    border-color: var(--border-strong);
}

.services__individual-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.75rem;
    color: var(--accent);
    opacity: 0.5;
    display: block;
    margin-bottom: 0.8rem;
}

.services__individual-card-title {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 1.2rem;
    color: var(--text);
}

.services__individual-list {
    list-style: none;
    margin-bottom: 1.2rem;
}

.services__individual-list li {
    font-size: clamp(0.8rem, 0.9vw, 0.88rem);
    color: var(--text-muted);
    font-weight: 300;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.services__individual-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    flex-shrink: 0;
}

.services__individual-list li:last-child {
    border-bottom: none;
}

/* Blue accent line on open primary accordion */
.svc-accordion:not(.svc-accordion--sub).is-open > .svc-accordion__trigger::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
}

/* ═══════════════════════════════════════
   NUESTRO TRABAJO — FLOWCHART INFOGRAPHIC
   ═══════════════════════════════════════ */
.work {
    position: relative;
    overflow: hidden;
    font-family: var(--font-brand);
    isolation: isolate;
    color: #fff;
}

.work .container {
    position: relative;
    z-index: 2;
}

/* Dark overlay to keep readability */
.work::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-accent);
    opacity: 0.78;
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid texture on dark bg */
.work::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* ─── Header ─── */
.work__header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vh, 5rem);
    position: relative;
}

.work__header .label {
    color: var(--accent-deep);
}

.work__title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0.5rem;
}

/* ─── Flowchart Container ─── */
.flowchart {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ─── Arrow Connector ─── */
.flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0.4rem 0;
}

.flow-arrow__line {
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.25);
}

.flow-arrow__head {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(255,255,255,0.25);
}

/* ─── Phase Card ─── */
.flow-card {
    background: #fff;
    border-radius: 14px;
    padding: clamp(1.8rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3rem);
    width: 100%;
    max-width: 580px;
    text-align: center;
    position: relative;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
    cursor: none;
}

.flow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.flow-card__num {
    font-family: var(--font-brand);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    margin-bottom: 0.6rem;
    display: block;
}

.flow-card__title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--bg-accent);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.flow-card__rule {
    width: 35px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 1rem;
    border-radius: 1px;
}

.flow-card__desc {
    font-size: clamp(0.8rem, 0.95vw, 0.9rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto;
}

/* ─── Fork: arrow splits into two paths ─── */
.flow-fork {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 50px;
}

/* Central vertical stem */
.flow-fork::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.25);
    transform: translateX(-50%);
}

/* Horizontal crossbar */
.flow-fork::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

.flow-fork__arm {
    position: absolute;
    top: 18px;
    width: 1px;
    height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-fork__arm::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(255,255,255,0.25);
}

.flow-fork__arm--left {
    left: 25%;
    background: rgba(255,255,255,0.25);
    transform: translateX(-50%);
}

.flow-fork__arm--right {
    right: 25%;
    background: rgba(255,255,255,0.25);
    transform: translateX(50%);
}

/* ─── Sub-node pills (keywords for each phase) ─── */
.flow-pills {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 8vw, 8rem);
    width: 100%;
    max-width: 580px;
}

.flow-pill {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    font-family: var(--font-brand);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.7);
    transition: background 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.flow-pill:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}

/* ─── Merge: two paths converge back ─── */
.flow-merge {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 50px;
}

.flow-merge__arm {
    position: absolute;
    top: 0;
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.25);
}

.flow-merge__arm--left {
    left: 25%;
    transform: translateX(-50%);
}

.flow-merge__arm--right {
    right: 25%;
    transform: translateX(50%);
}

/* Horizontal merge bar */
.flow-merge::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

/* Final stem down + arrow */
.flow-merge::after {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.25);
    transform: translateX(-50%);
}

/* ─── Dashed decorative side lines ─── */
.flowchart::before,
.flowchart::after {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    width: 1px;
    border-left: 1px dashed rgba(255,255,255,0.06);
    pointer-events: none;
}

.flowchart::before { left: 5%; }
.flowchart::after { right: 5%; }

/* ─── Final outcome node ─── */
.flow-outcome {
    background: var(--accent);
    border-radius: 14px;
    padding: 1.5rem 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.flow-outcome__text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    font-weight: 400;
}

/* ─── Staggered reveals ─── */
.flowchart .reveal {
    transition-property: opacity, transform;
    transition-duration: 0.6s, 0.6s;
    transition-timing-function: var(--ease-out), var(--ease-out);
}

.flowchart .reveal:nth-child(1) { transition-delay: 0s; }
.flowchart .reveal:nth-child(2) { transition-delay: 0.04s; }
.flowchart .reveal:nth-child(3) { transition-delay: 0.08s; }
.flowchart .reveal:nth-child(4) { transition-delay: 0.12s; }
.flowchart .reveal:nth-child(5) { transition-delay: 0.16s; }
.flowchart .reveal:nth-child(6) { transition-delay: 0.2s; }
.flowchart .reveal:nth-child(7) { transition-delay: 0.24s; }
.flowchart .reveal:nth-child(8) { transition-delay: 0.28s; }
.flowchart .reveal:nth-child(9) { transition-delay: 0.32s; }
.flowchart .reveal:nth-child(10) { transition-delay: 0.36s; }
.flowchart .reveal:nth-child(11) { transition-delay: 0.4s; }
.flowchart .reveal:nth-child(12) { transition-delay: 0.44s; }
.flowchart .reveal:nth-child(13) { transition-delay: 0.48s; }
.flowchart .reveal:nth-child(14) { transition-delay: 0.52s; }
.flowchart .reveal:nth-child(15) { transition-delay: 0.56s; }
.flowchart .reveal:nth-child(16) { transition-delay: 0.6s; }
.flowchart .reveal:nth-child(17) { transition-delay: 0.64s; }

/* ═══════════════════════════════════════
   ABOUT / MANIFESTO
   ═══════════════════════════════════════ */
.about {
    border-top: 1px solid var(--border);
    position: relative;
    isolation: isolate;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.about > :not(.section-media) {
    position: relative;
    z-index: 1;
}

.about__manifesto {
    margin-bottom: clamp(5rem, 10vh, 8rem);
}

.about__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    line-height: 1.4;
    max-width: 850px;
    position: relative;
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
}

.about__quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3em;
    bottom: 0.3em;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

.about__quote-mark {
    color: var(--accent);
    font-size: 1.3em;
}

.about__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(2rem, 6vw, 8rem);
}

.about__label-col {
    padding-top: 0.3rem;
}

.about__body {
    max-width: 520px;
}

.about__text {
    color: var(--text-muted);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 3rem;
}

.about__details {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.about__detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about__detail-value {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: var(--accent);
}

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact {
    color: var(--text);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

/* Ambient glow in contact */
.contact::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 45%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(62, 109, 148, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.contact__inner {
    display: grid;
    grid-template-columns: auto 1fr 1.15fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    position: relative;
    z-index: 1;
}

/* ─── Logo seal ─── */
.contact__logo {
    width: clamp(125px, 13vw, 189px);
    height: auto;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.contact__logo:hover {
    opacity: 1;
}

/* ─── Text block ─── */
.contact__text {
    align-self: center;
}

.contact__question {
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact__heading {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    color: var(--bg-accent);
}

.contact__subtext {
    margin-top: 1.5rem;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
}

/* ─── Form System ─── */
.contact__form-system {
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

/* Channel buttons — stacked vertically */
.contact__channel-btns {
    display: flex;
    flex-direction: column;
}

.contact__channel-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: clamp(1.1rem, 1.8vw, 1.5rem) clamp(1.5rem, 2.5vw, 2rem);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: color 0.4s ease, background 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact__channel-btn:focus-visible {
    outline-offset: -3px;
}

.contact__channel-btn:hover {
    color: var(--text);
    background: rgba(56, 105, 171, 0.06);
}

.contact__channel-btn.is-active {
    color: var(--accent);
    background: rgba(56, 105, 171, 0.08);
}

.contact__channel-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.contact__channel-btn:hover svg,
.contact__channel-btn.is-active svg {
    opacity: 1;
}

/* Arrow indicator */
.contact__channel-btn::after {
    content: '\2192';
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.contact__channel-btn.is-active::after {
    opacity: 0.6;
    transform: translateX(0);
}

/* ─── Form panel — accordion ─── */
.contact__form-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.contact__form-panel.is-open {
    grid-template-rows: 1fr;
}

.contact__form-wrap {
    overflow: hidden;
}

.contact__form-body {
    padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.5rem, 2.5vw, 2rem) clamp(1.5rem, 2.5vw, 2rem);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.contact__form-panel.is-open .contact__form-body {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Form fields ─── */
.contact__form {
    display: flex;
    flex-direction: column;
}

.contact__form[hidden] {
    display: none;
}

.contact__field {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.25s ease;
}

.contact__field:focus-within {
    border-bottom-color: var(--accent);
}

.contact__label {
    display: block;
    padding-top: 1rem;
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact__input,
.contact__textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    padding: 0.45rem 0 1rem;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.contact__input:focus,
.contact__textarea:focus {
    color: var(--text);
}

.contact__input:focus-visible,
.contact__textarea:focus-visible {
    outline: none;
    box-shadow: inset 0 -2px 0 var(--accent);
}

.contact__textarea {
    resize: none;
    min-height: 70px;
    line-height: 1.6;
}

.contact__submit {
    align-self: flex-start;
    margin-top: 1.3rem;
    padding: 0.9rem 2.2rem;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.contact__submit:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.contact__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact__submit--sending {
    pointer-events: none;
}

.contact__submit--success {
    border-color: #2e7d32;
    color: #2e7d32;
    pointer-events: none;
}

.contact__submit--error {
    border-color: #c62828;
    color: #c62828;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--bg);
    padding: 3rem 0;
    border-top: 1px solid var(--accent);
    border-image: linear-gradient(90deg, var(--accent), transparent 60%) 1;
    font-family: var(--font-brand);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer__logo {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    position: relative;
}

.footer__logo::before {
    content: '—';
    position: relative;
    margin-right: 0.6rem;
    color: var(--accent);
    font-style: normal;
    opacity: 0.4;
}

.footer__copy {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
}

.footer__social {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: var(--accent);
}

.footer__social svg {
    width: clamp(1.3rem, 2vw, 1.6rem);
    height: clamp(1.3rem, 2vw, 1.6rem);
    fill: currentColor;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero__geo {
        width: clamp(280px, 35vw, 420px);
    }

    /* Flowchart compresses on tablet */
    .flowchart {
        max-width: 500px;
    }

    .flow-card {
        padding: 1.5rem 1.8rem;
    }

    .flowchart::before,
    .flowchart::after {
        display: none;
    }

    .services__blocks {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }

    .services__blocks::before,
    .services__blocks::after {
        display: none;
    }

    .svc-block {
        border: 1px solid var(--border);
        padding: 0;
    }
}

@media (max-width: 768px) {
    body, a, button {
        cursor: auto;
    }

    .cursor {
        display: none;
    }

    .nav__links {
        display: flex;
        gap: 1.5rem;
    }

    .nav__links a {
        font-size: 0.65rem;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 5rem;
        align-items: flex-start;
        padding-bottom: 3rem;
        background-position: center 40%;
    }

    .hero::after {
        opacity: 0.92;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-content: center;
        min-height: calc(100vh - 8rem);
        min-height: calc(100dvh - 8rem);
        position: relative;
    }

    .hero__geo {
        width: clamp(250px, 55vw, 350px);
        opacity: 0.18;
        animation: none;
        right: auto;
        top: auto;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 30%);
    }

    .hero__content {
        text-align: center;
        padding-top: 1.5rem;
    }

    .hero__label {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .hero__heading {
        margin-bottom: 1.5rem;
    }

    .hero__brand-mark {
        position: static;
        display: block;
        margin: 0 auto 2rem;
        width: clamp(90px, 26.25vw, 135px);
        height: auto;
        opacity: 0.2;
        left: auto;
        bottom: auto;
    }

    .hero-line:nth-child(1) .hero-line__inner {
        font-size: clamp(2.4rem, 11vw, 3.5rem);
    }

    .hero-line:nth-child(2) .hero-line__inner {
        font-size: clamp(2.6rem, 12vw, 3.8rem);
    }

    .hero__descriptor {
        max-width: 100%;
        border-left: none;
        padding-left: 0;
        text-align: center;
        border-top: 1px solid var(--border);
        padding-top: 1.2rem;
        margin: 0 auto;
        max-width: 360px;
        font-size: clamp(1rem, 3.8vw, 1.1rem);
    }

    .hero__desc-rule {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__cta {
        margin-left: 0;
    }

    .hero::after {
        font-size: clamp(12rem, 55vw, 20rem);
        right: 50%;
        transform: translate(50%, -55%);
        opacity: 0.03;
    }

    .hero__scroll {
        display: none;
    }

    /* Mobile flowchart: tighter, narrower pills */
    .flowchart {
        max-width: 100%;
    }

    .flow-card {
        padding: 1.3rem 1.2rem;
        border-radius: 10px;
    }

    .flow-card__title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .flow-pills {
        gap: 1rem;
    }

    .flow-pill {
        padding: 0.5rem 1rem;
        font-size: 0.6rem;
    }

    .flow-fork__arm--left { left: 28%; }
    .flow-fork__arm--right { right: 28%; }
    .flow-fork::after { left: 28%; right: 28%; }
    .flow-merge__arm--left { left: 28%; }
    .flow-merge__arm--right { right: 28%; }
    .flow-merge::before { left: 28%; right: 28%; }

    .flow-outcome {
        padding: 1.2rem 2rem;
        border-radius: 10px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services__blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .svc-block__header {
        padding: 1rem 1.2rem;
    }

    .svc-block__badge {
        display: none;
    }

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

    .svc-accordion__trigger {
        padding: 1rem 1.2rem;
    }

    .svc-accordion__body {
        padding: 0 1.2rem 1.2rem;
    }

    .svc-accordion--tier > .svc-accordion__trigger {
        flex-wrap: wrap;
        padding: 0.8rem 1rem;
        gap: 0.4rem;
    }

    .svc-tier__info {
        flex-basis: calc(100% - 2rem);
    }

    .svc-tier__pricing {
        text-align: left;
        flex-basis: 100%;
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
    }

    .svc-accordion--tier > .svc-accordion__trigger > .svc-accordion__icon {
        position: absolute;
        top: 0.9rem;
        right: 1rem;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .contact__logo {
        justify-self: center;
        width: 158px;
    }

    .contact__heading {
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .contact__form-system {
        text-align: left;
    }

    .footer__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: block;
        order: 3;
    }

    .nav__ig {
        order: 1;
    }

    .nav__ig svg {
        width: 27px;
        height: 27px;
    }

    .nav__logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .about__details {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════
   LARGE SCREENS (1440px+)
   ═══════════════════════════════════════ */
@media (min-width: 1440px) {
    :root {
        --container: 1500px;
    }

    /* Hero — tame the heading size, better proportions */
    .hero-line:nth-child(1) .hero-line__inner {
        font-size: 6.5rem;
    }

    .hero-line:nth-child(2) .hero-line__inner {
        font-size: 7rem;
    }


    .hero__label {
        margin-bottom: 3rem;
    }

    .hero__descriptor {
        max-width: 440px;
        font-size: 1rem;
    }

    .hero__cta {
        padding: 1rem 3rem;
        font-size: 0.75rem;
    }

    /* Services — more breathing room */
    .svc-block {
        padding: clamp(0.8rem, 1.2vw, 1.2rem);
    }

    .svc-block__header {
        padding: 1.5rem 2rem;
    }

    .svc-block__title {
        font-size: 1.55rem;
    }

    .svc-accordion__trigger {
        padding: 1.4rem 2rem;
        font-size: 0.95rem;
    }

    .svc-accordion__body {
        padding: 0 2rem 1.8rem;
    }

    .svc-accordion__text {
        font-size: 0.92rem;
    }

    /* Process — wider flowchart and cards */
    .flowchart {
        max-width: 920px;
    }

    .flow-card {
        max-width: 680px;
        padding: 2.8rem 3.5rem;
    }

    .flow-card__title {
        font-size: 2rem;
    }

    .flow-card__desc {
        font-size: 0.95rem;
        max-width: 480px;
    }

    .flow-pills {
        max-width: 680px;
    }

    .flow-fork,
    .flow-merge {
        max-width: 680px;
    }

    .flow-outcome {
        padding: 1.8rem 3.5rem;
    }

    /* Quote — larger text */
    .about__quote {
        font-size: 3rem;
        max-width: 950px;
    }

    /* About — wider body */
    .about__body {
        max-width: 620px;
    }

    .about__text {
        font-size: 1.05rem;
    }

    .about__details {
        gap: 4.5rem;
    }

    .about__detail-value {
        font-size: 1.15rem;
    }

    /* Contact — better proportions */
    .contact__heading {
        font-size: 6rem;
    }

    .contact__subtext {
        max-width: 540px;
        font-size: 1rem;
    }
}

/* ═══════════════════════════════════════
   EXTRA LARGE SCREENS (1800px+)
   ═══════════════════════════════════════ */
@media (min-width: 1800px) {
    :root {
        --container: 1600px;
        --gutter: 5rem;
    }

    .hero-line:nth-child(1) .hero-line__inner {
        font-size: 7.5rem;
    }

    .hero-line:nth-child(2) .hero-line__inner {
        font-size: 8rem;
    }

    .hero__descriptor {
        max-width: 480px;
    }

    .flowchart {
        max-width: 1000px;
    }

    .flow-card {
        max-width: 740px;
    }

    .flow-pills {
        max-width: 740px;
    }

    .flow-fork,
    .flow-merge {
        max-width: 740px;
    }

    .about__quote {
        max-width: 1050px;
        font-size: 3.2rem;
    }

    .about__body {
        max-width: 700px;
    }
}

/* ═══════════════════════════════════════
   SERVICIOS PAGE
   ═══════════════════════════════════════ */

/* ─── Active Nav Link ─── */
.nav__links a.is-current {
    color: var(--accent);
}

.nav__links a.is-current::after {
    width: 100%;
    opacity: 1;
}

/* ─── Services Hero ─── */
.svc-hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(8rem, 14vh, 12rem) 0 clamp(4rem, 8vh, 7rem);
}

.svc-hero__inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.svc-hero__label {
    margin-bottom: 1.5rem;
}

.svc-hero__heading {
    margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}

.svc-hero__heading .hero-line__inner {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.svc-hero__heading--accent {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.svc-hero__bottom {
    display: flex;
    align-items: flex-start;
    gap: clamp(2rem, 3vw, 3.5rem);
    overflow: visible;
}

.svc-hero__brand-mark {
    display: block;
    flex-shrink: 0;
    width: clamp(140px, 14vw, 220px);
    height: auto;
    opacity: 0.22;
    pointer-events: none;
    user-select: none;
    margin-top: 0.25rem;
    margin-left: clamp(1rem, 3vw, 3rem);
}

.svc-hero__bottom-content {
    flex: 1;
    min-width: 0;
    margin-left: clamp(1rem, 5vw, 5rem);
    margin-top: clamp(-4rem, -5vw, -2rem);
    margin-right: clamp(-4rem, -8vw, -2rem);
}

.svc-hero__desc {
    font-size: clamp(0.88rem, 1vw, 1rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.svc-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.svc-hero__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--text);
    font-family: var(--font-brand);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    transition: background 0.3s ease, color 0.3s ease;
}

.svc-hero__cta:hover {
    background: var(--text);
    color: var(--bg);
}

.svc-hero__cta--secondary {
    border-color: var(--accent);
    color: var(--accent);
}

.svc-hero__cta--secondary:hover {
    background: var(--accent);
    color: #fff;
}

/* Geometric accent: 4 nodes in diamond */
.svc-hero__geo {
    position: relative;
    width: clamp(200px, 22vw, 320px);
    height: clamp(200px, 22vw, 320px);
    justify-self: center;
}

.svc-hero__node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.5;
}

.svc-hero__node--top    { top: 0; left: 50%; transform: translateX(-50%); }
.svc-hero__node--right  { top: 50%; right: 0; transform: translateY(-50%); }
.svc-hero__node--bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.svc-hero__node--left   { top: 50%; left: 0; transform: translateY(-50%); }

.svc-hero__connector {
    position: absolute;
    background: var(--border);
}

.svc-hero__connector--v {
    width: 1px;
    top: 5px;
    bottom: 5px;
    left: 50%;
}

.svc-hero__connector--h {
    height: 1px;
    left: 5px;
    right: 5px;
    top: 50%;
}

/* ─── Section Divider ─── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: clamp(2rem, 4vh, 3.5rem) var(--gutter);
}

.section-divider__line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: var(--border-strong);
}

.section-divider__diamond {
    width: 8px;
    height: 8px;
    background: var(--accent);
    transform: rotate(45deg);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ─── Servicios section spacing ─── */
.packs-overview.section-padding,
.pack-detail.section-padding,
.alacarte.section-padding {
    padding: clamp(3rem, 7vh, 6rem) 0;
}

/* ─── Packs Overview ─── */
.packs-overview__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.packs-overview__title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.packs-overview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.2rem, 2vw, 2rem);
    position: relative;
}

.pack-card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.8rem, 3vw, 2.5rem);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease;
}

.pack-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.pack-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    font-size: 0.7rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1rem;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.pack-card:hover .pack-card__number {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.pack-card__title {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.pack-card__problem {
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

.pack-card__price {
    font-family: var(--font-brand);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.pack-card__link {
    font-family: var(--font-brand);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ─── Pack Detail ─── */
.pack-detail {
    position: relative;
}

.pack-detail--alt {
    background: linear-gradient(135deg, rgba(232, 228, 221, 0.4) 0%, rgba(242, 239, 233, 0.8) 50%, rgba(232, 228, 221, 0.4) 100%);
}

.pack-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 5vw, 5rem);
    align-items: start;
}

.pack-detail--reverse {
    direction: rtl;
}

.pack-detail--reverse > * {
    direction: ltr;
}

.pack-detail__title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.pack-detail__subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    color: var(--text-muted);
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.pack-detail__problem,
.pack-detail__solution-label {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.pack-detail__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pack-detail__checklist li {
    position: relative;
    padding-left: 1.2rem;
    font-size: clamp(0.84rem, 0.92vw, 0.92rem);
    color: var(--text-muted);
    line-height: 1.85;
}

.pack-detail__checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
}

/* ─── Tier Cards ─── */
.pack-detail__tiers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 1.5vw, 1.5rem);
}

.pack-detail__tiers--single {
    grid-template-columns: 1fr;
    max-width: 380px;
}

.tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.4);
    transition: box-shadow 0.4s ease;
}

.tier-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.tier-card--pro {
    border-color: rgba(56, 105, 171, 0.3);
    background: rgba(56, 105, 171, 0.04);
}

.tier-card--unique {
    border-color: rgba(56, 105, 171, 0.2);
    background: rgba(56, 105, 171, 0.03);
}

.tier-card__badge {
    position: absolute;
    top: -0.6rem;
    right: 1.2rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-brand);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tier-card__label {
    font-family: var(--font-brand);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tier-card__desc {
    font-size: clamp(0.78rem, 0.85vw, 0.85rem);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tier-card__pricing {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.tier-card__price {
    display: block;
    font-family: var(--font-brand);
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.tier-card__monthly {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.tier-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.tier-card__features li {
    position: relative;
    padding-left: 1rem;
    font-size: clamp(0.76rem, 0.82vw, 0.82rem);
    color: var(--text-muted);
    line-height: 1.85;
}

.tier-card__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 4px;
    height: 4px;
    background: var(--accent);
    transform: rotate(45deg);
    opacity: 0.5;
}

.tier-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--text);
    font-family: var(--font-brand);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    transition: background 0.3s ease, color 0.3s ease;
}

.tier-card__cta:hover {
    background: var(--text);
    color: var(--bg);
}

.tier-card--pro .tier-card__cta {
    border-color: var(--accent);
    color: var(--accent);
}

.tier-card--pro .tier-card__cta:hover {
    background: var(--accent);
    color: #fff;
}

/* ─── Asesoría Banner ─── */
.asesoria-banner {
    background: var(--accent);
    color: #fff;
    padding: clamp(3rem, 7vh, 5rem) 0;
}

.asesoria-banner__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vh, 3rem);
}

.asesoria-banner__icon {
    flex-shrink: 0;
    opacity: 0.8;
}

.asesoria-banner__title {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.asesoria-banner__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
}

.asesoria-banner__point-title {
    display: block;
    font-family: var(--font-brand);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.asesoria-banner__point-desc {
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    line-height: 1.7;
    opacity: 0.75;
}

/* ─── A La Carte ─── */
.alacarte__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.alacarte__title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.alacarte__desc {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: var(--text-muted);
    max-width: 520px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.alacarte__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.2rem, 2vw, 2rem);
    margin-bottom: clamp(4rem, 8vh, 7rem);
}

.alacarte__card {
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 2.5vw, 2.2rem);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.3);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.alacarte__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.alacarte__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    font-size: 0.65rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 1rem;
}

.alacarte__card-title {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.alacarte__card-desc {
    font-size: clamp(0.82rem, 0.9vw, 0.9rem);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.alacarte__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    flex-grow: 1;
}

.alacarte__list li {
    position: relative;
    padding-left: 1rem;
    font-size: clamp(0.78rem, 0.85vw, 0.85rem);
    color: var(--text-muted);
    line-height: 1.85;
}

.alacarte__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 4px;
    height: 4px;
    background: var(--accent);
    transform: rotate(45deg);
    opacity: 0.5;
}

.alacarte__price {
    display: block;
    font-family: var(--font-brand);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.alacarte__cta {
    font-family: var(--font-brand);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    transition: letter-spacing 0.3s ease;
}

.alacarte__cta:hover {
    letter-spacing: 0.2em;
}

/* ─── Closing CTA ─── */
.svc-cta {
    position: relative;
}

.svc-cta__inner {
    display: flex;
    align-items: center;
    gap: clamp(2.5rem, 5vw, 5rem);
    justify-content: center;
}

.svc-cta__logo {
    display: block;
    flex-shrink: 0;
    width: clamp(120px, 12vw, 180px);
    height: auto;
    opacity: 1;
}

.svc-cta__body {
    min-width: 0;
}

.svc-cta__heading {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.svc-cta__heading em {
    color: var(--accent);
}

.svc-cta__text {
    font-size: clamp(0.88rem, 1vw, 1rem);
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.svc-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.svc-cta__btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.2rem;
    border: 1px solid var(--text);
    font-family: var(--font-brand);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
    transition: background 0.3s ease, color 0.3s ease;
}

.svc-cta__btn:hover {
    background: var(--text);
    color: var(--bg);
}

.svc-cta__btn--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.svc-cta__btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* ─── Servicios Page Responsive ─── */
@media (max-width: 1024px) {
    .svc-hero__inner {
        grid-template-columns: 1fr;
    }

    .svc-hero__geo {
        display: none;
    }

    .svc-hero__bottom-content {
        margin-top: 0;
        margin-right: 0;
    }

    .pack-detail__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pack-detail--reverse {
        direction: ltr;
    }

    .pack-detail__tiers--single {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .svc-hero {
        min-height: auto;
        padding: clamp(9rem, 16vh, 13rem) 0 clamp(3rem, 6vh, 5rem);
    }

    .svc-hero__heading .hero-line__inner {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .svc-hero__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .svc-hero__brand-mark {
        position: absolute;
        top: clamp(4.2rem, 8vh, 6rem);
        left: 50%;
        transform: translateX(-50%);
        width: clamp(90px, 26vw, 135px);
        opacity: 0.15;
        margin-left: 0;
    }

    .svc-hero__bottom-content {
        margin-left: 0;
        margin-top: 0;
        margin-right: 0;
    }

    .packs-overview__grid {
        grid-template-columns: 1fr;
    }

    .pack-detail__tiers {
        grid-template-columns: 1fr;
    }

    .asesoria-banner__points {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .svc-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .svc-cta__logo {
        width: clamp(120px, 30vw, 180px);
    }

    .svc-cta__text {
        margin-left: auto;
        margin-right: auto;
    }

    .svc-cta__heading {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

@media (max-width: 480px) {
    .svc-hero__actions {
        flex-direction: column;
    }

    .svc-hero__cta {
        justify-content: center;
    }

    .svc-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-line__inner {
        transform: none;
    }

    .keywords__track {
        animation: none;
    }
}
