/* Pet Food Translations — bmf text+
   Static release stylesheet
*/

:root {
  --purple: #583888;
  --purple-deep: #3a2360;
  --purple-soft: #ece6f5;
  --cream: #faf6ef;
  --cream-warm: #f3ebdc;
  --ink: #1f1234;
  --ink-muted: #5d5170;
  --rule: #e6dccd;
  --accent: #e87808;
  --accent-soft: #fde9d4;
  --radius: 14px;
  --font-sans: "Onest", system-ui, sans-serif;
  --font-display: "Onest", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--purple);
  display: inline-block;
}
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; font-weight: 600; margin: 0; }
h1 { font-size: clamp(40px, 5.6vw, 78px); line-height: 1.02; letter-spacing: -0.035em; font-weight: 500; }
h2 { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.08; letter-spacing: -0.025em; }
h3 { font-size: 21px; line-height: 1.25; letter-spacing: -0.01em; }
p { margin: 0; }
.serif-em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
::selection { background: var(--purple); color: white; }
.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; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 246, 239, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.site-header.scrolled { border-bottom-color: var(--rule); }
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 112px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 80px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--purple);
  transition: width 220ms ease;
}
.nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--purple);
  color: white !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  font-weight: 500;
  transition: background 200ms ease, transform 200ms ease;
}
.nav-cta:hover { background: var(--purple-deep); transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(88, 56, 136, 0.6); }
.nav-cta::after { display: none; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
  line-height: 1;
}
.btn-primary { background: var(--purple); color: white; }
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(88, 56, 136, 0.55); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(31, 18, 52, 0.25); }
.btn-ghost:hover { background: transparent; color: var(--purple); border-color: var(--purple); transform: translateY(-2px); }
.btn-arrow { transition: transform 220ms ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* HERO */
.hero { padding: 56px 0 100px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: end;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .word:nth-child(1) { animation-delay: 0ms; }
.hero h1 .word:nth-child(2) { animation-delay: 90ms; }
.hero h1 .word:nth-child(3) { animation-delay: 180ms; }
.hero h1 .word:nth-child(4) { animation-delay: 270ms; }
.hero h1 .word:nth-child(5) { animation-delay: 360ms; }
@keyframes rise { to { opacity: 1; transform: none; } }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  background: var(--purple-soft);
  color: var(--purple);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--purple);
  box-shadow: 0 0 0 0 var(--purple);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(77, 34, 129, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(77, 34, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(77, 34, 129, 0); }
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-muted);
  max-width: 520px;
  margin-top: 28px;
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-media { position: relative; aspect-ratio: 4/3; width: 100%; }
.hero-photo {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 22px; display: block;
  box-shadow: 0 30px 60px -30px rgba(26, 13, 46, 0.35);
  background: linear-gradient(180deg, #f6efe4, #efe9f7);
}
.hero-stat {
  position: absolute;
  bottom: -28px; left: -28px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 20px 40px -20px rgba(26, 13, 46, 0.18);
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 500; letter-spacing: -0.025em; line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--ink-muted); }

.marquee-wrap {
  margin-top: 80px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 36s linear infinite;
  color: var(--ink-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  align-items: center;
}
.marquee .item { display: inline-flex; align-items: center; gap: 12px; }
.marquee .item .pip { width: 5px; height: 5px; background: var(--purple); border-radius: 50%; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTION */
section { padding: 96px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lede { color: var(--ink-muted); font-size: 18px; margin-top: 18px; max-width: 620px; }
.section-head h2 { margin-top: 12px; }

/* SERVICES */
.services { background: var(--ink); color: var(--cream); position: relative; }
.services .eyebrow { color: var(--cream-warm); }
.services .eyebrow::before { background: var(--cream-warm); }
.services .lede { color: rgba(243, 235, 220, 0.7); }
.services h2 { color: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(243, 235, 220, 0.12);
  border: 1px solid rgba(243, 235, 220, 0.12);
  border-radius: 18px;
  overflow: hidden;
}
.service-card {
  background: var(--ink);
  padding: 36px 30px 30px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 320px;
  transition: background 240ms ease;
  position: relative;
}
.service-card:hover { background: #221536; }
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
}
.service-card h3 { color: var(--cream); }
.service-card p { color: rgba(243, 235, 220, 0.68); font-size: 15px; line-height: 1.55; }
.service-tag {
  margin-top: auto;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-flex; gap: 8px; align-items: center;
}
.service-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(200, 169, 106, 0.14);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}

/* SHOWCASE */
.showcase { padding: 40px 0 96px; background: var(--cream); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.showcase-card {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: #1a0d2e;
}
.showcase-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms cubic-bezier(.2,.7,.2,1);
}
.showcase-card:hover img { transform: scale(1.04); }
.showcase-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: var(--cream);
  background: linear-gradient(transparent, rgba(26, 13, 46, 0.7) 60%, rgba(26, 13, 46, 0.85));
  display: flex; flex-direction: column; gap: 6px;
}
.showcase-kicker {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: #ffffff; font-weight: 600;
}
.showcase-line {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.2;
  color: #ffffff;
}

/* LANGUAGES */
.languages { background: var(--purple); color: var(--cream); position: relative; overflow: hidden; }
.languages::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.15), transparent 70%);
  right: -200px; top: -200px;
  pointer-events: none;
}
.languages .eyebrow { color: var(--accent); }
.languages .eyebrow::before { background: var(--accent); }
.languages h2 { color: var(--cream); max-width: 720px; }
.languages .lede { color: rgba(243, 235, 220, 0.78); }
.lang-grid-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.lang-map { position: relative; aspect-ratio: 1/1; width: 100%; max-width: 460px; margin-left: auto; }
.lang-map img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 22px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.25));
}
.lang-copy h2 { color: var(--cream); }
.lang-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px; margin-top: 56px;
}
.lang-chip {
  background: rgba(243, 235, 220, 0.06);
  border: 1px solid rgba(243, 235, 220, 0.15);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
  transition: background 200ms ease, transform 200ms ease;
}
.lang-chip:hover { background: rgba(243, 235, 220, 0.12); transform: translateY(-2px); }
.lang-code {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--cream);
}
.lang-name { font-size: 12px; color: rgba(243, 235, 220, 0.6); }
.lang-footnote { margin-top: 24px; font-size: 14px; color: rgba(243, 235, 220, 0.7); }
.lang-footnote a { color: var(--accent); }

