:root {
  --bg: #f9f9f9;
  --bg-strong: #f3f3f3;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-solid: #ffffff;
  --panel-soft: #f3f3f3;
  --panel-high: #e8e8e8;
  --panel-deep: rgba(47, 49, 49, 0.96);
  --text: #1a1c1c;
  --muted: #3e4949;
  --muted-soft: #6e7979;
  --line: rgba(189, 201, 200, 0.15);
  --accent: #006565;
  --accent-strong: #008080;
  --accent-soft: #76d6d5;
  --accent-pale: #c2e7e6;
  --accent-ink: #476868;
  --deep: #051f1f;
  --olive: #436464;
  --gold: #8b4823;
  --shadow: 0 20px 40px rgba(26, 28, 28, 0.06);
  --shadow-soft: 0 12px 28px rgba(26, 28, 28, 0.04);
  --radius-hero: 36px;
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --content: 1680px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(118, 214, 213, 0.16), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(194, 231, 230, 0.36), transparent 24%),
    linear-gradient(180deg, #fbfdfd 0%, var(--bg) 100%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 106, 106, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 106, 106, 0.018) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 92%);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 40px rgba(26, 28, 28, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
}

.brand-title {
  line-height: 1;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--deep);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--deep);
  background: rgba(194, 231, 230, 0.72);
}

.nav .nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.hero {
  padding: 84px 0 32px;
}

.hero-card,
.section-card,
.page-hero,
.route-grid .route-card,
.structure-card,
.note-card,
.highlight-card,
.capability-card,
.bridge-card,
.step-card,
.pricing-card,
.cta-card,
.quote-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
  gap: 30px;
  padding: 52px;
  border-radius: var(--radius-hero);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 214, 213, 0.24), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(194, 231, 230, 0.72);
  color: var(--accent-ink);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(3.4rem, 5.8vw, 5.9rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.section-intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.hero-copy p {
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-meta span,
.page-meta span,
.tag {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-ink);
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  z-index: 1;
}

.visual-frame {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(227, 255, 254, 0.56)),
    var(--panel-solid);
  box-shadow: var(--shadow);
}

.visual-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.visual-logo {
  width: min(100%, 360px);
  margin: 0 auto;
  border-radius: 24px;
}

.visual-caption {
  display: grid;
  gap: 12px;
}

.quote-card,
.visual-stats,
.pricing-card {
  border-radius: 24px;
  padding: 22px;
}

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

.stat-chip {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.stat-chip strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quote-card {
  background: var(--panel-deep);
  color: rgba(255, 255, 255, 0.88);
}

.quote-card p {
  margin: 0;
  color: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 600;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
}

.button-secondary {
  background: var(--panel-high);
  color: var(--text);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section {
  padding: 42px 0 88px;
}

.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-header h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.grid-3,
.grid-2,
.route-grid,
.stats-grid,
.structure-grid,
.capability-grid,
.step-grid,
.pricing-grid,
.reason-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.grid-3,
.route-grid,
.stats-grid,
.structure-grid,
.capability-grid,
.reason-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-card,
.route-card,
.structure-card,
.note-card,
.capability-card,
.highlight-card,
.bridge-card,
.step-card,
.pricing-card,
.cta-card,
.quote-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.section-card h3,
.route-card h3,
.structure-card h3,
.note-card h3,
.capability-card h3,
.highlight-card h3,
.bridge-card h3,
.step-card h3,
.pricing-card h3,
.cta-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-card p,
.route-card p,
.structure-card p,
.note-card p,
.capability-card p,
.highlight-card p,
.bridge-card p,
.step-card p,
.pricing-card p,
.section-card li,
.structure-card li,
.route-card li,
.pricing-card li {
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.99rem;
}

.section-card ul,
.route-card ul,
.structure-card ul,
.pricing-card ul {
  margin: 0;
  padding-left: 18px;
}

.intro-band {
  padding-top: 12px;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.intro-copy,
.intro-proof {
  border-radius: var(--radius-xl);
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.intro-proof {
  background: var(--panel-deep);
  color: rgba(255, 255, 255, 0.86);
}

.intro-proof .pill-row {
  margin-top: 16px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-ink);
  font-size: 0.82rem;
}

.capability-card {
  position: relative;
  overflow: hidden;
}

.capability-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 214, 213, 0.22), transparent 70%);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.list-inline li {
  position: relative;
  padding-left: 14px;
}

.list-inline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.materials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.materials-stack {
  display: grid;
  gap: 18px;
}

.stats-grid .section-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.04em;
}

.reason-grid .section-card {
  min-height: 100%;
}

.step-card {
  position: relative;
  padding-top: 56px;
}

.step-number {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-pale);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.82rem;
}

.pricing-card .price {
  display: block;
  margin-bottom: 10px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.04em;
}

.bridge-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 20px;
  align-items: center;
}

.bridge-mark {
  justify-self: end;
  width: min(100%, 220px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 101, 101, 0.98), rgba(0, 128, 128, 0.94));
  color: rgba(255, 255, 255, 0.92);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid .section-card {
  min-height: 100%;
}

.page-hero {
  padding: 58px 56px;
  border-radius: 34px;
  margin: 48px 0 22px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.route-grid .route-card {
  min-height: 100%;
}

.route-card .route-path {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-ink);
  font-size: 0.82rem;
}

.footer {
  padding: 24px 0 56px;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: var(--panel-deep);
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
}

.footer-card strong {
  color: #fff;
  font-size: 1rem;
}

.footer-card .mini {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.home-build ~ section {
  display: none;
}

.image-panel,
.image-card,
.mosaic-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-panel img,
.image-card img,
.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 22px;
}

.image-panel {
  min-height: 560px;
}

.content-stack {
  display: grid;
  gap: 18px;
}

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

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

.mosaic-card {
  min-height: 360px;
}

.mosaic-card.tall {
  min-height: 560px;
}

.mosaic-card.short {
  min-height: 300px;
}

.photo-caption {
  padding: 22px 22px 24px;
}

.photo-caption h3,
.photo-caption h4 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-ink);
  font-size: 0.8rem;
}

.dark-panel {
  background: var(--panel-deep);
  color: rgba(255, 255, 255, 0.86);
}

.dark-panel h3,
.dark-panel h4 {
  color: #fff;
}

.dark-panel p,
.dark-panel li,
.dark-panel .mini {
  color: rgba(255, 255, 255, 0.68);
}

.dark-panel .tag-row span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.quote-strip .section-card {
  min-height: 100%;
}

.form-card {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(110, 121, 121, 0.55);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  padding: 14px 0;
  font: inherit;
  box-shadow: none;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-bottom-width: 2px;
  border-bottom-color: var(--accent);
}

.field.full {
  grid-column: 1 / -1;
}

.helper {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.mini {
  font-size: 0.9rem;
  color: var(--muted-soft);
}

@media (max-width: 1080px) {
  .hero-card,
  .intro-panel,
  .materials-grid,
  .bridge-card,
  .cta-card,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .bridge-mark {
    justify-self: start;
  }
}

@media (max-width: 960px) {
  .grid-3,
  .route-grid,
  .stats-grid,
  .structure-grid,
  .grid-2,
  .capability-grid,
  .reason-grid,
  .contact-grid,
  .range-showcase,
  .mosaic-grid,
  .quote-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .page-hero {
    padding: 34px 24px;
  }

  .container {
    width: min(calc(100% - 24px), var(--content));
  }
}

@media (max-width: 780px) {
  .topbar-inner {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
  }

  .visual-stats,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .footer-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.2rem);
  }
}

.container-wide {
  width: min(calc(100% - 40px), 1820px);
  margin: 0 auto;
}

.hero-atelier {
  padding: 34px 0 28px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 28px;
  align-items: stretch;
}

.hero-story,
.hero-note,
.story-panel,
.range-card-copy,
.factory-float-card,
.proof-wall article {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-story {
  padding: 56px;
  border-radius: 38px;
  align-self: stretch;
}

.hero-story h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 42rem;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proofline span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-figures article {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-figures strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--deep);
}

.hero-figures p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 18px;
}

.hero-photo,
.range-card-home,
.materials-visual,
.factory-spotlight-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 320px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.hero-photo img,
.range-card-home img,
.materials-visual img,
.story-photo img,
.factory-spotlight-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-wide {
  grid-column: 1 / -1;
  min-height: 430px;
}

.hero-note {
  padding: 30px;
  border-radius: 34px;
}

