/* ==========================================================================
   NORTH Studio — base styles
   Mobile first. Tokens first: everything else reads from them.
   ========================================================================== */

/* Montserrat alojada en el sitio (assets/fonts, generada con _dev/build_font.py).
   El "fallback" ajustado evita que el texto salte de tamaño mientras carga. */
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Fallback";
  src: local("Arial");
  ascent-override: 84.95%;
  descent-override: 22.03%;
  line-gap-override: 0%;
  size-adjust: 113.28%;
}

:root {
  /* Palette (brand document, section 4) */
  --navy: #0F172A;
  --slate: #64748B;
  --gray: #CBD5E1;
  --off-white: #F8FAFC;
  --white: #FFFFFF;
  --facet: #9CA1A5; /* logo facet only */

  /* Type */
  --font: "Montserrat", "Montserrat Fallback", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lead: clamp(1.0625rem, 0.95rem + 0.5vw, 1.25rem);
  --fs-display: clamp(2.75rem, 1.4rem + 6.2vw, 6rem);

  /* Spacing scale (4px base) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  --gutter: 1.25rem;
  --max: 76rem;
  --nav-h: 4rem;
  --radius: 14px;

  /* Motion: soft, quick, purposeful */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 180ms;
  --t: 320ms;
  --t-slow: 900ms;
}

@media (min-width: 768px) {
  :root { --gutter: 2.5rem; --nav-h: 4.5rem; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--navy);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 4px; }

.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;
}
.skip-link {
  position: absolute; left: var(--s-4); top: -3rem; z-index: 100;
  background: var(--navy); color: var(--white); padding: var(--s-2) var(--s-4);
  border-radius: 8px; font-size: var(--fs-sm); transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--s-4); }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Language switch: soft crossfade ---------- */
[data-i18n] { transition: opacity var(--t-fast) var(--ease); }
html.is-switching [data-i18n] { opacity: 0; }

/* ---------- Arrow (recurring UI element) ---------- */
.arrow {
  width: 1.125em; height: 1.125em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  transition: transform var(--t) var(--ease);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-3);
  min-height: 3.25rem; padding: 0 var(--s-6);
  border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.02em;
  transition: background-color var(--t) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease);
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--outline { border: 1px solid var(--navy); color: var(--navy); background: transparent; }
.btn:active { transform: scale(0.98); }
@media (hover: hover) {
  .btn--primary:hover { background: #1E293B; box-shadow: 0 10px 24px -12px rgb(15 23 42 / 0.45); }
  .btn:hover .arrow, .link-arrow:hover .arrow { transform: translateX(4px); }
  .btn--outline:hover { background: var(--navy); color: var(--white); }
  .btn:hover .arrow--down { transform: translateY(3px); }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  min-height: 3.25rem;
  font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.02em;
  color: var(--navy);
}
.link-arrow span {
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size var(--t) var(--ease);
}
@media (hover: hover) { .link-arrow:hover span { background-size: 100% 1px; } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t) var(--ease);
}
/* Blur on a pseudo-element: a filter on .nav itself would trap the fixed mobile menu */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgb(248 250 252 / 0.85);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  backdrop-filter: saturate(1.2) blur(12px);
}
body.menu-open .nav::before { background: var(--off-white); }
.nav.is-scrolled { border-bottom-color: var(--gray); }
.nav::before { transition: background-color var(--t) var(--ease); }

/* Over dark sections the nav inverts (not while the mobile menu is open) */
body:not(.menu-open) .nav.is-dark { border-bottom-color: rgb(203 213 225 / 0.16); }
body:not(.menu-open) .nav.is-dark::before { background: rgb(15 23 42 / 0.88); }
body:not(.menu-open) .nav.is-dark .nav__logo-img { opacity: 0; }
body:not(.menu-open) .nav.is-dark .nav__logo-img--light { opacity: 1; }
body:not(.menu-open) .nav.is-dark .nav__links a { color: var(--gray); }
body:not(.menu-open) .nav.is-dark .nav__links a:hover { color: var(--white); }
body:not(.menu-open) .nav.is-dark .nav__links a::after { background: var(--white); }
body:not(.menu-open) .nav.is-dark .lang { border-color: rgb(203 213 225 / 0.3); }
body:not(.menu-open) .nav.is-dark .lang [data-lang-opt] { color: var(--gray); }
body:not(.menu-open) .nav.is-dark .lang [data-lang-opt].is-active { color: var(--white); }
body:not(.menu-open) .nav.is-dark .lang__sep { color: var(--slate); }
body:not(.menu-open) .nav.is-dark .nav__menu-line { background: var(--white); }
body:not(.menu-open) .nav.is-dark :focus-visible { outline-color: var(--white); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: var(--s-5); }
.nav__logo { position: relative; display: block; }
.nav__logo img { height: 16px; width: auto; transition: opacity var(--t) var(--ease); }
.nav__logo-img--light { position: absolute; inset: 0; opacity: 0; }
.nav__links { display: none; }
.nav__actions { display: flex; align-items: center; gap: var(--s-3); }

.lang {
  display: inline-flex; align-items: center; gap: 0.35rem;
  height: 2.5rem; padding: 0 var(--s-3);
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.08em;
  border: 1px solid var(--gray); border-radius: 999px;
  transition: border-color var(--t) var(--ease);
}
.lang [data-lang-opt] { color: var(--slate); transition: color var(--t) var(--ease); }
.lang [data-lang-opt].is-active { color: var(--navy); font-weight: 600; }
.lang__sep { color: var(--gray); }
@media (hover: hover) { .lang:hover { border-color: var(--slate); } }

.nav__menu {
  width: 2.75rem; height: 2.75rem;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
}
.nav__menu-line {
  width: 20px; height: 1.5px; background: var(--navy); border-radius: 2px;
  transition: transform var(--t) var(--ease);
}
.nav__menu[aria-expanded="true"] .nav__menu-line--top { transform: translateY(3.75px) rotate(45deg); }
.nav__menu[aria-expanded="true"] .nav__menu-line--bottom { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 49;
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: space-between;
  padding-block: var(--s-7) var(--s-7);
  opacity: 0; transform: translateY(-8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.mobile-menu.is-open { opacity: 1; transform: none; }
/* display:flex above would override the hidden attribute and leave an invisible layer over the page */
.mobile-menu[hidden] { display: none; }
.mobile-menu__links { display: flex; flex-direction: column; }
.mobile-menu__links a {
  font-size: 2rem; font-weight: 500; letter-spacing: -0.01em;
  padding-block: var(--s-3); border-bottom: 1px solid var(--gray);
}
.mobile-menu__foot { color: var(--slate); font-size: var(--fs-sm); letter-spacing: 0.08em; text-transform: uppercase; }

@media (min-width: 768px) {
  .nav__logo img { height: 18px; }
  .nav__menu, .mobile-menu { display: none; }
  .nav__links { display: flex; gap: var(--s-6); }
  .nav__links a {
    position: relative; font-size: var(--fs-sm); font-weight: 500; color: var(--slate);
    padding-block: var(--s-2); transition: color var(--t) var(--ease);
  }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px;
    background: var(--navy); transform: scaleX(0); transform-origin: left;
    transition: transform var(--t) var(--ease);
  }
  .nav__links a:hover { color: var(--navy); }
  .nav__links a:hover::after { transform: scaleX(1); }
}
body.menu-open { overflow: hidden; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--slate);
}
.eyebrow__mark { width: 1.5rem; height: 1px; background: var(--slate); }

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: space-between;
  padding-top: var(--s-7);
  overflow: hidden;
}
.hero__grid { display: grid; gap: var(--s-7); align-items: center; }
.hero__copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero__title {
  margin-top: var(--s-5);
  font-size: var(--fs-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.035em;
  max-width: 10ch;
  text-wrap: balance;
}
.hero__lead {
  margin-top: var(--s-5);
  max-width: 30ch;
  font-size: var(--fs-lead); line-height: 1.55; color: var(--slate);
}
.hero__actions { margin-top: var(--s-6); display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-6); }

