:root {
  --bg: #f3f5f0;
  --surface: #ffffff;
  --surface-strong: #f8faf6;
  --ink: #18201c;
  --muted: #58635d;
  --line: #d8dfd9;
  --accent: #1f6b5b;
  --accent-strong: #174f44;
  --accent-soft: #e6f0ec;
  --dark: #121615;
  --shadow: 0 18px 44px rgba(18, 22, 21, 0.08);
  --radius: 8px;
  --header-h: 72px;
  --max: 1180px;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

[hidden] {
  display: none !important;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  font-size: 2.85rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 1200;
  padding: 10px 14px;
  background: var(--dark);
  color: #fff;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 22, 21, 0.9);
  backdrop-filter: blur(16px);
}

.header-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: min(220px, 56vw);
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.mobile-menu {
  display: none;
  padding: 0 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 22, 21, 0.98);
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn.btn-primary {
  background: var(--accent);
  color: #fff;
}

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

.btn.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn.btn-secondary.light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 48px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroPan 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 22, 21, 0.84) 0%, rgba(18, 22, 21, 0.68) 42%, rgba(18, 22, 21, 0.24) 100%),
    linear-gradient(180deg, rgba(18, 22, 21, 0.12) 0%, rgba(18, 22, 21, 0.28) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 20px 72px;
  color: #fff;
}

.hero-shell > * {
  max-width: 610px;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-kicker.on-dark {
  color: #9bd1c4;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 18px;
}

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

.hero-points {
  margin-top: 28px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.signal-bar {
  padding: 22px 20px 0;
}

.signal-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.signal-shell > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.signal-shell strong {
  display: block;
  font-size: 1rem;
}

.signal-shell span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 72px 20px;
}

.section-heading,
.pricing-grid,
.table-shell,
.tech-grid,
.process-list,
.process-note,
.service-grid,
.authority-grid,
.contact-shell {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  margin-top: 12px;
}

.ui-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.ui-badge.ui-badge-tone {
  background: var(--accent-soft);
  border-color: rgba(31, 107, 91, 0.14);
  color: var(--accent-strong);
}

.ui-badge.ui-badge-premium {
  background: rgba(31, 107, 91, 0.12);
  border-color: rgba(31, 107, 91, 0.28);
  color: var(--accent-strong);
}

.ui-badge.ui-badge-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.benefits-section,
.pricing-overview,
.selector-section,
.offers-section,
.choose-section,
.included-section,
.why-section,
.faq-section {
  background: transparent;
}

.benefits-grid,
.overview-grid,
.included-grid,
.why-grid,
.faq-list {
  max-width: var(--max);
  margin: 0 auto;
}

.benefits-grid,
.overview-grid {
  display: grid;
  gap: 18px;
}

.benefit-card,
.overview-card,
.included-item,
.why-card,
.faq-item,
.choose-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.benefit-card,
.overview-card,
.included-item,
.why-card,
.choose-card {
  padding: 24px;
}

.overview-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.benefit-card p,
.overview-card p,
.included-item p,
.why-card p,
.choose-card p,
.offer-panel-head p,
.selector-summary,
.compat-note {
  margin-top: 12px;
  color: var(--muted);
}

.pricing-meta,
.contact-badges {
  max-width: var(--max);
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.selector-shell,
.offer-panel {
  max-width: var(--max);
  margin: 0 auto;
}

.selector-shell {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.selector-buttons {
  display: grid;
  gap: 12px;
}

.selector-button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  padding: 18px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.selector-button span,
.selector-button small {
  display: block;
}

.selector-button span {
  font-size: 1.02rem;
  font-weight: 800;
}

.selector-button small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.selector-button:hover,
.selector-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(18, 22, 21, 0.08);
}

.selector-button.is-active {
  background: var(--accent-soft);
  border-color: rgba(31, 107, 91, 0.32);
  box-shadow: 0 16px 32px rgba(31, 107, 91, 0.12);
}

.offer-panel + .offer-panel {
  margin-top: 18px;
}

.offers-note,
#comparison-context {
  max-width: var(--max);
  margin: 0 auto 18px;
  color: var(--muted);
}

.offer-panel-head {
  display: grid;
  gap: 10px;
  align-items: end;
  margin-bottom: 18px;
}

.offer-grid,
.choose-grid {
  display: grid;
  gap: 18px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.offer-card:hover,
.offer-card:focus-within,
.choose-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(18, 22, 21, 0.12);
}

.offer-card.featured,
.choose-card.featured {
  border-color: rgba(31, 107, 91, 0.36);
  box-shadow: 0 22px 52px rgba(31, 107, 91, 0.14);
}

.offer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choose-card .offer-badges {
  margin-bottom: 8px;
}

.offer-position {
  color: var(--muted);
  font-weight: 600;
}

.offer-total {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.offer-breakdown {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-breakdown li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.offer-breakdown strong {
  color: var(--ink);
  font-size: 1rem;
}

.tuning-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.tuning-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tuning-switch {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #c9d0cb;
  transition: background 0.2s ease;
}

.tuning-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(18, 22, 21, 0.14);
  transition: transform 0.2s ease;
}

.tuning-checkbox:checked + .tuning-switch {
  background: var(--accent);
}

.tuning-checkbox:checked + .tuning-switch::after {
  transform: translateX(20px);
}

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

.tuning-copy small {
  margin-top: 4px;
  color: var(--muted);
}

.offer-live-total {
  display: grid;
  gap: 6px;
}

.offer-live-total span {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}

.offer-total-note {
  color: var(--accent-strong);
  font-weight: 700;
}

.offer-card.is-tuned .offer-live-total {
  color: var(--accent-strong);
}

.offer-fit {
  color: var(--muted);
}

.offer-fit strong {
  color: var(--ink);
}

.compat-note {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 107, 91, 0.18);
  background: rgba(31, 107, 91, 0.06);
}

.choose-card h3,
.benefit-card h3,
.included-item h3,
.why-card h3,
.overview-card h3 {
  margin-bottom: 0;
}

.included-grid,
.why-grid {
  display: grid;
  gap: 18px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 52px 20px 20px;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-strong);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  gap: 18px;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.price-card.featured {
  border-color: rgba(31, 107, 91, 0.36);
  box-shadow: 0 22px 50px rgba(31, 107, 91, 0.16);
}

.price-card:hover,
.price-card:focus-within,
.process-step:hover,
.service-item:hover,
.authority-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(18, 22, 21, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.price-label {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--muted);
}

.price-amount {
  margin-top: 6px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.price-caption {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-text,
.price-fit {
  margin-top: 16px;
  color: var(--muted);
}

.price-fit {
  color: var(--ink);
  font-weight: 600;
}

.price-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.price-list li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--accent-strong);
  font-weight: 700;
}

.section-note {
  max-width: var(--max);
  margin: 18px auto 0;
  color: var(--muted);
}

.table-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
}

