:root {
  --ink: #10211a;
  --ink-soft: #273a32;
  --text: #202622;
  --muted: #647069;
  --line: #dce4df;
  --surface: #f4f7f5;
  --surface-warm: #f7f3ea;
  --white: #ffffff;
  --green: #39e684;
  --green-deep: #00b982;
  --mint: #d6f5ed;
  --yellow: #ffd84d;
  --footer: #09150f;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow: 0 18px 55px rgba(16, 33, 26, .12);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
  background: var(--footer);
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; }

button, input, textarea { font: inherit; }

h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin-top: 0; }

h1, h2, h3, h4 {
  margin-bottom: .5em;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.08;
}

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

h2 {
  max-width: 850px;
  font-size: clamp(1.75rem, 3.3vw, 3.1rem);
}

h3 { font-size: clamp(1.12rem, 1.6vw, 1.45rem); }
h4 { font-size: clamp(1rem, 1.3vw, 1.2rem); }

p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

section[id], article[id] { scroll-margin-top: 24px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 84px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 19, 13, .7), transparent);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  content: "";
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

.brand-mark::before { width: 16px; height: 16px; }
.brand-mark::after { width: 8px; height: 8px; color: var(--green); }
.brand-mark span { width: 24px; height: 24px; opacity: .38; }

.brand-name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-name span { color: var(--green); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .94rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  color: var(--white);
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--ink) !important;
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  min-height: min(860px, 96vh);
  overflow: hidden;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,24,16,.92) 0%, rgba(7,24,16,.78) 43%, rgba(7,24,16,.18) 100%),
    linear-gradient(0deg, rgba(7,24,16,.48), transparent 45%),
    url("images/hero.webp") center 54% / cover no-repeat;
  transform: scale(1.01);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: 70px;
}

.hero h1 { color: var(--white); }

.hero-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--green-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.6;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 25px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 4px;
  background: var(--green);
  content: "";
}

.eyebrow-light { color: var(--white); }

.hero-actions,
.final-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--green); }
.button-primary:hover { background: rgb(92,240,154); }
.button-ghost { border-color: rgba(255,255,255,.55); color: var(--white); background: rgba(255,255,255,.08); }
.button-light { color: var(--ink); background: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: rgb(29,53,42); }
.button-outline-dark { border-color: rgba(16,33,26,.5); color: var(--ink); }

.hero-facts {
  display: grid;
  max-width: 790px;
  margin: 46px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,.24);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.hero-facts li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-right: 18px;
}

.hero-facts li + li {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.18);
}

