/* ============================================================
   KONFORT — Design System v2
   Domótica · Editorial · Burnt gold + champagne silver
   ============================================================ */

/* ---- Tokens (KONFORT Color System Final) ---- */
:root {
  /* Blacks */
  --bg-0:        #0B0B0C;  /* Primary Background */
  --bg-1:        #121214;  /* UI Background */
  --bg-2:        #1A1A1D;  /* Charcoal */
  --bg-elev:     #1A1A1D;
  --line:        #232328;
  --line-soft:   #18181B;

  /* Whites */
  --text:        #EDEDED;  /* Primary White */
  --text-dim:    #CFCFCF;  /* Secondary White */
  --text-mute:   #6E707A;  /* Derived from silver family */

  /* Champagne Gold scale (accent only — no gradients per brand) */
  --gold:        #C6A96B;  /* Base */
  --gold-light:  #D8C08A;  /* Highlight */
  --gold-deep:   #8F784A;  /* Shadow */

  /* Silver Accent */
  --silver:      #BFC3C7;
  --silver-dim:  #888B8E;

  /* Typography */
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  /* Radii */
  --r-sm:   4px;
  --r-card: 6px;
  --r-lg:   12px;
  --r-pill: 999px;

  /* Shadows (refined, no glow) */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 12px 32px rgba(0,0,0,.45);
  --shadow-lg: 0 30px 70px rgba(0,0,0,.55);

  /* Layout */
  --container: 1240px;
  --nav-h:     76px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--bg-0); }

/* ---- Layout primitives ---- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

/* Editorial divider */
.rule {
  display: block;
  height: 1px; width: 56px;
  background: var(--gold);
  border: 0;
  margin: 0 0 24px;
}
.rule--center { margin-inline: auto; }

/* ============================================================
   NAVIGATION (clean, hairline border on scroll)
   ============================================================ */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,11,8,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.nav-wrap.is-scrolled { border-bottom-color: var(--line); background: rgba(14,11,8,.95); }
.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}
.brand {
  display: inline-flex; align-items: center;
  height: 40px;
  margin-right: auto;
}
.brand img { height: 100%; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px;
  border: 0; background: transparent; color: var(--text);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  position: relative;
  transition: color .2s;
}
.nav-links > li > a::after,
.nav-links > li > button::after {
  content: "";
  position: absolute; left: 18px; right: 18px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .25s ease;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover,
.nav-links > li.is-open > button { color: var(--gold-light); }
.nav-links > li > a:hover::after,
.nav-links > li > button:hover::after,
.nav-links > li.is-open > button::after,
.nav-links > li.is-active > a::after { transform: scaleX(1); }
.nav-links > li.is-active > a { color: var(--gold-light); }

/* Lang toggle */
.lang {
  display: inline-flex; align-items: center;
  margin-left: 18px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.lang button {
  border: 0; background: transparent;
  color: var(--text-mute);
  width: 32px; height: 32px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600; letter-spacing: .14em;
  transition: color .2s;
}
.lang button.is-active { color: var(--gold-light); }
.lang button:not(.is-active):hover { color: var(--text); }
.lang span { color: var(--line); margin: 0 4px; }

/* Burger */
.burger {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  color: var(--text);
  margin-left: 8px;
}
.burger span {
  display: block; width: 22px; height: 1px;
  background: currentColor;
  margin: 6px auto;
  transition: transform .25s, opacity .25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 560px;
  padding: 28px 32px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  display: grid; gap: 36px;
  grid-template-columns: repeat(2, 1fr);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.is-open > .mega {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega h4 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.mega ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.mega a {
  display: block; padding: 8px 0;
  color: var(--text); font-size: 14px; font-weight: 400;
  letter-spacing: 0; text-transform: none;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.mega a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text);
  margin: 0 0 20px;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.005em;
  color: var(--text);
  margin: 0 0 20px;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 12px;
}

.lede {
  max-width: 640px;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}
.lede--center { margin-inline: auto; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  border-radius: var(--r-pill);
  transition: all .2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg-0);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--text {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  padding: 4px 0;
  border-bottom: 1px solid var(--gold);
}
.btn--text:hover { color: var(--gold-light); }

/* ============================================================
   HERO (editorial, full-bleed image)
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 820px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--bg-0);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img,
.hero__media .picsum {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) saturate(.85);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,11,8,.35) 0%, rgba(14,11,8,.55) 60%, var(--bg-0) 100%),
    linear-gradient(90deg, rgba(14,11,8,.85) 0%, rgba(14,11,8,.45) 50%, rgba(14,11,8,.2) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding: 120px 0 80px;
  max-width: 760px;
}
.hero__cta {
  display: flex; gap: 14px; margin-top: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: clamp(72px, 11vw, 140px) 0;
  position: relative;
}
.section--alt { background: var(--bg-1); }
.section__head { max-width: 720px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }

/* ============================================================
   ABOUT (split: copy + image)
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--bg-2);
}
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__visual::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(200,165,96,.15);
  border-radius: var(--r-card);
  pointer-events: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.stat {
  padding: 28px 0 0;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 500;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.01em;
}
.stat__label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 10px;
}

/* ============================================================
   PRODUCT GRID (large imagery)
   ============================================================ */
.cat-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.cat-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cat-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 40px; }

.cat {
  position: relative;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: transparent;
}
.cat__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--bg-2);
  margin-bottom: 22px;
  position: relative;
}
.cat__media img,
.cat__media .picsum {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.cat:hover .cat__media img,
.cat:hover .cat__media .picsum { transform: scale(1.04); }
.cat__media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(200,165,96,.0);
  border-radius: var(--r-card);
  transition: border-color .3s, box-shadow .3s;
  pointer-events: none;
}
.cat:hover .cat__media::after {
  border-color: rgba(200,165,96,.35);
  box-shadow: var(--shadow-md);
}
.cat__title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -.005em;
}
.cat:hover .cat__title { color: var(--gold-light); }
.cat__desc {
  color: var(--text-dim);
  font-size: 15px; line-height: 1.6;
  margin: 0;
}
.cat__more {
  margin-top: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
}