.comparison-table thead th {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 800;
}

.comparison-table tbody th {
  background: var(--surface-strong);
  width: 220px;
  font-weight: 800;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.tech-grid {
  display: grid;
  gap: 18px;
}

.tech-item {
  padding: 22px 0 0;
  border-top: 2px solid var(--line);
}

.tech-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 800;
  margin-bottom: 14px;
}

.tech-item p {
  margin-top: 10px;
  color: var(--muted);
}

.process-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.process-step {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.process-step p {
  margin-top: 12px;
  color: var(--muted);
}

.process-note {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
}

.service-grid,
.authority-grid,
.contact-shell {
  display: grid;
  gap: 18px;
}

.service-item,
.authority-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-item p,
.authority-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.authority-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.authority-list li {
  padding-left: 18px;
  position: relative;
}

.authority-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.quote-panel blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
}

.quote-panel p + blockquote {
  margin-top: 24px;
}

.section-contact {
  background: var(--dark);
  color: #fff;
}

.section-contact .section-kicker,
.section-contact h2 {
  color: #fff;
}

.contact-copy p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-details li {
  color: rgba(255, 255, 255, 0.78);
}

.contact-details strong {
  color: #fff;
  margin-right: 8px;
}

.contact-details a,
.footer-meta a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}

.contact-details a:hover,
.contact-details a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.lead-form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

.form-row label {
  font-weight: 700;
  color: #fff;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.form-row select {
  appearance: none;
}

.form-row select option {
  color: var(--ink);
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid #9bd1c4;
  outline-offset: 2px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-note,
.form-status {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.form-status.is-success {
  color: #9bd1c4;
}

.form-status.is-error {
  color: #f7c1bf;
}

.site-footer {
  padding: 28px 20px 104px;
  background: #0d110f;
  color: rgba(255, 255, 255, 0.72);
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.site-footer strong {
  display: block;
  color: #fff;
}

.footer-logo-link {
  display: inline-flex;
}

.footer-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
}

.site-footer p {
  margin-top: 14px;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 8px;
}

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

.footer-copy {
  max-width: var(--max);
  margin: 20px auto 0;
  font-size: 0.9rem;
}

.mobile-cta {
  position: fixed;
  inset: auto 0 0;
  z-index: 1050;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(18, 22, 21, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: #fff;
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta a:last-child {
  border-right: 0;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes heroPan {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}

@media (min-width: 720px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .signal-shell,
  .benefits-grid,
  .overview-grid,
  .selector-buttons,
  .offer-grid,
  .choose-grid,
  .included-grid,
  .why-grid,
  .contact-shell,
  .footer-shell,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-shell > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .brand-logo {
    width: 246px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .header-shell {
    padding: 0 28px;
  }

  .hero-shell,
  .section,
  .site-footer {
    padding-left: 28px;
    padding-right: 28px;
  }

  .signal-bar {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .signal-shell > div:last-child {
    grid-column: auto;
  }

  .overview-grid,
  .benefits-grid,
  .offer-grid,
  .choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .offer-panel-head {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .contact-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .footer-shell {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
  }
}

@media (max-width: 979px) {
  .header-actions .btn {
    display: none;
  }
}

@media (max-width: 719px) {
  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    min-height: calc(92svh - var(--header-h));
  }

  .hero-shell {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .overview-card,
  .benefit-card,
  .offer-card,
  .choose-card,
  .included-item,
  .why-card,
  .lead-form {
    padding: 20px;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (min-width: 980px) {
  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

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

  .hero-image {
    animation: none;
  }

  .btn,
  .price-card,
  .process-step,
  .service-item,
  .authority-panel,
  .menu-toggle span {
    transition: none;
  }
}
