:root {
  --ink: #102625;
  --muted: #5e706d;
  --paper: #f8f4ed;
  --surface: #ffffff;
  --mist: #e8f0ed;
  --teal: #0d6f66;
  --teal-dark: #0d3835;
  --brass: #c99a4a;
  --clay: #cc735e;
  --shadow: 0 24px 80px rgba(13, 56, 53, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

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

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

.site-header {
  position: fixed;
  inset: 16px 20px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 1180px;
  margin-inline: auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: #fff;
  background: rgba(12, 42, 40, 0.58);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--brass);
  color: #132a28;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.95rem;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.language-control select {
  min-height: 42px;
  width: auto;
  min-width: 126px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  padding: 9px 34px 9px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.language-control option {
  color: #102625;
}

.hero {
  position: relative;
  min-height: min(840px, 92svh);
  display: grid;
  align-items: end;
  overflow: clip;
  background: var(--teal-dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 54% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 27, 25, 0.88), rgba(4, 27, 25, 0.48) 46%, rgba(4, 27, 25, 0.1)),
    linear-gradient(0deg, rgba(4, 27, 25, 0.86), rgba(4, 27, 25, 0.08) 40%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 54px;
  color: #fff;
}

.eyebrow,
.mini-label,
.card-kicker {
  margin: 0 0 10px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 9vw, 8.2rem);
  line-height: 0.92;
  font-weight: 600;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #0e2a28;
  background: #f8c45f;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd681;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(860px, 100%);
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  padding: 18px;
  background: rgba(8, 38, 36, 0.72);
}

.hero-proof dt {
  font-weight: 900;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.research-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d7e2dd;
}

.research-strip > div {
  padding: clamp(24px, 4vw, 44px);
  background: #fffaf4;
}

.research-strip p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
}

.mini-label {
  display: block;
  color: var(--clay);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.quote-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 600;
}

.about-section {
  padding-bottom: clamp(48px, 7vw, 86px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.about-copy {
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9e2de;
}

.about-stats div {
  display: grid;
  align-content: center;
  min-height: 210px;
  padding: 22px;
  background: #0d3835;
  color: #fff;
}

.about-stats strong {
  display: block;
  color: #f8c45f;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 900;
}

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

.service-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.service-card-body {
  padding: clamp(22px, 4vw, 36px);
}

.service-card h3,
.plan-card h3,
.trust-grid h3,
.scope-panel h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.service-card p,
.plan-card p,
.trust-grid p,
.scope-panel p,
.quote-copy p,
.faq-list p {
  color: var(--muted);
}

.service-card-dark {
  background: #102c2a;
  color: #fff;
}

.service-card-dark p,
.service-card-dark li {
  color: rgba(255, 255, 255, 0.76);
}

.check-list,
.plan-card ul,
.scope-items {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plan-card li,
.scope-items li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before,
.plan-card li::before,
.scope-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brass);
}

.scope-section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background: #eef5f2;
}

.scope-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
}

.scope-tabs {
  display: grid;
  gap: 8px;
}

.scope-tab {
  min-height: 56px;
  border: 1px solid #d0ded9;
  border-radius: 8px;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.scope-tab.active {
  color: #fff;
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.scope-panel {
  min-height: 330px;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  background: #fff;
  box-shadow: var(--shadow);
}

.scope-label {
  color: var(--clay);
  font-weight: 900;
}

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

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

.plan-card {
  min-height: 330px;
  border: 1px solid #ded8cc;
  border-radius: var(--radius);
  padding: 26px;
  background: #fffaf4;
}

.plan-card span {
  display: inline-flex;
  margin-bottom: 26px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #6c451f;
  background: #f5dfb6;
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-featured {
  border-color: var(--teal);
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.plan-featured p,
.plan-featured li {
  color: rgba(255, 255, 255, 0.76);
}

.pricing-research {
  padding-top: 0;
}

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

.pricing-card {
  min-height: 230px;
  border: 1px solid #d9e2de;
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(13, 56, 53, 0.08);
}

.pricing-card span {
  display: block;
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card strong {
  display: block;
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.pricing-card p,
.pricing-note {
  color: var(--muted);
}

.pricing-note {
  max-width: 820px;
  margin: 20px 0 0;
  font-weight: 800;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(68px, 9vw, 110px) max(20px, calc((100% - 1120px) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 154, 74, 0.28), transparent 30%),
    linear-gradient(135deg, #0a2826, #164741 54%, #2d5c51);
}

.quote-copy {
  align-self: start;
  position: sticky;
  top: 110px;
}

.quote-copy p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
}

.quote-total {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}

.quote-total span,
.quote-total strong,
.quote-total small {
  display: block;
}

.quote-total span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.quote-total strong {
  margin-top: 6px;
  color: #f9d88e;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1;
}

.quote-total small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.22);
}

.checkout-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid #dbe4e0;
  border-radius: 8px;
  margin: 0;
  padding: 18px;
}

.checkout-choice legend {
  padding: 0 8px;
}

.choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid #d4dfda;
  border-radius: 8px;
  padding: 14px;
  background: #f8fbfa;
  cursor: pointer;
}

.choice-card:has(input:checked) {
  border-color: var(--teal);
  background: #e9f6f2;
  box-shadow: inset 0 0 0 1px var(--teal);
}

.choice-card input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--teal);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card small,
.checkout-choice p {
  color: var(--muted);
}

.checkout-choice p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

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

.form-row {
  display: grid;
  gap: 8px;
}

label,
legend {
  color: #223d3a;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd8d3;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8fbfa;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.scope-tab:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(248, 196, 95, 0.72);
  outline-offset: 2px;
}

input[type="range"] {
  accent-color: var(--teal);
}

output {
  color: var(--muted);
  font-weight: 800;
}

.addons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid #dbe4e0;
  border-radius: 8px;
  margin: 0;
  padding: 18px;
}