.hero-note h2 {
  margin: 12px 0 12px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.trust-belt {
  padding: 12px 0 0;
}

.trust-belt-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-belt-inner > div {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.trust-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-belt strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.story-panel {
  border-radius: 34px;
}

.story-photo {
  overflow: hidden;
  min-height: 760px;
}

.story-copy {
  padding: 42px;
}

.story-copy h2 {
  margin: 12px 0 16px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.story-copy > p {
  margin: 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.story-points article {
  padding: 22px 20px;
  border-radius: 22px;
  background: var(--panel-soft);
}

.story-points strong,
.materials-columns strong,
.process-grid-home h3,
.range-card-copy h3,
.proof-wall strong,
.factory-float-card strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.story-points p,
.materials-columns p,
.process-grid-home p,
.proof-wall p,
.factory-float-card li {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-header-split {
  align-items: end;
}

.range-grid-home {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 20px;
}

.range-card-home {
  min-height: 520px;
}

.range-card-large {
  grid-row: span 2;
  min-height: 720px;
}

.range-card-copy {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(47, 49, 49, 0.16), rgba(47, 49, 49, 0.86));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.range-card-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.range-card-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(194, 231, 230, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.materials-band {
  padding: 18px 0 88px;
}

.materials-band-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  padding: 28px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(47, 49, 49, 0.98), rgba(5, 31, 31, 0.98));
  box-shadow: var(--shadow);
}

.materials-visual {
  min-height: 640px;
}

.materials-content {
  padding: 18px 10px 18px 8px;
  color: rgba(255, 255, 255, 0.92);
}

.materials-content .section-kicker {
  color: var(--accent-soft);
}

.materials-content h2 {
  margin: 14px 0 0;
  max-width: 16ch;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.materials-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.materials-columns article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.materials-columns p {
  color: rgba(255, 255, 255, 0.74);
}

.factory-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
}

.factory-spotlight-copy {
  padding: 10px 6px 0 0;
}

.factory-spotlight-copy h2 {
  margin: 12px 0 14px;
  max-width: 13ch;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.factory-spotlight-copy > p {
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.factory-spotlight-visual {
  min-height: 780px;
}

.factory-float-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

.factory-float-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.process-grid-home {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.process-grid-home article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
}

.process-grid-home span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-grid-home h3 {
  margin: 14px 0 0;
  font-size: 1.1rem;
}

.proof-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-wall article {
  padding: 26px;
  border-radius: 26px;
}

.proof-wall strong {
  display: block;
  font-size: 1.08rem;
}

.bridge-card-home,
.cta-card-home,
.home-contact-grid {
  margin-top: 20px;
}

.section-tight {
  padding-bottom: 24px;
}

@media (max-width: 1280px) {
  .hero-stage,
  .story-grid,
  .materials-band-shell,
  .factory-spotlight {
    grid-template-columns: 1fr;
  }

  .hero-story,
  .story-copy {
    padding: 40px;
  }

  .hero-gallery,
  .range-grid-home,
  .proof-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .range-card-large {
    grid-row: auto;
    min-height: 520px;
  }

  .materials-visual,
  .factory-spotlight-visual,
  .story-photo {
    min-height: 560px;
  }
}

@media (max-width: 960px) {
  .container-wide,
  .container {
    width: min(calc(100% - 24px), 1820px);
  }

  .hero-story {
    padding: 30px 24px;
  }

  .hero-figures,
  .trust-belt-inner,
  .story-points,
  .materials-columns,
  .process-grid-home,
  .proof-wall,
  .range-grid-home {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-photo-wide,
  .range-card-large {
    min-height: 420px;
  }

  .range-card-home,
  .hero-photo,
  .materials-visual,
  .factory-spotlight-visual,
  .story-photo {
    min-height: 380px;
  }

  .factory-float-card {
    position: static;
    margin: 14px;
  }
}

@media (max-width: 780px) {
  .hero-atelier {
    padding-top: 18px;
  }

  .hero-story h1,
  .story-copy h2,
  .materials-content h2,
  .factory-spotlight-copy h2 {
    max-width: none;
  }

  .hero-note,
  .story-copy,
  .materials-band-shell,
  .proof-wall article {
    padding: 22px;
  }

  .hero-story,
  .hero-photo,
  .hero-note,
  .story-panel,
  .range-card-home,
  .materials-band-shell,
  .factory-spotlight-visual,
  .proof-wall article {
    border-radius: 24px;
  }
}

.brand-home .brand-subtitle {
  display: none;
}

.topbar.is-compact .topbar-inner {
  padding: 12px 0;
}

.topbar.is-compact .brand-mark {
  width: 40px;
  height: 40px;
}

.homepage-hero-section {
  padding: 30px 0 22px;
}

.homepage-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 24px;
  align-items: stretch;
}

.homepage-hero-copy,
.hero-visual-shell,
.homepage-intro-copy,
.homepage-process-detail,
.homepage-why-card,
.homepage-cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.homepage-hero-copy {
  padding: 54px;
  border-radius: 34px;
}

.homepage-hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(3.8rem, 6vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-supporting-copy {
  margin-top: 18px;
}

.hero-supporting-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-supporting-copy p:first-child {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
}

.hero-support-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-support-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.hero-support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-trust-line {
  margin: 22px 0 0;
  color: var(--muted-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.homepage-hero-visual {
  min-width: 0;
}

.hero-visual-shell {
  display: grid;
  gap: 18px;
  height: 100%;
  padding: 28px;
  border-radius: 34px;
}

.hero-visual-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-visual-top span,
.trust-strip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-visual-graph {
  display: block;
  align-items: end;
  gap: 12px;
  min-height: 180px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(194, 231, 230, 0.38), rgba(255, 255, 255, 0.12)),
    var(--panel-soft);
}

.hero-visual-graph > span {
  display: block;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

.hero-visual-graph > span:nth-child(1) { height: 38%; }
.hero-visual-graph > span:nth-child(2) { height: 58%; }
.hero-visual-graph > span:nth-child(3) { height: 46%; }
.hero-visual-graph > span:nth-child(4) { height: 76%; }
.hero-visual-graph > span:nth-child(5) { height: 62%; }
.hero-visual-graph > span:nth-child(6) { height: 84%; }
.hero-visual-graph > span:nth-child(7) { height: 68%; }
.hero-visual-graph > span:nth-child(8) { height: 96%; }

.hero-visual-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-visual-cards article,
.homepage-process-card,
.homepage-product-card,
.homepage-intro-media,
.homepage-process-timeline,
.footer-columns > div {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-visual-cards article {
  padding: 18px;
  border-radius: 20px;
}

.hero-visual-cards strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-visual-image {
  overflow: hidden;
  min-height: 260px;
  border-radius: 28px;
}

.hero-visual-image img,
.homepage-intro-media img,
.homepage-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage-trust-strip {
  padding: 12px 0 0;
}

.trust-strip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.homepage-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.homepage-intro-copy {
  display: grid;
  align-content: center;
  padding: 40px;
  border-radius: 30px;
}

.homepage-intro-copy h2,
.homepage-process-section h2,
.homepage-products-section h2,
.homepage-why-section h2,
.homepage-cta-panel h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.homepage-intro-copy p,
.homepage-cta-panel p,
.homepage-process-detail p,
.homepage-process-card p {
  color: var(--muted);
  line-height: 1.8;
}

.homepage-intro-copy p {
  margin: 18px 0 0;
  max-width: 42rem;
  font-size: 1.02rem;
}

.homepage-intro-media {
  overflow: hidden;
  min-height: 360px;
  border-radius: 30px;
}

.home-section-header {
  align-items: end;
}

.home-section-heading-copy {
  max-width: 360px;
}

.section-subheading {
  margin: 0 0 8px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.homepage-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 24px;
}

.homepage-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
}

.homepage-process-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 22px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.homepage-process-card.is-active {
  background: rgba(194, 231, 230, 0.58);
  border-color: rgba(0, 101, 101, 0.16);
}

.homepage-process-card:hover,
.homepage-product-card:hover,
.homepage-why-card:hover {
  transform: translateY(-2px);
}

.homepage-process-step {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--panel-solid);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.homepage-process-card strong,
.homepage-process-detail-top strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.homepage-process-card h3,
.homepage-process-detail h3,
.homepage-product-card h3,
.homepage-why-card h3,
.footer-columns h3 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.homepage-process-card p {
  margin: 12px 0 0;
}

.homepage-process-detail {
  padding: 30px;
  border-radius: 30px;
}

.homepage-process-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.homepage-process-detail-top span {
  color: var(--muted-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.homepage-process-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.homepage-process-columns h4,
.homepage-process-result h4 {
  margin: 0 0 10px;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.homepage-process-columns ul,
.homepage-process-result ul {
  margin: 0;
  padding-left: 18px;
}

.homepage-process-columns li,
.homepage-process-result li {
  color: var(--muted);
  line-height: 1.75;
}

.homepage-process-result {
  margin-top: 18px;
}

.homepage-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.homepage-product-card {
  overflow: hidden;
  border-radius: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.homepage-product-card img {
  aspect-ratio: 1 / 1;
}

.homepage-product-card h3 {
  padding: 18px;
}

.homepage-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.homepage-why-card {
  padding: 24px 22px;
  border-radius: 24px;
  transition: transform 180ms ease;
}

.homepage-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.homepage-review-card {
  padding: var(--space-lg);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.review-skeleton {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(194, 231, 230, 0.34), rgba(232, 232, 232, 0.92));
}

.review-skeleton-title {
  width: 36%;
  height: 14px;
  margin-bottom: var(--space-md);
}

.review-skeleton-line {
  width: 100%;
  height: 12px;
  margin-bottom: var(--space-xs);
}

.review-skeleton-line-short {
  width: 72%;
  margin-bottom: 0;
}

.homepage-cta-panel {
  padding: 48px 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0, 101, 101, 0.98), rgba(0, 128, 128, 0.92));
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
}

.homepage-cta-panel h2 {
  color: #fff;
}

.homepage-cta-panel p {
  max-width: 52rem;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.homepage-cta-panel .hero-actions {
  justify-content: center;
}

.homepage-cta-support {
  font-size: 0.94rem;
}

.footer-card-homepage {
  align-items: start;
}

.footer-brand-block {
  min-width: 220px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  flex: 1 1 auto;
}

.footer-columns > div {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
}

.footer-columns h3 {
  color: #fff;
}

.footer-columns a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}

@media (max-width: 1280px) {
  .homepage-hero-grid,
  .homepage-intro-grid,
  .homepage-process-layout {
    grid-template-columns: 1fr;
  }

  .homepage-process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-products-grid,
  .homepage-why-grid,
  .trust-strip-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .homepage-hero-copy,
  .hero-visual-shell,
  .homepage-intro-copy,
  .homepage-process-detail,
  .homepage-cta-panel {
    padding: 28px 22px;
  }

  .hero-visual-cards,
  .homepage-process-columns,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .homepage-process-timeline,
  .homepage-products-grid,
  .homepage-why-grid,
  .trust-strip-row {
    grid-template-columns: 1fr;
  }

  .homepage-intro-media {
    min-height: 300px;
  }
}

@media (max-width: 780px) {
  .homepage-hero-section {
    padding-top: 16px;
  }

  .homepage-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.8rem, 11vw, 4.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .homepage-hero-copy,
  .hero-visual-shell,
  .homepage-intro-copy,
  .homepage-intro-media,
  .homepage-process-timeline,
  .homepage-process-detail,
  .homepage-product-card,
  .homepage-why-card,
  .homepage-cta-panel {
    border-radius: 24px;
  }
}

/* Homepage system cleanup */
:root {
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 2.5rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --content: 1360px;
}

.container,
.container-wide {
  width: min(calc(100% - 24px), var(--content));
  margin: 0 auto;
}

.topbar-inner {
  gap: var(--space-md);
  padding: var(--space-sm) 0;
}

.homepage-hero-section {
  padding: var(--space-md) 0 var(--space-sm);
}

.homepage-hero-grid,
.homepage-intro-grid,
.homepage-process-layout,
.homepage-process-columns,
.homepage-products-grid,
.homepage-why-grid,
.trust-strip-row,
.footer-columns,
.hero-visual-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.homepage-hero-copy,
.hero-visual-shell,
.homepage-intro-copy,
.homepage-process-timeline,
.homepage-process-detail,
.homepage-product-card,
.homepage-why-card,
.homepage-cta-panel,
.footer-columns > div {
  border-radius: 24px;
}

.homepage-hero-copy,
.hero-visual-shell,
.homepage-intro-copy,
.homepage-process-detail,
.homepage-cta-panel {
  padding: var(--space-lg) var(--space-md);
}

.homepage-intro-section {
  position: relative;
  padding-top: var(--space-xl);
}

.homepage-intro-section::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 180px;
  height: 1px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(
    90deg,
    rgba(189, 201, 200, 0),
    rgba(189, 201, 200, 0.75),
    rgba(189, 201, 200, 0)
  );
}

.homepage-intro-block {
  display: flex;
  justify-content: center;
}

.homepage-intro-copy {
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.homepage-intro-copy h2 {
  max-width: 12ch;
  margin: 0 auto;
}

.homepage-intro-copy p {
  max-width: 38rem;
  margin: var(--space-sm) auto 0;
}

.homepage-hero-copy h1 {
  max-width: none;
  font-size: clamp(2.8rem, 11vw, 4.75rem);
}

.hero-supporting-copy {
  margin-top: var(--space-sm);
}

.hero-support-list {
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.hero-trust-line {
  margin-top: var(--space-md);
}

.hero-actions {
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.hero-visual-shell {
  gap: var(--space-md);
}

.hero-visual-graph {
  min-height: 140px;
  padding: var(--space-md);
}

.hero-visual-image {
  min-height: 240px;
}

.homepage-trust-strip {
  padding: var(--space-xs) 0 0;
}

.trust-strip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px 0 0;
  list-style: none;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: var(--shadow-soft);
}

.trust-strip-item::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(0, 101, 101, 0.42);
}

.section {
  padding: var(--space-xl) 0 var(--space-3xl);
}

.home-section-header {
  align-items: start;
  gap: var(--space-sm);
}

.home-section-heading-copy {
  max-width: none;
}

.section-subheading {
  margin-bottom: var(--space-2xs);
}

.homepage-process-timeline {
  gap: var(--space-sm);
  padding: var(--space-sm);
}

.homepage-process-card {
  appearance: none;
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  text-align: left;
  cursor: pointer;
}

.homepage-process-detail-top {
  display: grid;
  gap: var(--space-2xs);
  justify-items: start;
}

.homepage-process-result,
.homepage-process-columns {
  margin-top: var(--space-md);
}

.homepage-process-card strong,
.homepage-process-card h3,
.homepage-process-card p,
.homepage-process-step {
  pointer-events: none;
}

.homepage-process-card.is-active {
  border-color: rgba(0, 101, 101, 0.24);
  background: rgba(194, 231, 230, 0.46);
  box-shadow: 0 18px 32px rgba(25, 28, 28, 0.07);
}

.homepage-process-card:hover {
  border-color: rgba(0, 101, 101, 0.18);
}

.homepage-process-card:focus-visible {
  outline: 2px solid rgba(0, 101, 101, 0.28);
  outline-offset: 2px;
}

.homepage-process-columns [hidden],
.homepage-process-result[hidden] {
  display: none;
}

.homepage-product-card {
  overflow: hidden;
}

.homepage-product-card h3 {
  padding: var(--space-md);
}

.homepage-why-section {
  background: linear-gradient(
    180deg,
    rgba(241, 244, 244, 0.34) 0%,
    rgba(251, 253, 253, 0) 100%
  );
}

.homepage-why-grid {
  gap: var(--space-sm);
}

.homepage-why-card {
  display: grid;
  align-content: start;
  gap: var(--space-sm);
  padding: var(--space-md);
  min-height: 148px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.homepage-why-marker {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 101, 101, 0.18);
  box-shadow: inset 0 0 0 1px rgba(0, 101, 101, 0.14);
}

.homepage-why-card h3 {
  line-height: 1.35;
}

.homepage-cta-panel {
  padding: var(--space-2xl) var(--space-md);
}

.homepage-cta-panel .hero-actions {
  justify-content: center;
}

.homepage-cta-section {
  padding-top: var(--space-2xl);
}

.homepage-cta-panel {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(0, 101, 101, 0.14);
  background:
    linear-gradient(180deg, rgba(0, 101, 101, 0.9), rgba(0, 90, 90, 0.94)),
    rgba(0, 101, 101, 0.92);
  box-shadow: 0 24px 48px rgba(25, 28, 28, 0.14);
  text-align: center;
}

.homepage-cta-panel h2 {
  color: #ffffff;
}

.homepage-cta-panel p {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.84);
}

.homepage-cta-panel .hero-actions {
  margin-top: var(--space-lg);
}

.homepage-cta-panel .button-primary {
  background: #ffffff;
  color: var(--accent-strong);
  box-shadow: 0 14px 32px rgba(255, 255, 255, 0.14);
}

.homepage-cta-panel .button-primary:hover {
  background: rgba(255, 255, 255, 0.94);
}

.homepage-cta-panel .button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  background: transparent;
  color: #ffffff;
}

.homepage-cta-panel .button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.homepage-cta-support {
  margin-top: var(--space-md);
  font-size: 0.94rem;
}

.footer-card-homepage {
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-md);
}

.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background: #203232;
}

.footer-card-homepage {
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(28, 44, 44, 0.98), rgba(21, 33, 33, 0.98));
  box-shadow: 0 18px 42px rgba(8, 15, 15, 0.18);
}

.footer-brand-block {
  display: grid;
  gap: var(--space-2xs);
}

.footer-columns {
  gap: var(--space-lg);
}

.footer-columns > div {
  display: grid;
  gap: var(--space-xs);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-columns h3 {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.94rem;
  font-weight: 700;
}

.footer-card-homepage strong {
  color: #ffffff;
  font-size: 1.02rem;
}

.footer-card-homepage .mini {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-columns a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.footer-bottom-line {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .container,
  .container-wide {
    width: min(calc(100% - 40px), var(--content));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .trust-strip-list,
  .homepage-products-grid,
  .homepage-why-grid,
  .homepage-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual-cards,
  .homepage-process-columns,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-process-detail-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .homepage-hero-section {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .homepage-hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    gap: var(--space-lg);
  }

  .homepage-process-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: var(--space-lg);
  }

  .homepage-process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .homepage-products-grid,
  .homepage-why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .homepage-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .trust-strip-item {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    white-space: nowrap;
  }

  .homepage-hero-copy,
  .hero-visual-shell,
  .homepage-intro-copy,
  .homepage-process-detail,
  .homepage-cta-panel {
    padding: var(--space-2xl);
  }

  .homepage-intro-section {
    padding-top: var(--space-2xl);
  }

  .homepage-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 6vw, 6.6rem);
  }
}

/* Homepage final refinement */
:root {
  --content: 1520px;
}

.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;
}

.container,
.container-wide {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.topbar {
  background: rgba(251, 253, 253, 0.86);
  border-bottom: 1px solid rgba(189, 201, 200, 0.34);
  box-shadow: 0 18px 40px rgba(26, 28, 28, 0.05);
}

.topbar-inner {
  gap: 28px;
  padding: 20px 0;
}

.brand {
  min-width: max-content;
}

.brand-logo-full {
  display: block;
  width: clamp(180px, 20vw, 240px);
  height: auto;
}

.topbar.is-compact .topbar-inner {
  padding: 14px 0;
}

.nav {
  gap: 22px;
}

.nav a {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--deep);
  background: transparent;
}

.nav a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}

.nav .nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 101, 101, 0.15);
}

.homepage-hero-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 5vw, 3.25rem);
}

