:root {
  --bg: #f5f7f4;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-muted: rgba(255, 255, 255, 0.7);
  --text: #17212b;
  --muted: #66717d;
  --line: rgba(23, 33, 43, 0.1);
  --line-strong: rgba(23, 33, 43, 0.18);
  --accent: #178779;
  --accent-strong: #116e63;
  --accent-soft: rgba(23, 135, 121, 0.12);
  --warm: #ecd5a5;
  --danger: #b14a4a;
  --success: #207060;
  --shadow: 0 24px 72px rgba(24, 33, 44, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 40px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(23, 135, 121, 0.09), transparent 34%),
    radial-gradient(circle at 78% 8%, rgba(23, 135, 121, 0.08), transparent 18%),
    radial-gradient(circle at top right, rgba(236, 213, 165, 0.2), transparent 26%),
    linear-gradient(180deg, #f9faf8 0%, var(--bg) 48%, #f1f4ef 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body.has-form-focus .sticky-bar {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

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

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

button {
  cursor: pointer;
}

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

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  padding-bottom: 100px;
}

body[data-content-mode="demo"] {
  background:
    radial-gradient(circle at top left, rgba(177, 74, 74, 0.14), transparent 36%),
    radial-gradient(circle at top right, rgba(247, 198, 108, 0.2), transparent 30%),
    linear-gradient(180deg, #fff7f3 0%, #f7eee5 54%, #f4ece6 100%);
}

.section {
  position: relative;
  scroll-margin-top: 120px;
  padding: 28px 0 44px;
}

.section--hero {
  padding-top: 18px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading h2,
.hero-copy h1,
.quick-card h2,
.form-heading h3,
.contact-panel h3,
.proof-visual__title {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
}

.section-heading h2,
.hero-copy h1 {
  margin: 0 0 12px;
  line-height: 0.94;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
}

.section-heading h2 {
  font-size: clamp(2rem, 4.3vw, 3.2rem);
}

.section-heading p,
.hero-copy__lead,
.hero-copy__note,
.card p,
.quick-card p,
.contact-panel p,
.form-heading p,
.proof-visual span,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.section-tag::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.card,
.price-list,
.global-status,
.sticky-bar,
.site-header {
  backdrop-filter: blur(14px);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
  background: transparent;
  border-bottom: 0;
  transition:
    transform 0.3s ease,
    padding 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header--compact {
  padding: 10px 0 0;
}

.site-header--hidden {
  transform: translateY(-110%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 28px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 56px rgba(22, 30, 40, 0.07);
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-mark__name {
  font-size: 1rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.header-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  min-width: 0;
}

.header-nav__link {
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.header-nav__link:hover,
.header-nav__link:focus-visible {
  color: var(--text);
}

.header-actions,
.hero-actions-row,
.contact-actions,
.panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.sticky-bar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

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

.button:focus-visible,
.sticky-bar__button:focus-visible,
.text-button:focus-visible,
.header-nav__link:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.button--primary,
.sticky-bar__button--accent {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(23, 135, 121, 0.18);
}

.button--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
}

.button--ghost,
.sticky-bar__button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.button--meta {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.button--meta small,
.sticky-bar__button small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.button--full {
  width: 100%;
}

.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-strong);
  font-weight: 700;
}

.global-status {
  width: var(--container);
  margin: 16px auto 0;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(15, 138, 120, 0.12);
  border: 1px solid rgba(15, 138, 120, 0.18);
  color: var(--accent-strong);
}

.runtime-notice {
  padding: 18px 0 0;
}

.runtime-notice__inner {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(177, 74, 74, 0.1);
  border: 1px solid rgba(177, 74, 74, 0.24);
  box-shadow: 0 18px 48px rgba(177, 74, 74, 0.08);
}

.runtime-notice__eyebrow,
.runtime-notice__title,
.runtime-notice__copy p,
.runtime-notice__copy small {
  margin: 0;
}

.runtime-notice__eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--danger);
}

.runtime-notice__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.runtime-notice__copy {
  display: grid;
  gap: 8px;
}

.runtime-notice__copy small {
  color: var(--muted);
}

.hero-grid,
.contact-layout,
.proof-layout {
  display: grid;
  gap: 20px;
}

.hero-panel {
  padding: 22px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 90% 0%, rgba(23, 135, 121, 0.08), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(23, 33, 43, 0.08);
  box-shadow: 0 28px 80px rgba(20, 30, 40, 0.08);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(332px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.hero-copy,
.quick-card,
.contact-panel,
.form-panel {
  padding: 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-right: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-copy .section-tag,
.quick-card .section-tag {
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  gap: 0;
  margin-bottom: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(236, 213, 165, 0.34);
  border: 1px solid rgba(23, 33, 43, 0.08);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.hero-copy .section-tag::before,
.quick-card .section-tag::before {
  display: none;
}

.hero-copy__lead {
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.proof-pill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 0;
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  text-align: center;
}

.proof-pill__label {
  display: none;
}

.proof-pill__value {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--text);
  text-wrap: balance;
}

.quick-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 33, 43, 0.08);
  box-shadow: 0 20px 56px rgba(21, 29, 39, 0.08);
}

.quick-card__intro {
  display: grid;
  gap: 8px;
}

.quick-card__intro h2 {
  margin: 0;
  font-size: 1.78rem;
  line-height: 1.05;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-field span {
  font-weight: 700;
  font-size: 0.95rem;
}

.input-field input,
.input-field select,
.input-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
  outline: none;
  border-color: rgba(15, 138, 120, 0.44);
  box-shadow: 0 0 0 4px rgba(15, 138, 120, 0.12);
  background: #fff;
}

.input-field--invalid input,
.input-field--invalid select,
.input-field--invalid textarea {
  border-color: rgba(177, 74, 74, 0.48);
  box-shadow: 0 0 0 4px rgba(177, 74, 74, 0.08);
}

.field-error {
  min-height: 18px;
  font-size: 0.82rem;
  color: var(--danger);
}

.quick-card__feedback,
.form-legal-placeholder {
  font-size: 0.92rem;
}

.proof-visual {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(23, 135, 121, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 247, 244, 0.92));
  border: 1px solid rgba(23, 135, 121, 0.14);
}

.trust-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 249, 0.92));
  border: 1px solid var(--line);
}

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