.addons legend {
  padding: 0 8px;
}

.addons label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.addons input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.form-submit {
  width: 100%;
  min-height: 56px;
  border: 0;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.fake-checkout {
  grid-column: 2;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 30px);
  color: #fff;
  background: rgba(9, 34, 32, 0.78);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.2);
}

.fake-checkout.hidden {
  display: none;
}

.fake-checkout h3 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.fake-checkout p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.fake-payment-card {
  display: grid;
  gap: 8px;
  border-radius: 8px;
  padding: 20px;
  color: #102625;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 251, 247, 0.96)),
    #fff;
}

.fake-payment-card span,
.fake-payment-card small {
  color: #5e706d;
  font-weight: 800;
}

.fake-payment-card strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.fake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #dbe1dd;
  border-radius: var(--radius);
  background: #dbe1dd;
}

.trust-grid > div {
  min-height: 260px;
  padding: 24px;
  background: #fffaf4;
}

.trust-number {
  display: block;
  margin-bottom: 40px;
  color: var(--clay);
  font-weight: 900;
}

.reviews-section {
  width: 100%;
  padding-inline: max(20px, calc((100% - 1120px) / 2));
  background: #eef5f2;
}

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

.review-card {
  min-height: 330px;
  border: 1px solid #d7e1dd;
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(13, 56, 53, 0.1);
}

.review-stars {
  color: var(--brass);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.review-card h3 {
  margin: 30px 0 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

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

.review-card span {
  display: inline-flex;
  margin-top: 12px;
  border-radius: 999px;
  padding: 8px 11px;
  color: #6c451f;
  background: #f5dfb6;
  font-size: 0.84rem;
  font-weight: 900;
}

.faq-section {
  padding-top: 0;
}

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

details {
  border: 1px solid #d7ded9;
  border-radius: var(--radius);
  background: #fff;
}

summary {
  min-height: 58px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px max(20px, calc((100% - 1120px) / 2));
  color: #dce8e4;
  background: #0b2523;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer a {
  color: #f9d88e;
  font-weight: 900;
}

.footer-copy {
  align-self: center;
  text-align: right;
  font-weight: 900;
}

.assistant-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  justify-items: end;
  gap: 12px;
  width: min(420px, calc(100% - 32px));
  pointer-events: none;
}

.assistant-toggle,
.assistant-panel {
  pointer-events: auto;
}

.assistant-toggle {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 13px 18px;
  color: #102625;
  background: #f8c45f;
  box-shadow: 0 16px 50px rgba(13, 56, 53, 0.28);
  font-weight: 900;
  cursor: pointer;
}

.assistant-panel {
  display: grid;
  gap: 14px;
  width: 100%;
  max-height: min(720px, calc(100svh - 110px));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  background: rgba(10, 40, 38, 0.96);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.assistant-panel.hidden {
  display: none;
}

.assistant-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
}

.assistant-head h2,
.assistant-head p {
  margin: 0;
}

.assistant-head h2 {
  font-size: 1.25rem;
}

.assistant-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.assistant-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 1.2rem;
}

.assistant-messages {
  display: grid;
  gap: 10px;
  min-height: 190px;
  max-height: 300px;
  overflow-y: auto;
  padding: 4px 2px;
}

.assistant-message {
  max-width: 88%;
  border-radius: 8px;
  padding: 11px 12px;
  line-height: 1.42;
  font-size: 0.95rem;
}

.assistant-message.bot {
  justify-self: start;
  color: #102625;
  background: #fffaf4;
}

.assistant-message.user {
  justify-self: end;
  color: #fff;
  background: #1f6f67;
}

.assistant-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.assistant-quick button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-weight: 800;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.assistant-form input {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.24);
  color: #102625;
  background: #fff;
}

.assistant-form button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  color: #102625;
  background: #f8c45f;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    inset: 12px 12px auto;
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding: 4px 0 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding-top: 190px;
  }

  .hero-proof,
  .research-strip,
  .about-layout,
  .about-stats,
  .service-grid,
  .section-heading,
  .scope-layout,
  .plans-grid,
  .pricing-grid,
  .quote-band,
  .trust-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .scope-items,
  .form-grid,
  .addons,
  .checkout-choice {
    grid-template-columns: 1fr;
  }

  .scope-section {
    padding-inline: 14px;
  }

  .plan-featured {
    transform: none;
  }

  .quote-copy {
    position: static;
  }

  .fake-checkout {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-copy {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    padding: 9px 10px;
  }

  .language-control select {
    min-width: 98px;
    padding-inline: 10px 26px;
  }

  .hero-content {
    width: min(100% - 24px, 760px);
    padding-bottom: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1120px);
  }

  .quote-band {
    padding-inline: 14px;
  }

  .assistant-widget {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .assistant-panel {
    max-height: calc(100svh - 86px);
  }

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

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