/* ABOUT */
.about { background: white; }
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 64px; align-items: start;
}
.about-media {
  position: sticky; top: 110px;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.94);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(6px);
}
.about-tag-l { font-size: 14px; font-weight: 600; color: var(--purple); }
.about-tag-s { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-muted); }
.about-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px 36px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.about-meta dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); margin-bottom: 4px; }
.about-meta dd { margin: 0; font-size: 16px; font-weight: 500; }
.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.3;
  color: var(--ink);
  padding-left: 24px;
  border-left: 2px solid var(--purple);
  margin: 28px 0;
  font-weight: 400;
}
.about-text p + p { margin-top: 18px; color: var(--ink-muted); }
.about-text p:first-of-type { font-size: 18px; }

/* TEAM */
.team { background: var(--cream); }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px; max-width: 980px;
}
.team-card { display: flex; flex-direction: column; gap: 18px; }
.team-photo {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-warm);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-name { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.team-role { font-size: 14px; color: var(--ink-muted); margin-top: -14px; }

/* CTA */
.cta { background: var(--ink); text-align: center; position: relative; overflow: hidden; color: var(--cream); }
.cta-bg { position: absolute; inset: 0; opacity: 0.32; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) contrast(1.05); }
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(26, 13, 46, 0.4), rgba(26, 13, 46, 0.92) 70%);
  pointer-events: none;
}
.cta-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.cta h2 { margin-bottom: 22px; color: var(--cream); margin-top: 14px; }
.cta p { font-size: 18px; margin-bottom: 32px; color: rgba(243,235,220,0.78); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .eyebrow { color: var(--accent); }
.cta .eyebrow::before { background: var(--accent); }
.btn-accent { background: var(--accent); color: white; border-color: var(--accent); }
.btn-accent:hover { background: #c66306; border-color: #c66306; transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(232, 120, 8, 0.6); }
.btn-ghost-dark { background: transparent; color: var(--cream); border-color: rgba(243,235,220,0.4); }
.btn-ghost-dark:hover { background: rgba(243,235,220,0.08); color: var(--cream); border-color: var(--cream); transform: translateY(-2px); }

/* CONTACT */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 36px;
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-row .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--purple-soft);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-muted); display: block; margin-bottom: 2px; }
.contact-row a, .contact-row .val { font-size: 16px; font-weight: 500; text-decoration: none; color: var(--ink); }
.contact-row a:hover { color: var(--purple); }
.vcard {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--cream-warm);
  border-left: 3px solid var(--purple);
  border-radius: 8px;
}
.vcard-name { font-weight: 600; font-size: 18px; }
.vcard-role { color: var(--purple); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.vcard-org { margin-top: 10px; font-weight: 500; }
.vcard-addr { color: var(--ink-muted); font-size: 14px; margin-top: 4px; line-height: 1.5; font-style: normal; }
.vcard-socials { display: flex; gap: 10px; margin-top: 16px; }
.vcard-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: white; color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  border: 1px solid var(--rule);
}
.vcard-socials a:hover { background: var(--purple); color: white; transform: translateY(-2px); }