/* ============================================================
   SOLUTIONS (alternating rows)
   ============================================================ */
.sol-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
.sol {
  position: relative;
  display: flex; flex-direction: column;
}
.sol__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--bg-2);
  margin-bottom: 22px;
}
.sol__media img,
.sol__media .picsum { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.sol:hover .sol__media img, .sol:hover .sol__media .picsum { transform: scale(1.03); }
.sol h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  margin: 0 0 8px;
  color: var(--text);
}
.sol p { color: var(--text-dim); margin: 0; font-size: 15px; }

/* ============================================================
   PROJECTS
   ============================================================ */
.proj-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
.proj {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-card);
  background: var(--bg-2);
  display: block;
}
.proj img, .proj .picsum {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s;
}
.proj:hover img, .proj:hover .picsum { transform: scale(1.04); }
.proj::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.85) 100%);
  z-index: 1;
}
.proj__label {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
}
.proj__label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--text);
  letter-spacing: -.005em;
}
.proj__tag {
  display: inline-block; margin-top: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CTA (refined)
   ============================================================ */
.cta-banner {
  position: relative;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 80px);
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: center;
}
.cta-banner::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.cta-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--text);
}
.cta-banner p { margin: 0; color: var(--text-dim); font-size: 16px; max-width: 540px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 96px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--bg-0);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
}
.footer__brand img { height: 44px; }
.footer__tag {
  margin: 24px 0 0;
  color: var(--text-dim);
  font-size: 14px;
  max-width: 280px;
  line-height: 1.6;
}
.footer h5 {
  margin: 0 0 18px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--text-dim); font-size: 14px; transition: color .2s; }
.footer a:hover { color: var(--gold-light); }

.footer__bar {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-mute); font-size: 13px;
  flex-wrap: wrap; gap: 12px;
}

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-head {
  padding: clamp(96px, 12vw, 160px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border-bottom: 1px solid var(--line);
}
.page-head__inner {
  max-width: 720px;
}
.page-head__inner--center { margin-inline: auto; text-align: center; }
.page-head .breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.page-head .breadcrumb a:hover { color: var(--gold-light); }
.page-head .breadcrumb span { opacity: .5; }

/* ============================================================
   FAQ (accordion)
   ============================================================ */
.faq-list { display: grid; gap: 0; max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'><path d='M7 1v12M1 7h12' stroke='%23C8A560' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--gold-light); }
.faq-item p { padding: 0 0 24px; margin: 0; color: var(--text-dim); max-width: 720px; line-height: 1.7; }

/* ============================================================
   GUIDES (support)
   ============================================================ */
.guides-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 820px; margin: 32px auto 0;
}
.guide {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: transparent;
  color: var(--text);
  transition: border-color .2s, background .2s;
}
.guide:hover {
  border-color: var(--gold);
  background: rgba(200,165,96,.04);
}
.guide__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   PROCESS (Quiénes Somos) — numbered steps
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  display: flex; flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--bg-1);
  transition: border-color .25s, transform .25s;
}
.step:hover { border-color: var(--gold); transform: translateY(-4px); }
.step__num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -.02em;
}
.step h3 { margin: 0 0 8px; font-size: 20px; }
.step p { color: var(--text-dim); margin: 0; font-size: 14px; }

/* ============================================================
   PROJECTS FILTER
   ============================================================ */
.filter-bar {
  display: flex; gap: 6px; flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 56px;
}
.filter-bar button {
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  transition: all .2s;
}
.filter-bar button:hover { color: var(--gold-light); border-color: var(--gold); }
.filter-bar button.is-on {
  background: var(--gold); color: var(--bg-0); border-color: var(--gold);
}

/* ============================================================
   PICSUM placeholder helper (lazy lifestyle imagery)
   ============================================================ */
.picsum {
  display: block;
  width: 100%; height: 100%;
  background-color: var(--bg-2);
  background-size: cover;
  background-position: center;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .cat-grid, .cat-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer__grid { grid-template-columns: 1.4fr repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 920px) {
  .nav-links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    padding: 16px;
    background: var(--bg-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-links > li:last-child { border-bottom: 0; }
  .nav-links > li > a, .nav-links > li > button {
    padding: 16px 8px; width: 100%; justify-content: space-between;
  }
  .nav-links > li > a::after, .nav-links > li > button::after { display: none; }
  .mega {
    position: static; transform: none; min-width: 0;
    opacity: 1; pointer-events: auto;
    grid-template-columns: 1fr; gap: 16px;
    padding: 0 8px 16px; box-shadow: none;
    border: 0; background: transparent;
    display: none;
  }
  .is-open > .mega { display: grid; }
  .lang { margin-left: auto; padding-left: 0; border-left: 0; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }

  .about { grid-template-columns: 1fr; gap: 48px; }
  .sol-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { grid-template-columns: 1fr; gap: 24px; }
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cat-grid, .cat-grid--4, .cat-grid--2 { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .stat:last-child { border-bottom: 0; }
  .process { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
