/* ============================================================
   TECHNO PAINT · PRODUCT DETAIL PAGE SHARED STYLES
   ============================================================ */
:root {
  --bg:          #f4f1ea;
  --bg-2:        #ece8de;
  --paper:       #ffffff;
  --ink:         #0f1012;
  --ink-2:       #26282c;
  --ink-3:       #575a60;
  --ink-4:       #8a8d93;
  --line:        rgba(15,16,18,.09);
  --line-2:      rgba(15,16,18,.18);

  --brand:       #1c6fc4;
  --brand-dp:    #0d3a74;
  --brand-ink:   #081f3e;
  --brand-soft:  #dbe7f5;

  --teal:        #24727f;
  --teal-soft:   #d6e9e9;
  --clay:        #b85840;
  --clay-soft:   #f3dcd0;
  --ochre:       #b28438;
  --ochre-soft:  #f3e4c2;
  --olive:       #506532;
  --olive-soft:  #dde4cc;

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 44px;

  --shadow:    0 12px 36px -18px rgba(15,16,18,.24), 0 2px 4px rgba(15,16,18,.04);
  --shadow-lg: 0 40px 80px -30px rgba(15,16,18,.28);

  --ease:        cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.22,1.3,.36,1);

  --max: 1380px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--brand); color: #fff; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 80;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/></svg>");
}

/* --------- NAV (matches index) --------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: center; padding: 0 20px;
  transition: top .4s var(--ease);
}
.nav-inner {
  width: 100%; max-width: var(--max);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 10px 10px 10px 22px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 14px 40px -20px rgba(15,16,18,.3);
  border-radius: 999px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { height: 30px; width: auto; }
.nav-brand b { font-weight: 600; font-size: 15px; letter-spacing: -.01em; color: var(--ink); }
.nav-brand .loc {
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
  padding-left: 12px; border-left: 1px solid var(--line-2); margin-left: 2px;
}
.nav-links { display: flex; gap: 2px; justify-content: center; }
.nav-links a {
  padding: 9px 16px; font-size: 14px; color: var(--ink-2);
  border-radius: 999px;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(15,16,18,.06); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px 11px 20px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 500;
  transition: transform .35s var(--ease-spring), background .25s var(--ease);
}
.nav-cta:hover { background: var(--brand-ink); }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 3px rgba(28,111,196,.24);
  animation: navpulse 2.4s ease-in-out infinite;
}
@keyframes navpulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.65} }

/* Hamburger — hidden on desktop, shown on tablet/mobile */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(15,16,18,.06);
  border: 1px solid var(--line-2);
  align-items: center; justify-content: center;
  position: relative;
  transition: background .25s var(--ease);
  flex-shrink: 0;
}
.nav-burger:hover { background: rgba(15,16,18,.1); }
.nav-burger span {
  position: absolute; left: 12px; right: 12px;
  height: 1.5px; background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav-burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 65;
  background: rgba(244,241,234,.96);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  display: flex; flex-direction: column;
  padding: 100px 28px 40px;
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .45s var(--ease);
}
.mobile-menu.is-open {
  opacity: 1; pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu nav {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.mobile-menu nav a {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 28px; letter-spacing: -.018em;
  color: var(--ink);
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  transition: color .25s var(--ease), padding-left .35s var(--ease);
}
.mobile-menu nav a::after {
  content: '→';
  font-family: 'Geist Mono', monospace; font-size: 18px;
  color: var(--ink-4);
  transition: transform .35s var(--ease), color .25s var(--ease);
}
.mobile-menu nav a:hover { color: var(--brand-dp); padding-left: 12px; }
.mobile-menu nav a:hover::after { color: var(--brand); transform: translateX(4px); }
.mobile-menu-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 24px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 500;
  align-self: flex-start;
}
.mobile-menu-cta .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 3px rgba(28,111,196,.24);
}
.mobile-menu-foot {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3);
}
.mobile-menu-foot a { color: var(--ink-2); }
html.menu-open, html.menu-open body { overflow: hidden; }

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: auto 1fr auto; padding-right: 6px; gap: 12px; }
  .nav-links, .nav-brand .loc { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-brand b { font-size: 14px; }
  .nav-brand img { height: 26px; }
}

/* --------- CONTAINER --------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* --------- PRODUCT HERO --------- */
.prod-hero {
  position: relative;
  min-height: 78vh;
  padding: 160px 0 80px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.prod-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-bg);
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.02);
}
.prod-hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,10,14,.3) 0%, rgba(8,10,14,.2) 30%, rgba(8,10,14,.65) 100%);
}
/* Optional hero photograph — when a <img class="prod-hero-photo"> is dropped
   inside .prod-hero, it covers the gradient. The ::after darkens it for
   legibility. If no image is present, the gradient shows through as-is. */