.hero-facts strong {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.hero-facts span { color: rgba(255,255,255,.7); font-size: .88rem; }

.section { padding: 112px 0; }
.section-white { background: var(--white); }
.section-surface { background: var(--surface); }
.section-warm { background: var(--surface-warm); }
.section-dark { color: var(--white); background: var(--ink); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.split-heading {
  display: grid;
  margin-bottom: 48px;
  align-items: end;
  gap: 60px;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
}

.split-heading > p {
  max-width: 520px;
  margin-bottom: 10px;
  color: var(--muted);
}

.split-heading-dark > p { color: rgba(255,255,255,.7); }

.role-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.role-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 54px;
  border-radius: var(--radius-lg);
  background: var(--mint);
}

.role-card-dark { color: var(--white); background: var(--ink); }
.role-card-dark h3 { color: var(--white); }

.role-card-top {
  display: flex;
  margin-bottom: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.circle-mark {
  display: inline-grid;
  width: 60px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-weight: 800;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  width: fit-content;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tag-light, .tag-mint { color: var(--ink); background: rgba(255,255,255,.65); }
.tag-mint { background: var(--mint); }
.tag-dark { color: var(--white); background: rgba(255,255,255,.12); }

.role-card h3 { max-width: 480px; font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.role-card > p { max-width: 520px; color: currentColor; opacity: .72; }

.check-list {
  display: grid;
  margin: 18px 0 34px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; color: var(--green-deep); content: "✓"; font-weight: 800; }
.role-card-dark .check-list li::before { color: var(--green); }

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  text-decoration: none;
}

.text-link span { color: var(--green-deep); }
.role-card-dark .text-link span { color: var(--green); }

.category-grid {
  display: grid;
  margin-top: 48px;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.category-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

.category-card:hover { background: var(--mint); transform: translateY(-2px); }
.category-card span { color: var(--green-deep); font-weight: 800; }
.category-card strong { font-size: 1.02rem; line-height: 1.3; }

.service-detail-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: minmax(180px, .8fr) minmax(0, 1.2fr);
  background: var(--white);
}

.service-detail > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-detail > div { padding: 32px; }
.service-detail h2 { margin-top: 18px; font-size: clamp(1.4rem, 2.25vw, 2.05rem); }
.service-detail p { color: var(--muted); }
.service-detail ul { margin: 22px 0 0; padding-left: 20px; }
.service-detail li + li { margin-top: 8px; }

.material-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.material-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}

.material-card .circle-mark { width: 46px; margin-bottom: 32px; }
.material-card h3 { color: var(--white); }
.material-card ul { margin: 22px 0 0; padding-left: 20px; color: rgba(255,255,255,.72); }
.material-card li + li { margin-top: 8px; }

.table-wrap {
  overflow: visible;
  border: 1px solid rgba(16,33,26,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.45);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font: inherit;
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(16,33,26,.13);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.price-table th { background: rgba(16,33,26,.06); font-weight: 700; }
.price-table th:last-child,
.price-table td:last-child { width: 220px; text-align: right; font-weight: 700; }
.price-table tbody tr:hover { background: rgba(214,245,237,.52); }
.price-table tr:last-child td { border-bottom: 0; }

.fine-print {
  margin-top: 18px;
  color: var(--muted);
  font-size: .86rem;
}

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.step-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(16,33,26,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.42);
}

.step-card > span {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  margin-bottom: 65px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-weight: 800;
}

.step-card p { color: var(--muted); }

.trust-section { color: var(--white); background: var(--ink); }
.trust-section h2, .trust-section h3 { color: var(--white); }

.trust-grid {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
}

.trust-lead { max-width: 590px; margin-bottom: 30px; color: rgba(255,255,255,.7); }
.trust-list { display: grid; gap: 12px; }

.trust-list article {
  display: flex;
  padding: 25px;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
}

.trust-list article > span {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--green);
  font-weight: 800;
}

.trust-list h3 { margin-bottom: 6px; font-size: 1.05rem; letter-spacing: -.02em; }
.trust-list p { color: rgba(255,255,255,.68); }

.portfolio-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid figure {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform .35s ease;
}

.portfolio-grid figure:hover img { transform: scale(1.035); }

.portfolio-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(9,21,15,.82);
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 60px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-media img { width: 100%; min-height: 520px; object-fit: cover; }
.about-copy > p:not(.eyebrow):not(.fine-print) { color: var(--muted); }

.stats-grid {
  display: grid;
  margin-top: 34px;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid div {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
}

.stats-grid strong { color: var(--green-deep); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; }
.stats-grid span { color: var(--muted); font-size: .9rem; }

.news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .35s ease;
}

.news-card:hover img { transform: scale(1.035); }
.news-card > div { padding: 24px; }
.news-card h3 { margin-top: 18px; }
.news-card p { color: var(--muted); }

.topic-details {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.topic-details summary { cursor: pointer; font-weight: 700; }
.topic-details ul { margin: 18px 0 0; padding-left: 20px; columns: 2; column-gap: 42px; }

.reviews-grid {
  display: grid;
  margin-top: 48px;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-grid blockquote {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 32px;
  border: 1px solid rgba(16,33,26,.13);
  border-radius: var(--radius);
  background: rgba(255,255,255,.46);
}

.reviews-grid p { font-size: 1.08rem; }
.reviews-grid footer { color: var(--muted); font-size: .84rem; font-weight: 700; }

.faq-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
}

.faq-layout > div:first-child > p:not(.eyebrow) { max-width: 470px; color: var(--muted); }
.faq-list { display: grid; gap: 10px; }

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.faq-list summary { cursor: pointer; color: var(--ink); font-weight: 700; }
.faq-list p { margin-top: 14px; color: var(--muted); }

.final-section { padding-top: 40px; background: var(--white); }

.final-cta {
  display: flex;
  padding: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--mint);
}

.final-cta h2 { max-width: 760px; }
.final-cta p:not(.eyebrow) { max-width: 680px; color: var(--ink-soft); }
.final-actions { flex: 0 0 auto; flex-direction: column; }

.contact-grid {
  display: grid;
  margin-top: 20px;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-grid .circle-mark { width: 46px; margin-bottom: 32px; font-size: .82rem; }
.contact-grid p { color: var(--muted); }
.contact-grid a:not(.button) { color: inherit; }
.social-links { margin-top: auto; }
.social-links a { padding: 7px 12px; border-radius: 999px; background: var(--surface); font-size: .86rem; font-weight: 700; text-decoration: none; }
.contact-line { display: block; }

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255,255,255,.72);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.5fr repeat(3, .8fr);
}