.trust-block__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 33, 43, 0.06);
}

.trust-block__value {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-strong);
  letter-spacing: -0.03em;
}

.trust-block__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.trust-block__sub {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.25;
}

.trust-block__detail {
  margin: 0;
  padding: 12px 10px;
  border-radius: var(--radius-md);
  background: rgba(23, 135, 121, 0.06);
  border: 1px solid rgba(23, 135, 121, 0.1);
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.proof-visual__title {
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}

.contact-list,
.brand-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-card__list li {
  padding: 10px 0;
  border-top: 1px solid rgba(20, 32, 43, 0.08);
  color: var(--muted);
}



.service-grid,
.brand-grid,
.process-grid,
.proof-grid,
.review-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.proof-layout {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

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

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

.service-card,
.brand-card,
.process-card,
.proof-card,
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.service-card {
  min-height: 200px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.9));
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(20, 30, 40, 0.1);
  border-color: rgba(23, 135, 121, 0.22);
}

.service-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-card--featured {
  grid-column: span 2;
  min-height: 200px;
  background:
    radial-gradient(circle at top right, rgba(23, 135, 121, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 246, 0.94));
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.service-card__marker {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.service-card__marker--time {
  background: rgba(23, 135, 121, 0.1);
  border: 1px solid rgba(23, 135, 121, 0.14);
  color: var(--accent-strong);
}

.service-card__marker--urgent {
  background: rgba(177, 74, 74, 0.1);
  border: 1px solid rgba(177, 74, 74, 0.18);
  color: var(--danger);
}

.service-card__marker--free {
  background: rgba(236, 213, 165, 0.4);
  border: 1px solid rgba(236, 213, 165, 0.5);
  color: #7a5c1e;
}

.service-card__description {
  max-width: 32ch;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.service-card__action-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
  transition: color 0.2s ease;
}

.service-card:hover .service-card__action-label {
  color: var(--accent);
}

.service-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 22px 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 249, 0.88));
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-fallback:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(20, 30, 40, 0.1);
  border-color: rgba(23, 135, 121, 0.22);
  border-left-color: var(--accent-strong);
}