.prod-hero-photo {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.prod-hero-inner { display: grid; gap: 24px; max-width: 900px; position: relative; z-index: 1; }
.breadcrumb {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
  display: inline-flex; gap: 10px; align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,.78); border-bottom: 1px solid rgba(255,255,255,.3); }
.breadcrumb a:hover { color: #fff; border-color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.55); }
.prod-hero h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(42px, 6.8vw, 96px);
  line-height: 0.98; letter-spacing: -.028em;
  margin: 0; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.prod-hero h1 em { font-style: italic; font-weight: 300; opacity: .92; }
.prod-hero-lede {
  font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,.88);
  max-width: 62ch;
  margin: 0;
}
.prod-chips {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px;
}
.prod-chip {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}

/* --------- SECTION COMMON --------- */
section { padding: 100px 0; position: relative; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: end; padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.section-head .label {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px;
}
.section-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(36px, 4.2vw, 60px); line-height: 1;
  letter-spacing: -.024em;
  margin: 0;
}
.section-head h2 em { font-style: italic; font-weight: 300; color: var(--ink-3); }
.section-head p {
  color: var(--ink-3); font-size: 16px; max-width: 48ch;
  justify-self: end;
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head p { justify-self: start; }
}

/* --------- PRODUCT CARDS --------- */
.products-list {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.p-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.p-card-swatch {
  position: relative;
  aspect-ratio: 16 / 10;
  background-image: var(--card-bg);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.p-card-swatch::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(255,255,255,.18) 0%, rgba(0,0,0,.18) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Optional finish photo — drop an <img class="p-card-photo" src="..." />
   inside the .p-card-swatch to show a photo of the finish instead of the
   gradient. The SKU, finish tag and swatch dot float above it. */
.p-card-photo {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.p-card-swatch .sku {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
}
.p-card-swatch .finish {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .18em; text-transform: uppercase;
  color: #fff;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.28);
}
.p-card-body { padding: 26px 26px 24px; flex: 1; display: flex; flex-direction: column; }
.p-card h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 26px; line-height: 1.05; letter-spacing: -.015em;
  margin: 0 0 10px;
}
.p-card p { color: var(--ink-3); margin: 0 0 18px; font-size: 14.5px; }
.p-card dl {
  display: grid; grid-template-columns: auto 1fr; gap: 8px 16px;
  margin: 0 0 20px; font-size: 13px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.p-card dt {
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-4);
}
.p-card dd { margin: 0; color: var(--ink-2); font-weight: 500; }
.p-card .ft {
  margin-top: auto;
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--line);
}
.p-card .ft span { display: inline-block; width: 6px; height: 6px; border-radius: 50%; }

/* --------- HIGHLIGHT RAIL --------- */
.hrail {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 60px 0; margin: 20px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hrail .item { padding: 8px 4px; }
.hrail .k {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-4);
  margin-bottom: 10px;
}
.hrail .v {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 28px; line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink);
}
@media (max-width: 800px) {
  .hrail { grid-template-columns: repeat(2, 1fr); }
}