.homepage-hero-grid {
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.homepage-hero-copy {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.homepage-hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-supporting-copy {
  display: grid;
  gap: 4px;
  margin-top: var(--space-md);
}

.hero-supporting-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 40rem;
}

.hero-support-list {
  margin-top: var(--space-lg);
  padding: 0;
  list-style: none;
}

.hero-support-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-support-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 101, 101, 0.28);
}

.hero-trust-line {
  max-width: 36rem;
  color: var(--muted-soft);
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: var(--space-lg);
}

.button {
  min-height: 52px;
  padding: 14px 22px;
}

.homepage-hero-visual {
  min-width: 0;
}

.hero-visual-shell {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(241, 244, 244, 0.88));
  border: 1px solid rgba(189, 201, 200, 0.48);
  box-shadow: 0 28px 54px rgba(26, 28, 28, 0.08);
}

.hero-visual-top {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-graph {
  min-height: 200px;
  margin-top: var(--space-lg);
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(218, 234, 234, 0.58), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(189, 201, 200, 0.4);
}

.hero-visual-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-visual-cards article {
  min-height: 120px;
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(189, 201, 200, 0.38);
}

.hero-visual-cards article strong {
  font-size: 1rem;
  line-height: 1.35;
}

.hero-visual-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.hero-visual-flow span {
  position: relative;
  padding-top: 18px;
  color: var(--muted-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-visual-flow span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 101, 101, 0.42), rgba(189, 201, 200, 0.3));
}

.hero-visual-screen {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 48%),
    linear-gradient(180deg, #121919, #182121);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(8, 15, 15, 0.16);
}

.hero-visual-screen-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-visual-screen-top span {
  display: block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(208, 225, 225, 0.22);
}

.hero-visual-screen-top span:first-child {
  background: rgba(208, 225, 225, 0.56);
}

.hero-visual-chart {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 46%),
    linear-gradient(180deg, rgba(22, 31, 31, 0.98), rgba(17, 25, 25, 1));
  border: 1px solid rgba(208, 225, 225, 0.08);
}

.hero-visual-chart-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual-chart-grid {
  stroke: rgba(208, 225, 225, 0.1);
  stroke-width: 1;
}

.hero-visual-chart-fill-back {
  fill: url(#heroChartFillBack);
}

.hero-visual-chart-fill-front {
  fill: url(#heroChartFillFront);
}

.hero-visual-chart-line {
  fill: none;
  stroke: url(#heroChartStroke);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual-chart-focus circle:first-child {
  fill: rgba(242, 248, 248, 0.98);
}

.hero-visual-chart-focus circle:last-child {
  fill: none;
  stroke: rgba(242, 248, 248, 0.34);
  stroke-width: 2;
}

.hero-visual-chart-scale {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-visual-screen-dot {
  display: block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(208, 225, 225, 0.22);
}

.hero-visual-screen-dot:first-child {
  background: rgba(208, 225, 225, 0.56);
}

.hero-visual-chart-scale div {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  padding-top: 14px;
  border-radius: 0;
  background: none;
  color: rgba(214, 231, 231, 0.68);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-chart-scale div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(208, 225, 225, 0.22);
}

.homepage-trust-strip {
  padding: 0 0 var(--space-lg);
}

.trust-strip-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(189, 201, 200, 0.5);
  border-bottom: 1px solid rgba(189, 201, 200, 0.38);
}

.trust-strip-rail span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.homepage-intro-section::before {
  display: none;
}

.homepage-intro-section {
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
}

.homepage-intro-block {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  justify-content: flex-start;
}

.homepage-intro-image {
  order: 2;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.56), transparent 52%),
    linear-gradient(180deg, rgba(241, 244, 244, 0.92), rgba(255, 255, 255, 0.78));
  border: 1px solid rgba(189, 201, 200, 0.42);
  box-shadow: 0 20px 40px rgba(26, 28, 28, 0.05);
}

.homepage-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.homepage-intro-copy {
  order: 1;
  max-width: 780px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

.homepage-intro-copy h2 {
  max-width: 16ch;
  margin: 0;
}

.homepage-intro-copy p {
  max-width: 42rem;
  margin: var(--space-md) 0 0;
  font-size: 1.08rem;
  line-height: 1.9;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.home-section-header {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}

.section-subheading {
  color: var(--deep);
  font-weight: 700;
}

.section-intro {
  color: var(--muted);
}

.homepage-process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.homepage-process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.homepage-process-card {
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(189, 201, 200, 0.44);
  box-shadow: 0 16px 34px rgba(26, 28, 28, 0.05);
}

.homepage-process-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.homepage-process-card p {
  font-size: 0.98rem;
}

.homepage-process-card.is-active {
  border-color: rgba(0, 101, 101, 0.28);
  background: rgba(194, 231, 230, 0.36);
  box-shadow: 0 22px 42px rgba(26, 28, 28, 0.08);
}

.homepage-process-detail {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(189, 201, 200, 0.44);
  box-shadow: 0 18px 40px rgba(26, 28, 28, 0.06);
}

.homepage-process-columns {
  gap: clamp(1rem, 3vw, 2rem);
}

.homepage-process-columns ul,
.homepage-process-result ul {
  padding-left: 18px;
}

.homepage-products-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.homepage-product-card {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(189, 201, 200, 0.34);
  box-shadow: 0 16px 34px rgba(26, 28, 28, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.homepage-product-card img {
  aspect-ratio: 0.92;
  object-fit: cover;
}

.homepage-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 101, 101, 0.18);
  box-shadow: 0 22px 40px rgba(26, 28, 28, 0.08);
}

.homepage-product-card h3 {
  padding: 20px 22px 24px;
  font-size: 1.08rem;
}

.homepage-why-section {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.48), rgba(251, 253, 253, 0));
}

.homepage-why-grid {
  gap: clamp(1rem, 2vw, 1.5rem);
}

.homepage-why-card {
  min-height: 180px;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(189, 201, 200, 0.42);
  box-shadow: 0 16px 36px rgba(26, 28, 28, 0.05);
}

.homepage-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(194, 231, 230, 0.34);
  color: rgba(0, 101, 101, 0.72);
  font-size: 1rem;
  line-height: 1;
}

.homepage-why-card h3 {
  font-size: 1.12rem;
  line-height: 1.35;
}

.homepage-why-card p {
  margin: 0;
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.homepage-reviews-section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.homepage-reviews-grid {
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.homepage-review-card {
  min-height: 180px;
  padding: 26px 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(232, 238, 238, 0.92), rgba(220, 228, 228, 0.96));
  border: 1px solid rgba(164, 179, 179, 0.34);
  box-shadow: 0 14px 30px rgba(26, 28, 28, 0.05);
  display: grid;
  gap: 18px;
}

.review-skeleton {
  background: linear-gradient(90deg, rgba(189, 201, 200, 0.22), rgba(189, 201, 200, 0.34), rgba(189, 201, 200, 0.18));
}

.homepage-review-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.homepage-review-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(244, 246, 246, 0.96), rgba(232, 238, 238, 0.92));
  border: 1px solid rgba(189, 201, 200, 0.34);
  color: rgba(47, 62, 62, 0.84);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.homepage-review-meta {
  display: grid;
  gap: 3px;
}

.homepage-review-meta strong {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.homepage-review-meta span {
  color: var(--muted-soft);
  font-size: 0.9rem;
}

.homepage-review-quote {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.8;
}

.homepage-review-author {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.homepage-micro-section {
  padding-top: 0;
}

.homepage-micro-panel {
  display: grid;
  gap: var(--space-lg);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.85), rgba(232, 238, 238, 0.72));
  border: 1px solid rgba(189, 201, 200, 0.48);
}

.homepage-micro-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.homepage-micro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}

.homepage-micro-points span {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.homepage-cta-section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, rgba(0, 101, 101, 0.96), rgba(0, 80, 80, 0.98));
}

