/* ============================================================
   kr digital — Strona Główna
   Quiet Luxury: perłowe tło, espresso, szałwiowa zieleń
   ============================================================ */

:root {
  --pearl:   #f3f1eb;   /* tło */
  --paper:   #fbfaf6;   /* karty / nawigacja */
  --espresso:#2c2622;   /* tekst główny */
  --ink-2:   #5d564e;   /* tekst pomocniczy */
  --ink-3:   #6e665e;   /* tekst stłumiony */
  --muted:   #8a8279;
  --faint:   #a39b90;
  --sage:    #7d8c74;   /* akcent / CTA */
  --sage-dk: #6b7a62;   /* CTA hover */
  --sage-lt: #cdd6c2;
  --tint:    #eef0e8;   /* tła hover / sekcja kontakt */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: #cdd6c2; color: #2c2622; }

/* ---------- keyframes ---------- */
@keyframes morphA { 0%,100% { border-radius: 44% 56% 63% 37% / 49% 42% 58% 51%; } 33% { border-radius: 62% 38% 40% 60% / 56% 60% 40% 44%; } 66% { border-radius: 38% 62% 56% 44% / 42% 48% 52% 58%; } }
@keyframes morphB { 0%,100% { border-radius: 58% 42% 38% 62% / 42% 58% 42% 58%; } 50% { border-radius: 40% 60% 62% 38% / 60% 40% 60% 40%; } }
@keyframes drift  { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(34px,-26px) rotate(8deg); } }
@keyframes driftB { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-30px,24px) rotate(-10deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- page shell ---------- */
.page {
  position: relative;
  min-height: 100vh;
  background: var(--pearl);
  color: var(--espresso);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

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

/* shared accents */
.accent-italic { font-style: italic; font-weight: 500; color: var(--sage); }
.accent-italic-noweight { font-style: italic; color: var(--sage); }
.nav-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); display: block; }

/* fade-up entrance */
.fade-up { animation: fadeUp .9s ease both; }
.badge.fade-up { animation-duration: .8s; }
.fade-up--1 { animation-delay: .08s; }
.fade-up--2 { animation-delay: .16s; }
.fade-up--3 { animation-delay: .24s; }
.fade-up--4 { animation-delay: .34s; }
.fade-up--5 { animation-delay: .42s; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  width: calc(100% - 36px);
  max-width: 1140px;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 12px 11px 20px;
  background: rgba(251,250,246,0.92);
  border: 1px solid rgba(44,38,34,0.09);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(44,38,34,0.07);
}

.logo, .footer-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--espresso); }
.logo-mark {
  width: 30px; height: 30px;
  background: radial-gradient(120% 120% at 30% 25%, #97a58c 0%, #7d8c74 55%, #69785f 100%);
  animation: morphA 14s ease-in-out infinite;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.4), 0 2px 8px rgba(105,120,95,0.35);
  display: block;
}
.logo-text { font-size: 16px; letter-spacing: 0.02em; font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 4px; font-size: 14.5px; }
.nav-link {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--espresso);
  border-radius: 999px;
  transition: color .25s ease;
}
.nav-link--muted { color: var(--ink-3); }
.nav-link--muted:hover { color: var(--espresso); }

.dropdown { position: relative; }
.nav-trigger {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  font: inherit;
  color: var(--ink-3);
  background: none; border: none; cursor: pointer;
  border-radius: 999px;
  transition: color .25s ease;
}
.nav-trigger:hover { color: var(--espresso); }
.chev { display: inline-block; transition: transform .3s ease; }
.dropdown.is-open .chev { transform: rotate(180deg); }

.dropdown-panel {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 14px;
  width: 320px;
}
.dropdown-card {
  background: var(--paper);
  border: 1px solid rgba(44,38,34,0.09);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(44,38,34,0.13);
  padding: 8px;
  animation: fadeUp .28s ease both;
}
.dropdown-item {
  display: block;
  padding: 13px 15px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--espresso);
  transition: background .2s ease;
}
.dropdown-item:hover { background: var(--tint); }
.dropdown-item-title { font-size: 14.5px; font-weight: 500; margin-bottom: 2px; }
.dropdown-item-sub { font-size: 12.5px; color: var(--muted); }

