:root {
  --ink: #14312d;
  --muted: #526b66;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe8e4;
  --teal: #28766c;
  --teal-dark: #18554e;
  --mint: #dff1eb;
  --coral: #d56b52;
  --gold: #e6b452;
  --shadow: 0 18px 45px rgba(20, 49, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.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;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #ffffff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 10px 30px rgba(20, 49, 45, 0.1);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-language {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-language-button {
  min-height: 32px;
  padding: 6px 10px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.site-language-button.is-active {
  color: var(--teal-dark);
  background: #ffffff;
}

.site-header.is-solid .site-language-button.is-active {
  color: #ffffff;
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/supportcircle-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 38, 35, 0.86) 0%, rgba(13, 38, 35, 0.66) 42%, rgba(13, 38, 35, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 38, 35, 0.46) 0%, rgba(13, 38, 35, 0) 45%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 160px clamp(18px, 6vw, 84px) 92px;
  color: #ffffff;
}

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

.hero .eyebrow {
  color: #ffd7ca;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 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: 52px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: #ffffff;
  background: var(--teal);
}

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

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.14);
}

.support-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.support-strip div {
  padding: 24px clamp(18px, 4vw, 42px);
  background: var(--surface);
}

.support-strip strong,
.support-strip span {
  display: block;
}

.support-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 42px);
}

.intro,
.audience,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

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

.translation-demo {
  display: grid;
  gap: 18px;
  min-height: 470px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.conversation-window {
  display: grid;
  gap: 14px;
  min-height: 280px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 241, 235, 0.86), rgba(255, 253, 248, 0.92)),
    #ffffff;
}

.chat-bubble {
  width: min(86%, 430px);
  min-height: 118px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(20, 49, 45, 0.1);
  animation: bubbleIn 5.5s ease-in-out infinite;
}

.chat-bubble span {
  display: block;
  margin-bottom: 6px;
  color: var(--coral);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-bubble.translated {
  justify-self: end;
  min-height: 142px;
  color: #ffffff;
  background: var(--teal);
  animation-delay: 1.4s;
}

.chat-bubble.translated span {
  color: #ffd7ca;
}

.chat-bubble p {
  margin: 0;
  min-height: 4.8em;
}

.chat-bubble p::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -0.15em;
  background: currentColor;
  animation: cursorBlink 850ms steps(1) infinite;
}

.chat-bubble.is-complete p::after {
  display: none;
}

.translate-arrow {
  justify-self: center;
  align-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.9rem;
  font-weight: 800;
  animation: pulseTranslate 1.9s ease-in-out infinite;
}

.language-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.language-tag {
  min-height: 50px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.language-tag-hindi {
  color: #7b3510;
  background: #ffe0bf;
}

.language-tag-spanish {
  color: #174b7a;
  background: #d8ecff;
}

.language-tag.is-active {
  border-color: var(--ink);
  box-shadow: 0 10px 22px rgba(20, 49, 45, 0.14);
}

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

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

.service-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(20, 49, 45, 0.06);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  font-weight: 800;
}

.service-card p,
.step-list p,
.trust-points p,
.audience-card p {
  margin: 0;
  color: var(--muted);
}

.audience {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-intro {
  display: grid;
  gap: 22px;
  align-content: start;
}

.audience-intro h2 {
  margin-bottom: 10px;
}

.support-circle {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 2px solid rgba(40, 118, 108, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 0 34%, rgba(223, 241, 235, 0.75) 35% 36%, transparent 37%),
    conic-gradient(from 20deg, rgba(40, 118, 108, 0.08), rgba(213, 107, 82, 0.13), rgba(230, 180, 82, 0.15), rgba(40, 118, 108, 0.08));
}

.support-circle::before,
.support-circle::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(20, 49, 45, 0.12);
  border-radius: 50%;
}

.support-circle::after {
  inset: 29%;
  border-color: rgba(213, 107, 82, 0.18);
}

.circle-core,
.circle-item {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(20, 49, 45, 0.1);
}

.circle-core {
  inset: 31%;
  z-index: 2;
  padding: 18px;
  color: #ffffff;
  background: var(--teal-dark);
}

.circle-core span {
  display: block;
  color: #ffd7ca;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.circle-core strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1rem, 3vw, 1.35rem);
  line-height: 1.1;
}

.circle-item {
  width: 92px;
  height: 92px;
  padding: 10px;
  appearance: none;
  cursor: pointer;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  font-weight: 800;
  font: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  animation: circleNudge 3.8s ease-in-out infinite;
}

.circle-item:hover,
.circle-item:focus-visible,
.circle-item.is-active {
  z-index: 3;
  border-color: var(--ink);
  box-shadow: 0 18px 34px rgba(20, 49, 45, 0.18);
  animation-play-state: paused;
}

.circle-item-forms {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff4d9;
}

.circle-item-forms:hover,
.circle-item-forms:focus-visible,
.circle-item-forms.is-active {
  transform: translateX(-50%) scale(1.06);
}

.circle-item-language {
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  background: #dff1eb;
}

.circle-item-language:hover,
.circle-item-language:focus-visible,
.circle-item-language.is-active {
  transform: translateY(-50%) scale(1.06);
}

.circle-item-calls {
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffe0bf;
}