.homepage-cta-panel {
  width: min(calc(100% - 32px), var(--content));
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.homepage-cta-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.homepage-cta-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.homepage-cta-copy .hero-actions {
  justify-content: center;
  margin-top: var(--space-xl);
}

.homepage-cta-copy .button-primary {
  background: #ffffff;
  color: var(--accent-strong);
}

.homepage-cta-copy .button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.footer {
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
  background: #172424;
}

.footer-homepage {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.footer-brand-block {
  gap: 8px;
}

.footer-brand-logo {
  display: block;
  width: clamp(108px, 11vw, 148px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 4px;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 2rem);
}

.footer-columns > div {
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-bottom-line {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 780px) {
  .topbar-inner {
    align-items: center;
  }

  .brand-logo-full {
    width: 180px;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(189, 201, 200, 0.32);
  }

  .nav .nav-cta {
    width: 100%;
    margin-top: 12px;
    padding: 14px 18px;
    text-align: center;
    border-bottom: 0;
  }

  .hero-visual-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-micro-points {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) {
  .container,
  .container-wide {
    width: min(calc(100% - 64px), var(--content));
  }

  .homepage-intro-block {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  }

  .homepage-intro-image {
    order: 1;
  }

  .homepage-intro-copy {
    order: 2;
  }

  .trust-strip-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .homepage-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-products-grid,
  .homepage-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .container,
  .container-wide {
    width: min(calc(100% - 96px), var(--content));
  }

  .homepage-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(540px, 0.92fr);
  }

  .homepage-intro-block {
    grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  }

  .trust-strip-rail {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
  }

  .trust-strip-rail span {
    flex: 1 1 auto;
    padding: 0 18px;
  }

  .trust-strip-rail span + span {
    border-left: 1px solid rgba(189, 201, 200, 0.34);
  }

  .homepage-process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .homepage-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .homepage-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .homepage-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .homepage-micro-panel {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr) auto;
    align-items: center;
  }
}

/* Legal pages */
.legal-hero {
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.legal-hero h1 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.legal-updated {
  margin: 1rem 0 0;
  color: var(--muted-soft);
  font-size: 0.98rem;
}

.legal-layout {
  padding-top: 0;
}

.legal-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.legal-toc,
.legal-content {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(189, 201, 200, 0.36);
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(26, 28, 28, 0.04);
}

.legal-toc {
  padding: 1.5rem;
}

.legal-toc h2 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.legal-toc a {
  color: var(--muted);
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--deep);
}

.legal-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.legal-section + .legal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(189, 201, 200, 0.3);
}

.legal-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.legal-section ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

@media (min-width: 1024px) {
  .legal-grid {
    grid-template-columns: minmax(260px, 0.3fr) minmax(0, 1fr);
    align-items: start;
  }

  .legal-toc {
    position: sticky;
    top: 110px;
  }
}

/* Studio page */
.studio-page {
  counter-reset: studio-section;
}

.studio-hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.studio-hero-grid,
.studio-split,
.studio-model-grid,
.studio-brand-block,
.studio-cta-panel {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.studio-hero-copy,
.studio-section-copy {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.studio-hero-copy h1,
.studio-section-copy h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.98;
  color: var(--text);
}

.studio-hero-copy h1 {
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  max-width: 11ch;
}

.studio-section-copy h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  max-width: 13ch;
}

.studio-page .studio-section-copy h2::before {
  counter-increment: studio-section;
  content: "0" counter(studio-section);
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(0, 101, 101, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.studio-lead,
.studio-section-copy p,
.studio-points li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.studio-lead {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  max-width: 40rem;
  font-size: clamp(1.1rem, 2vw, 1.24rem);
}

.studio-short-line {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  color: var(--deep);
  font-weight: 700;
}

.studio-section-copy p + p {
  margin-top: 1rem;
}

.studio-hero-media,
.studio-visual-panel,
.studio-brand-visual,
.studio-model-card {
  background: linear-gradient(180deg, rgba(28, 36, 36, 0.96), rgba(16, 22, 22, 0.98));
  border: 1px solid rgba(88, 109, 109, 0.26);
  border-radius: 30px;
  box-shadow: 0 24px 56px rgba(14, 18, 18, 0.18);
}

.studio-hero-grid,
.studio-split,
.studio-brand-block,
.studio-cta-panel {
  position: relative;
  isolation: isolate;
}

.studio-hero-media {
  position: relative;
  min-height: clamp(360px, 48vw, 700px);
  padding: clamp(1rem, 2vw, 1.35rem);
  overflow: hidden;
}

.studio-hero-media-grid,
.studio-hero-media-subgrid {
  display: grid;
  gap: 12px;
  height: 100%;
}

.studio-hero-media-grid {
  grid-template-rows: minmax(0, 1fr) auto;
}

.studio-hero-media-subgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-media-card,
.studio-visual-panel,
.studio-brand-visual {
  margin: 0;
  overflow: hidden;
}

.studio-media-card img,
.studio-visual-panel img,
.studio-brand-visual img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.studio-media-card-main {
  min-height: clamp(220px, 28vw, 340px);
  border-radius: 24px;
}

.studio-media-card-main img {
  object-fit: cover;
  object-position: center 36%;
}

.studio-media-card-secondary,
.studio-media-card-tertiary {
  min-height: clamp(130px, 16vw, 180px);
  border-radius: 22px;
}

.studio-media-card-secondary img,
.studio-media-card-tertiary img {
  object-fit: cover;
}

.studio-media-card-secondary img {
  object-position: center center;
}

.studio-media-card-tertiary img {
  object-position: center center;
}

.studio-section-soft {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.55), rgba(251, 253, 253, 0));
}

.studio-visual-panel {
  min-height: clamp(300px, 38vw, 520px);
  padding: 18px;
}

.studio-visual-panel img {
  object-fit: cover;
  object-position: center center;
}

.studio-model-grid {
  margin: clamp(1.25rem, 3vw, 1.75rem) 0;
}

.studio-model-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(189, 201, 200, 0.34);
  box-shadow: 0 20px 48px rgba(26, 28, 28, 0.06);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.studio-model-card p {
  margin: 0;
}

.studio-points {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  padding-left: 1.2rem;
}

.studio-points li + li {
  margin-top: 0.55rem;
}

.studio-brand-visual {
  min-height: clamp(260px, 32vw, 420px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.studio-brand-visual img {
  object-fit: contain;
  background: transparent;
  width: min(88%, 420px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 34px rgba(18, 24, 24, 0.16));
}

.studio-cta {
  padding-top: 0;
}

.studio-cta-panel {
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.36);
  border-radius: 32px;
  box-shadow: 0 20px 48px rgba(26, 28, 28, 0.06);
}

.studio-cta-panel .hero-actions {
  margin-top: 0;
}

@media (max-width: 767px) {
  .studio-hero-grid,
  .studio-split,
  .studio-brand-block,
  .studio-cta-panel {
    padding: clamp(1.15rem, 4vw, 1.45rem);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 247, 247, 0.58));
    border: 1px solid rgba(189, 201, 200, 0.26);
    box-shadow: 0 18px 44px rgba(20, 24, 24, 0.08);
  }

  .studio-hero-grid::before,
  .studio-split::before,
  .studio-brand-block::before,
  .studio-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 38%;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(194, 231, 230, 0.22), rgba(0, 101, 101, 0.05)),
      linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
    z-index: -1;
  }

  .studio-hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.7rem);
    max-width: 9ch;
  }

  .studio-section-copy h2 {
    max-width: 9ch;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }

  .studio-lead,
  .studio-section-copy p,
  .studio-points li {
    font-size: 0.99rem;
    line-height: 1.82;
  }

  .studio-short-line {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(194, 231, 230, 0.38);
    border: 1px solid rgba(0, 101, 101, 0.08);
  }

  .studio-hero-media {
    min-height: 420px;
    margin-top: 0.35rem;
  }

  .studio-hero-media-grid {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .studio-media-card-main img {
    object-position: center 36%;
  }

  .studio-hero-media-subgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-visual-panel,
  .studio-brand-visual {
    min-height: 280px;
    margin-top: 0.35rem;
  }

  .studio-visual-panel {
    padding: 14px;
  }

  .studio-brand-visual {
    min-height: 240px;
    padding: 0;
  }

  .studio-model-grid {
    grid-template-columns: 1fr;
  }

  .studio-model-card {
    background: rgba(255, 255, 255, 0.64);
  }

  .studio-section-soft {
    background: transparent;
  }
}

@media (min-width: 768px) {
  .studio-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-brand-block,
  .studio-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1024px) {
  .studio-hero-grid,
  .studio-split,
  .studio-brand-block {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    align-items: center;
  }

  .studio-hero-media {
    min-height: clamp(460px, 42vw, 620px);
  }

  .studio-split-reverse > :first-child {
    order: 2;
  }

  .studio-split-reverse > :last-child {
    order: 1;
  }
}

/* Why page */
.why-page {
  counter-reset: why-advantage;
}

.why-hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.why-hero-grid,
.why-core-block,
.why-advantages-grid,
.why-compare-grid,
.why-cta-panel {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.why-hero-copy,
.why-section-copy {
  max-width: 760px;
}

.why-hero-copy h1,
.why-section-copy h2,
.why-section-header h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.why-hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.why-section-copy h2,
.why-section-header h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  max-width: 14ch;
}

.why-hero-copy p,
.why-section-copy p,
.why-advantage p,
.why-compare-card li,
.why-reassurance-block li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
}

.why-hero-copy p {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  max-width: 38rem;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.why-hero-panel,
.why-core-block,
.why-advantage,
.why-compare-card,
.why-reassurance-block,
.why-trust-block,
.why-cta-panel {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(189, 201, 200, 0.34);
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.why-hero-panel,
.why-core-block,
.why-trust-block,
.why-cta-panel {
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.why-hero-panel {
  display: grid;
  align-content: end;
  min-height: clamp(240px, 34vw, 420px);
  background: linear-gradient(180deg, rgba(28, 36, 36, 0.96), rgba(16, 22, 22, 0.98));
  border-color: rgba(88, 109, 109, 0.24);
  box-shadow: 0 24px 56px rgba(14, 18, 18, 0.14);
}

.why-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.why-section-soft {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.52), rgba(251, 253, 253, 0));
}

.why-section-header {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.why-section-copy p + p {
  margin-top: 1rem;
}

.why-advantages-grid {
  grid-template-columns: 1fr;
}

.why-advantage {
  padding: clamp(1.35rem, 3vw, 1.9rem);
  min-height: 100%;
}

.why-advantage span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: rgba(0, 101, 101, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.why-advantage h3,
.why-compare-card h3 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text);
}

.why-advantage p {
  margin: 0.95rem 0 0;
  max-width: 30ch;
}

.why-compare-grid {
  grid-template-columns: 1fr;
}

.why-compare-card {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.why-compare-card ul,
.why-reassurance-block ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.why-compare-card li + li,
.why-reassurance-block li + li {
  margin-top: 0.5rem;
}

.why-compare-card-strong {
  background: rgba(194, 231, 230, 0.34);
  border-color: rgba(0, 101, 101, 0.16);
}

.why-reassurance-block {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.why-cta {
  padding-top: 0;
}

.why-cta-panel {
  align-items: center;
}

@media (max-width: 767px) {
  .why-hero-grid,
  .why-core-block,
  .why-trust-block,
  .why-cta-panel {
    position: relative;
    isolation: isolate;
  }

  .why-hero-grid::before,
  .why-core-block::before,
  .why-trust-block::before,
  .why-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 34%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(194, 231, 230, 0.18), rgba(0, 101, 101, 0.05));
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .why-advantages-grid,
  .why-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1024px) {
  .why-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: end;
  }

  .why-advantages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Services page */
.services-hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.services-hero-copy,
.services-section-copy {
  max-width: 780px;
}

.services-hero-copy h1,
.services-section-copy h2,
.services-section-header h2,
.services-detail-block h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.services-hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  max-width: 10ch;
}

.services-section-copy h2,
.services-section-header h2,
.services-detail-block h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 14ch;
}

.services-hero-copy p,
.services-section-copy p,
.services-card p,
.services-card li,
.services-process-card p,
.services-detail-block li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.services-hero-copy p {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  max-width: 34rem;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.services-intro-block,
.services-card,
.services-process-card,
.services-detail-block,
.services-cta-panel {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(189, 201, 200, 0.34);
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.services-intro-block,
.services-detail-block,
.services-cta-panel {
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.services-section-soft {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.52), rgba(251, 253, 253, 0));
}

.services-section-header {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.services-section-copy p + p {
  margin-top: 1rem;
}

.services-grid,
.services-process-grid,
.services-details-grid,
.services-cta-panel {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.services-grid,
.services-process-grid,
.services-details-grid {
  grid-template-columns: 1fr;
}

.services-card,
.services-process-card {
  padding: clamp(1.4rem, 3vw, 1.95rem);
}

.services-card h3,
.services-process-card h3,
.services-detail-group h3 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: var(--text);
}

.services-card p,
.services-process-card p {
  margin: 0.9rem 0 0;
}

.services-card ul,
.services-detail-block ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.services-card li + li,
.services-detail-block li + li {
  margin-top: 0.5rem;
}

.services-process-card span {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: rgba(0, 101, 101, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.services-process-card p {
  max-width: 26ch;
}

.services-detail-group + .services-detail-group {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.services-cta {
  padding-top: 0;
}

.services-cta-panel {
  align-items: center;
}

@media (max-width: 767px) {
  .services-intro-block,
  .services-cta-panel {
    position: relative;
    isolation: isolate;
  }

  .services-intro-block::before,
  .services-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 34%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(194, 231, 230, 0.18), rgba(0, 101, 101, 0.05));
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .services-grid,
  .services-process-grid,
  .services-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* Range editorial page */
.range-editorial-hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.range-editorial-hero-copy,
.range-editorial-section-copy {
  max-width: 860px;
}

.range-editorial-hero-copy h1,
.range-editorial-section-copy h2,
.range-editorial-featured-card h3,
.range-editorial-overlay h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.range-editorial-hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  max-width: 8ch;
}

.range-editorial-section-copy h2 {
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  max-width: 12ch;
}

.range-editorial-hero-copy p,
.range-editorial-section-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.range-editorial-hero-copy p {
  margin: clamp(1rem, 2vw, 1.45rem) 0 0;
  max-width: 32rem;
  font-size: clamp(1.08rem, 2vw, 1.2rem);
}

.range-editorial-soft {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.56), rgba(251, 253, 253, 0));
}

.range-editorial-grid,
.range-editorial-featured-row,
.range-editorial-strip-row,
.range-editorial-retail-panel,
.range-editorial-retail-copy,
.range-editorial-inline-list,
.range-editorial-micro-panel,
.range-editorial-cta-panel {
  display: grid;
  gap: clamp(1.1rem, 2.6vw, 2rem);
}

.range-editorial-grid {
  grid-template-columns: 1fr;
}

.range-editorial-card,
.range-editorial-featured-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 340px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(189, 201, 200, 0.28);
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.range-editorial-card {
  aspect-ratio: 4 / 5;
}

.range-editorial-featured-card {
  min-height: 420px;
}

.range-editorial-card img,
.range-editorial-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 300ms ease, filter 300ms ease;
}

.range-editorial-card::after,
.range-editorial-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 18, 0.06), rgba(10, 18, 18, 0.5) 100%);
  transition: background 300ms ease;
  z-index: 1;
}