/* --------- APPLICATION SECTION --------- */
.app-wrap {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
  align-items: start;
}
.app-wrap .copy h3 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(28px, 3vw, 40px); line-height: 1.05;
  letter-spacing: -.022em; margin: 0 0 18px;
}
.app-wrap .copy p { color: var(--ink-3); margin: 0 0 14px; font-size: 16px; }
.app-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.app-steps li {
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid; grid-template-columns: auto 1fr; gap: 18px;
  align-items: start;
}
.app-steps .n {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace; font-size: 12px; font-weight: 500;
}
.app-steps h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; letter-spacing: -.005em; }
.app-steps p { margin: 0; color: var(--ink-3); font-size: 14px; }
@media (max-width: 900px) {
  .app-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* --------- CTA BAND --------- */
.cta-band {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-xl);
  padding: 72px 64px; margin: 0 24px 80px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 60%;
  background: radial-gradient(ellipse 60% 100% at 85% 100%, var(--accent-color, var(--brand)) 0%, transparent 70%);
  opacity: .4;
}
.cta-band h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1; letter-spacing: -.024em; margin: 0; color: #fff;
}
.cta-band h2 em { font-style: italic; font-weight: 300; color: rgba(255,255,255,.7); }
.cta-band p { color: rgba(255,255,255,.75); margin: 16px 0 0; font-size: 16px; max-width: 48ch; }
.cta-band .actions {
  display: flex; flex-direction: column; gap: 14px; justify-self: end; position: relative; z-index: 2;
}
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; border-radius: 999px; font-size: 14.5px; font-weight: 500;
  transition: transform .35s var(--ease-spring), background .25s var(--ease);
}
.btn-primary { background: #fff; color: var(--ink); }
.btn-primary:hover { background: var(--brand-soft); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }
@media (max-width: 900px) {
  .cta-band { grid-template-columns: 1fr; padding: 56px 32px; margin: 0 16px 60px; }
  .cta-band .actions { justify-self: start; }
}

/* --------- FOOTER --------- */
footer {
  background: var(--ink); color: rgba(255,255,255,.75);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.foot-brand img { height: 30px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.foot-wordmark { display: inline-block; margin-bottom: 20px; font-family: 'Geist', -apple-system, sans-serif; font-size: 22px; font-weight: 700; letter-spacing: .14em; color: #fff; }
.foot-brand p { max-width: 38ch; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.65); }
.foot-brand .chip {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
}
.foot-brand .chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
footer h4 {
  font-family: 'Geist Mono', monospace; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin: 0 0 18px; font-weight: 500;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
footer a { color: rgba(255,255,255,.8); font-size: 14px; transition: color .25s var(--ease); }
footer a:hover { color: #fff; }
.foot-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  font-family: 'Geist Mono', monospace; font-size: 11px; letter-spacing: .16em;
  color: rgba(255,255,255,.4); text-transform: uppercase;
}
.foot-credit { margin-top: 16px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.06); text-align: center; font-size: 10.5px; color: #6e7177; font-family: 'Geist Mono', monospace; letter-spacing: .22em; text-transform: uppercase; }
.foot-credit a { color: #9ea1a7; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 1px; transition: color .2s; }
.foot-credit a:hover { color: #fff; }

.foot-bottom .legal { display: flex; gap: 24px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------- REVEAL --------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ============================================================
   MOBILE OVERRIDES — efficient layout, sensible scale
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Product hero — smaller height + tighter type */
  .prod-hero { min-height: 64vh; padding: 110px 0 56px; }
  .prod-hero h1 { font-size: clamp(34px, 9vw, 50px); }
  .prod-hero-lede { font-size: 15px; }
  .prod-chips { gap: 6px; }
  .prod-chip { font-size: 10px; padding: 6px 10px; }

  /* Section spacing — half what desktop has */
  section { padding: 56px 0; }
  .section-head { gap: 16px; padding-bottom: 32px; margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(28px, 7.6vw, 40px); }
  .section-head p { font-size: 14.5px; }

  /* Product cards — single column with comfortable spacing */
  .products-list { gap: 14px; grid-template-columns: 1fr; }
  .p-card-swatch { aspect-ratio: 16/9; }
  .p-card-body { padding: 22px 22px 20px; }
  .p-card h3 { font-size: 22px; }
  .p-card p { font-size: 14px; margin-bottom: 14px; }
  .p-card dl { font-size: 12.5px; gap: 6px 12px; padding-top: 14px; margin-bottom: 16px; }
  .p-card .ft { font-size: 10px; padding-top: 12px; }

  /* Highlight rail — 2x2 with tighter spacing */
  .hrail { gap: 14px; padding: 36px 0; }
  .hrail .v { font-size: 22px; }

  /* Application steps */
  .app-wrap { gap: 28px; }
  .app-wrap .copy h3 { font-size: 24px; }
  .app-steps li { padding: 16px 18px; gap: 14px; }
  .app-steps .n { width: 28px; height: 28px; font-size: 11px; }

  /* CTA band — reduce padding, stack actions full-width */
  .cta-band { padding: 44px 26px; margin: 0 12px 56px; gap: 22px; border-radius: var(--radius-lg); }
  .cta-band h2 { font-size: 28px; }
  .cta-band p { font-size: 14.5px; }
  .cta-band .actions { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .btn { padding: 13px 20px; font-size: 13.5px; justify-content: center; }

  /* Footer — single column, fix the bottom row */
  footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 22px; font-size: 10.5px; }
  .foot-bottom .legal { gap: 18px; flex-wrap: wrap; }
  .foot-credit { font-size: 9.5px; letter-spacing: .18em; }
}

@media (max-width: 380px) {
  .container { padding: 0 14px; }
  .prod-hero h1 { font-size: clamp(28px, 9.5vw, 40px); }
  .p-card-body { padding: 20px; }
  .p-card h3 { font-size: 20px; }
}