/* Compass */
.compass {
  position: relative;
  width: min(60vw, 14rem); aspect-ratio: 1;
  justify-self: center;
}
.compass__ring { width: 100%; height: 100%; transition: transform 1.2s var(--ease); }
.compass__circle { fill: none; stroke: var(--gray); stroke-width: 1; }
.compass__circle--inner { stroke-dasharray: 2 6; }
.compass__ticks line { stroke: var(--gray); stroke-width: 1; }
.compass__ticks line.is-major { stroke: var(--slate); }
.compass__label {
  font-family: var(--font); font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  fill: var(--slate); text-anchor: middle; dominant-baseline: middle;
}
.compass__symbol {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.compass__symbol svg {
  width: 30%; height: auto;
  animation: drift 5s var(--ease) infinite alternate;
  transition: transform var(--t-slow) var(--ease);
}
@keyframes drift {
  from { translate: 0 4px; }
  to   { translate: 0 -8px; }
}
/* Microinteraction: any hero action lifts the arrow a little further */
.hero:has(.hero__actions a:hover) .compass__symbol svg { transform: translateY(-10px); }

.hero__foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  margin-top: var(--s-8);
  padding-block: var(--s-5);
  position: relative;
}
.hero__foot::before {
  content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px; background: var(--gray);
}
.hero__cats { display: none; }
.hero__next {
  display: inline-flex; align-items: center; gap: var(--s-2); margin-left: auto;
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate);
  transition: color var(--t) var(--ease);
}
@media (hover: hover) {
  .hero__next:hover { color: var(--navy); }
  .hero__next:hover .arrow--down { transform: translateY(3px); }
}

@media (min-width: 640px) {
  .hero__cats {
    display: flex; gap: var(--s-6);
    font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate);
  }
}

@media (min-width: 960px) {
  .hero { padding-top: var(--s-8); }
  .hero__grid { grid-template-columns: 1.35fr 1fr; gap: var(--s-8); flex: 1; }
  .hero__title { max-width: 11ch; }
  .compass { width: min(100%, 26rem); justify-self: end; }
}

