:root {
  color-scheme: light;
  --ink: #1d2830;
  --muted: #5b6a73;
  --paper: #f6f4ef;
  --surface: #ffffff;
  --surface-soft: #f1f7f4;
  --line: #d6ded6;
  --primary: #0f6a59;
  --primary-dark: #0a4f43;
  --accent: #b95b31;
  --accent-soft: #f8e5da;
  --hero-wash: linear-gradient(145deg, #fcf6ee 0%, #eef7f3 54%, #f7f6f2 100%);
  --section-wash: linear-gradient(180deg, rgba(15, 106, 89, 0.08), rgba(185, 91, 49, 0.05));
  --shadow: 0 18px 42px rgba(29, 40, 48, 0.12);
  --panel-shadow: 0 20px 48px rgba(29, 40, 48, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(185, 91, 49, 0.1), transparent 28%),
    radial-gradient(circle at top left, rgba(15, 106, 89, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(246, 244, 239, 0.15)),
    var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  background: rgba(246, 244, 239, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--primary), #3f8f78);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

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

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-area: nav;
  flex-wrap: wrap;
}

.nav-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(15, 106, 89, 0.08);
  color: var(--primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  grid-area: actions;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.language-link {
  text-decoration: none;
}

.language-link.is-active {
  color: var(--primary-dark);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6f3017;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone-mobile {
  display: none;
}

.header-phone-number {
  white-space: nowrap;
}

.section {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.84fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding-top: 34px;
  position: relative;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 36px;
  right: 0;
  width: min(420px, 42vw);
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 106, 89, 0.1), transparent 70%);
  content: "";
  filter: blur(10px);
  z-index: -1;
}

.hero-copy,
.hero-panel,
.offer-box,
.area-panel,
.trust-panel,
.final-cta,
.service-card,
.issue,
.process-list li {
  animation: rise 420ms ease-out both;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 8vw, 4.8rem);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  font-size: clamp(1.18rem, 3.2vw, 1.52rem);
  line-height: 1.42;
}

.trust-line,
.helper-text,
.section-heading p,
.service-card p,
.process-list span,
.offer-copy p,
.area-panel p,
.site-footer {
  color: var(--muted);
}

.trust-line {
  max-width: 680px;
  margin: 16px 0 0;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 172px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(145deg, var(--primary), #1e816d);
  color: #fff;
  box-shadow: 0 14px 28px rgba(15, 106, 89, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
}

.button-secondary {
  border-color: rgba(15, 106, 89, 0.2);
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #eef8f5;
}

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

.hero-points li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  content: "•";
  font-size: 1.3rem;
  line-height: 1;
}

.hero-visual {
  display: grid;
}

.hero-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-radius: 12px;
  background: var(--hero-wash);
  box-shadow: var(--panel-shadow);
}

.hero-photo-frame {
  padding: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(185, 91, 49, 0.16), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 244, 0.78)),
    var(--surface);
}

.hero-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(29, 40, 48, 0.12);
}

.hero-scene {
  min-height: 468px;
  overflow: hidden;
  border-color: rgba(15, 106, 89, 0.14);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.86), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(185, 91, 49, 0.12), transparent 18%),
    linear-gradient(145deg, #fcf6ee 0%, #eef7f3 56%, #f7f6f2 100%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(15, 106, 89, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

.hero-orbit-left {
  top: 52px;
  left: 32px;
  width: 152px;
  height: 152px;
}

.hero-orbit-right {
  right: 36px;
  bottom: 122px;
  width: 126px;
  height: 126px;
}

.hero-device {
  position: absolute;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 34px rgba(29, 40, 48, 0.09);
  backdrop-filter: blur(6px);
}

.hero-monitor {
  inset: 68px 72px 118px 42px;
  padding: 18px;
}

.monitor-topbar {
  display: flex;
  gap: 8px;
}

.monitor-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 106, 89, 0.14);
}

.monitor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(146px, 0.9fr);
  gap: 14px;
  margin-top: 18px;
}

.monitor-main-card,
.mini-check-card {
  border: 1px solid rgba(15, 106, 89, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 244, 0.7)),
    #fff;
}

.monitor-main-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 214px;
  padding: 18px;
}

.visual-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.monitor-main-card strong,
.hero-phone-card strong,
.hero-printer-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  line-height: 1.18;
}