.range-editorial-card:hover img,
.range-editorial-card:focus-within img,
.range-editorial-featured-card:hover img,
.range-editorial-featured-card:focus-within img {
  transform: scale(1.04);
  filter: brightness(0.9) saturate(0.94);
}

.range-editorial-card:hover::after,
.range-editorial-card:focus-within::after,
.range-editorial-featured-card:hover::after,
.range-editorial-featured-card:focus-within::after {
  background: linear-gradient(180deg, rgba(10, 18, 18, 0.12), rgba(10, 18, 18, 0.66) 100%);
}

.range-editorial-overlay {
  position: absolute;
  right: 1.3rem;
  bottom: 1.25rem;
  left: 1.3rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.range-editorial-overlay h2,
.range-editorial-featured-card h3 {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.range-editorial-featured-card h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}

.range-editorial-overlay span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease, color 300ms ease;
}

.range-editorial-card:hover .range-editorial-overlay h2,
.range-editorial-featured-card:hover h3 {
  color: #fff;
}

.range-editorial-card:hover .range-editorial-overlay span,
.range-editorial-card:focus-within .range-editorial-overlay span {
  opacity: 1;
  transform: translateX(0);
  color: #fff;
}

.range-editorial-card-branding {
  background: rgba(5, 31, 31, 0.94);
}

.range-editorial-card-branding img {
  object-fit: contain;
  padding: clamp(1rem, 2.5vw, 1.65rem);
}

.range-editorial-card-branding::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(5, 31, 31, 0.26));
}

.range-editorial-featured {
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

.range-editorial-featured-copy {
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.range-editorial-strip {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.range-editorial-strip-row {
  align-items: start;
}

.range-editorial-retail-panel {
  padding: clamp(1.4rem, 3vw, 1.9rem);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(189, 201, 200, 0.24);
  box-shadow: 0 16px 34px rgba(24, 28, 28, 0.045);
}

.range-editorial-retail-visual {
  margin: 0;
  min-height: 220px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.range-editorial-retail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.range-editorial-retail-copy {
  align-content: start;
}

.range-editorial-retail-copy p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.82;
}

.range-editorial-inline-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.range-editorial-inline-list article {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0 0 1rem;
  border-top: 1px solid rgba(0, 101, 101, 0.14);
  position: relative;
}

.range-editorial-inline-list article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.32rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 101, 101, 0.48);
}

.range-editorial-inline-list strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.range-editorial-inline-list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.range-editorial-micro,
.range-editorial-cta {
  padding-top: 0;
}

.range-editorial-micro-panel,
.range-editorial-cta-panel {
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.9rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.34);
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.range-editorial-cta-panel {
  background:
    linear-gradient(180deg, rgba(5, 31, 31, 0.98), rgba(18, 27, 27, 0.96));
  border-color: rgba(118, 214, 213, 0.12);
  box-shadow: 0 24px 54px rgba(16, 20, 20, 0.16);
}

.range-editorial-cta-panel .range-editorial-section-copy h2,
.range-editorial-cta-panel .range-editorial-section-copy p {
  color: #eff1f1;
}

.range-editorial-cta-panel .range-editorial-section-copy p {
  margin-top: 1rem;
  max-width: 28rem;
}

@media (max-width: 767px) {
  .range-editorial-micro-panel,
  .range-editorial-cta-panel {
    position: relative;
    isolation: isolate;
  }

  .range-editorial-micro-panel::before,
  .range-editorial-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 30%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(194, 231, 230, 0.12), rgba(0, 101, 101, 0.04));
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .range-editorial-grid,
  .range-editorial-featured-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .range-editorial-retail-panel {
    grid-template-columns: minmax(240px, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
  }

  .range-editorial-inline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .range-editorial-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
  }

  .range-editorial-card-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 11;
  }

  .range-editorial-card-tall {
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 720px;
  }

  .range-editorial-card-branding {
    grid-column: span 2;
    aspect-ratio: 16 / 11;
  }

  .range-editorial-featured-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .range-editorial-strip-row {
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  }

  .range-editorial-retail-panel {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  }

  .range-editorial-inline-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .range-editorial-micro-panel,
  .range-editorial-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 767px) {
  .range-editorial-retail-panel {
    padding: 1.15rem;
    border-radius: 18px;
  }

  .range-editorial-retail-visual {
    min-height: 180px;
    border-radius: 14px;
  }

  .range-editorial-inline-list article {
    padding-left: 0.9rem;
  }
}

/* Range retail panel rebalance */
.range-editorial-inline-list {
  gap: 1.1rem 1.5rem;
  margin-top: 0.5rem;
}

.range-editorial-inline-list article {
  gap: 0.42rem;
  padding-top: 1.05rem;
  min-height: 100%;
}

.range-editorial-inline-list strong {
  font-size: 1rem;
  line-height: 1.28;
}

.range-editorial-inline-list span {
  max-width: 18ch;
}

@media (min-width: 768px) {
  .range-editorial-inline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .range-editorial-inline-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1.8rem;
  }
}

/* Micro page */
.micro-hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.micro-hero-copy,
.micro-section-copy,
.micro-body-copy {
  max-width: 860px;
}

.micro-hero-copy h1,
.micro-section-copy h2,
.micro-offer-list h3,
.micro-process-track h3,
.micro-pricing-stages strong {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.micro-hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  max-width: 8.8ch;
}

.micro-section-copy h2 {
  font-size: clamp(2.15rem, 5vw, 4rem);
  max-width: 12ch;
}

.micro-hero-copy p,
.micro-section-copy p,
.micro-body-copy p,
.micro-offer-list p,
.micro-list-columns li,
.micro-transparency-panel p,
.micro-pricing-stages li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.micro-hero-copy > p {
  margin: clamp(1rem, 2vw, 1.45rem) 0 0;
  max-width: 35rem;
  font-size: clamp(1.08rem, 2vw, 1.2rem);
}

.micro-hero-support {
  margin-top: 1.35rem;
  color: var(--accent-ink);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.micro-section-soft {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.56), rgba(251, 253, 253, 0));
}

.micro-hero-grid,
.micro-intro-grid,
.micro-offer-grid,
.micro-why-grid,
.micro-list-columns,
.micro-process-track,
.micro-transparency-grid,
.micro-metrics-row,
.micro-pricing-stages,
.micro-reassurance-grid,
.micro-cta-panel {
  display: grid;
  gap: clamp(1.2rem, 2.8vw, 2rem);
}

.micro-hero-grid {
  align-items: end;
}

.micro-hero-visual {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(5, 31, 31, 0.98), rgba(18, 27, 27, 0.96));
  border: 1px solid rgba(118, 214, 213, 0.12);
  box-shadow: 0 24px 54px rgba(16, 20, 20, 0.16);
}

.micro-hero-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  min-height: clamp(280px, 36vw, 420px);
}

.micro-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.micro-hero-status {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.micro-hero-status span {
  color: rgba(239, 241, 241, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.micro-hero-progress {
  position: relative;
  margin-top: 0.85rem;
}

.micro-hero-progress-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 214, 213, 0.3), rgba(118, 214, 213, 0.7), rgba(118, 214, 213, 0.24));
}

.micro-hero-progress-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -5px;
}

.micro-hero-progress-points span {
  justify-self: start;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(118, 214, 213, 0.42);
  border: 2px solid rgba(18, 27, 27, 0.96);
}

.micro-hero-progress-points span:nth-child(2) {
  background: rgba(118, 214, 213, 0.72);
}

.micro-hero-detail {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(118, 214, 213, 0.14);
}

.micro-hero-detail strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  color: #eff1f1;
  letter-spacing: -0.03em;
}

.micro-hero-detail p {
  margin: 0;
  color: rgba(239, 241, 241, 0.74);
  line-height: 1.8;
}

.micro-metrics {
  padding-top: 0;
}

.micro-metrics-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.micro-metrics-row div {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 101, 101, 0.16);
}

.micro-metrics-row strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.micro-metrics-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.micro-intro {
  padding-top: 0;
}

.micro-body-copy p {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.04rem, 2vw, 1.16rem);
}

.micro-body-copy p + p {
  margin-top: 1rem;
}

.micro-offer-media {
  margin: 0;
  display: grid;
  gap: 1rem;
  min-height: 360px;
}

.micro-offer-media-main,
.micro-offer-media-detail {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.28);
  box-shadow: 0 16px 34px rgba(24, 28, 28, 0.05);
}

.micro-offer-media-main {
  min-height: 300px;
}

.micro-offer-media-detail {
  min-height: 180px;
}

.micro-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.micro-offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem 1.5rem;
  margin-top: 1.5rem;
}

.micro-offer-list article,
.micro-transparency-panel div,
.micro-pricing-stages article,
.micro-cta-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.34);
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.micro-offer-list article,
.micro-transparency-panel div,
.micro-pricing-stages article {
  padding: clamp(1.2rem, 3vw, 1.7rem);
}

.micro-offer-list h3 {
  font-size: 1.12rem;
  line-height: 1.2;
}

.micro-offer-list p {
  margin: 0.65rem 0 0;
}

.micro-why {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.micro-list-columns {
  grid-template-columns: 1fr;
}

.micro-list-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.micro-list-columns li {
  position: relative;
  padding: 0.95rem 0 0.95rem 1.1rem;
  border-top: 1px solid rgba(0, 101, 101, 0.16);
  font-size: clamp(1rem, 1.7vw, 1.08rem);
}

.micro-list-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 101, 101, 0.52);
}

.micro-process {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.micro-process-heading {
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}

.micro-process-track {
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.micro-process-track li {
  position: relative;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.34);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.micro-process-track li::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 1.3rem;
  width: 1px;
  height: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(180deg, rgba(0, 101, 101, 0.28), rgba(0, 101, 101, 0));
}

.micro-process-track li:last-child::after {
  display: none;
}

.micro-process-track span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: rgba(0, 101, 101, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.micro-process-track h3 {
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.micro-transparency {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.micro-transparency-panel {
  display: grid;
  gap: 1rem;
}

.micro-transparency-panel strong,
.micro-pricing-stages span {
  display: block;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.micro-transparency-panel p {
  margin: 0.55rem 0 0;
}

.micro-pricing {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.micro-pricing-heading {
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
}

.micro-pricing-stages {
  grid-template-columns: 1fr;
}

.micro-pricing-stages span {
  margin-bottom: 0.7rem;
  color: var(--accent);
}

.micro-pricing-stages strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.05;
}

.micro-pricing-stages ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.micro-pricing-stages li + li {
  margin-top: 0.45rem;
}

.micro-reassurance {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.micro-cta {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.micro-cta-panel {
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(5, 31, 31, 0.98), rgba(18, 27, 27, 0.96));
  border: 1px solid rgba(118, 214, 213, 0.12);
  box-shadow: 0 24px 54px rgba(16, 20, 20, 0.16);
}

.micro-cta-panel .micro-section-copy h2,
.micro-cta-panel .micro-section-copy p {
  color: #eff1f1;
}

.micro-cta-panel .micro-section-copy p {
  margin-top: 1rem;
  max-width: 34rem;
}

@media (max-width: 767px) {
  .micro-hero-visual,
  .micro-cta-panel {
    position: relative;
    isolation: isolate;
  }

  .micro-hero-visual::before,
  .micro-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 30%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(194, 231, 230, 0.12), rgba(0, 101, 101, 0.04));
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .micro-metrics-row,
  .micro-offer-list,
  .micro-list-columns,
  .micro-pricing-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .micro-transparency-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .micro-hero-grid,
  .micro-intro-grid,
  .micro-why-grid,
  .micro-transparency-grid,
  .micro-reassurance-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  }

  .micro-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  }

  .micro-offer-grid {
    grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
  }

  .micro-offer-media {
    align-content: start;
    gap: 1.15rem;
  }

  .micro-offer-media-main {
    min-height: 310px;
  }

  .micro-offer-media-detail {
    min-height: 220px;
    max-width: 72%;
  }

  .micro-process-track {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    position: relative;
  }

  .micro-process-track::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 101, 101, 0.12), rgba(0, 101, 101, 0.28), rgba(0, 101, 101, 0.12));
  }

  .micro-process-track li::after {
    display: none;
  }

  .micro-pricing-stages {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .micro-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 767px) {
  .micro-offer-media {
    gap: 0.85rem;
  }

  .micro-offer-media-main,
  .micro-offer-media-detail {
    border-radius: 16px;
  }

  .micro-offer-media-main {
    min-height: 240px;
  }

  .micro-offer-media-detail {
    min-height: 140px;
    max-width: 100%;
  }
}

/* Studio page polish */
.studio-page .section {
  padding: 120px 0;
}

.studio-hero-grid,
.studio-split,
.studio-brand-block,
.studio-cta-panel {
  gap: clamp(2.5rem, 4vw, 3.75rem);
}

.studio-hero-copy,
.studio-section-copy {
  max-width: 780px;
}

.studio-hero-copy h1,
.studio-section-copy h2 {
  line-height: 0.94;
}

.studio-hero-copy h1 {
  max-width: 10ch;
}

.studio-section-copy h2 {
  max-width: 12ch;
}

.studio-page .studio-section-copy h2::before {
  margin-bottom: 1.1rem;
}

.studio-lead,
.studio-section-copy p,
.studio-points li,
.studio-model-card p {
  font-size: 1.08rem;
  line-height: 1.92;
}

.studio-lead {
  margin-top: 1.5rem;
}

.studio-short-line {
  margin-top: 1.5rem;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
}

.studio-section-copy p + p {
  margin-top: 1.15rem;
}

.studio-hero-media,
.studio-visual-panel,
.studio-brand-visual,
.studio-media-card,
.studio-model-card {
  border-radius: 16px;
}

.studio-hero-media,
.studio-visual-panel,
.studio-brand-visual {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.studio-hero-media {
  min-height: clamp(360px, 44vw, 640px);
}

.studio-hero-media-grid,
.studio-hero-media-subgrid {
  gap: 16px;
}

.studio-media-card,
.studio-visual-panel img,
.studio-brand-visual img {
  box-shadow: 0 16px 34px rgba(24, 28, 28, 0.08);
}

.studio-media-card,
.studio-visual-panel,
.studio-brand-visual {
  margin: 0;
  overflow: hidden;
}

.studio-media-card img,
.studio-visual-panel img,
.studio-brand-visual img {
  border-radius: 16px;
}

.studio-media-card-main,
.studio-media-card-secondary,
.studio-media-card-tertiary,
.studio-visual-panel,
.studio-brand-visual {
  border-radius: 16px;
}

.studio-visual-panel {
  min-height: clamp(320px, 38vw, 520px);
}

.studio-model-grid {
  gap: 1.6rem 2.25rem;
  margin: 1.75rem 0;
}

.studio-model-card {
  padding: 1rem 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 101, 101, 0.16);
  box-shadow: none;
}

.studio-points {
  margin-top: 1.35rem;
}

.studio-points li + li {
  margin-top: 0.7rem;
}

.studio-brand-visual {
  min-height: clamp(300px, 34vw, 420px);
  align-self: center;
}

.studio-brand-visual img {
  width: min(82%, 400px);
}

.studio-cta {
  padding-top: 120px;
  padding-bottom: 160px;
}

.studio-cta-panel {
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 250, 0.72));
  border: 1px solid rgba(189, 201, 200, 0.26);
  box-shadow: 0 22px 52px rgba(24, 28, 28, 0.07);
}