/* ---------- Entrance: progressive, one after another ---------- */
[data-anim] {
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  transition-delay: calc(var(--d, 0) * 110ms + 80ms);
}
.is-ready [data-anim], .no-js [data-anim] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 1ms !important; transition-delay: 0ms !important; }
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding-block: var(--s-9); }
.section__head { display: grid; gap: var(--s-5); margin-bottom: var(--s-7); }
.section__title {
  margin-top: var(--s-4);
  font-size: clamp(2.25rem, 1.5rem + 3.6vw, 4rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em;
}
.section__lead { font-size: var(--fs-lead); color: var(--slate); max-width: 36ch; }

@media (min-width: 960px) {
  .section { padding-block: var(--s-10); }
  .section__head { grid-template-columns: 1fr auto; align-items: end; margin-bottom: var(--s-8); }
  .section__lead { text-align: right; }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
[data-reveal].is-visible, .no-js [data-reveal] { opacity: 1; transform: none; }

/* ==========================================================================
   Products
   ========================================================================== */
.filters {
  display: flex; gap: var(--s-2);
  margin-bottom: var(--s-6);
  overflow-x: auto; scrollbar-width: none;
  margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
}
.filters::-webkit-scrollbar { display: none; }
.filter {
  flex: none;
  height: 2.5rem; padding: 0 var(--s-5);
  border: 1px solid var(--gray); border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 500; color: var(--slate);
  transition: color var(--t) var(--ease), background-color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.filter.is-active { background: var(--navy); border-color: var(--navy); color: var(--white); }
@media (hover: hover) { .filter:not(.is-active):hover { color: var(--navy); border-color: var(--slate); } }

.products__grid { display: grid; gap: var(--s-5); }
@media (min-width: 720px) { .products__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); } }

.product.is-hidden { display: none; }
.product.is-entering { animation: card-in var(--t-slow) var(--ease) both; }
@keyframes card-in { from { opacity: 0; transform: translateY(12px); } }

.product__card {
  position: relative;
  display: flex; flex-direction: column; height: 100%;
  background: var(--white);
  border: 1px solid var(--gray); border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.product__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--off-white); border-bottom: 1px solid var(--gray); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.product__body { display: flex; flex-direction: column; flex: 1; padding: var(--s-5); }
.product__meta {
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate);
}
.product__name { margin-top: var(--s-3); font-size: 1.375rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
.product__desc { margin-top: var(--s-2); color: var(--slate); font-size: 0.9375rem; }
.product__foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  margin-top: auto; padding-top: var(--s-6);
}
.product__price { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.product__currency { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.08em; color: var(--slate); margin-right: 0.15em; }
.product__cta {
  display: inline-flex; align-items: center; gap: var(--s-2);
  min-height: 2.5rem; padding: 0 var(--s-4);
  border: 1px solid var(--gray); border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 500;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
/* The whole card opens the dialog */
.product__cta { position: relative; z-index: 1; background: var(--white); }
/* The whole card opens the product page; "What is it?" and "Buy" sit above that area */
.product__link::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }
.product__link:focus-visible { outline: none; }
.product__link:focus-visible::after { outline: 2px solid var(--navy); outline-offset: 3px; }

@media (hover: hover) {
  .product__card:hover {
    transform: translateY(-4px);
    border-color: var(--slate);
    box-shadow: 0 18px 40px -24px rgb(15 23 42 / 0.35);
  }
  .product__card:hover .product__media img { transform: scale(1.03); }
  .product__card:hover .arrow { transform: translateX(4px); }
  .product__cta:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
  .product__card:hover .product__link { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
}
.product__card:active { transform: translateY(-2px); }

@media (min-width: 960px) {
  .product__body { padding: var(--s-6); }
  .product__name { font-size: 1.625rem; }
}

.product__desc { color: var(--navy); font-weight: 500; }
.product__pitch { margin-top: var(--s-3); color: var(--slate); font-size: 0.9375rem; line-height: 1.65; }

.product__foot { flex-wrap: wrap; }
.product__actions { display: flex; align-items: center; gap: var(--s-2); margin-left: auto; }
/* Buy sits above the card-wide "What is it?" click area */
.product__buy { position: relative; z-index: 1; min-height: 2.5rem; padding: 0 var(--s-5); }
@media (max-width: 479px) {
  .product__actions { width: 100%; }
  .product__actions > * { flex: 1; justify-content: center; }
}

.products__note { margin-top: var(--s-6); font-size: var(--fs-sm); color: var(--slate); }

/* ==========================================================================
   Dark section (navy) — same system, inverted
   ========================================================================== */
.section--dark {
  --line: rgb(203 213 225 / 0.16);
  background: var(--navy);
  color: var(--white);
}
.section--dark .eyebrow { color: var(--gray); }
.section--dark .eyebrow__mark { background: var(--gray); }
.section--dark :focus-visible { outline-color: var(--white); }

.btn--light { background: var(--white); color: var(--navy); }
@media (hover: hover) {
  .btn--light:hover { background: var(--off-white); box-shadow: 0 10px 28px -14px rgb(0 0 0 / 0.6); }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid { display: grid; gap: var(--s-8); }
.services__head { display: flex; flex-direction: column; align-items: flex-start; }
.services__head .section__title { max-width: 12ch; }
.services__lead { margin-top: var(--s-5); max-width: 34ch; font-size: var(--fs-lead); color: var(--gray); }
.services__head .btn { margin-top: var(--s-6); }

.services__list { border-top: 1px solid var(--line); }
.services__list > li { border-bottom: 1px solid var(--line); }
.service {
  position: relative;
  display: grid; grid-template-columns: 2.25rem 1fr auto; gap: var(--s-4);
  align-items: start;
  padding-block: var(--s-6);
}
.service__num { padding-top: 0.45rem; font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; color: var(--gray); opacity: 0.7; }
.service__name {
  font-size: clamp(1.375rem, 1.1rem + 1.2vw, 2rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2;
  transition: transform var(--t) var(--ease);
}
.service__desc { display: block; margin-top: var(--s-2); color: var(--gray); font-size: 0.9375rem; max-width: 40ch; }
.service__tags { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.service__tags > span {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.04em; color: var(--gray);
}
.service__go {
  width: 2.75rem; height: 2.75rem; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  transition: background-color var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.service__go .arrow { transform: rotate(-45deg); }
.service__trigger { text-align: left; font: inherit; letter-spacing: inherit; }
.service__trigger::after { content: ""; position: absolute; inset: 0; }
.service__trigger:focus-visible { outline: none; }
.service__trigger:focus-visible::after { outline: 2px solid var(--white); outline-offset: -2px; border-radius: 8px; }
.service__more { display: inline-flex; align-items: center; gap: var(--s-3); }
.service__more-label {
  display: none; font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray); transition: color var(--t) var(--ease);
}
@media (min-width: 720px) { .service__more-label { display: inline; } }

@media (hover: hover) {
  .service:hover .service__name { transform: translateX(6px); }
  .service:hover .service__go { background: var(--white); border-color: var(--white); color: var(--navy); }
  .service:hover .service__go .arrow { transform: rotate(0deg); }
  .service:hover .service__more-label { color: var(--white); }
}

.service__desc { color: var(--white); }
.service__pitch { margin-top: var(--s-3); color: var(--gray); font-size: 0.9375rem; line-height: 1.65; max-width: 46ch; }
.service__quote {
  position: relative; z-index: 1;
  min-height: 2.75rem; margin-top: var(--s-3);
  color: var(--white);
}

.services__note { margin-top: var(--s-5); font-size: var(--fs-sm); color: var(--gray); }

/* Process */
.process { margin-top: var(--s-8); }
.process__title {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray);
}
.process__steps { list-style: none; padding: 0; margin-top: var(--s-5); display: grid; gap: var(--s-5); }
.process__steps li {
  display: grid; align-content: start; grid-template-columns: 2.25rem 1fr; column-gap: var(--s-4); row-gap: var(--s-1);
}
.process__num { grid-row: span 2; padding-top: 0.2rem; font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; color: var(--gray); opacity: 0.7; }
.process__steps strong { font-weight: 600; }
.process__steps li > span:last-child { color: var(--gray); font-size: 0.9375rem; }

@media (min-width: 720px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
  .process__steps li { grid-template-columns: 1fr; padding-top: var(--s-4); border-top: 1px solid var(--line); }
  .process__num { grid-row: auto; padding: 0 0 var(--s-2); }
}

@media (min-width: 960px) {
  .services__grid { grid-template-columns: 5fr 7fr; gap: var(--s-9); align-items: start; }
  .services__head { position: sticky; top: calc(var(--nav-h) + var(--s-7)); }
  .service { grid-template-columns: 3rem 1fr auto; padding-block: var(--s-7); }
}

/* Arriving at "How we work" from the hero: the steps light up once */
.process:target .process__steps li { animation: step-in 1.4s var(--ease) both; }
.process:target .process__steps li:nth-child(2) { animation-delay: 150ms; }
.process:target .process__steps li:nth-child(3) { animation-delay: 300ms; }
@keyframes step-in { 0% { border-top-color: var(--white); opacity: 0.4; } 100% { opacity: 1; } }

/* ==========================================================================
   "What is it?" dialog
   ========================================================================== */
body.dialog-open { overflow: hidden; }
.info {
  padding: 0; border: 0; background: transparent; color: var(--navy);
  width: 100%; max-width: 100%; max-height: 100%;
  margin: auto 0 0; /* mobile: bottom sheet */
}
.info::backdrop { background: rgb(15 23 42 / 0.45); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.info[open] { animation: sheet-in var(--t) var(--ease); }
.info[open]::backdrop { animation: fade-in var(--t) var(--ease); }
@keyframes sheet-in { from { transform: translateY(24px); opacity: 0; } }
@keyframes fade-in { from { opacity: 0; } }
@keyframes dialog-in { from { transform: translateY(12px) scale(0.98); opacity: 0; } }

.info__panel {
  display: flex; flex-direction: column;
  max-height: 92svh;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -10px 40px -20px rgb(15 23 42 / 0.4);
}
.info__head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: var(--s-4) var(--s-5) 0;
}
.info__meta { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.info__close {
  width: 2.75rem; height: 2.75rem; flex: none; margin-right: calc(var(--s-3) * -1);
  display: grid; place-items: center; border-radius: 50%;
  transition: background-color var(--t) var(--ease);
}
.info__close svg { width: 18px; height: 18px; fill: none; stroke: var(--navy); stroke-width: 1.6; stroke-linecap: round; }
@media (hover: hover) { .info__close:hover { background: var(--off-white); } }

.info__body { overflow-y: auto; overscroll-behavior: contain; padding: var(--s-3) var(--s-5) var(--s-6); }
.info__title { font-size: clamp(1.625rem, 1.3rem + 1.4vw, 2.25rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.info__text { margin-top: var(--s-3); color: var(--slate); }
.info__q {
  margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--gray);
  font-size: 1.0625rem; font-weight: 600;
}
.info__benefits { margin-top: var(--s-3); display: grid; gap: var(--s-3); }
.info__benefits li { position: relative; padding-left: 1.75rem; color: var(--slate); }
/* Small north arrow as the bullet */
.info__benefits li::before {
  content: ""; position: absolute; left: 0; top: 0.35em;
  width: 0.9rem; height: 0.85rem; background: var(--navy);
  clip-path: polygon(50% 0, 100% 100%, 50% 64%, 0 100%);
}
.info__facts { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-6); }
.info__facts li {
  padding: 0.35rem 0.8rem; border-radius: 999px; background: var(--off-white); border: 1px solid var(--gray);
  font-size: var(--fs-xs); font-weight: 500; color: var(--navy);
}

.info__foot {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding: var(--s-4) var(--s-5) calc(var(--s-4) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--gray);
}
.info__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0 var(--s-2); }
.info__currency { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.08em; color: var(--slate); }
.info__amount { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; }
.info__price-note { font-size: var(--fs-sm); color: var(--slate); }
.info__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-5); }
.info__actions .btn { flex: 1 1 auto; }

@media (min-width: 720px) {
  .info { margin: auto; max-width: 40rem; padding: var(--s-5); }
  .info[open] { animation-name: dialog-in; }
  .info__panel { max-height: 86vh; border-radius: 20px; box-shadow: 0 30px 60px -30px rgb(15 23 42 / 0.5); }
  .info__head { padding: var(--s-5) var(--s-6) 0; }
  .info__body { padding: var(--s-3) var(--s-6) var(--s-6); }
  .info__foot { flex-direction: row; align-items: center; justify-content: space-between; padding: var(--s-4) var(--s-6); }
  .info__actions { flex-wrap: nowrap; }
  .info__actions .btn { flex: none; }
}

/* ==========================================================================
   Services: "Buy" on quoted services (above the row-wide click area)
   ========================================================================== */
.service__buy {
  position: relative; z-index: 1;
  min-height: 2.75rem; padding: 0 var(--s-5); margin-top: var(--s-4);
}

/* ==========================================================================
   Quote → Book a call dialog (reuses the .info dialog)
   ========================================================================== */
.quote__back {
  display: inline-flex; align-items: center; gap: var(--s-2);
  min-height: 2.5rem; margin-right: var(--s-3);
  font-size: var(--fs-sm); font-weight: 500; color: var(--navy);
}
@media (hover: hover) { .quote__back:hover .arrow { transform: translateX(-3px); } }
.quote .info__head { justify-content: flex-start; }
.quote .info__meta { flex: 1; }

.quote__steps { list-style: none; padding: 0; margin-top: var(--s-4); display: grid; gap: var(--s-4); counter-reset: none; }
.quote__steps li { display: grid; grid-template-columns: 2rem 1fr; gap: var(--s-3); align-items: start; color: var(--slate); }
.quote__num {
  width: 1.75rem; height: 1.75rem; display: grid; place-items: center;
  border-radius: 50%; background: var(--navy); color: var(--white);
  font-size: var(--fs-xs); font-weight: 600;
}
.quote__steps li > span:last-child { padding-top: 0.15rem; }

.quote__facts { margin-top: var(--s-5); }
.quote__calendar { margin-top: var(--s-5); }
.quote__frame {
  display: block; width: 100%; height: min(640px, 62vh); border: 1px solid var(--gray); border-radius: var(--radius);
  background: var(--white);
}
.quote__open { margin-top: var(--s-2); }
.quote__calendar.is-pending {
  padding: var(--s-6) var(--s-5);
  border: 1px dashed var(--gray); border-radius: var(--radius);
  background: var(--off-white); text-align: center;
}
.quote__pending-title { font-weight: 600; }
.quote__pending { margin-top: var(--s-2); color: var(--slate); font-size: var(--fs-sm); }

@media (min-width: 720px) {
  .quote.is-booking { max-width: 52rem; }
}

/* ==========================================================================
   Custom projects band
   ========================================================================== */
.custom { padding-block: var(--s-9) var(--s-9); }
.custom__card {
  display: grid; gap: var(--s-7);
  padding: var(--s-7) var(--s-5);
  background: var(--white);
  border: 1px solid var(--gray); border-radius: calc(var(--radius) + 6px);
}
.custom__title {
  margin-top: var(--s-4); max-width: 20ch;
  font-size: clamp(1.75rem, 1.2rem + 2.4vw, 3rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em;
  text-wrap: balance;
}
.custom__text { margin-top: var(--s-5); max-width: 46ch; font-size: var(--fs-lead); color: var(--slate); }
.custom__close { margin-top: var(--s-4); font-weight: 600; }
.custom__side { display: flex; flex-direction: column; gap: var(--s-6); }
.custom__facts { display: grid; gap: var(--s-4); }
.custom__facts li { display: flex; align-items: center; gap: var(--s-3); font-weight: 500; }
.custom__facts svg {
  width: 1.5rem; height: 1.5rem; flex: none;
  fill: none; stroke: var(--navy); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.custom__cta { align-self: flex-start; }

@media (min-width: 960px) {
  .custom { padding-block: var(--s-8) var(--s-10); }
  .custom__card { grid-template-columns: 1.6fr 1fr; align-items: center; gap: var(--s-9); padding: var(--s-9) var(--s-8); }
  .custom__side { padding-left: var(--s-8); border-left: 1px solid var(--gray); }
}
/* The dialog's own display rules must not override [hidden] */
.quote [hidden] { display: none !important; }

/* ==========================================================================
   Final CTA — What's next? / Let's move forward.
   ========================================================================== */
.cta { padding-bottom: var(--s-8); }
.cta__grid { display: grid; gap: var(--s-8); margin-top: var(--s-5); }
.cta__title {
  font-size: clamp(3rem, 1.6rem + 7vw, 7rem); font-weight: 600; line-height: 1; letter-spacing: -0.04em;
  text-wrap: balance;
}
.cta__lead { margin-top: var(--s-5); max-width: 40ch; font-size: var(--fs-lead); color: var(--gray); }
.cta__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-3) var(--s-6); margin-top: var(--s-6); }
.cta__book { color: var(--white); }

.cta__contact { display: grid; align-content: end; border-top: 1px solid var(--line); }
.cta__contact li { display: grid; gap: var(--s-1); padding-block: var(--s-5); border-bottom: 1px solid var(--line); }
.cta__label { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
.cta__value { display: inline-flex; align-items: center; gap: var(--s-2); font-size: 1.125rem; font-weight: 500; color: var(--white); overflow-wrap: anywhere; }
a.cta__value { transition: opacity var(--t) var(--ease); }
@media (hover: hover) {
  a.cta__value:hover { opacity: 0.75; }
  a.cta__value:hover .arrow { transform: translateX(4px); }
}

.cta__contact { margin-top: var(--s-7); }

@media (min-width: 960px) {
  .cta__grid { grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: start; }
  .cta__title { font-size: clamp(3rem, 1rem + 5vw, 5.5rem); }
}

/* ---------- Contact form (white card on navy) ---------- */
.form {
  display: grid; gap: var(--s-5);
  padding: var(--s-6) var(--s-5);
  background: var(--white); color: var(--navy);
  border-radius: 20px;
}
.form :focus-visible { outline-color: var(--navy); }
.form__title { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.01em; }
.form__intent {
  margin-top: calc(var(--s-3) * -1);
  padding: var(--s-3) var(--s-4);
  border-radius: 12px; background: var(--off-white); border: 1px solid var(--gray);
  font-size: var(--fs-sm); font-weight: 500;
}
.form__row { display: grid; gap: var(--s-5); }
.form__field { display: grid; gap: var(--s-2); }
.form__field label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.form__optional { font-weight: 500; letter-spacing: 0.04em; text-transform: none; }
.form input, .form select, .form textarea {
  width: 100%;
  font: inherit; font-size: 1rem; color: var(--navy); /* 16px: evita el zoom automático en iPhone */
  background: var(--off-white);
  border: 1px solid var(--gray); border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.form textarea { resize: vertical; min-height: 7rem; }
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--slate); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--navy); background: var(--white);
  box-shadow: 0 0 0 3px rgb(15 23 42 / 0.08);
}
.form__select { position: relative; }
.form__select select { appearance: none; padding-right: 2.75rem; cursor: pointer; }
.form__select::after {
  content: ""; position: absolute; right: 1.1rem; top: 50%; width: 8px; height: 8px;
  border-right: 1.6px solid var(--navy); border-bottom: 1.6px solid var(--navy);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.form__error { display: none; font-size: var(--fs-sm); color: #B42318; }
.form__field.is-invalid input { border-color: #B42318; }
.form__field.is-invalid .form__error { display: block; }
.form__honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__submit { width: 100%; }
.form__submit:disabled { opacity: 0.6; cursor: progress; }
.form__status:empty { display: none; }
.form__status { font-size: var(--fs-sm); padding: var(--s-3) var(--s-4); border-radius: 12px; }
.form__status.is-ok { background: var(--off-white); border: 1px solid var(--gray); color: var(--navy); }
.form__status.is-error { background: #FEF3F2; border: 1px solid #FECDCA; color: #B42318; }

@media (min-width: 560px) {
  .form { padding: var(--s-7) var(--s-6); }
  .form__row { grid-template-columns: 1fr 1fr; }
}

.quote__write { margin-top: var(--s-4); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  --line: rgb(203 213 225 / 0.16);
  background: var(--navy); color: var(--gray);
  font-size: var(--fs-sm);
}
.footer :focus-visible { outline-color: var(--white); }
.footer__top {
  display: grid; gap: var(--s-7);
  padding-block: var(--s-8) var(--s-7);
  border-top: 1px solid var(--line);
}
.footer__brand img { width: 120px; height: auto; }
.footer__tagline { margin-top: var(--s-5); max-width: 26ch; }
.footer__title { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.footer__col ul { display: grid; gap: var(--s-3); margin-top: var(--s-4); }
.footer__col a, .footer__link {
  color: var(--gray); text-align: left; overflow-wrap: anywhere;
  transition: color var(--t) var(--ease);
}
@media (hover: hover) { .footer__col a:hover, .footer__link:hover { color: var(--white); } }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-3) var(--s-6);
  padding-block: var(--s-5) var(--s-6);
  border-top: 1px solid var(--line);
  font-size: var(--fs-xs);
}
.footer__motto { letter-spacing: 0.16em; }
.footer__top-link { display: inline-flex; align-items: center; gap: var(--s-2); color: var(--white); min-height: 2.75rem; }
@media (hover: hover) { .footer__top-link:hover .arrow { transform: translateY(-3px); } }

@media (min-width: 720px) {
  /* columns adapt: the social column only appears once there are links */
  .footer__top { grid-template-columns: 1.6fr; grid-auto-columns: 1fr; grid-auto-flow: column; }
}

/* ==========================================================================
   About — Ideas need direction.
   ========================================================================== */
.about { background: var(--white); border-top: 1px solid var(--gray); }
.about__grid { display: grid; gap: var(--s-6); }
.about__title { max-width: 14ch; text-wrap: balance; }
.about__text { display: grid; gap: var(--s-4); max-width: 52ch; color: var(--slate); }
.about__lead { font-size: var(--fs-lead); color: var(--navy); }
.about__story:empty { display: none; }

.about__label {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate);
}
.about__founders { margin-top: var(--s-8); }
.founders { display: grid; gap: var(--s-4); margin-top: var(--s-4); }
.founder { padding-top: var(--s-4); border-top: 1px solid var(--gray); }
.founder__name { font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.625rem); font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
.founder__role { margin-top: var(--s-1); font-size: var(--fs-sm); color: var(--slate); }

.about__principles { margin-top: var(--s-8); }
.principles { list-style: none; padding: 0; display: grid; gap: var(--s-4); margin-top: var(--s-4); }
.principle {
  padding: var(--s-5);
  background: var(--off-white);
  border: 1px solid var(--gray); border-radius: var(--radius);
  transition: transform var(--t) var(--ease), border-color var(--t) var(--ease);
}
.principle__num { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; color: var(--slate); }
.principle__name { margin-top: var(--s-4); font-size: 1.375rem; font-weight: 600; letter-spacing: -0.01em; }
.principle__desc { margin-top: var(--s-2); color: var(--slate); font-size: 0.9375rem; }
@media (hover: hover) { .principle:hover { transform: translateY(-3px); border-color: var(--slate); } }

@media (min-width: 720px) {
  .founders { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .principles { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
}
@media (min-width: 960px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: end; }
  .about__founders, .about__principles { margin-top: var(--s-9); }
}

/* ==========================================================================
   Product pages (products/*.html)
   ========================================================================== */
.pp-crumbs { padding-top: var(--s-6); }
.pp-back {
  display: inline-flex; align-items: center; gap: var(--s-2);
  min-height: 2.75rem;
  font-size: var(--fs-sm); font-weight: 500; color: var(--slate);
  transition: color var(--t) var(--ease);
}
@media (hover: hover) {
  .pp-back:hover { color: var(--navy); }
  .pp-back:hover .arrow { transform: translateX(-4px); }
}

.pp-hero { display: grid; gap: var(--s-6); padding-top: var(--s-4); padding-bottom: var(--s-8); }
.pp-hero__media {
  aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--off-white); border: 1px solid var(--gray); border-radius: var(--radius);
}
.pp-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.pp-hero__info { display: flex; flex-direction: column; align-items: flex-start; }
.pp-hero__title {
  margin-top: var(--s-3);
  font-size: clamp(2.25rem, 1.6rem + 2.8vw, 3.5rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.03em;
  text-wrap: balance;
}
.pp-hero__desc { margin-top: var(--s-4); font-size: var(--fs-lead); font-weight: 500; }
.pp-hero__pitch { margin-top: var(--s-3); color: var(--slate); max-width: 52ch; }
.pp-hero__buy { width: 100%; margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--gray); }
.pp-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 var(--s-2); }
.pp-price__amount { font-size: 2rem; font-weight: 600; letter-spacing: -0.02em; }
.pp-price__note { font-size: var(--fs-sm); color: var(--slate); }
.pp-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-6); margin-top: var(--s-4); }
.pp-hero__buy .info__facts { margin-top: var(--s-5); }