.monitor-main-card span,
.mini-check-card small,
.hero-phone-card span,
.hero-printer-card span,
.hero-router-card small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.monitor-side-stack {
  display: grid;
  gap: 12px;
}

.mini-check-card {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.check-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(15, 106, 89, 0.1);
}

.mini-check-card strong {
  font-size: 0.98rem;
}

.hero-phone-card {
  top: 42px;
  right: 36px;
  width: 178px;
  padding: 16px 16px 18px;
}

.hero-router-card {
  bottom: 126px;
  left: 22px;
  width: 164px;
  padding: 16px;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 34px;
  margin: 10px 0 8px;
}

.signal-bars span {
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #4ea790, var(--primary));
}

.signal-bars span:nth-child(1) {
  height: 12px;
}

.signal-bars span:nth-child(2) {
  height: 22px;
}

.signal-bars span:nth-child(3) {
  height: 32px;
}

.hero-printer-card {
  right: 38px;
  bottom: 138px;
  width: 190px;
  padding: 16px;
}

.hero-check-cluster {
  position: absolute;
  bottom: 78px;
  left: 132px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 280px;
}

.hero-check-cluster span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-check-cluster span::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 106, 89, 0.12);
  color: var(--primary);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 900;
}

.screen {
  width: min(100%, 430px);
  min-height: 320px;
  padding: 18px;
  border: 8px solid #24363d;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(15, 106, 89, 0.14), rgba(185, 91, 49, 0.08)),
    #ffffff;
}

.screen-bar {
  width: 100%;
  height: 24px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: #dbe8e2;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 800;
}

.pulse {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(15, 106, 89, 0.12);
}

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

.screen li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 310px;
  justify-content: flex-end;
  margin-top: 0;
}

.hero-badges span {
  padding: 10px 12px;
  border: 1px solid rgba(15, 106, 89, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.section-heading.compact {
  margin-bottom: 14px;
}

.quickpick-section,
.services-section,
.faq-section,
.signals-section,
.process-section,
.support-section {
  position: relative;
}

.services-section::before {
  position: absolute;
  top: 126px;
  right: 10px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(15, 106, 89, 0.08);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 106, 89, 0.08), transparent 68%);
  content: "";
  pointer-events: none;
}

.faq-section::before,
.support-section::before {
  position: absolute;
  left: 8px;
  top: 34px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(185, 91, 49, 0.09), transparent 68%);
  content: "";
  pointer-events: none;
}

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

.quickpick-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(15, 106, 89, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 244, 0.74)),
    var(--surface);
  box-shadow: 0 14px 30px rgba(29, 40, 48, 0.08);
  color: inherit;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.quickpick-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  aspect-ratio: 16 / 10;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.quickpick-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.quickpick-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickpick-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(15, 106, 89, 0.38);
  content: "↓";
  font-size: 1rem;
  font-weight: 900;
}

.quickpick-card:hover,
.quickpick-card:focus-visible {
  border-color: rgba(15, 106, 89, 0.26);
  box-shadow: 0 20px 40px rgba(29, 40, 48, 0.12);
  transform: translateY(-4px);
}

.quickpick-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(15, 106, 89, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(15, 106, 89, 0.14), rgba(185, 91, 49, 0.12)),
    #fff;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 10px 22px rgba(15, 106, 89, 0.1);
  margin-top: -38px;
  margin-left: 14px;
  z-index: 1;
}

.quickpick-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  line-height: 1.18;
}

.quickpick-card span:last-of-type {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.42;
}

.quickpick-card small {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 106, 89, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 244, 0.76)),
    var(--surface);
  box-shadow: 0 16px 34px rgba(29, 40, 48, 0.08);
  flex-direction: column;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-card::after {
  position: absolute;
  top: -74px;
  right: -74px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(185, 91, 49, 0.07);
  content: "";
  pointer-events: none;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(15, 106, 89, 0.26);
  box-shadow: 0 22px 46px rgba(29, 40, 48, 0.13);
  transform: translateY(-4px);
}

.service-card-featured {
  grid-column: 1 / -1;
  border-color: rgba(185, 91, 49, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 229, 218, 0.42)),
    var(--surface);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(15, 106, 89, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(15, 106, 89, 0.13), rgba(185, 91, 49, 0.12)),
    #fff;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 10px 22px rgba(15, 106, 89, 0.1);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

.service-subtitle {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.35;
}

.service-description {
  margin: 0 0 18px;
  font-size: 0.98rem;
}

.service-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.42;
}

