:root {
  --bg: #f5efe4;
  --surface: #fffaf2;
  --surface-dark: #0c1618;
  --text: #112024;
  --text-muted: #536368;
  --text-light: #e6f0ec;
  --line: rgba(17, 32, 36, 0.12);
  --line-strong: rgba(17, 32, 36, 0.2);
  --accent: #c96f37;
  --accent-strong: #aa5622;
  --shadow: 0 20px 60px rgba(17, 32, 36, 0.08);
  --shadow-strong: 0 30px 90px rgba(8, 18, 20, 0.2);
  --radius: 24px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 111, 55, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(140, 176, 161, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf6ee 0%, var(--bg) 52%, #f9f3e9 100%);
  color: var(--text);
  line-height: 1.6;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(201, 111, 55, 0.4);
  outline-offset: 3px;
}

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

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-muted {
  background: rgba(255, 253, 248, 0.62);
}

.section-dark {
  color: var(--text-light);
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 111, 55, 0.18), transparent 20%),
    linear-gradient(180deg, #102023 0%, #0c1618 100%);
}

.section-accent {
  background:
    radial-gradient(circle at top right, rgba(201, 111, 55, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(140, 176, 161, 0.14), rgba(255, 255, 255, 0));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-heading h2,
.hero-copy h1,
.hero-panel h2,
.cta-panel h2 {
  margin: 0 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.hero-panel h2 {
  font-size: 1.8rem;
}

.section-heading p,
.hero-lead,
.hero-panel,
.plan-copy,
.cta-panel p,
.site-footer p {
  color: var(--text-muted);
}

.section-dark .section-heading p,
.section-dark .comparison-row div:first-child,
.section-dark .comparison-head span:first-child {
  color: rgba(230, 240, 236, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 246, 238, 0.8);
  border-bottom: 1px solid rgba(17, 32, 36, 0.06);
}

.header-inner {
  position: relative;
  min-height: var(--header-height);
  padding-right: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--surface-dark), #234147);
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.88rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span,
.site-nav a {
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  position: absolute;
  top: 10px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.64);
  box-shadow: inset 0 0 0 1px rgba(17, 32, 36, 0.06);
}

.lang-button {
  min-width: 38px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  color: var(--text);
}

.lang-button.is-active {
  background: var(--surface-dark);
  color: var(--text-light);
}

.site-nav a,
.footer-nav a,
.footer-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--text-light) !important;
  text-align: center;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.hero {
  padding-top: 36px;
}

.hero-grid,
.solution-layout,
.trust-layout,
.footer-grid {
  display: grid;
  gap: 32px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 18px;
}

.hero-inline-link {
  color: currentColor;
  font-size: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.hero-inline-link:hover,
.hero-inline-link:focus-visible {
  color: var(--accent-strong);
  text-decoration-color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff9f4;
  box-shadow: 0 14px 30px rgba(170, 86, 34, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.55);
}

.button-block {
  width: 100%;
}

.hero-points,
.ops-list,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.hero-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-points li,
.price-card li {
  position: relative;
  padding-left: 28px;
}

.hero-points li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #eeb086);
  box-shadow: 0 0 0 4px rgba(201, 111, 55, 0.14);
}

.hero-card,
.problem-card,
.service-card,
.step-card,
.price-card,
.cta-panel,
.solution-item,
.trust-list article,
.faq-list details {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(17, 32, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  transform: rotate(-1.5deg);
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(140, 176, 161, 0.18);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3f8f67;
  box-shadow: 0 0 0 5px rgba(63, 143, 103, 0.16);
}

.ops-list {
  display: grid;
  gap: 18px;
}

.ops-list li {
  display: grid;
  gap: 4px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.metric-strip div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(12, 22, 24, 0.05);
}

.metric-strip strong,
.price-card .plan-price,
.step-number {
  display: block;
  font-weight: 800;
}

.problem-grid,
.services-grid,
.steps-grid,
.pricing-grid,
.outcomes-grid {
  display: grid;
  gap: 20px;
}

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

.problem-card,
.outcome-card,
.service-card,
.step-card,
.solution-item,
.trust-list article {
  padding: 26px;
}

.problem-card h3,
.outcome-card h3,
.service-card h3,
.step-card h3,
.solution-item h3,
.trust-list h3,
.price-card .plan-name {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

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

.service-card-link::after {
  content: "→";
}

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

.outcome-card {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(17, 32, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 24px;
  padding: 30px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(17, 32, 36, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-panel .section-heading {
  margin-bottom: 0;
}

.proof-panel .section-heading p + p {
  margin-top: 12px;
}

.proof-note {
  padding-top: 8px;
  font-weight: 600;
  color: var(--text);
}

.proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  align-content: center;
}

.proof-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #eeb086);
  box-shadow: 0 0 0 4px rgba(201, 111, 55, 0.14);
}

.solution-layout {
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

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

.solution-item {
  display: grid;
  gap: 6px;
  padding: 20px;
  min-height: 100%;
}

#solution .section-heading {
  margin-bottom: 12px;
}

#solution .section-heading p:last-child {
  margin-bottom: 0;
}

.comparison {
  overflow: hidden;
  border: 1px solid rgba(230, 240, 236, 0.14);
  border-radius: var(--radius);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-head span,
.comparison-row div {
  padding: 20px 22px;
}

.comparison-head {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.comparison-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.comparison-row div:last-child,
.comparison-head span:last-child {
  color: #fff7ef;
  border-left: 1px solid rgba(230, 240, 236, 0.12);
}

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

.step-number {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

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

.price-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card.featured {
  border-color: rgba(201, 111, 55, 0.3);
  box-shadow: var(--shadow-strong);
  background: linear-gradient(180deg, rgba(255, 249, 244, 0.98), rgba(255, 253, 248, 0.9));
}

.plan-badge {
  align-self: flex-start;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 111, 55, 0.12);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name,
.plan-price,
.plan-copy {
  margin: 0;
}

.plan-price {
  font-size: 2.6rem;
  line-height: 1;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 12px;
  flex: 1;
}

.pricing-note {
  width: 100%;
  max-width: none;
  margin: 24px 0 0;
  color: var(--text-muted);
}

.trust-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

.subpage-main {
  padding-top: 28px;
}

.subpage-hero {
  padding: 48px 0 28px;
}

.subpage-hero-copy {
  max-width: 860px;
}

.subpage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-kicker a {
  color: var(--text-muted);
}

.subpage-hero h1 {
  margin: 0 0 16px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.subpage-lead {
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.subpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.subpage-panel {
  padding: 26px;
}

.subpage-panel ul,
.feature-list,
.bullet-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.subpage-panel li,
.feature-list li,
.bullet-list li {
  position: relative;
  padding-left: 24px;
}

.subpage-panel li::before,
.feature-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #eeb086);
  box-shadow: 0 0 0 4px rgba(201, 111, 55, 0.14);
}

.subpage-panel h2,
.subpage-section h2 {
  margin: 0 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.subpage-section {
  padding: 40px 0;
}

.subpage-section p {
  color: var(--text-muted);
}

.subpage-cta {
  padding: 30px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 22px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  color: var(--accent-strong);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0 0 22px;
  color: var(--text-muted);
}

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

.final-cta {
  padding-top: 40px;
}

.cta-panel {
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(201, 111, 55, 0.16), transparent 22%),
    rgba(255, 253, 248, 0.92);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-form {
  flex: 1 1 420px;
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: inset 0 0 0 1px rgba(17, 32, 36, 0.08);
}

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

.form-field {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.form-field-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field-full {
  grid-column: 1 / -1;
  min-width: 0;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 32, 36, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  resize: vertical;
}

.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  border-color: rgba(201, 111, 55, 0.5);
}

.form-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.form-status {
  display: none;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(17, 32, 36, 0.04);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status.is-visible {
  display: inline-flex;
}

.form-status-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.form-status-icon svg {
  width: 100%;
  height: 100%;
}

.status-ring,
.status-check,
.status-cross {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.status-ring {
  stroke: rgba(17, 32, 36, 0.16);
  stroke-width: 3.5;
}

.status-check,
.status-cross {
  stroke-width: 4;
  opacity: 0;
}

.form-status.is-pending .status-ring {
  stroke: rgba(201, 111, 55, 0.3);
  transform-origin: 50% 50%;
  animation: form-status-spin 1s linear infinite;
}

.form-status.is-success {
  color: #1f6b47;
  background: rgba(31, 107, 71, 0.09);
}

.form-status.is-success .status-ring {
  stroke: rgba(31, 107, 71, 0.24);
}

.form-status.is-success .status-check {
  stroke: #1f6b47;
  opacity: 1;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  animation: form-status-draw 420ms ease 100ms forwards;
}

.form-status.is-error {
  color: #9b3c14;
  background: rgba(155, 60, 20, 0.08);
}

.form-status.is-error .status-ring {
  stroke: rgba(155, 60, 20, 0.22);
}

.form-status.is-error .status-cross {
  stroke: #9b3c14;
  opacity: 1;
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: form-status-draw 320ms ease forwards;
}

.form-status-text {
  flex: 1 1 auto;
}

.cf-turnstile {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 66px;
  overflow: hidden;
}

.cf-turnstile > div {
  max-width: 100% !important;
}

.cf-turnstile iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
}

@keyframes form-status-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes form-status-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.site-footer {
  padding: 28px 0 40px;
}

.mobile-sticky-cta {
  display: none;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-nav,
.footer-meta {
  display: grid;
  gap: 10px;
}

.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js-enabled [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .site-nav .nav-cta {
    display: none;
  }

  .hero-grid,
  .subpage-grid,
  .solution-layout,
  .trust-layout,
  .pricing-grid,
  .footer-grid,
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .services-grid,
  .steps-grid,
  .outcomes-grid,
  .next-steps-grid,
  .solution-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    transform: none;
  }

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1025px) and (max-height: 920px) {
  .hero.section {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 3.5vw, 3.8rem);
  }

  .hero-lead {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin: 18px 0 14px;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-note {
    margin-top: 10px;
    font-size: 0.95rem;
  }

  .hero-card {
    padding: 20px;
  }

  .ops-list {
    gap: 14px;
  }

  .metric-strip {
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 76px 0;
  }

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

  .menu-toggle {
    display: inline-grid;
    place-content: center;
    flex-shrink: 0;
  }

  .header-inner {
    padding-right: 0;
    flex-wrap: wrap;
    align-items: center;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .lang-switcher {
    position: static;
    order: 2;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 52px);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 32, 36, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .site-nav .nav-cta {
    display: none;
  }

  .mobile-sticky-cta {
    display: inline-flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff9f4;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(170, 86, 34, 0.28);
  }

  body {
    padding-bottom: 88px;
  }

  .problem-grid,
  .services-grid,
  .steps-grid,
  .outcomes-grid,
  .next-steps-grid,
  .solution-stack,
  .trust-list,
  .metric-strip,
  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row div:last-child {
    border-left: 0;
    border-top: 1px solid rgba(230, 240, 236, 0.12);
  }

  .comparison-row div:first-child {
    padding-bottom: 10px;
    font-weight: 700;
  }

  .comparison-row div:last-child {
    padding-top: 10px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button,
  .button-block {
    width: 100%;
  }

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

  .contact-form,
  .form-status {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .plan-price {
    font-size: 2.3rem;
  }

  .cta-panel,
  .hero-card,
  .price-card,
  .problem-card,
  .service-card,
  .step-card,
  .solution-item,
  .trust-list article,
  .faq-list details {
    border-radius: 20px;
  }
}