.pp-section { padding-block: var(--s-8); }
.pp-section--tight { padding-top: 0; }
.pp-two { display: grid; gap: var(--s-7); }
.pp-text { margin-top: var(--s-4); color: var(--slate); font-size: 1.0625rem; line-height: 1.7; max-width: 58ch; }
.pp-text--lead { color: var(--navy); }
.pp-h2 { font-size: clamp(1.5rem, 1.2rem + 1.3vw, 2.125rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }

.pp-benefits { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.pp-benefits li {
  position: relative;
  padding: var(--s-6) var(--s-5) var(--s-5);
  background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
  font-weight: 500; line-height: 1.5;
}
.pp-benefits li::before {
  content: ""; display: block; margin-bottom: var(--s-4);
  width: 1.25rem; height: 1.15rem; background: var(--navy);
  clip-path: polygon(50% 0, 100% 100%, 50% 64%, 0 100%);
}

.pp-includes { display: grid; gap: var(--s-3); margin-top: var(--s-5); }
.pp-includes li { position: relative; padding-left: 2rem; color: var(--slate); }
.pp-includes li::before {
  content: ""; position: absolute; left: 0.25rem; top: 0.45em;
  width: 0.7rem; height: 0.4rem;
  border-left: 1.8px solid var(--navy); border-bottom: 1.8px solid var(--navy);
  transform: rotate(-45deg);
}
.pp-steps { list-style: none; padding: 0; display: grid; gap: var(--s-5); margin-top: var(--s-5); }
.pp-step { display: grid; grid-template-columns: 2.25rem 1fr; column-gap: var(--s-3); }
.pp-step__num { grid-row: span 2; padding-top: 0.2rem; font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; color: var(--slate); }
.pp-step__name { font-weight: 600; }
.pp-step__desc { color: var(--slate); font-size: 0.9375rem; }

.pp-faq .pp-h2, .pp-faq__list { max-width: 52rem; }
.pp-faq__list { margin-top: var(--s-5); border-top: 1px solid var(--gray); }
.pp-faq__item { border-bottom: 1px solid var(--gray); }
.pp-faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  min-height: 3.5rem; padding-block: var(--s-4);
  font-weight: 600; cursor: pointer; list-style: none;
}
.pp-faq__item summary::-webkit-details-marker { display: none; }
.pp-faq__icon { position: relative; width: 14px; height: 14px; flex: none; }
.pp-faq__icon::before, .pp-faq__icon::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.6px; margin-top: -0.8px;
  background: var(--navy); transition: transform var(--t) var(--ease);
}
.pp-faq__icon::after { transform: rotate(90deg); }
.pp-faq__item[open] .pp-faq__icon::after { transform: rotate(0deg); }
.pp-faq__item p { padding-bottom: var(--s-5); color: var(--slate); max-width: 60ch; }
.pp-faq__item[open] p { animation: faq-in var(--t) var(--ease); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } }

.pp-cta__inner { display: grid; gap: var(--s-6); align-items: end; }
.pp-cta__title { font-size: clamp(2.25rem, 1.4rem + 3.6vw, 4rem); font-weight: 600; line-height: 1.05; letter-spacing: -0.03em; }
.pp-cta__text { margin-top: var(--s-4); color: var(--gray); max-width: 42ch; }
.pp-price--light .product__currency { color: var(--gray); }
.pp-cta__ask { color: var(--white); }

.pp-others { display: grid; gap: var(--s-4); margin-top: var(--s-6); }
.pp-others > li { display: grid; }
.pp-other {
  display: grid; grid-template-columns: 7rem 1fr; gap: var(--s-4); align-items: center;
  padding: var(--s-3);
  background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.pp-other__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 10px; background: var(--off-white); }
.pp-other__media img { width: 100%; height: 100%; object-fit: cover; }
.pp-other__body { display: grid; gap: var(--s-1); }
.pp-other__name { font-weight: 600; line-height: 1.3; }
.pp-other__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); margin-top: var(--s-1); }
.pp-other__price { font-weight: 600; }
.pp-other__view { display: none; align-items: center; gap: var(--s-2); font-size: var(--fs-sm); font-weight: 500; }
@media (hover: hover) {
  .pp-other:hover { transform: translateY(-3px); border-color: var(--slate); box-shadow: 0 18px 40px -24px rgb(15 23 42 / 0.35); }
  .pp-other:hover .arrow { transform: translateX(4px); }
}