/* FOOTER */
footer.site-footer {
  background: var(--ink);
  color: rgba(243, 235, 220, 0.8);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand img { height: 78px; width: auto; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.5; max-width: 320px; color: rgba(243, 235, 220, 0.6); }
.footer-col-title {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent); margin-bottom: 16px; font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; color: rgba(243, 235, 220, 0.75); font-size: 14px; }
.footer-col a:hover { color: var(--cream); }
.footer-bot {
  border-top: 1px solid rgba(243, 235, 220, 0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px;
  color: rgba(243, 235, 220, 0.55);
}
.footer-bot .links { display: flex; gap: 22px; }
.footer-bot a { color: inherit; text-decoration: none; cursor: pointer; background: none; border: none; padding: 0; font: inherit; }
.footer-bot a:hover { color: var(--cream); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(243, 235, 220, 0.08);
  color: rgba(243, 235, 220, 0.85);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, color 200ms ease;
  border: 1px solid rgba(243, 235, 220, 0.15);
}
.footer-socials a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }

/* MODAL */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20, 10, 35, 0.55);
  backdrop-filter: blur(4px);
  z-index: 60;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  color: var(--ink);
  max-width: 720px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  border-radius: 18px;
  padding: 40px;
  position: relative;
  transform: translateY(12px);
  transition: transform 220ms ease;
}
.modal-backdrop.open .modal { transform: none; }
.modal h2 { margin-bottom: 18px; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: var(--cream-warm);
  border: 1px solid var(--rule);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--ink);
}
.modal h3 { font-size: 17px; margin: 20px 0 6px; }
.modal p, .modal li { font-size: 14px; color: var(--ink-muted); line-height: 1.6; }
.modal-pane { display: none; }
.modal-pane.active { display: block; }

/* HERO PILLS */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-pill {
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 13px; font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(77, 34, 129, 0.12);
}

/* WORKFLOW */
.workflow { background: white; }
.step-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
}
.step {
  padding: 28px 24px 30px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; background: white;
}
.step + .step { border-left: 1px solid var(--rule); }
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--purple);
  font-weight: 400;
}
.step-body h3 { font-size: 17px; margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

/* CLIENTS */
.clients { background: var(--cream-warm); }
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cred-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px 28px;
}
.cred-year {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--purple); font-weight: 600; margin-bottom: 10px;
}
.cred-card p { font-size: 16px; color: var(--ink-muted); line-height: 1.55; }
.cred-card strong { color: var(--ink); font-weight: 600; }

/* FOR YOU */
.for-you { background: white; padding-bottom: 64px; }
.for-you-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
  max-width: 980px;
}
.for-you-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 17px; color: var(--ink); line-height: 1.45;
  padding: 6px 0;
}
.for-you-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .lang-grid { grid-template-columns: repeat(3, 1fr); }
  .lang-grid-wrap { grid-template-columns: 1fr; gap: 32px; }
  .lang-map { max-width: 360px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-media { position: relative; top: auto; max-width: 360px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav { display: none; }
  .nav-cta { display: inline-flex; }
  section { padding: 64px 0; }
  .step-list { grid-template-columns: 1fr; }
  .step + .step { border-left: none; border-top: 1px solid var(--rule); }
  .cred-grid { grid-template-columns: 1fr; }
  .for-you-list { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; gap: 16px; }
  .showcase-card { aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .lang-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}