.service-list li::before {
  position: absolute;
  left: 0;
  top: 0.18em;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 106, 89, 0.11);
  color: var(--primary);
  content: "✓";
  font-size: 0.62rem;
  font-weight: 900;
  line-height: 14px;
}

.service-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 12px;
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(15, 106, 89, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.service-price-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-price {
  margin: 0;
  grid-column: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.1;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid rgba(15, 106, 89, 0.18);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(15, 106, 89, 0.16);
}

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

.service-note {
  max-width: 980px;
  margin: 22px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(15, 106, 89, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  text-align: center;
}

.offer-section {
  width: 100%;
  max-width: none;
  padding: 60px 16px;
  background: var(--section-wash);
}

.offer-box {
  width: min(1020px, 100%);
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #c8d5cd;
  border-radius: 12px;
  background: var(--surface);
}

.offer-copy {
  display: grid;
  gap: 10px;
}

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

.issue {
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-left: 6px solid var(--accent);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 246, 242, 0.7)),
    var(--surface);
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 244, 0.66)),
    var(--surface);
  counter-increment: process;
}

.process-list li::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  content: counter(process);
  font-weight: 800;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  margin-top: 8px;
  font-size: 0.96rem;
}

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

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 246, 242, 0.75)),
    var(--surface);
  box-shadow: 0 10px 26px rgba(29, 40, 48, 0.06);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  align-items: start;
}

.area-panel,
.trust-panel {
  padding: 28px;
  border: 1px solid rgba(15, 106, 89, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 244, 0.72)),
    var(--surface);
  box-shadow: 0 14px 30px rgba(29, 40, 48, 0.08);
}

.area-panel {
  border-top: 6px solid var(--primary);
}

.trust-panel {
  border-top: 6px solid var(--accent);
}

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

.helper-panel {
  padding: 28px;
  border: 1px solid rgba(15, 106, 89, 0.13);
  border-top: 6px solid var(--primary);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 244, 0.72)),
    var(--surface);
  box-shadow: 0 14px 30px rgba(29, 40, 48, 0.08);
}

.helper-panel h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.helper-copy {
  margin: 16px 0 0;
  color: var(--muted);
}

.helper-points {
  margin-top: 14px;
}

.trust-panel-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.trust-media {
  overflow: hidden;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(29, 40, 48, 0.08);
}

.trust-media img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-copy {
  min-width: 0;
}

.trust-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-heading .eyebrow {
  margin-bottom: 8px;
}

.trust-heading h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
}

.area-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.area-heading > div {
  min-width: 0;
}

.area-heading .eyebrow {
  margin-bottom: 8px;
}

.area-panel h2 {
  display: grid;
  gap: 4px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.area-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(15, 106, 89, 0.18);
  border-radius: 14px;
  background: rgba(15, 106, 89, 0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.area-panel > p {
  margin-top: 20px;
  font-size: 1.04rem;
  line-height: 1.5;
}

.trust-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(185, 91, 49, 0.18);
  border-radius: 14px;
  background: rgba(185, 91, 49, 0.1);
  color: #8d4220;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.text-nowrap {
  white-space: nowrap;
}

.plain-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(15, 106, 89, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 244, 0.74)),
    var(--surface-soft);
}

.plain-list li::before {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--primary);
  content: "✓";
  font-weight: 800;
}

