/* ==========================================================================
   Carieră de Poveste – foaie de stil
   Structură: 1) variabile  2) bază  3) componente comune  4) secțiuni  5) responsive
   ========================================================================== */

/* 1) Variabile -------------------------------------------------------- */
:root {
  --green-900: #0f3a37;
  --green-800: #17504b;
  --footer-bg: #1f3d3a;
  --sage-700: #4b6b5d;
  --sage-500: #6d8d7f;
  --sage-300: #b7cbc1;
  --sage-100: #e7efea;

  --bg: #faf9f5;
  --bg-alt: #f3f1ea;
  --card: #ffffff;
  --text: #34443f;
  --muted: #64726d;
  --line: rgba(15, 58, 55, 0.12);

  --font-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-script: "Caveat", "Segoe Script", "Bradley Hand", cursive;

  --r-sm: 10px;
  --r-lg: 16px;
  --shadow: 0 1px 2px rgba(15, 58, 55, 0.05), 0 10px 28px -14px rgba(15, 58, 55, 0.22);
  --shadow-hover: 0 1px 2px rgba(15, 58, 55, 0.06), 0 16px 34px -14px rgba(15, 58, 55, 0.32);

  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 76px;
}

/* 2) Bază ------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, ul, figure { margin: 0; padding: 0; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--green-900);
  font-weight: 600;
  text-wrap: balance;
}

:focus-visible {
  outline: 3px solid var(--sage-500);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2 * var(--gutter), 1200px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px; top: -100px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  background: var(--green-900);
  color: #fff;
}
.skip-link:focus { top: 12px; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em; height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 3) Componente comune ------------------------------------------------ */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-lines,
.eyebrow-line-left { display: flex; align-items: center; gap: 16px; }
.eyebrow-lines { justify-content: center; }
.eyebrow-lines::before,
.eyebrow-lines::after,
.eyebrow-line-left::before {
  content: "";
  width: 44px; height: 1px;
  background: var(--sage-300);
}

.section { padding-block: clamp(56px, 8vw, 104px); }