.brand-footer { margin-bottom: 22px; color: var(--white); }
.footer-grid > div:first-child p { max-width: 340px; }
.footer-grid h2 { color: var(--white); font-size: .86rem; letter-spacing: -.01em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 7px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  margin-top: 60px;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
}

.error-page,
.legal-page {
  min-height: 100vh;
  padding: 110px 0;
  background: var(--surface);
}

.error-page .container,
.legal-content { max-width: 900px; }

.error-page h1,
.legal-page h1 { font-size: clamp(2.15rem, 5vw, 4.2rem); }

.error-page p,
.legal-page p { max-width: 760px; color: var(--muted); }

.legal-page h2 { margin-top: 48px; font-size: clamp(1.45rem, 2.5vw, 2.2rem); }

.legal-page .text-link { margin-bottom: 58px; }

@media (max-width: 1180px) {
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-detail { grid-template-columns: minmax(150px, .68fr) minmax(0, 1.32fr); }
}

@media (max-width: 1040px) {
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-card:last-child { grid-column: 1 / -1; }
  .trust-grid { gap: 50px; }
  .footer-grid { gap: 24px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail > img { min-height: 320px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 15px; color: var(--ink); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin-top: 6px; color: var(--ink) !important; background: var(--green); }
  .menu-toggle { display: block; }

  .split-heading,
  .role-grid,
  .trust-grid,
  .about-grid,
  .faq-layout { grid-template-columns: 1fr; }

  .split-heading { gap: 18px; }
  .split-heading > p { max-width: 700px; }
  .role-card { min-height: 500px; }
  .material-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-media img { min-height: 420px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid blockquote { min-height: 220px; }
  .final-cta { padding: 48px; align-items: flex-start; flex-direction: column; }
  .final-actions { width: 100%; flex-direction: row; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid article { min-height: 250px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
  body { font-size: 15px; }
  .site-header, .header-inner { min-height: 72px; }
  .brand-mark { width: 36px; }
  .brand-name { font-size: 1.1rem; }

  .hero { min-height: 780px; }
  .hero-media {
    background:
      linear-gradient(90deg, rgba(7,24,16,.93), rgba(7,24,16,.53)),
      linear-gradient(0deg, rgba(7,24,16,.64), transparent 55%),
      url("images/hero.webp") 62% 54% / cover no-repeat;
  }
  .hero-inner { padding-top: 150px; padding-bottom: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 14px; grid-template-columns: 1fr; }
  .hero-facts li, .hero-facts li + li { padding: 0; border: 0; }

  .role-card { min-height: 0; padding: 28px; }
  .role-card-top { margin-bottom: 35px; }
  .role-card h3 { margin-top: 24px; }

  .category-grid,
  .steps-grid,
  .news-grid,
  .portfolio-grid,
  .stats-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .category-card { min-height: 130px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail > img { min-height: 220px; max-height: 300px; }
  .service-detail > div { padding: 26px; }
  .step-card { min-height: 0; }
  .step-card > span { margin-bottom: 36px; }
  .portfolio-grid figure, .portfolio-grid img { min-height: 260px; }
  .about-media img { min-height: 330px; }
  .topic-details ul { columns: 1; }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table td { display: block; width: 100%; }
  .price-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .price-table tr { padding: 14px 16px; border-bottom: 1px solid rgba(16,33,26,.13); }
  .price-table tr:last-child { border-bottom: 0; }
  .price-table td,
  .price-table td:last-child {
    display: grid;
    padding: 5px 0;
    border: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    text-align: right;
  }
  .price-table td::before { color: var(--muted); content: attr(data-label); font-weight: 600; text-align: left; }

  .final-cta { padding: 32px; }
  .final-actions { flex-direction: column; }
  .final-actions .button { width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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