.service-fallback:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-fallback__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-fallback__content h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.service-fallback__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
}

.service-fallback__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.service-fallback__arrow {
  transition: transform 0.2s ease;
}

.service-fallback:hover .service-fallback__action {
  color: var(--accent);
}

.service-fallback:hover .service-fallback__arrow {
  transform: translateX(3px);
}

.brand-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 22px 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 249, 0.88));
  border: 1px solid var(--line);
  border-left: 3px solid var(--warm);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.brand-fallback:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(20, 30, 40, 0.1);
  border-color: rgba(236, 213, 165, 0.5);
  border-left-color: #d4b87a;
}

.brand-fallback:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.brand-fallback__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-fallback__content h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.brand-fallback__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
}

.brand-fallback__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.brand-fallback__arrow {
  transition: transform 0.2s ease;
}

.brand-fallback:hover .brand-fallback__action {
  color: var(--accent);
}

.brand-fallback:hover .brand-fallback__arrow {
  transform: translateX(3px);
}

.card__eyebrow,
.brand-card__tag,
.process-card__count,
.review-card__meta,
.price-row__placeholder,
.price-row__device {
  color: var(--muted);
}

.card__eyebrow,
.process-card__count {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-card h3,
.brand-card h3,
.process-card h3,
.proof-card h3,
.review-card__quote,
.contact-panel h3,
.form-heading h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.1;
}

.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.brand-card {
  min-height: 200px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 249, 0.92));
  cursor: default;
}

.brand-card--featured {
  grid-column: span 2;
}

.brand-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0 14px;
}

.brand-card__arrow {
  font-size: 1rem;
  color: var(--accent-strong);
  opacity: 0.35;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.brand-card__list li:hover .brand-card__arrow {
  opacity: 1;
  transform: translateX(2px);
}

.brand-card__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  margin: 0 -8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-card__list li:hover {
  color: var(--accent-strong);
  background: rgba(23, 135, 121, 0.06);
}

.brand-card__list li:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.brand-card__list li span:first-child {
  font-size: 0.95rem;
}

.process-card {
  min-height: 190px;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 248, 0.92));
}

.process-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(23, 135, 121, 0.1);
  border: 1px solid rgba(23, 135, 121, 0.12);
  color: var(--accent-strong);
}

.process-card__body {
  display: grid;
  gap: 10px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 248, 0.92));
  border: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(120px, 0.5fr) minmax(120px, 0.5fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.price-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(20, 30, 40, 0.07);
  border-color: rgba(23, 135, 121, 0.18);
}

.price-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.price-row__main {
  display: grid;
  gap: 4px;
}

.price-row__device,
.price-row__repair {
  margin: 0;
}

.price-row__device {
  font-weight: 700;
  color: var(--text);
}

.price-row__repair {
  font-size: 0.92rem;
  color: var(--muted);
}

.price-row__price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.price-row__time {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-row__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.price-row__arrow {
  transition: transform 0.2s ease;
}

.price-row:hover .price-row__action {
  color: var(--accent);
}

.price-row:hover .price-row__arrow {
  transform: translateX(3px);
}

.price-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 22px 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 249, 0.88));
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.price-fallback:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 64px rgba(20, 30, 40, 0.1);
  border-color: rgba(23, 135, 121, 0.22);
  border-left-color: var(--accent-strong);
}

.price-fallback:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.price-fallback__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-fallback__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-fallback__header h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.2;
}

.price-fallback__marker {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(23, 135, 121, 0.12);
  border: 1px solid rgba(23, 135, 121, 0.18);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  line-height: 1;
}

.price-fallback__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
}

.price-fallback__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent-strong);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.price-fallback__arrow {
  transition: transform 0.2s ease;
}

.price-fallback:hover .price-fallback__action {
  color: var(--accent);
}

.price-fallback:hover .price-fallback__arrow {
  transform: translateX(3px);
}