.section-head { max-width: 46rem; margin-inline: auto; text-align: center; }
.section-head h2 {
  margin-top: 18px;
  font-size: clamp(1.95rem, 3.6vw, 2.7rem);
  line-height: 1.15;
}
.section-head p:not(.eyebrow) { margin-top: 16px; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1.5px solid var(--green-900);
  border-radius: 999px;
  background: var(--green-900);
  color: #fff;
  font: 500 0.9375rem/1.2 var(--font-sans);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.btn:hover { background: var(--green-800); border-color: var(--green-800); }
.btn .icon { width: 1.15em; height: 1.15em; }
.btn-outline { background: transparent; color: var(--green-900); }
.btn-outline:hover { background: var(--green-900); border-color: var(--green-900); color: #fff; }

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  flex: none;
  border-radius: 14px;
  background: var(--sage-100);
  color: var(--green-900);
}
.icon-badge.round { border-radius: 50%; }

.social { display: flex; gap: 10px; }
.social-btn {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s;
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn .icon { width: 20px; height: 20px; }
.social-btn.wa { background: #1fa855; }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }

.script { font-family: var(--font-script); font-weight: 600; line-height: 1; }

.leaf { position: absolute; pointer-events: none; user-select: none; }

.stretched::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.stretched:focus-visible { outline: none; }
.stretched:focus-visible::after { outline: 3px solid var(--sage-500); outline-offset: 3px; }

/* Logo */
.brand { display: inline-flex; flex: none; }
.brand-logo { width: clamp(210px, 19vw, 268px); height: auto; }
.site-footer .brand-logo { width: min(100%, 300px); }

/* 4) Secțiuni --------------------------------------------------------- */

/* Antet */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 245, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -18px rgba(15, 58, 55, 0.5); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

.nav ul { display: flex; gap: 4px; }
.nav ul a {
  display: block;
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 0.9375rem;
  color: var(--text);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav ul a:hover { color: var(--green-900); }
.nav ul a[aria-current="true"] {
  font-weight: 600;
  color: var(--green-900);
  border-bottom-color: var(--green-900);
}
.nav-contact { display: none; }

.header-contact { display: flex; align-items: center; gap: 22px; font-size: 0.875rem; }
.header-contact a { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; color: var(--text); }
.header-contact a:hover { color: var(--green-900); }
.header-contact .icon { width: 17px; height: 17px; color: var(--green-900); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--green-900);
  cursor: pointer;
}
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(440px, 40vw, 540px);
  overflow: hidden;
  background: var(--bg);
}
.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  z-index: -1;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24%);
  mask-image: linear-gradient(to right, transparent 0, #000 24%);
}
.leaf-hero {
  left: -46px; top: 50%;
  height: 60%;
  transform: translateY(-50%);
  z-index: -1;
  display: none;
}
.hero-inner { padding-block: 56px; }
.hero-copy { max-width: 36rem; }
.hero-copy .eyebrow { color: var(--sage-700); }
.hero h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 5.3vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.lead { margin-top: 20px; max-width: 30rem; font-size: 1.2rem; line-height: 1.5; color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 22px; margin-top: 32px; }

/* Servicii */
.services { background: var(--bg); }

.domain-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.domain-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.domain-card:nth-child(4) { grid-column: 2 / span 2; }
.domain-card:hover { border-color: var(--sage-500); box-shadow: var(--shadow-hover); }
.domain-card h3 { font-size: 1.35rem; line-height: 1.2; }
.domain-card p { font-size: 0.9375rem; line-height: 1.6; color: var(--text); }
.domain-card .go { margin-top: auto; padding-top: 4px; width: 1.5rem; height: 1.75rem; color: var(--green-900); transition: transform 0.2s; }
.domain-card:hover .go { transform: translateX(5px); }

.specialized { margin-top: clamp(56px, 7vw, 88px); }
.specialized-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.specialized-head h3 { font-size: clamp(1.6rem, 2.6vw, 2rem); }
.specialized-head p { max-width: 34rem; color: var(--muted); font-size: 0.9375rem; }

.spec-filter { display: none; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.js .spec-filter { display: flex; }
.chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font: 500 0.875rem/1.2 var(--font-sans);
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.chip:hover { border-color: var(--sage-500); }
.chip[aria-pressed="true"] { background: var(--green-900); border-color: var(--green-900); color: #fff; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}
.spec-card {
  --tint: var(--sage-100);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.spec-card[hidden] { display: none; }
.spec-card[data-audience="familie"] { --tint: #f7e6e1; }
.spec-card[data-audience="elevi"] { --tint: #e3edf3; }
.spec-card[data-audience="adulti"] { --tint: #e3eee7; }
.spec-card[data-audience="workshop"] { --tint: #f5ecd9; }
.spec-card:hover { border-color: var(--sage-500); box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.spec-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  background: var(--tint);
}
.spec-tile {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-900);
}
.spec-tile .icon { width: 28px; height: 28px; stroke-width: 1.6; }
.spec-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-900);
}

.spec-tag-live { display: inline-flex; align-items: center; gap: 7px; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #d1493b; }
@media (prefers-reduced-motion: no-preference) {
  .live-dot { animation: pulse 1.8s ease-out infinite; }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(209, 73, 59, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(209, 73, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(209, 73, 59, 0); }
}

.spec-body { display: flex; flex: 1; flex-direction: column; gap: 8px; padding: 20px 22px 22px; }
.spec-hook { font-size: 0.9375rem; font-weight: 500; line-height: 1.4; color: var(--sage-700); }
.spec-body h4 { font-size: 1.35rem; line-height: 1.2; }
.spec-body p:not(.spec-hook) { font-size: 0.9375rem; line-height: 1.6; }
.spec-actions { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px; }

.btn-sm { padding: 10px 18px; font-size: 0.875rem; }
.wa-ask {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  color: #1a8f4a;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.wa-ask:hover { background: #1fa855; border-color: #1fa855; color: #fff; }
.wa-ask .icon { width: 20px; height: 20px; }

.spec-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  margin-top: 28px;
  padding: 26px clamp(22px, 3vw, 36px);
  border-radius: 20px;
  background: var(--green-900);
  color: #eaf2ee;
}
.spec-cta p { max-width: 38rem; font-size: 1.0625rem; line-height: 1.5; }
.spec-cta strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: #fff; }
.btn-light { background: #fff; border-color: #fff; color: var(--green-900); }
.btn-light:hover { background: var(--sage-100); border-color: var(--sage-100); }

/* Echipa */
.team { position: relative; overflow: hidden; background: var(--bg-alt); }
.leaf-team { left: -70px; top: 24px; height: 300px; opacity: 0.85; display: none; }
.team .container { position: relative; }

.team-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 48px;
  margin-bottom: 40px;
}
.team-head h2 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 4.6vw, 3.8rem);
  font-weight: 600;
  transform: rotate(-2deg);
  transform-origin: left bottom;
}
.team-head > p { max-width: 24rem; color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.team-card img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%; }
.team-body { padding: 18px 20px 24px; }
.team-body h3 { font-size: 1.45rem; line-height: 1.15; }
.team-body .role { margin: 6px 0 12px; font-size: 0.8125rem; font-weight: 500; line-height: 1.45; color: var(--sage-700); }
.team-body p:not(.role) { font-size: 0.9rem; line-height: 1.6; }

/* Cabinet */
.space { background: var(--bg); }
.space-layout { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.space-copy h2 { margin-top: 18px; font-size: clamp(1.95rem, 3.6vw, 2.7rem); line-height: 1.15; }
.space-copy > p:not(.eyebrow) { margin-top: 16px; max-width: 28rem; color: var(--muted); }
.space-detail { margin-top: 32px; max-width: 20rem; }
.space-detail img {
  width: 100%; height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}
.space-detail figcaption { margin-top: 10px; font-size: 1.6rem; color: var(--green-900); }
.space-main img {
  width: 100%; height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-hover);
}

/* Impact */
.impact { padding-block: clamp(48px, 6vw, 80px); border-block: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; margin-top: 40px; }
.stats li { display: flex; align-items: flex-start; gap: 16px; }
.stats .icon-badge { width: 56px; height: 56px; background: var(--card); border: 1px solid var(--line); }
.stats strong { display: block; font-family: var(--font-serif); font-size: 2.3rem; font-weight: 700; line-height: 1; color: var(--green-900); }
.stats span:not(.icon-badge) { display: block; margin-top: 6px; font-size: 0.875rem; line-height: 1.4; color: var(--muted); }

/* Contact */
.contact { background: var(--bg-alt); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 72px); align-items: start; }
.contact-info h2 { margin-top: 18px; font-size: clamp(1.95rem, 3.6vw, 2.7rem); line-height: 1.15; }
.contact-info > p:not(.eyebrow) { margin-top: 16px; max-width: 26rem; color: var(--muted); }
.contact-list { display: grid; gap: 14px; margin: 32px 0; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3.4vw, 38px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; margin-bottom: 6px; font-size: 0.875rem; font-weight: 500; color: var(--green-900); }
.field .optional { font-weight: 400; color: var(--muted); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9d5cf;
  border-radius: var(--r-sm);
  background: #fff;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--green-900); box-shadow: 0 0 0 3px rgba(109, 141, 127, 0.35); }
.field [aria-invalid="true"] { border-color: #a5301f; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.form-note { font-size: 0.8125rem; color: var(--muted); }
.form-status { min-height: 1.4em; font-size: 0.875rem; font-weight: 500; color: var(--sage-700); }
.form-status.is-error { color: #a5301f; }

/* Subsol */
.site-footer { position: relative; overflow: hidden; padding: 52px 0 24px; background: var(--footer-bg); color: #e8f0ec; }
.leaf-footer { right: -24px; bottom: -40px; height: 280px; opacity: 0.55; }
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: auto 1.3fr 1.2fr auto;
  align-items: center;
  gap: 32px;
}
.footer-contact { display: grid; gap: 8px; padding-left: 32px; border-left: 1px solid rgba(255, 255, 255, 0.16); font-size: 0.9375rem; }
.footer-contact li { display: flex; align-items: center; gap: 12px; }
.footer-contact .icon { width: 18px; height: 18px; color: var(--sage-300); }
.footer-contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-tagline { padding-left: 32px; border-left: 1px solid rgba(255, 255, 255, 0.16); font-size: 2rem; color: #f1f6f3; }
.copyright {
  position: relative;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  text-align: center;
  color: #b2c6be;
}

/* 5) Responsive ------------------------------------------------------- */
@media (min-width: 1100px) {
  .domain-grid { grid-template-columns: repeat(5, 1fr); }
  .domain-card,
  .domain-card:nth-child(4) { grid-column: auto; }
}

@media (min-width: 1400px) {
  .leaf-team { display: block; }
}
@media (min-width: 1520px) {
  .leaf-hero { display: block; }
}

@media (max-width: 1099px) {
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { padding-left: 0; border-left: 0; }
  .footer-tagline { padding-left: 0; border-left: 0; }
}

@media (max-width: 1199px) {
  :root { --header-h: 68px; }
  .brand-logo { width: 224px; }
  .header-contact { display: none; }
  .nav-toggle { display: grid; }

  .nav { order: 3; width: 100%; }
  .nav ul { flex-wrap: wrap; }
  .nav-contact { display: grid; gap: 4px; padding-top: 10px; border-top: 1px solid var(--line); }
  .nav-contact a { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.9375rem; }
  .nav-contact .icon { width: 18px; height: 18px; color: var(--green-900); }

  .js .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    width: auto;
    padding: 8px var(--gutter) 18px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px -20px rgba(15, 58, 55, 0.4);
  }
  .js .nav.is-open { display: block; }
  .js .nav ul { flex-direction: column; gap: 0; }
  .js .nav ul a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.0625rem; }
  .js .nav ul a[aria-current="true"] { border-bottom-color: var(--line); color: var(--green-900); }
  .js .nav ul li:last-child a { border-bottom: 0; }
}

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .space-layout { grid-template-columns: 1fr; }
  .space-main { order: -1; }
}

@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero { display: block; min-height: 0; }
  .hero-media { position: relative; inset: auto; width: 100%; height: clamp(230px, 56vw, 340px); z-index: 0; }
  .hero-media img {
    -webkit-mask-image: linear-gradient(to bottom, #000 62%, transparent);
    mask-image: linear-gradient(to bottom, #000 62%, transparent);
  }
  .hero-inner { padding-block: 0 44px; margin-top: -8px; }
}

@media (max-width: 640px) {
  .spec-grid { grid-template-columns: 1fr; }
  .spec-cta .btn { width: auto; }
  .domain-grid { grid-template-columns: 1fr; }
  .domain-card,
  .domain-card:nth-child(4) { grid-column: auto; }
  .team-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .btn { width: 100%; }
  .hero-actions .btn { width: auto; }
  .team-head h2 { transform: none; }
}

@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}

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