.final-cta {
  padding: 58px 24px;
  border-radius: 12px;
  background: linear-gradient(145deg, #16373d, #1e5150);
  color: #fff;
  text-align: center;
}

.final-cta .eyebrow {
  color: #ffbd98;
}

.final-copy {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.phone-large {
  display: inline-block;
  margin-top: 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.final-cta .cta-row {
  justify-content: center;
}

.final-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

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

.site-footer {
  padding: 28px 20px 36px;
  text-align: center;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@media (max-width: 980px) {
  .hero,
  .support-section {
    grid-template-columns: 1fr;
  }

  .quickpick-grid,
  .faq-grid,
  .service-grid,
  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-panel-layout {
    grid-template-columns: 1fr;
  }

  .trust-stack {
    gap: 16px;
  }

  .hero-scene {
    min-height: 438px;
  }

  .hero-monitor {
    inset: 70px 52px 122px 34px;
  }

  .hero-phone-card {
    right: 18px;
  }

  .hero-printer-card {
    right: 18px;
    bottom: 142px;
  }

  .hero-router-card {
    left: 14px;
  }

  .hero-check-cluster {
    left: 92px;
    bottom: 84px;
    max-width: 250px;
  }
}

@media (max-width: 860px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    gap: 10px 12px;
    padding: 10px 16px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .header-actions {
    margin-left: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 18px;
    padding-top: 18px;
  }

  .hero-visual {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .site-header {
    gap: 8px 10px;
    padding: 8px 12px 9px;
  }

  .section {
    width: min(100% - 24px, 1140px);
    padding: 42px 0;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 1.12rem;
  }

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

  .header-actions {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 6px;
  }

  .site-nav {
    justify-content: space-between;
    gap: 4px;
    white-space: nowrap;
  }

  .nav-link {
    flex: 1 1 0;
    min-width: 0;
    padding: 6px 4px;
    font-size: 0.74rem;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .language-switch {
    gap: 6px;
    font-size: 0.8rem;
    padding: 6px 8px;
  }

  .header-phone {
    gap: 0;
    padding: 7px 9px;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
  }

  .header-phone-mobile {
    display: inline;
  }

  .header-phone-label,
  .header-phone-number {
    display: none;
  }

  .cta-row,
  .button {
    width: 100%;
  }

  .button {
    min-width: 0;
  }

  .hero-panel {
    padding: 14px;
  }

  .hero-photo-frame {
    padding: 10px;
  }

  .hero-photo {
    border-radius: 9px;
  }

  .hero-scene {
    min-height: 356px;
    padding: 14px;
  }

  .hero-monitor {
    inset: 76px 18px 86px 18px;
    padding: 12px;
  }

  .monitor-layout {
    grid-template-columns: 1fr;
  }

  .monitor-main-card {
    min-height: 0;
    gap: 8px;
    padding: 14px;
  }

  .monitor-side-stack {
    display: none;
  }

  .monitor-main-card strong {
    font-size: 1rem;
  }

  .monitor-main-card span {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .hero-phone-card {
    top: 16px;
    right: 14px;
    width: 118px;
    padding: 10px 11px;
  }

  .hero-router-card {
    left: 16px;
    bottom: 18px;
    width: 116px;
    padding: 10px 11px;
  }

  .hero-printer-card {
    display: none;
  }

  .hero-phone-card strong,
  .hero-router-card strong {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .hero-phone-card span,
  .hero-router-card small {
    display: none;
  }

  .hero-orbit,
  .hero-check-cluster,
  .hero-badges,
  .monitor-topbar {
    display: none;
  }

  .visual-label {
    font-size: 0.72rem;
  }

  .signal-bars {
    height: 24px;
    margin: 6px 0 0;
  }

  .signal-bars span {
    width: 10px;
  }

  .signal-bars span:nth-child(1) {
    height: 9px;
  }

  .signal-bars span:nth-child(2) {
    height: 16px;
  }

  .signal-bars span:nth-child(3) {
    height: 24px;
  }

  .screen {
    min-height: 206px;
    padding: 12px;
    border-width: 6px;
  }

  .screen-bar {
    height: 18px;
    margin-bottom: 14px;
  }

  .status-row {
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .screen ul {
    gap: 8px;
  }

  .screen li {
    padding: 10px 12px;
    font-size: 0.92rem;
  }

  .service-grid,
  .quickpick-grid,
  .faq-grid,
  .issue-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .services-section::before {
    display: none;
  }

  .process-list li,
  .faq-item,
  .issue,
  .service-card {
    min-height: 0;
  }

  .service-card {
    padding: 18px;
  }

  .quickpick-card {
    min-height: 0;
    padding: 18px;
  }

  .quickpick-thumb {
    aspect-ratio: 16 / 9;
  }

  .quickpick-icon {
    width: 46px;
    height: 46px;
    margin-top: -34px;
    margin-left: 12px;
  }

  .service-card-featured {
    grid-column: auto;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .service-footer {
    padding: 14px;
  }

  .offer-box,
  .area-panel,
  .helper-panel,
  .trust-panel,
  .final-cta {
    padding: 20px;
  }

  .trust-panel-layout {
    gap: 16px;
  }

  .area-heading {
    flex-direction: column;
    gap: 12px;
  }

  .trust-heading {
    gap: 12px;
  }

  .area-icon {
    width: 44px;
    height: 44px;
  }

  .trust-icon {
    width: 44px;
    height: 44px;
  }

  .text-nowrap {
    white-space: normal;
  }
}