.studio-cta-panel .studio-section-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.studio-cta-panel .studio-section-copy p {
  max-width: 34rem;
}

.studio-page + .footer {
  margin-top: 0;
}

@media (max-width: 767px) {
  .studio-page .section {
    padding: 88px 0;
  }

  .studio-hero-grid,
  .studio-split,
  .studio-brand-block,
  .studio-cta-panel {
    gap: 2.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .studio-lead,
  .studio-section-copy p,
  .studio-points li,
  .studio-model-card p {
    font-size: 1.03rem;
    line-height: 1.86;
  }

  .studio-short-line {
    display: block;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .studio-hero-media-grid,
  .studio-hero-media-subgrid {
    gap: 12px;
  }

  .studio-model-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .studio-cta {
    padding-top: 88px;
    padding-bottom: 120px;
  }

  .studio-cta-panel {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
}

@media (min-width: 768px) {
  .studio-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .studio-brand-block,
  .studio-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1100px) {
  .studio-hero-grid,
  .studio-split,
  .studio-brand-block {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    align-items: center;
  }
}

/* Services system page */
.services-system-hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.services-system-hero-copy,
.services-system-section-copy,
.services-detail-text {
  max-width: 820px;
}

.services-system-hero-copy h1,
.services-system-section-copy h2,
.services-detail-text h2,
.services-data-block h2 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.services-system-hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  max-width: 8.8ch;
}

.services-system-section-copy h2,
.services-detail-text h2,
.services-data-block h2 {
  font-size: clamp(2.15rem, 5vw, 3.8rem);
  max-width: 13ch;
}

.services-system-hero-copy p,
.services-system-section-copy p,
.services-flow-step p,
.services-detail-text li,
.services-data-list span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.services-system-hero-copy p {
  margin: clamp(1rem, 2vw, 1.45rem) 0 0;
  max-width: 34rem;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
}

.services-system-soft {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.56), rgba(251, 253, 253, 0));
}

.services-flow-track,
.services-detail-row,
.services-included-grid,
.services-snapshot-steps,
.services-data-grid,
.services-system-cta-panel {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.services-flow-track {
  position: relative;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-flow-step {
  position: relative;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.34);
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(24, 28, 28, 0.05);
}

.services-flow-step::after {
  content: "";
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 1.2rem;
  width: 1px;
  height: clamp(1rem, 2vw, 1.4rem);
  background: linear-gradient(180deg, rgba(0, 101, 101, 0.3), rgba(0, 101, 101, 0));
}

.services-flow-step:last-child::after {
  display: none;
}

.services-flow-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(194, 231, 230, 0.42);
  border: 1px solid rgba(0, 101, 101, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.services-flow-step h3,
.services-snapshot-steps h3 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--text);
}

.services-flow-step p {
  margin: 0.85rem 0 0;
  max-width: 24ch;
}

.services-detail-row {
  grid-template-columns: 1fr;
  align-items: center;
}

.services-detail-media {
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.34);
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.services-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-detail-text {
  padding: clamp(0.5rem, 2vw, 1rem) 0;
}

.services-detail-text ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.services-detail-text li + li {
  margin-top: 0.55rem;
}

.services-included {
  padding-top: 0;
}

.services-included-grid {
  grid-template-columns: 1fr;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.services-included-grid div {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 101, 101, 0.18);
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.services-snapshot {
  padding-top: 0;
}

.services-snapshot-panel,
.services-data-block,
.services-system-cta-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(189, 201, 200, 0.34);
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.services-snapshot-panel,
.services-data-block,
.services-system-cta-panel {
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.services-snapshot-steps {
  grid-template-columns: 1fr;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.services-snapshot-steps article {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 101, 101, 0.16);
}

.services-snapshot-steps span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: rgba(0, 101, 101, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.services-data {
  padding-top: 0;
}

.services-data-grid {
  grid-template-columns: 1fr;
}

.services-data-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.services-data-list div {
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 101, 101, 0.16);
}

.services-data-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.services-system-cta {
  padding-top: 0;
}

.services-system-cta-panel {
  align-items: center;
}

@media (max-width: 767px) {
  .services-snapshot-panel,
  .services-data-block,
  .services-system-cta-panel {
    position: relative;
    isolation: isolate;
  }

  .services-snapshot-panel::before,
  .services-data-block::before,
  .services-system-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 34%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(194, 231, 230, 0.18), rgba(0, 101, 101, 0.05));
    z-index: -1;
  }
}

@media (min-width: 768px) {
  .services-included-grid,
  .services-snapshot-steps,
  .services-data-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .services-flow-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-flow-track::before {
    content: "";
    position: absolute;
    top: 26px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 101, 101, 0.12), rgba(0, 101, 101, 0.28), rgba(0, 101, 101, 0.12));
  }

  .services-flow-step::after {
    display: none;
  }

  .services-detail-row {
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .services-detail-row-reverse .services-detail-media {
    order: 2;
  }

  .services-detail-row-reverse .services-detail-text {
    order: 1;
  }

  .services-included-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-snapshot-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-data-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-system-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* Why editorial page */
.why-editorial-hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.why-editorial-hero-copy,
.why-editorial-core-copy,
.why-editorial-section-copy,
.why-editorial-body-copy {
  max-width: 860px;
}

.why-editorial-hero-copy h1,
.why-editorial-core-copy h2,
.why-editorial-section-copy h2,
.why-editorial-compare-block h3 {
  margin: 0;
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.why-editorial-hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  max-width: 9ch;
}

.why-editorial-core-copy h2,
.why-editorial-section-copy h2 {
  font-size: clamp(2.3rem, 5.4vw, 4.1rem);
  max-width: 11ch;
}

.why-editorial-hero-copy p,
.why-editorial-core-copy p,
.why-editorial-body-copy p,
.why-editorial-list-block li,
.why-editorial-compare-block li,
.why-editorial-section-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.why-editorial-hero-copy p {
  margin: clamp(1rem, 2vw, 1.45rem) 0 0;
  max-width: 34rem;
  font-size: clamp(1.08rem, 2vw, 1.2rem);
}

.why-editorial-soft {
  background: linear-gradient(180deg, rgba(241, 244, 244, 0.56), rgba(251, 253, 253, 0));
}

.why-editorial-hero-grid,
.why-editorial-difference-grid,
.why-editorial-experience-grid,
.why-editorial-reassurance-grid,
.why-editorial-compare-grid,
.why-editorial-cta-panel {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.why-editorial-hero-grid {
  align-items: end;
}

.why-editorial-hero-visual {
  margin: 0;
  min-height: clamp(320px, 44vw, 560px);
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(5, 31, 31, 0.3), rgba(5, 31, 31, 0.72)),
    radial-gradient(circle at top left, rgba(118, 214, 213, 0.22), transparent 40%),
    rgba(5, 31, 31, 0.94);
  border: 1px solid rgba(189, 201, 200, 0.16);
  box-shadow: 0 24px 54px rgba(16, 20, 20, 0.16);
}

.why-editorial-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  mix-blend-mode: screen;
}

.why-editorial-core {
  padding-top: 0;
}

.why-editorial-core-copy p {
  margin: 1.2rem 0 0;
  max-width: 44rem;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
}

.why-editorial-difference {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.why-editorial-list-block ul,
.why-editorial-compare-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-editorial-list-block li,
.why-editorial-compare-block li {
  position: relative;
  padding: 0.95rem 0 0.95rem 1.1rem;
  border-top: 1px solid rgba(0, 101, 101, 0.16);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
}

.why-editorial-list-block li::before,
.why-editorial-compare-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 101, 101, 0.52);
}

.why-editorial-body-copy p,
.why-editorial-section-copy p {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.16rem);
}

.why-editorial-comparison-heading {
  margin-bottom: clamp(1.4rem, 3vw, 2.25rem);
}

.why-editorial-compare-grid {
  grid-template-columns: 1fr;
}

.why-editorial-compare-block {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(189, 201, 200, 0.34);
  box-shadow: 0 18px 44px rgba(24, 28, 28, 0.06);
}

.why-editorial-compare-block h3 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin-bottom: 1rem;
}

.why-editorial-compare-block-strong {
  background:
    linear-gradient(180deg, rgba(5, 31, 31, 0.98), rgba(18, 27, 27, 0.96));
  border-color: rgba(118, 214, 213, 0.12);
  box-shadow: 0 24px 54px rgba(16, 20, 20, 0.16);
}

.why-editorial-compare-block-strong h3,
.why-editorial-compare-block-strong li {
  color: #eff1f1;
}

.why-editorial-compare-block-strong li {
  border-top-color: rgba(118, 214, 213, 0.16);
}

.why-editorial-compare-block-strong li::before {
  background: rgba(118, 214, 213, 0.72);
}

.why-editorial-reassurance {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.why-editorial-list-block-strong li {
  font-size: clamp(1.08rem, 1.8vw, 1.18rem);
}

.why-editorial-cta {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.why-editorial-cta-panel {
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(5, 31, 31, 0.98), rgba(18, 27, 27, 0.96));
  border: 1px solid rgba(118, 214, 213, 0.12);
  box-shadow: 0 24px 54px rgba(16, 20, 20, 0.16);
}

.why-editorial-cta-panel .why-editorial-section-copy h2,
.why-editorial-cta-panel .why-editorial-section-copy p {
  color: #eff1f1;
}

.why-editorial-cta-panel .why-editorial-section-copy p {
  margin-top: 1rem;
  max-width: 34rem;
}

@media (max-width: 767px) {
  .why-editorial-hero-visual,
  .why-editorial-cta-panel {
    position: relative;
    isolation: isolate;
  }

  .why-editorial-hero-visual::before,
  .why-editorial-cta-panel::before {
    content: "";
    position: absolute;
    inset: auto 12px 12px 12px;
    height: 30%;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(194, 231, 230, 0.12), rgba(0, 101, 101, 0.04));
    z-index: -1;
  }
}

@media (min-width: 980px) {
  .why-editorial-hero-grid,
  .why-editorial-difference-grid,
  .why-editorial-experience-grid,
  .why-editorial-reassurance-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .why-editorial-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  }

  .why-editorial-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-editorial-cta-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* Why page final polish */
.why-editorial-page .section {
  padding: 108px 0;
}

.why-editorial-hero-grid,
.why-editorial-difference-grid,
.why-editorial-experience-grid,
.why-editorial-reassurance-grid,
.why-editorial-compare-grid,
.why-editorial-cta-panel {
  gap: clamp(1.75rem, 3.6vw, 3rem);
}