.nav-cta {
  padding: 11px 22px;
  background: var(--sage);
  color: var(--paper);
  text-decoration: none;
  font-size: 14.5px; font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(105,120,95,0.32);
  transition: background .25s ease, transform .25s ease;
}
.nav-cta:hover { background: var(--sage-dk); transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 150px 24px 90px;
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.shape { position: absolute; }
.shape-a {
  top: 6%; left: 50%; width: 640px; height: 640px; margin-left: -320px;
  background: radial-gradient(130% 130% at 32% 26%, #b5c0a9 0%, #9aaa8f 48%, rgba(141,156,131,0.0) 76%);
  filter: blur(26px); opacity: 0.32;
  animation: morphA 22s ease-in-out infinite, drift 26s ease-in-out infinite;
}
.shape-b {
  top: 24%; left: 20%; width: 380px; height: 380px;
  background: radial-gradient(130% 130% at 40% 30%, #f3ece0 0%, #e6dcc9 55%, rgba(230,220,201,0.0) 80%);
  filter: blur(28px); opacity: 0.6;
  animation: morphB 18s ease-in-out infinite, driftB 24s ease-in-out infinite;
}
.shape-c {
  top: 30%; right: 18%; width: 320px; height: 320px;
  background: radial-gradient(130% 130% at 35% 30%, #d3dccb 0%, #b3bea6 55%, rgba(170,181,156,0.0) 80%);
  filter: blur(26px); opacity: 0.4;
  animation: morphA 20s ease-in-out infinite reverse, floaty 9s ease-in-out infinite;
}
.orb {
  position: absolute;
  top: 13%; left: 50%; width: 200px; height: 200px; margin-left: -100px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(255,255,255,0.42), rgba(205,214,194,0.16));
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 6px 24px rgba(255,255,255,0.5), inset 0 -10px 30px rgba(105,120,95,0.14), 0 30px 60px rgba(105,120,95,0.12);
  animation: floaty 11s ease-in-out infinite;
}

.hero-inner { position: relative; z-index: 2; max-width: 920px; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px;
  background: rgba(251,250,246,0.7);
  border: 1px solid rgba(44,38,34,0.08);
  border-radius: 999px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-3);
  margin-bottom: 30px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); display: block; }

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(42px, 7.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.hero-sub {
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }

/* ---- trust chips (glassmorphism) ---- */
.hero-trust {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  align-items: center; justify-content: center;
  margin-top: 50px;
}
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  background: rgba(251,250,246,0.5);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  backdrop-filter: blur(8px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 6px 18px rgba(44,38,34,0.05);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: var(--espresso);
}
.chip-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(125,140,116,0.12);
  color: var(--sage);
  flex-shrink: 0;
}
.chip-text { letter-spacing: 0.01em; white-space: nowrap; }

/* ---- step-by-step process ---- */
.hero-steps {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 14px;
  margin-top: 34px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.step { display: inline-flex; align-items: center; gap: 9px; }
.step-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(125,140,116,0.12);
}
.step-link { display: inline-flex; align-items: center; gap: 5px; }
.step-link i {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(44,38,34,0.22);
  display: block;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  border: none; font: inherit; cursor: pointer;
  border-radius: 999px;
  text-decoration: none;
}
.btn--primary {
  padding: 16px 30px;
  background: var(--sage);
  color: var(--paper);
  font-size: 16px; font-weight: 500;
  box-shadow: 0 8px 24px rgba(105,120,95,0.32);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn--primary:hover {
  background: var(--sage-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(105,120,95,0.4);
}
.btn--lg { padding: 17px 34px; box-shadow: 0 10px 28px rgba(105,120,95,0.34); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 8px;
  text-decoration: none;
  color: var(--espresso);
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease;
}
.btn-text:hover { border-color: var(--espresso); }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint);
  animation: fadeIn 1.2s ease 1s both;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(#bcb4a8, transparent); display: block; }

/* hero stał się wyższy — ukryj wskaźnik przewijania, gdy zabraknie miejsca w pionie */
@media (max-height: 900px) {
  .scroll-cue { display: none; }
}

/* ============ SECTIONS ============ */
.section { position: relative; z-index: 2; max-width: 1140px; margin: 0 auto; }
.section--services { padding: 40px 24px 60px; }
.section--standard { padding: 70px 24px 60px; }
.section--contact  { padding: 60px 24px 90px; }

.section-head { max-width: 640px; }
.section--services .section-head { margin-bottom: 56px; }
.section--standard .section-head { margin-bottom: 48px; }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 20px;
}
.eyebrow-line { width: 22px; height: 1px; background: var(--sage); display: block; }
.section-title {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.section--standard .section-title { margin: 0; }
.section-lead { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  display: flex; flex-direction: column;
  min-height: 380px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid rgba(44,38,34,0.08);
  border-radius: 26px;
  text-decoration: none;
  color: var(--espresso);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(44,38,34,0.1);
  border-color: rgba(125,140,116,0.4);
}
.card-mark { width: 64px; height: 64px; margin-bottom: 28px; }
.card-mark--green {
  background: radial-gradient(130% 130% at 32% 26%, #aeb9a2, #7d8c74 60%, #69785f);
  animation: morphA 16s ease-in-out infinite;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.45), 0 8px 20px rgba(105,120,95,0.28);
}
.card-mark--sand {
  background: radial-gradient(130% 130% at 32% 26%, #d8cdb8, #c2b599 60%, #ab9d80);
  animation: morphB 15s ease-in-out infinite;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.5), 0 8px 20px rgba(171,157,128,0.28);
}
.card-mark--sage {
  background: radial-gradient(130% 130% at 32% 26%, #c2cdb4, #97a58c 60%, #7d8c74);
  animation: morphA 18s ease-in-out infinite reverse;
  box-shadow: inset 0 2px 6px rgba(255,255,255,0.45), 0 8px 20px rgba(125,140,116,0.26);
}
.card-num { font-size: 13px; color: var(--faint); margin-bottom: 8px; letter-spacing: 0.04em; }
.card-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 25px; letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.card-text { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 0 0 26px; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; color: var(--sage);
}
.card-path { font-size: 12px; color: #b7afa4; font-family: 'Helvetica Neue', monospace; }

/* ---------- standard grid ---------- */
.standard-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 22px; align-items: stretch; }

.carousel {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(44,38,34,0.08);
  border-radius: 26px;
  padding: 38px 36px 30px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.quote-mark { margin-bottom: 20px; opacity: 0.9; }
.carousel-viewport { overflow: hidden; flex: 1; }
.carousel-track {
  display: flex; width: 300%;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
  transform: translateX(0);
}
.slide { width: 33.3333%; padding-right: 4px; }
.slide-quote {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.42; letter-spacing: -0.01em;
  margin: 0 0 26px; color: var(--espresso);
}
.slide-author { display: flex; align-items: center; gap: 13px; }
.avatar { width: 42px; height: 42px; display: block; }
.avatar--green { background: radial-gradient(130% 130% at 32% 26%, #aeb9a2, #7d8c74 60%, #69785f); animation: morphA 17s ease-in-out infinite; }
.avatar--sand  { background: radial-gradient(130% 130% at 32% 26%, #d8cdb8, #c2b599 60%, #ab9d80); animation: morphB 16s ease-in-out infinite; }
.avatar--sage  { background: radial-gradient(130% 130% at 32% 26%, #c2cdb4, #97a58c 60%, #7d8c74); animation: morphA 19s ease-in-out infinite reverse; }
.author-name { font-size: 14.5px; font-weight: 500; }
.author-role { font-size: 13px; color: var(--muted); }

.carousel-ctrl { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.dots { display: flex; gap: 8px; }
.dot {
  width: 26px; height: 6px;
  border-radius: 999px; border: none; cursor: pointer; padding: 0;
  background: rgba(44,38,34,0.16);
  transition: background .3s ease;
}
.dot.is-active { background: var(--sage); }
.arrows { display: flex; gap: 8px; }
.arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--pearl);
  border: 1px solid rgba(44,38,34,0.1);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso);
  transition: background .25s ease;
}
.arrow:hover { background: var(--tint); }

/* ---------- pagespeed tile ---------- */
.speed-tile {
  position: relative;
  background: var(--espresso);
  color: var(--pearl);
  border-radius: 26px;
  padding: 38px 36px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.speed-blob {
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(130% 130% at 32% 26%, rgba(174,185,162,0.5), rgba(125,140,116,0.0) 70%);
  animation: morphA 20s ease-in-out infinite, floaty 10s ease-in-out infinite;
  pointer-events: none;
}
.speed-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.speed-label { font-size: 13px; letter-spacing: 0.04em; color: #b9b3a8; margin-bottom: 22px; }
.speed-score { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.speed-num { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(72px, 9vw, 104px); line-height: 0.9; color: var(--sage-lt); }
.speed-den { font-family: 'Fraunces', serif; font-size: 30px; color: var(--muted); }
.speed-desc { font-size: 14.5px; color: #c8c2b7; margin-bottom: 30px; }
.speed-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; margin-bottom: 34px; }
.metric {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(243,241,235,0.12);
}
.metric-label { font-size: 13.5px; color: #c8c2b7; }
.metric-val { font-size: 14px; font-weight: 500; color: var(--sage-lt); }
.speed-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  padding: 13px 24px;
  background: var(--sage);
  color: var(--paper);
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
}
.speed-cta:hover { background: #8d9c83; transform: translateY(-1px); }

/* ---------- contact ---------- */
.contact-card {
  position: relative; overflow: hidden;
  background: var(--tint);
  border: 1px solid rgba(125,140,116,0.22);
  border-radius: 34px;
  padding: clamp(50px, 7vw, 96px) 32px;
  text-align: center;
}
.contact-blob { position: absolute; pointer-events: none; }
.contact-blob--1 {
  top: -80px; left: -40px; width: 300px; height: 300px;
  background: radial-gradient(130% 130% at 32% 26%, rgba(174,185,162,0.55), rgba(125,140,116,0.0) 72%);
  filter: blur(8px);
  animation: morphA 22s ease-in-out infinite, drift 26s ease-in-out infinite;
}
.contact-blob--2 {
  bottom: -90px; right: -50px; width: 280px; height: 280px;
  background: radial-gradient(130% 130% at 32% 26%, rgba(216,205,184,0.6), rgba(194,181,153,0.0) 72%);
  filter: blur(8px);
  animation: morphB 18s ease-in-out infinite, driftB 24s ease-in-out infinite;
}
.contact-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.contact-title {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.contact-sub { font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0 0 38px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.contact-mail {
  font-size: 16px; color: var(--espresso); text-decoration: none;
  border-bottom: 1px solid rgba(44,38,34,0.25); padding-bottom: 2px;
  transition: border-color .25s ease;
}
.contact-mail:hover { border-color: var(--espresso); }

/* ============ FOOTER ============ */
.footer { position: relative; z-index: 2; border-top: 1px solid rgba(44,38,34,0.09); }
.footer-top {
  max-width: 1140px; margin: 0 auto;
  padding: 64px 24px 36px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
}
.footer-logo { margin-bottom: 18px; }
.footer-about { font-size: 14px; line-height: 1.6; color: var(--ink-3); max-width: 280px; margin: 0; }
.footer-head { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer-links a { color: #4a443d; text-decoration: none; transition: color .2s ease; }
.footer-links a:hover { color: var(--sage); }
.footer-links--strong a { color: var(--espresso); }
.footer-bottom {
  max-width: 1140px; margin: 0 auto;
  padding: 22px 24px 40px;
  border-top: 1px solid rgba(44,38,34,0.07);
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
  font-size: 12.5px; color: #9a9289;
}
.footer-note { display: inline-flex; align-items: center; gap: 8px; }
.footer-policy { color: #9a9289; text-decoration: none; transition: color .2s ease; }
.footer-policy:hover { color: var(--espresso); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .cards { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .hero { justify-content: flex-start; min-height: auto; padding: 124px 20px 70px; }
  .hero-trust { margin-top: 38px; }
  .chip { width: 100%; max-width: 320px; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: flex-start; }
}

/* ============ A11Y ============ */
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

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