@media (min-width: 720px) {
  .pp-benefits { grid-template-columns: repeat(3, 1fr); }
  .pp-others { grid-template-columns: repeat(3, 1fr); }
  .pp-other { grid-template-columns: 1fr; grid-template-rows: auto 1fr; align-items: start; padding: 0 0 var(--s-5); overflow: hidden; }
  .pp-other__body { height: 100%; grid-template-rows: auto 1fr auto; }
  .pp-other__foot { align-self: end; }
  .pp-other__media { border-radius: 0; border-bottom: 1px solid var(--gray); }
  .pp-other__body { padding-inline: var(--s-5); }
  .pp-other__view { display: inline-flex; }
}
@media (min-width: 960px) {
  .pp-hero { grid-template-columns: 1.1fr 1fr; gap: var(--s-8); align-items: center; padding-bottom: var(--s-9); }
  .pp-two { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
  .pp-section { padding-block: var(--s-9); }
  .pp-section--tight { padding-top: 0; }
  .pp-cta__inner { grid-template-columns: 1.4fr 1fr; }
}

/* ==========================================================================
   Prices: "From", separate price and real savings
   ========================================================================== */
.product__from, .pp-price__from { font-size: var(--fs-sm); font-weight: 500; color: var(--slate); margin-right: 0.15em; }
.product__prices { display: grid; gap: 2px; }
.product__save, .pp-save, .info__save, .cat-pack__save {
  font-size: var(--fs-xs); color: var(--slate); letter-spacing: 0.01em;
}
.product__save s, .pp-save s, .info__save s, .cat-pack__save s { text-decoration-thickness: 1px; }
.product__save strong, .pp-save strong, .info__save strong, .cat-pack__save strong { font-weight: 600; color: var(--navy); }
.pp-save { margin-top: var(--s-1); font-size: var(--fs-sm); }
.info__save { flex-basis: 100%; }
.section--dark .pp-save, .pp-price--light + .pp-save { color: var(--gray); }
.section--dark .pp-save strong { color: var(--white); }

/* "All NORTH Templates": wide, highlighted card */
.product__badge {
  align-self: flex-start; margin-bottom: var(--s-3);
  padding: 0.25rem 0.7rem; border-radius: 999px;
  background: var(--navy); color: var(--white);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.04em;
}
.product--wide .product__card { border-color: var(--navy); }
@media (min-width: 720px) {
  .product--wide { grid-column: 1 / -1; }
  .product--wide .product__card { flex-direction: row; }
  .product--wide .product__media { flex: 0 0 50%; aspect-ratio: auto; min-height: 100%; border-bottom: 0; border-right: 1px solid var(--gray); }
  .product--wide .product__body { justify-content: center; }
}
.products__catalog { margin-top: var(--s-5); font-size: 1rem; }

/* ==========================================================================
   SEO levels: table (desktop) / stacked cards (mobile)
   ========================================================================== */
.levels__intro { max-width: 46rem; }
.levels__wrap { margin-top: var(--s-6); }
.levels__table { display: none; }
.levels__icon { width: 20px; height: 20px; flex: none; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.levels__icon--no { stroke: var(--gray); }

.levels__cards { display: grid; gap: var(--s-4); }
.levels__card {
  padding: var(--s-5);
  background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
}
.levels__card.is-popular { border: 2px solid var(--navy); }
.levels__top { display: flex; flex-direction: column; align-items: flex-start; }
.levels__badge {
  margin-bottom: var(--s-3); padding: 0.25rem 0.7rem; border-radius: 999px;
  background: var(--navy); color: var(--white);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.04em;
}
.levels__name { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; }
.levels__sub { color: var(--slate); font-size: var(--fs-sm); }
.levels__price { margin-top: var(--s-3); }
.levels__amount { font-size: 2rem; font-weight: 600; letter-spacing: -0.02em; }
.levels__buy { margin-top: var(--s-4); width: 100%; }
.levels__plus { margin-top: var(--s-5); font-size: var(--fs-sm); font-weight: 600; }
.levels__list { display: grid; gap: var(--s-2); margin-top: var(--s-3); }
.levels__card > .levels__list:first-of-type { margin-top: var(--s-5); }
.levels__list li { display: flex; gap: var(--s-2); align-items: flex-start; color: var(--slate); font-size: 0.9375rem; }
.levels__delivery { margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--gray); font-size: var(--fs-sm); color: var(--slate); }
.levels__delivery strong { color: var(--navy); font-weight: 600; margin-right: 0.25em; }

@media (min-width: 900px) {
  .levels__cards { display: none; }
  .levels__table {
    display: table; width: 100%; border-collapse: separate; border-spacing: 0;
    background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
  }
  .levels__table th, .levels__table td { padding: var(--s-3) var(--s-4); border-bottom: 1px solid var(--gray); text-align: center; vertical-align: middle; }
  .levels__table tbody tr:last-child > * { border-bottom: 0; }
  .levels__table tbody th[scope="row"] { text-align: left; font-weight: 500; font-size: 0.9375rem; width: 40%; }
  .levels__table td .levels__icon { margin-inline: auto; }
  .levels__corner { border-bottom: 1px solid var(--gray); }
  .levels__head { padding: var(--s-6) var(--s-4) var(--s-5) !important; font-weight: 400; vertical-align: top !important; width: 20%; }
  .levels__head { position: relative; padding-top: var(--s-8) !important; }
  .levels__head .levels__badge { position: absolute; top: var(--s-4); left: 50%; transform: translateX(-50%); margin: 0; white-space: nowrap; }
  .levels__head > * { display: block; }
  .levels__head .levels__badge { display: inline-block; }
  .levels__head .levels__buy { display: inline-flex; width: 100%; padding-inline: var(--s-4); }
  .levels__head.is-popular, .levels__table td:nth-child(3) { background: rgb(15 23 42 / 0.03); }
  .levels__head.is-popular { box-shadow: inset 0 3px 0 var(--navy); }
  .levels__group th {
    text-align: left !important; background: var(--off-white);
    font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate);
  }
  .levels__days td { font-size: var(--fs-sm); color: var(--slate); }
  .levels__days td strong { color: var(--navy); font-size: 1rem; }
  .levels__table thead tr:first-child > :first-child { border-top-left-radius: var(--radius); }
  .levels__table thead tr:first-child > :last-child { border-top-right-radius: var(--radius); }
}