.why-editorial-hero-visual {
  min-height: clamp(320px, 42vw, 540px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(5, 31, 31, 0.1), rgba(5, 31, 31, 0.34)),
    radial-gradient(circle at top left, rgba(118, 214, 213, 0.16), transparent 42%),
    rgba(251, 253, 253, 0.96);
  border: 1px solid rgba(189, 201, 200, 0.22);
  box-shadow: 0 18px 38px rgba(24, 28, 28, 0.08);
}

.why-editorial-hero-visual img {
  opacity: 0.96;
  mix-blend-mode: normal;
}

.why-editorial-core {
  padding-top: 88px;
}

.why-editorial-difference,
.why-editorial-reassurance,
.why-editorial-cta {
  padding-top: 88px;
}

.why-editorial-section-copy p,
.why-editorial-body-copy p,
.why-editorial-core-copy p,
.why-editorial-hero-copy p {
  font-size: clamp(1.04rem, 1.6vw, 1.14rem);
  line-height: 1.92;
}

.why-editorial-list-block ul,
.why-editorial-compare-block ul {
  display: grid;
  gap: 0.95rem;
}

.why-editorial-list-block li,
.why-editorial-compare-block li {
  padding: 0 0 0 1.15rem;
  border-top: 0;
  line-height: 1.8;
}

.why-editorial-list-block li::before,
.why-editorial-compare-block li::before {
  top: 0.8rem;
  width: 7px;
  height: 7px;
  background: rgba(0, 101, 101, 0.42);
}

.why-editorial-list-block-strong li {
  font-size: clamp(1.05rem, 1.7vw, 1.16rem);
}

.why-editorial-comparison-heading {
  margin-bottom: clamp(1.75rem, 3.2vw, 2.5rem);
}

.why-editorial-compare-block {
  padding: clamp(2rem, 4.6vw, 3rem);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(24, 28, 28, 0.05);
}

.why-editorial-compare-block h3 {
  margin-bottom: 1.35rem;
}

.why-editorial-compare-block-strong {
  box-shadow: 0 22px 48px rgba(16, 20, 20, 0.14);
}

.why-editorial-cta {
  padding-bottom: 156px;
}

.why-editorial-cta-panel {
  padding: clamp(2.5rem, 5.5vw, 4.5rem);
  border-radius: 30px;
  box-shadow: 0 28px 62px rgba(16, 20, 20, 0.16);
}

.why-editorial-cta-panel .why-editorial-section-copy h2 {
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
}

.why-editorial-cta-panel .why-editorial-section-copy p {
  margin-top: 1.1rem;
  max-width: 36rem;
}

.why-editorial-page + .footer {
  margin-top: 0;
}

@media (max-width: 767px) {
  .why-editorial-page .section {
    padding: 82px 0;
  }

  .why-editorial-hero-grid,
  .why-editorial-difference-grid,
  .why-editorial-experience-grid,
  .why-editorial-reassurance-grid,
  .why-editorial-compare-grid,
  .why-editorial-cta-panel {
    gap: 1.5rem;
  }

  .why-editorial-hero-visual {
    min-height: 280px;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(24, 28, 28, 0.07);
  }

  .why-editorial-core,
  .why-editorial-difference,
  .why-editorial-reassurance,
  .why-editorial-cta {
    padding-top: 70px;
  }

  .why-editorial-section-copy h2,
  .why-editorial-core-copy h2 {
    max-width: 9ch;
  }

  .why-editorial-list-block ul,
  .why-editorial-compare-block ul {
    gap: 0.8rem;
  }

  .why-editorial-list-block li,
  .why-editorial-compare-block li {
    padding-left: 1rem;
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .why-editorial-list-block li::before,
  .why-editorial-compare-block li::before {
    top: 0.7rem;
  }

  .why-editorial-compare-block {
    padding: 1.7rem 1.45rem;
    border-radius: 22px;
  }

  .why-editorial-cta {
    padding-bottom: 120px;
  }

  .why-editorial-cta-panel {
    padding: 2.15rem 1.4rem;
    border-radius: 22px;
  }
}

/* Services page final polish */
.services-system-page .section {
  padding: 120px 0;
}

.services-system-hero {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.services-system-hero-copy h1 {
  font-size: clamp(3.45rem, 8vw, 6.9rem);
  margin-bottom: clamp(1.15rem, 2.3vw, 1.8rem);
  max-width: 9.2ch;
}

.services-system-section-copy h2,
.services-detail-text h2,
.services-data-block h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin: 0 0 clamp(1rem, 2vw, 1.4rem);
}

.services-system-hero-copy p,
.services-system-section-copy p,
.services-flow-step p,
.services-detail-text li,
.services-data-list span {
  font-size: 1.06rem;
  line-height: 1.9;
}

.services-system-hero-copy p {
  margin-top: 0;
  max-width: 38rem;
  font-size: clamp(1.14rem, 2vw, 1.3rem);
  line-height: 1.8;
}

.services-flow-track,
.services-detail-row,
.services-included-grid,
.services-snapshot-steps,
.services-data-grid,
.services-system-cta-panel {
  gap: clamp(1.4rem, 2.7vw, 2.3rem);
}

.services-flow-track {
  max-width: 1480px;
}

.services-flow-step {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 16px;
  border-color: rgba(189, 201, 200, 0.26);
  box-shadow: 0 12px 28px rgba(24, 28, 28, 0.035);
}

.services-flow-marker {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
}

.services-flow-step h3,
.services-snapshot-steps h3 {
  font-size: 1.26rem;
  line-height: 1.28;
}

.services-flow-step p {
  margin-top: 0.95rem;
  max-width: 26ch;
}

.services-detail-row {
  gap: clamp(2.4rem, 5vw, 3.75rem);
  align-items: center;
}

.services-detail-media {
  min-height: 420px;
  border-radius: 16px;
  border-color: rgba(189, 201, 200, 0.24);
  box-shadow: 0 16px 34px rgba(24, 28, 28, 0.045);
}

.services-detail-text {
  padding: 0;
}

.services-detail-text ul {
  margin-top: 1.25rem;
  padding-left: 1.25rem;
}

.services-detail-text li + li {
  margin-top: 0.7rem;
}

.services-included {
  padding-top: 120px;
}

.services-included-grid {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  gap: clamp(1rem, 2vw, 1.6rem) clamp(1.8rem, 3vw, 2.6rem);
}

.services-included-grid div {
  position: relative;
  padding-top: 0;
  padding-left: 1.05rem;
  border-top: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}

.services-included-grid div::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 101, 101, 0.42);
}

.services-snapshot {
  padding-top: 120px;
}

.services-snapshot-panel,
.services-data-block,
.services-system-cta-panel {
  border-radius: 16px;
  border-color: rgba(189, 201, 200, 0.24);
  box-shadow: 0 16px 34px rgba(24, 28, 28, 0.04);
}

.services-snapshot-panel,
.services-data-block {
  padding: clamp(2rem, 4vw, 3.35rem);
}

.services-snapshot-steps {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.services-snapshot-steps article {
  padding-top: 0;
  padding-left: 1.15rem;
  border-top: 0;
  border-left: 1px solid rgba(0, 101, 101, 0.1);
}

.services-snapshot-steps span {
  margin-bottom: 0.85rem;
}

.services-data {
  padding-top: 120px;
}

.services-data-grid {
  gap: 0;
}

.services-data-list {
  gap: clamp(1.25rem, 2.3vw, 1.8rem);
  margin-top: 1.8rem;
}

.services-data-list div {
  padding-top: 0;
  padding-left: 1.2rem;
  border-top: 0;
  border-left: 1px solid rgba(0, 101, 101, 0.1);
}

.services-data-list strong {
  margin-bottom: 0.38rem;
  font-size: 1.08rem;
}

.services-system-cta {
  padding-top: 120px;
  padding-bottom: 156px;
}

.services-system-cta-panel {
  padding: clamp(2.35rem, 5vw, 4rem);
  gap: clamp(1.5rem, 3vw, 2.4rem);
  align-items: center;
}

.services-system-cta-panel .services-system-section-copy h2 {
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  margin-bottom: 0.9rem;
}

.services-system-cta-panel .hero-actions {
  gap: 0.95rem;
}

@media (min-width: 1100px) {
  .services-detail-row {
    grid-template-columns: minmax(420px, 0.94fr) minmax(0, 1fr);
    gap: clamp(3rem, 5vw, 4.6rem);
  }

  .services-flow-track {
    gap: clamp(1.3rem, 2vw, 1.8rem);
  }

  .services-flow-track::before {
    top: 24px;
    right: 9%;
    left: 9%;
    background: linear-gradient(90deg, rgba(0, 101, 101, 0.08), rgba(0, 101, 101, 0.2), rgba(0, 101, 101, 0.08));
  }
}

@media (max-width: 1099px) {
  .services-detail-media {
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .services-system-page .section {
    padding: 88px 0;
  }

  .services-system-hero {
    padding-top: 92px;
  }

  .services-system-hero-copy h1 {
    font-size: clamp(3rem, 12vw, 4.3rem);
    margin-bottom: 1rem;
  }

  .services-system-hero-copy p,
  .services-system-section-copy p,
  .services-flow-step p,
  .services-detail-text li,
  .services-data-list span {
    font-size: 1rem;
    line-height: 1.8;
  }

  .services-flow-step,
  .services-snapshot-panel,
  .services-data-block,
  .services-system-cta-panel {
    border-radius: 16px;
  }

  .services-flow-step {
    padding: 1.5rem;
  }

  .services-detail-row {
    gap: 2rem;
  }

  .services-detail-media {
    min-height: 280px;
  }

  .services-included-grid,
  .services-snapshot-steps,
  .services-data-list {
    gap: 1rem;
  }

  .services-included-grid div,
  .services-snapshot-steps article,
  .services-data-list div {
    padding-left: 0.95rem;
  }

  .services-snapshot-panel,
  .services-data-block,
  .services-system-cta-panel {
    padding: 1.55rem;
  }

  .services-snapshot-panel::before,
  .services-data-block::before,
  .services-system-cta-panel::before {
    display: none;
  }

  .services-system-cta {
    padding-bottom: 116px;
  }

  .services-system-cta-panel .hero-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Services page visual support */
.services-detail-text,
.services-detail-panel,
.services-detail-panel-stack,
.services-detail-sequence,
.services-detail-panel-grid,
.services-detail-checks {
  display: grid;
}

.services-detail-text {
  gap: 1.35rem;
}

.services-detail-text ul {
  margin-top: 0;
}

.services-detail-panel {
  gap: 1rem;
  margin-top: 0.35rem;
  padding: 1.35rem 1.45rem;
  border-radius: 16px;
  border: 1px solid rgba(189, 201, 200, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(243, 247, 247, 0.92));
  box-shadow: 0 14px 30px rgba(24, 28, 28, 0.035);
}

.services-detail-panel-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(194, 231, 230, 0.42);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.services-detail-panel-stack {
  gap: 0.9rem;
}

.services-detail-panel-stack div,
.services-detail-panel-grid div {
  display: grid;
  align-items: center;
}

.services-detail-panel-stack div {
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 1rem;
}

.services-detail-panel-stack span,
.services-detail-sequence div,
.services-detail-panel-grid strong,
.services-detail-checks span {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.03em;
}

.services-detail-panel-stack i {
  position: relative;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 101, 101, 0.08);
  overflow: hidden;
}

.services-detail-panel-stack i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 80%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 101, 101, 0.52), rgba(118, 214, 213, 0.42));
}

.services-detail-panel-stack div:nth-child(2) i::before {
  width: 68%;
}

.services-detail-panel-stack div:nth-child(3) i::before {
  width: 74%;
}

.services-detail-sequence {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.services-detail-sequence div {
  position: relative;
  min-height: 84px;
  padding: 1rem 0.95rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(189, 201, 200, 0.16);
}

.services-detail-sequence div::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.42rem;
  width: 0.8rem;
  height: 1px;
  background: rgba(0, 101, 101, 0.16);
}

.services-detail-sequence div:last-child::after {
  display: none;
}

.services-detail-panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-detail-panel-grid div {
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(189, 201, 200, 0.16);
}

.services-detail-panel-grid strong {
  font-size: 0.92rem;
}

.services-detail-panel-grid span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.services-detail-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.services-detail-checks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(189, 201, 200, 0.16);
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .services-detail-panel {
    padding: 1.15rem;
  }

  .services-detail-panel-stack div,
  .services-detail-sequence,
  .services-detail-panel-grid,
  .services-detail-checks {
    grid-template-columns: 1fr;
  }

  .services-detail-sequence div {
    min-height: auto;
  }

  .services-detail-sequence div::after {
    top: auto;
    right: auto;
    bottom: -0.4rem;
    left: 1rem;
    width: 1px;
    height: 0.8rem;
  }
}