.circle-item-calls:hover,
.circle-item-calls:focus-visible,
.circle-item-calls.is-active {
  transform: translateX(-50%) scale(1.06);
}

.circle-item-family {
  top: 50%;
  left: 2%;
  transform: translateY(-50%);
  background: #d8ecff;
}

.circle-item-family:hover,
.circle-item-family:focus-visible,
.circle-item-family.is-active {
  transform: translateY(-50%) scale(1.06);
}

.circle-detail {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(20, 49, 45, 0.06);
}

.circle-detail::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--surface);
  transform: translateX(-50%) rotate(45deg);
}

.circle-detail.is-empty {
  border-style: dashed;
  background: #fffdf8;
}

.circle-detail span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.circle-detail p {
  margin: 0;
  color: var(--muted);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
}

.audience-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(20, 49, 45, 0.06);
}

.audience-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.86rem;
  font-weight: 800;
}

.audience-card:nth-child(2) span {
  color: #7b3510;
  background: #ffe0bf;
}

.audience-card:nth-child(3) span {
  color: #6a4b00;
  background: #fff4d9;
}

.audience-card:nth-child(4) span {
  color: #174b7a;
  background: #d8ecff;
}

.steps {
  padding-top: 76px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.step-list span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--coral);
  font-weight: 800;
}

.pricing {
  padding-top: 20px;
}

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

.pricing-card {
  position: relative;
  display: grid;
  gap: 22px;
  align-content: start;
  min-height: 460px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(20, 49, 45, 0.06);
}

.pricing-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
}

.pricing-card h3 small {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.plan-kicker,
.popular-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
}

.plan-kicker {
  color: var(--teal-dark);
  background: var(--mint);
}

.pricing-basic .plan-kicker {
  color: #30651f;
  background: #e4f5d8;
}

.pricing-onetime .plan-kicker {
  color: #7b3510;
  background: #ffe0bf;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  background: var(--coral);
}

.pricing-standard {
  border: 2px solid var(--teal);
  transform: translateY(-10px);
  box-shadow: 0 20px 44px rgba(20, 49, 45, 0.14);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.pricing-card .button {
  align-self: end;
  margin-top: auto;
}

.button-plan {
  color: var(--teal-dark);
  border-color: var(--teal);
  background: #ffffff;
}

.button-plan:hover,
.button-plan:focus-visible {
  color: #ffffff;
  background: var(--teal);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: 76px clamp(18px, 6vw, 84px);
  color: #ffffff;
  background: var(--teal-dark);
}

.trust-band .eyebrow {
  color: #ffd7ca;
}

.trust-points {
  display: grid;
  gap: 18px;
}

.trust-points p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.trust-points strong {
  color: #ffffff;
}

.contact {
  align-items: center;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.form-full,
.request-form .button {
  grid-column: 1 / -1;
}

.required-mark {
  color: #c2412d;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #b9cbc5;
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(213, 107, 82, 0.38);
  outline-offset: 3px;
}

.request-form .button {
  width: 100%;
  border: 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

@keyframes bubbleIn {
  0%,
  16% {
    opacity: 0.68;
    transform: translateY(4px);
  }

  26%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseTranslate {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes cursorBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@keyframes circleNudge {
  0%,
  82%,
  100% {
    filter: brightness(1);
  }

  88% {
    filter: brightness(1.04);
  }
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.8);
  background: #102a27;
}

.site-footer span:first-child {
  color: #ffffff;
  font-weight: 800;
}

.chat-circle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.chat-launcher {
  min-height: 54px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--teal-dark);
  font: inherit;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(20, 49, 45, 0.2);
  cursor: pointer;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: none;
  width: min(360px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 24px 54px rgba(20, 49, 45, 0.22);
}

.chat-circle.is-open .chat-panel {
  display: grid;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  color: #ffffff;
  background: var(--teal-dark);
}

.chat-header span,
.chat-header strong {
  display: block;
}

.chat-header span {
  color: #ffd7ca;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chat-header button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 280px;
  overflow: auto;
  padding: 16px;
  background: #fffdf8;
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(20, 49, 45, 0.08);
}

.chat-message.user {
  justify-self: end;
  color: #ffffff;
  background: var(--teal);
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px 0;
}

.chat-quick-actions button {
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 12px 16px 16px;
}

.chat-form input {
  min-height: 42px;
}

.chat-form button {
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: var(--coral);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 980px) {
  .service-grid,
  .step-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro,
  .audience,
  .trust-band,
  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 18px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

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

  .site-language {
    width: 100%;
    justify-content: space-between;
    color: var(--ink);
  }

  .site-language-button {
    flex: 1;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-media {
    background-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 38, 35, 0.9) 0%, rgba(13, 38, 35, 0.72) 58%, rgba(13, 38, 35, 0.34) 100%),
      linear-gradient(0deg, rgba(13, 38, 35, 0.5) 0%, rgba(13, 38, 35, 0) 55%);
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 54px;
  }

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

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

  .support-strip,
  .service-grid,
  .audience-list,
  .pricing-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  .pricing-standard {
    transform: none;
  }

  .support-circle {
    width: min(100%, 340px);
  }

  .circle-item {
    width: 76px;
    height: 76px;
    font-size: 0.88rem;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .chat-circle {
    right: 14px;
    bottom: 14px;
  }

  .service-card,
  .step-list li {
    min-height: auto;
  }
}