/* ==========================================================================
   Pack pages
   ========================================================================== */
.pk-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--s-2) var(--s-5); }
.pk-head__count { color: var(--slate); font-weight: 500; }
.pk-items { display: grid; gap: var(--s-3); margin-top: var(--s-5); }
.pk-item { padding: var(--s-4) var(--s-5); background: var(--white); border: 1px solid var(--gray); border-radius: 12px; }
.pk-item__name { font-weight: 600; }
.pk-item__desc { margin-top: var(--s-1); color: var(--slate); font-size: 0.9375rem; }
.pk-group + .pk-group { margin-top: var(--s-7); }
.pk-group__head {
  display: inline-flex; align-items: center; gap: var(--s-2); margin-top: var(--s-5);
  font-size: 1.125rem; font-weight: 600;
}
.pk-group__count { font-size: var(--fs-sm); font-weight: 500; color: var(--slate); }
@media (hover: hover) { .pk-group__head:hover .arrow { transform: translateX(4px); } }
.pp-covers { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }
.pp-covers li {
  padding: 0.55rem 1rem; border-radius: 999px; background: var(--white); border: 1px solid var(--gray);
  font-size: var(--fs-sm); font-weight: 500;
}
@media (min-width: 720px) {
  .pk-items { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pk-items { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   Templates catalog
   ========================================================================== */
.cat-hero { padding-top: var(--s-4); padding-bottom: var(--s-6); }
.cat-hero .pp-hero__title { margin-top: var(--s-4); max-width: 18ch; }
.cat-hero__lead { margin-top: var(--s-4); max-width: 46ch; font-size: var(--fs-lead); color: var(--slate); }

.cat-packs { display: grid; gap: var(--s-4); margin-top: var(--s-5); }
.cat-pack {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: var(--s-5);
  background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
}
.cat-pack--featured { background: var(--navy); border-color: var(--navy); color: var(--white); }
.cat-pack__badge {
  margin-bottom: var(--s-3); padding: 0.25rem 0.7rem; border-radius: 999px;
  background: var(--white); color: var(--navy); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.04em;
}
.cat-pack__name { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
.cat-pack__count { margin-top: var(--s-1); font-size: var(--fs-sm); color: var(--slate); }
.cat-pack__price { margin-top: var(--s-4); font-size: 1.75rem; font-weight: 600; letter-spacing: -0.02em; }
.cat-pack__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2) var(--s-5); margin-top: auto; padding-top: var(--s-5); }
.cat-pack--featured .cat-pack__count, .cat-pack--featured .cat-pack__save, .cat-pack--featured .product__currency { color: var(--gray); }
.cat-pack--featured .cat-pack__save strong, .cat-pack--featured .link-arrow { color: var(--white); }
.cat-pack--featured :focus-visible { outline-color: var(--white); }
@media (min-width: 720px) {
  .cat-packs { grid-template-columns: repeat(3, 1fr); }
  .cat-pack--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; grid-template-rows: auto auto auto 1fr; column-gap: var(--s-6); }
  .cat-pack--featured > * { grid-column: 1; }
  .cat-pack--featured .cat-pack__price, .cat-pack--featured .cat-pack__save { grid-column: 2; text-align: right; }
  .cat-pack--featured .cat-pack__price { grid-row: 1 / 3; align-self: end; margin-top: 0; font-size: 2.5rem; }
  .cat-pack--featured .cat-pack__save { grid-row: 3; }
  .cat-pack--featured .cat-pack__actions { grid-column: 1 / -1; }
}

.tpl-grid { display: grid; gap: var(--s-4); margin-top: var(--s-2); }
.tpl.is-hidden { display: none; }
.tpl.is-entering { animation: card-in var(--t-slow) var(--ease) both; }
.tpl__card {
  display: flex; flex-direction: column; height: 100%;
  padding: var(--s-5);
  background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
@media (hover: hover) {
  .tpl__card:hover { transform: translateY(-3px); border-color: var(--slate); box-shadow: 0 18px 40px -24px rgb(15 23 42 / 0.35); }
}
.tpl__group { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.tpl__name { margin-top: var(--s-2); font-size: 1.125rem; font-weight: 600; line-height: 1.3; }
.tpl__desc { margin-top: var(--s-2); color: var(--slate); font-size: 0.9375rem; }
.tpl__chips { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2); margin-top: var(--s-4); }
.tpl__chips-label { font-size: var(--fs-xs); color: var(--slate); }
.tpl__chip {
  padding: 0.2rem 0.65rem; border-radius: 999px; border: 1px solid var(--gray);
  font-size: var(--fs-xs); font-weight: 500;
  transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
@media (hover: hover) { .tpl__chip:hover { border-color: var(--navy); background: var(--off-white); } }
.tpl__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); margin-top: auto; padding-top: var(--s-5); }
.tpl__price { font-size: 1.25rem; font-weight: 600; }
.tpl__buy { min-height: 2.5rem; padding: 0 var(--s-5); }
.tpl__save {
  margin-top: var(--s-4); padding-top: var(--s-3); border-top: 1px solid var(--gray);
  font-size: var(--fs-sm); color: var(--slate);
}
.tpl__save a { color: var(--navy); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
@media (min-width: 720px) { .tpl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .tpl-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Payment methods
   ========================================================================== */
.paymethods { margin-top: var(--s-5); padding: var(--s-5); border: 1px solid var(--gray); border-radius: var(--radius); background: var(--white); }
.paymethods__title { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }
.paymethods__list { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-3); }
.paymethods__list li {
  padding: 0.4rem 0.85rem; border-radius: 999px; border: 1px solid var(--gray); background: var(--off-white);
  font-size: var(--fs-sm); font-weight: 500;
}
.paymethods__note { margin-top: var(--s-3); font-size: var(--fs-sm); color: var(--slate); }
.paymethods--dark { grid-column: 1 / -1; background: transparent; border-color: var(--line); }
.paymethods--dark .paymethods__title, .paymethods--dark .paymethods__note { color: var(--gray); }
.paymethods--dark .paymethods__list li { background: rgb(255 255 255 / 0.06); border-color: var(--line); color: var(--white); }
a.pp-price__note { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
@media (hover: hover) { a.pp-price__note:hover { color: var(--navy); } }

/* ==========================================================================
   SEO plans on the home page (reuses the level cards)
   ========================================================================== */
.seo-plans { background: var(--white); border-block: 1px solid var(--gray); }
.seo-plans__grid { display: grid; gap: var(--s-4); }
.seo-plans .levels__card { background: var(--off-white); }
.seo-plans .levels__card.is-popular { background: var(--white); }
.seo-plan__detail { margin-top: var(--s-2); align-self: center; }
.seo-plans__compare { margin-top: var(--s-6); }
@media (min-width: 900px) {
  .seo-plans__grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .seo-plans .levels__card { display: flex; flex-direction: column; height: 100%; }
  .seo-plans .levels__delivery { margin-top: auto; }
  .seo-plans .levels__list { margin-bottom: var(--s-5); }
}

/* Level opened from the home page: brief highlight */
.levels__card.is-target, .levels__head.is-target { animation: level-target 2.2s var(--ease) both; }
@keyframes level-target {
  0%, 40% { box-shadow: 0 0 0 4px rgb(15 23 42 / 0.18); }
  100% { box-shadow: 0 0 0 0 rgb(15 23 42 / 0); }
}
.levels__head.is-popular.is-target { animation-name: level-target-popular; }
@keyframes level-target-popular {
  0%, 40% { box-shadow: inset 0 3px 0 var(--navy), 0 0 0 4px rgb(15 23 42 / 0.18); }
  100% { box-shadow: inset 0 3px 0 var(--navy); }
}

/* "Most chosen" badge sits on the card's top border so the three levels line up */
.levels__card { position: relative; }
.levels__card .levels__badge { position: absolute; top: 0; left: var(--s-5); transform: translateY(-50%); margin: 0; }
.levels__cards, .seo-plans__grid { padding-top: var(--s-3); }

/* ==========================================================================
   Legal pages + legal links
   ========================================================================== */
.footer__legal {
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5);
  padding-block: var(--s-5); border-top: 1px solid var(--line, rgb(203 213 225 / 0.16));
  font-size: var(--fs-sm);
}
.footer__legal a { color: var(--gray); transition: color var(--t) var(--ease); }
.footer__legal a:hover { color: var(--white); }
.footer__withdraw { font-weight: 600; color: var(--white) !important; text-decoration: underline; text-underline-offset: 3px; }
.form__legal { font-size: var(--fs-xs); color: var(--slate); text-align: center; }
.form__legal a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }

.legal { padding-bottom: var(--s-9); }
.legal__head { max-width: 48rem; padding-block: var(--s-4) var(--s-7); }
.legal__title { margin-top: var(--s-4); font-size: clamp(2.25rem, 1.6rem + 2.8vw, 3.5rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.03em; }
.legal__updated { margin-top: var(--s-3); font-size: var(--fs-sm); color: var(--slate); }
.legal__intro { margin-top: var(--s-5); font-size: var(--fs-lead); color: var(--slate); line-height: 1.6; }
.legal__layout { display: grid; gap: var(--s-7); }
.legal__toc {
  padding: var(--s-5); background: var(--white); border: 1px solid var(--gray); border-radius: var(--radius);
}
.legal__toc-title { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }
.legal__toc ol { margin: var(--s-3) 0 0; padding-left: 1.25rem; display: grid; gap: var(--s-2); font-size: var(--fs-sm); }
.legal__toc a { color: var(--navy); }
.legal__toc a:hover { text-decoration: underline; text-underline-offset: 3px; }
.legal__body { max-width: 46rem; }
.legal__section { padding-block: var(--s-6); border-top: 1px solid var(--gray); scroll-margin-top: calc(var(--nav-h) + var(--s-4)); }
.legal__section:first-child { border-top: 0; padding-top: 0; }
.legal__h2 { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.legal__section p, .legal__list { margin-top: var(--s-4); color: #334155; line-height: 1.75; }
.legal__list { display: grid; gap: var(--s-2); padding-left: 1.25rem; list-style: disc; }
.legal__list li::marker { color: var(--slate); }
.legal__withdraw { margin-top: var(--s-5); }
.legal__related { margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--gray); }
.legal__related ul { display: grid; gap: var(--s-1); margin-top: var(--s-2); }
@media (min-width: 960px) {
  .legal__layout { grid-template-columns: 16rem 1fr; gap: var(--s-9); align-items: start; }
  .legal__toc { position: sticky; top: calc(var(--nav-h) + var(--s-5)); }
}

/* ==========================================================================
   Full navigation: three-line menu at every size + quick access
   ========================================================================== */
.nav__menu-line--mid { transition: opacity var(--t-fast) var(--ease); }
.nav__menu[aria-expanded="true"] .nav__menu-line--top { transform: translateY(7.5px) rotate(45deg); }
.nav__menu[aria-expanded="true"] .nav__menu-line--mid { opacity: 0; }
.nav__menu[aria-expanded="true"] .nav__menu-line--bottom { transform: translateY(-7.5px) rotate(-45deg); }

/* Menu content (grouped) */
.menu { display: grid; gap: var(--s-6); }
.menu__group { display: flex; flex-direction: column; align-items: flex-start; }
.menu__title {
  margin-bottom: var(--s-2);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate);
}
.menu__group a, .menu__book {
  display: inline-flex; align-items: center; gap: var(--s-2);
  min-height: 2.75rem;
  font-size: 1.25rem; font-weight: 500; letter-spacing: -0.01em; color: var(--navy);
  transition: color var(--t) var(--ease);
}
.menu__book .arrow { transition: transform var(--t) var(--ease); }
@media (hover: hover) {
  .menu__group a:hover, .menu__book:hover { color: var(--slate); }
  .menu__book:hover .arrow { transform: translateX(4px); }
}
.mobile-menu { overflow-y: auto; justify-content: flex-start; padding-block: var(--s-6) var(--s-8); }

@media (min-width: 768px) {
  .nav__menu { display: inline-flex; }
  .mobile-menu:not([hidden]) { display: block; }
  .mobile-menu {
    inset: var(--nav-h) 0 auto 0;
    max-height: calc(100svh - var(--nav-h));
    padding-block: var(--s-7);
    border-bottom: 1px solid var(--gray);
    box-shadow: 0 30px 60px -30px rgb(15 23 42 / 0.35);
  }
  .menu { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
  .menu__group a, .menu__book { font-size: 1.125rem; min-height: 2.5rem; }
  /* Between tablet and desktop only the key links fit next to the logo */
  .nav__link--wide { display: none; }
}
@media (min-width: 1100px) {
  .nav__link--wide { display: inline; }
}

/* Quick access under the hero (visible on phones too) */
.hero__quick { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.hero__quick a {
  padding: 0.45rem 0.9rem; border: 1px solid var(--gray); border-radius: 999px;
  font-size: var(--fs-sm); font-weight: 500; color: var(--navy);
  transition: border-color var(--t) var(--ease), background-color var(--t) var(--ease);
}
@media (hover: hover) { .hero__quick a:hover { border-color: var(--navy); background: var(--white); } }
.hero__foot { flex-wrap: wrap; row-gap: var(--s-4); }

/* Web design row reached from the nav: leave room for the fixed header */
#web-design, #custom { scroll-margin-top: var(--s-4); }
/* Keep the layout still when the menu locks page scroll */
html { scrollbar-gutter: stable; }

.form__status a { color: inherit; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.hero__quick { margin-top: var(--s-5); }
.hero__foot .hero__next { margin-left: auto; }

/* Link from the Premium Landing service to the fixed-price Landing 01 */
.service__alt {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: var(--s-2);
  margin-top: var(--s-4); font-size: var(--fs-sm); color: var(--gray);
  text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px;
  transition: color var(--t) var(--ease);
}
@media (hover: hover) {
  .service__alt:hover { color: var(--white); }
  .service__alt:hover .arrow { transform: translateX(4px); }
}