/* Why page visual support */
.why-editorial-core-grid,
.why-editorial-difference-stack,
.why-editorial-core-flow,
.why-editorial-difference-bars,
.why-editorial-experience-metrics {
  display: grid;
}

.why-editorial-core-grid {
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: start;
}

.why-editorial-core-copy,
.why-editorial-difference-stack,
.why-editorial-body-copy {
  max-width: none;
}

.why-editorial-core-panel,
.why-editorial-difference-panel,
.why-editorial-experience-metrics {
  border-radius: 20px;
  border: 1px solid rgba(189, 201, 200, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 248, 248, 0.9));
  box-shadow: 0 16px 34px rgba(24, 28, 28, 0.04);
}

.why-editorial-core-panel,
.why-editorial-difference-panel {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.why-editorial-panel-head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.why-editorial-panel-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(194, 231, 230, 0.4);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.why-editorial-panel-head strong,
.why-editorial-core-flow strong,
.why-editorial-experience-metrics strong,
.why-editorial-difference-bars span {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  color: var(--text);
  letter-spacing: -0.03em;
}

.why-editorial-panel-head strong {
  max-width: 24ch;
  font-size: 1.22rem;
  line-height: 1.35;
}

.why-editorial-core-flow {
  gap: 0.9rem;
}

.why-editorial-core-flow div {
  position: relative;
  display: grid;
  gap: 0.18rem;
  padding-left: 1.3rem;
}

.why-editorial-core-flow div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 101, 101, 0.5);
  box-shadow: 0 0 0 6px rgba(194, 231, 230, 0.22);
}

.why-editorial-core-flow span,
.why-editorial-experience-metrics span {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.why-editorial-difference-grid,
.why-editorial-experience-grid {
  align-items: start;
}

.why-editorial-difference-stack {
  gap: 1.5rem;
}

.why-editorial-difference-panel {
  gap: 1.1rem;
}

.why-editorial-difference-bars {
  gap: 0.95rem;
}

.why-editorial-difference-bars div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 1rem;
  align-items: center;
}

.why-editorial-difference-bars i {
  position: relative;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 101, 101, 0.08);
  overflow: hidden;
}

.why-editorial-difference-bars i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 78%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 101, 101, 0.52), rgba(118, 214, 213, 0.48));
}

.why-editorial-difference-bars div:nth-child(2) i::before {
  width: 86%;
}

.why-editorial-difference-bars div:nth-child(3) i::before {
  width: 74%;
}

.why-editorial-difference-bars div:nth-child(4) i::before {
  width: 82%;
}

.why-editorial-body-copy {
  display: grid;
  gap: 1.6rem;
}

.why-editorial-experience-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.25rem, 2.8vw, 1.8rem);
}

.why-editorial-experience-metrics div {
  display: grid;
  gap: 0.25rem;
}

.why-editorial-experience-metrics strong {
  font-size: 1rem;
}

@media (min-width: 980px) {
  .why-editorial-core-grid,
  .why-editorial-difference-grid,
  .why-editorial-experience-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  }

  .why-editorial-difference-stack {
    max-width: 760px;
  }
}

@media (max-width: 979px) {
  .why-editorial-core-grid,
  .why-editorial-difference-grid,
  .why-editorial-experience-grid {
    gap: 1.6rem;
  }

  .why-editorial-experience-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .why-editorial-core-panel,
  .why-editorial-difference-panel,
  .why-editorial-experience-metrics {
    border-radius: 16px;
  }

  .why-editorial-panel-head strong {
    font-size: 1.08rem;
  }

  .why-editorial-difference-bars div {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .why-editorial-difference-bars i {
    height: 7px;
  }

  .why-editorial-experience-metrics {
    padding: 1.2rem;
  }
}

/* Why page heading refinement */
.why-editorial-hero-copy h1,
.why-editorial-core-copy h2,
.why-editorial-section-copy h2 {
  text-wrap: balance;
}

.why-editorial-hero-copy {
  display: grid;
  gap: 1.25rem;
  align-content: end;
}

.why-editorial-hero-copy h1 {
  max-width: 8.3ch;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.why-editorial-core-copy,
.why-editorial-section-copy {
  display: grid;
  align-content: start;
}

.why-editorial-core-copy h2,
.why-editorial-section-copy h2 {
  position: relative;
  padding-top: 1.1rem;
  max-width: 8.8ch;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.why-editorial-core-copy h2::before,
.why-editorial-section-copy h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 101, 101, 0.78), rgba(118, 214, 213, 0.24));
}

.why-editorial-core-copy p,
.why-editorial-section-copy p,
.why-editorial-body-copy p {
  max-width: 38rem;
}

.why-editorial-core-grid,
.why-editorial-difference-grid,
.why-editorial-experience-grid,
.why-editorial-reassurance-grid {
  align-items: start;
}

.why-editorial-difference-grid .why-editorial-section-copy h2,
.why-editorial-experience-grid .why-editorial-section-copy h2,
.why-editorial-reassurance-grid .why-editorial-section-copy h2 {
  max-width: 7.6ch;
}

.why-editorial-comparison-heading h2 {
  max-width: 7.2ch;
}

@media (min-width: 980px) {
  .why-editorial-core-grid,
  .why-editorial-difference-grid,
  .why-editorial-experience-grid,
  .why-editorial-reassurance-grid {
    grid-template-columns: minmax(280px, 0.8fr) minmax(480px, 1.2fr);
    gap: clamp(2.4rem, 4.5vw, 4.4rem);
  }

  .why-editorial-hero-grid {
    grid-template-columns: minmax(320px, 0.88fr) minmax(520px, 1.12fr);
    gap: clamp(2.6rem, 4.8vw, 4.8rem);
  }
}

@media (max-width: 767px) {
  .why-editorial-hero-copy {
    gap: 0.95rem;
  }

  .why-editorial-hero-copy h1 {
    max-width: 8.8ch;
    line-height: 0.94;
  }

  .why-editorial-core-copy h2,
  .why-editorial-section-copy h2,
  .why-editorial-comparison-heading h2 {
    max-width: 8.6ch;
    padding-top: 0.9rem;
    line-height: 0.96;
  }

  .why-editorial-core-copy h2::before,
  .why-editorial-section-copy h2::before {
    width: 36px;
  }
}

/* Why page service alignment */
.why-editorial-core-grid,
.why-editorial-difference-grid,
.why-editorial-experience-grid,
.why-editorial-reassurance-grid {
  align-items: start;
}

.why-editorial-list-block,
.why-editorial-core-panel,
.why-editorial-difference-panel,
.why-editorial-experience-metrics {
  border-radius: 16px;
  border: 1px solid rgba(189, 201, 200, 0.2);
  box-shadow: 0 14px 30px rgba(24, 28, 28, 0.04);
}

.why-editorial-list-block,
.why-editorial-core-panel,
.why-editorial-difference-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 247, 247, 0.92));
}

.why-editorial-list-block {
  padding: clamp(1.35rem, 3vw, 1.8rem);
}

.why-editorial-list-block ul {
  gap: 0.9rem;
}

.why-editorial-list-block li {
  font-size: 1.04rem;
  line-height: 1.75;
}

.why-editorial-core-panel,
.why-editorial-difference-panel {
  padding: clamp(1.45rem, 3vw, 1.9rem);
}

.why-editorial-experience-metrics {
  margin-top: 0.3rem;
  background: rgba(255, 255, 255, 0.8);
}

.why-editorial-core-copy h2,
.why-editorial-section-copy h2,
.why-editorial-comparison-heading h2 {
  max-width: 7.8ch;
}

.why-editorial-core-copy p,
.why-editorial-section-copy p,
.why-editorial-body-copy p {
  max-width: 42rem;
}

.why-editorial-comparison-heading {
  margin-bottom: clamp(2rem, 3.8vw, 2.8rem);
}

.why-editorial-compare-grid {
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.why-editorial-compare-block {
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(24, 28, 28, 0.045);
}

.why-editorial-compare-block-strong {
  box-shadow: 0 18px 38px rgba(16, 20, 20, 0.14);
}

.why-editorial-body-copy {
  max-width: 760px;
}

@media (min-width: 980px) {
  .why-editorial-core-grid,
  .why-editorial-difference-grid,
  .why-editorial-experience-grid,
  .why-editorial-reassurance-grid {
    grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
    gap: clamp(2.6rem, 4.8vw, 4.8rem);
  }

  .why-editorial-difference-stack,
  .why-editorial-body-copy {
    max-width: 780px;
  }
}

@media (max-width: 767px) {
  .why-editorial-list-block,
  .why-editorial-core-panel,
  .why-editorial-difference-panel,
  .why-editorial-experience-metrics,
  .why-editorial-compare-block {
    border-radius: 16px;
  }

  .why-editorial-list-block {
    padding: 1.15rem;
  }

  .why-editorial-core-copy h2,
  .why-editorial-section-copy h2,
  .why-editorial-comparison-heading h2 {
    max-width: 8.6ch;
  }
}

/* Why page blank-space rebalance */
.why-editorial-comparison-shell {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.why-editorial-comparison-heading {
  margin-bottom: 0;
}

.why-editorial-comparison-heading h2 {
  max-width: 6.8ch;
}

.why-editorial-experience-grid {
  align-items: start;
}

.why-editorial-body-panel {
  padding: clamp(1.45rem, 3vw, 1.9rem);
  border-radius: 16px;
  border: 1px solid rgba(189, 201, 200, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 247, 247, 0.92));
  box-shadow: 0 14px 30px rgba(24, 28, 28, 0.04);
}

.why-editorial-body-copy {
  max-width: 820px;
}

.why-editorial-body-copy p {
  max-width: 40rem;
}

.why-editorial-experience-metrics {
  margin-top: 1rem;
}

@media (min-width: 980px) {
  .why-editorial-comparison-shell {
    grid-template-columns: minmax(300px, 0.82fr) minmax(520px, 1.18fr);
    gap: clamp(2.6rem, 4.8vw, 4.8rem);
  }
}

@media (max-width: 767px) {
  .why-editorial-comparison-shell {
    gap: 1.5rem;
  }

  .why-editorial-body-panel {
    padding: 1.2rem;
    border-radius: 16px;
  }
}

/* Contact page refinement */
.contact-page {
  padding-bottom: 48px;
}

.contact-hero {
  margin-bottom: 36px;
}

.contact-layout {
  align-items: start;
  gap: 26px;
}

.contact-form-card,
.contact-help-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(189, 201, 200, 0.28);
  box-shadow: 0 18px 38px rgba(24, 28, 28, 0.05);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.contact-form-card h3,
.contact-help-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.28rem;
}

.contact-form {
  gap: 1.2rem;
}

.contact-form .form-grid {
  gap: 18px 20px;
}

.contact-form .field {
  gap: 10px;
}

.contact-form .field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 101, 101, 0.72);
}

.contact-form .field input,
.contact-form .field textarea,
.contact-form .field select {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(189, 201, 200, 0.42);
  border-radius: 14px;
  background: rgba(251, 253, 253, 0.96);
  line-height: 1.5;
}

.contact-form .field textarea {
  min-height: 150px;
  padding: 16px;
}

.contact-form .field input:focus,
.contact-form .field textarea:focus,
.contact-form .field select:focus {
  border-width: 1px;
  border-color: rgba(0, 101, 101, 0.72);
  box-shadow: 0 0 0 4px rgba(194, 231, 230, 0.32);
}

.contact-chip-grid,
.contact-help-list,
.contact-office-grid {
  display: grid;
}

.contact-chip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(189, 201, 200, 0.38);
  background: rgba(251, 253, 253, 0.94);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, color 180ms ease;
}

.contact-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 101, 101, 0.34);
}

.contact-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-chip:has(input:checked) {
  background: rgba(194, 231, 230, 0.46);
  border-color: rgba(0, 101, 101, 0.36);
  color: var(--accent-ink);
}

.contact-help-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-help-list {
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.contact-help-list div {
  display: grid;
  gap: 0.22rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 101, 101, 0.16);
}

.contact-help-list strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact-help-list span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.contact-office-grid {
  gap: 1rem;
  margin-top: 1.15rem;
}

.contact-office-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.2rem 1.2rem 1.1rem;
  border-radius: 16px;
  background: rgba(251, 253, 253, 0.92);
  border: 1px solid rgba(189, 201, 200, 0.28);
}

.contact-office-card > strong {
  font-family: "Manrope", "Inter", Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.contact-office-flag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(194, 231, 230, 0.42);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-office-lines {
  display: grid;
  gap: 0.42rem;
}

.contact-office-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-office-lines a {
  color: inherit;
  text-decoration-color: rgba(0, 101, 101, 0.28);
}

.contact-footer {
  padding-top: 32px;
}

@media (max-width: 960px) {
  .contact-layout {
    gap: 20px;
  }

  .contact-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding-bottom: 28px;
  }

  .contact-form-card,
  .contact-help-card {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .contact-form .form-grid {
    gap: 14px;
  }

  .contact-chip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .contact-chip {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }
}