.proof-visual {
  min-height: 100%;
}

.review-card__quote {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

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

.faq-item {
  padding: 0 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  padding: 18px 0;
  font-weight: 700;
}

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

.faq-item__icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  padding: 0 0 18px;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.contact-panel {
  order: 2;
  background:
    linear-gradient(180deg, rgba(249, 250, 248, 0.98), rgba(244, 247, 244, 0.92));
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.contact-trust__item {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(23, 135, 121, 0.08);
  border: 1px solid rgba(23, 135, 121, 0.12);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-strong);
}

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

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.contact-list span {
  font-size: 0.84rem;
  color: var(--muted);
}

.contact-list strong {
  font-size: 1rem;
}

.form-panel {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 249, 0.95));
}

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

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

.form-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.form-trust__item {
  font-size: 0.8rem;
  color: var(--muted);
}

.form-trust__divider {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--muted);
  opacity: 0.4;
}

.form-trust__item--legal {
  color: var(--muted);
  font-size: 0.76rem;
}

.repeat-visit-panel,
.form-banner {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.repeat-visit-panel {
  background: rgba(247, 198, 108, 0.16);
  border: 1px solid rgba(247, 198, 108, 0.28);
}

.form-banner--error {
  color: var(--danger);
  background: rgba(177, 74, 74, 0.08);
  border: 1px solid rgba(177, 74, 74, 0.16);
}

.form-banner--success {
  background: rgba(32, 112, 96, 0.1);
  border: 1px solid rgba(32, 112, 96, 0.16);
}

.form-banner h3,
.repeat-visit-panel h3 {
  margin: 0 0 10px;
}

.site-footer {
  padding: 16px 0 30px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.sticky-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 12px;
  z-index: 24;
  display: none;
  gap: 8px;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 32, 43, 0.08);
  box-shadow: 0 18px 40px rgba(20, 32, 43, 0.12);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.sticky-bar__button {
  flex: 1;
  min-height: 50px;
  padding: 10px 12px;
}

@media (max-width: 1080px) {
  .service-grid,
  .brand-grid,
  .process-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .site-header {
    --header-height: 78px;
    padding-top: 12px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-actions .button--ghost {
    display: none;
  }

  .hero-grid,
  .service-grid,
  .brand-grid,
  .process-grid,
  .proof-grid,
  .review-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-fallback {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .service-card--featured,
  .brand-card--featured {
    grid-column: span 1;
  }

  .brand-fallback {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .price-fallback {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 28px;
  }

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

  .price-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .price-list__head {
    display: none;
  }

  .service-card--featured {
    grid-column: span 1;
  }

  .form-meta,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel,
  .form-panel {
    order: initial;
  }

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

  .sticky-bar {
    display: flex;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 24px, 100%);
  }

  .section {
    padding: 22px 0 32px;
  }

  .hero-copy,
  .quick-card,
  .contact-panel,
  .form-panel {
    padding: 20px 18px;
  }

  .hero-copy {
    gap: 18px;
  }

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

  .hero-copy__lead {
    font-size: 1rem;
  }

  .hero-copy .section-tag,
  .quick-card .section-tag {
    padding: 10px 20px;
  }

  .proof-strip {
    gap: 12px;
  }

  .proof-pill {
    min-height: 98px;
    padding: 16px 12px;
  }

  .proof-pill__value {
    max-width: 11ch;
    margin: 0 auto;
    font-size: 0.88rem;
  }

  .button,
  .sticky-bar__button {
    width: 100%;
  }

  .sticky-bar__button {
    width: auto;
    min-width: 0;
  }

  .header-actions .button--primary {
    width: auto;
    min-width: 0;
    padding-inline: 14px;
  }

  .hero-actions-row,
  .contact-actions,
  .panel-actions {
    flex-direction: column;
    gap: 10px;
  }

  .runtime-notice__inner {
    padding: 16px;
  }

  .trust-block {
    padding: 16px;
  }

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

  .trust-block__value {
    font-size: 1.32rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .card,
  .price-row,
  .faq-item {
    animation: rise-in 0.55s ease both;
  }

  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
