:root {
  --bg: #f4efe7;
  --bg-soft: #efe8de;
  --card: rgba(255, 251, 246, 0.74);
  --card-strong: rgba(255, 253, 249, 0.92);
  --text: #1f1b16;
  --muted: #6d645a;
  --line: rgba(48, 35, 20, 0.1);
  --accent: #0f766e;
  --accent-dark: #0a4c47;
  --accent-soft: #d8efe9;
  --accent-glow: rgba(15, 118, 110, 0.16);
  --signal: #f97316;
  --signal-soft: rgba(249, 115, 22, 0.14);
  --shadow: 0 20px 60px rgba(59, 39, 14, 0.12);
  --shadow-soft: 0 12px 30px rgba(59, 39, 14, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(249, 115, 22, 0.16), transparent 20%),
    radial-gradient(circle at 78% 78%, rgba(204, 180, 233, 0.18), transparent 22%),
    linear-gradient(180deg, #faf5ef 0%, var(--bg) 52%, #f1eadf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  left: 8%;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.08), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header__inner,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 14px 0;
  background: rgba(244, 239, 231, 0.72);
  border-bottom: 1px solid rgba(48, 35, 20, 0.08);
  backdrop-filter: blur(24px);
}

.site-header__inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-logo,
.dashboard-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(15, 118, 110, 0.18));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.band-copy h2,
.contact-panel h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy small,
.hero-text,
.section-heading,
.service-card p,
.step-card p,
.plan-card p,
.band-grid p,
.testimonial-card p,
.faq-list p,
.contact-panel p,
.site-footer span {
  color: var(--muted);
}

.nav,
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.nav a,
.footer-links a,
.hero-contacts a,
.hero-contacts span,
.contact-list a {
  color: var(--muted);
  text-decoration: none;
}

.nav a {
  font-weight: 700;
}

.link-chip,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.link-chip {
  background: rgba(255, 255, 255, 0.58);
  border-color: var(--line);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button:hover,
.link-chip:hover,
.service-card:hover,
.plan-card:hover,
.testimonial-card:hover,
.rate-card:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 14px 36px rgba(31, 27, 22, 0.18);
}

.button-secondary,
.button-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.58);
}

.hero,
.contact-panel,
.feature-band {
  position: relative;
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
  padding: 48px 0 40px;
}

.hero::before,
.feature-band::before,
.contact-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.14), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.93;
}

.hero-text {
  max-width: 61ch;
  margin: 20px 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions,
.hero-contacts,
.mini-tags,
.trust-grid,
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.hero-metrics,
.service-grid,
.steps,
.plan-grid,
.band-grid,
.testimonial-grid,
.rates-board {
  display: grid;
  gap: 18px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.hero-metrics li,
.service-card,
.step-card,
.summary-card,
.plan-card,
.testimonial-card,
.faq-list details,
.contact-panel,
.feature-band,
.rate-card,
.trust-strip {
  background: var(--card);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  padding: 18px;
  border-radius: var(--radius-md);
}

.hero-metrics strong {
  display: block;
  font-size: 1.55rem;
}

.hero-contacts {
  margin-top: 24px;
}

.hero-contacts a,
.hero-contacts span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
}

.glass,
.dashboard-card,
.calculator {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 247, 240, 0.66));
  border: 1px solid rgba(47, 34, 22, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px);
}

.dashboard-card,
.calculator,
.summary-card,
.feature-band,
.contact-panel {
  border-radius: var(--radius-xl);
}

.dashboard-card,
.summary-card,
.calculator,
.plan-card,
.service-card,
.step-card,
.testimonial-card,
.faq-list details,
.rate-card {
  padding: 24px;
}

.dashboard-card {
  position: relative;
  z-index: 2;
}

.dashboard-top,
.status-strip,
.dashboard-headline,
.plan-head,
.section-heading,
.summary-plan {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-headline {
  align-items: center;
}

.dashboard-headline span,
.mini-card p,
.summary-card p,
.rate-card span,
.plan-head span {
  color: var(--muted);
}

.dashboard-headline strong {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
}

.live-indicator::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.1);
  animation: pulse 1.8s ease infinite;
}

.signal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.signal-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  color: var(--accent-dark);
  font-weight: 800;
}

.status-strip {
  margin-top: 22px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(15, 118, 110, 0.08);
}

.status-strip strong,
.mini-card strong,
.summary-total strong,
.rate-card strong,
.plan-head strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.status-strip span,
.mini-card span,
.summary-plan small,
.rate-card small,
.muted-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline-item span,
.step-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-weight: 800;
  background: rgba(15, 118, 110, 0.11);
  color: var(--accent-dark);
}

.timeline-item small {
  color: var(--muted);
}

.timeline-item.is-live span {
  background: rgba(249, 115, 22, 0.16);
  color: #8d4207;
}

.mini-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.mini-tags span,
.marquee-track span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.accent-card {
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.14), rgba(255, 255, 255, 0.65));
}

.trust-strip {
  padding: 18px 22px;
  border-radius: 28px;
}

.trust-strip p {
  margin: 0 0 14px;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.section {
  padding: 88px 0 0;
}

.section-heading {
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2,
.band-copy h2,
.contact-panel h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

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

.service-card,
.plan-card,
.testimonial-card,
.rate-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.plan-card:hover,
.rate-card:hover {
  border-color: rgba(15, 118, 110, 0.22);
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--accent-dark);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.step-card h3 {
  margin: 18px 0 10px;
}

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

.rate-card {
  border-radius: var(--radius-lg);
}

.rate-card strong {
  margin-top: 16px;
}

.muted-card {
  background: rgba(255, 248, 243, 0.76);
}

.process .steps,
.testimonial-grid,
.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.plan-card,
.testimonial-card {
  border-radius: var(--radius-lg);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
}

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

.calculator label,
.contact-form input,
.contact-form textarea {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.calculator input,
.calculator select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(47, 34, 22, 0.14);
  background: rgba(255, 255, 255, 0.84);
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  min-height: 130px;
  padding: 16px;
  resize: vertical;
}

.toggle {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(15, 118, 110, 0.08);
}

.toggle input {
  width: 18px;
  height: 18px;
  min-height: auto;
}

.summary-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.summary-plan {
  display: block;
  padding: 16px;
  border-radius: 20px;
  background: rgba(15, 118, 110, 0.08);
}

.summary-plan b {
  display: block;
  font-size: 1.1rem;
}

.summary-list,
.plan-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.plan-grid {
  align-items: stretch;
}

.plan-card {
  position: relative;
}

.plan-card--featured {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 22%),
    rgba(255, 251, 246, 0.82);
  transform: translateY(-8px);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-band {
  padding: 32px;
  margin-top: 88px;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.16), transparent 26%),
    linear-gradient(135deg, rgba(255, 251, 247, 0.85), rgba(243, 236, 227, 0.78));
}

.band-grid {
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.band-grid article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

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

.faq-list details {
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
  line-height: 1.7;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  padding: 32px;
}

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

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.icon-wrap--small {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.site-footer {
  margin-top: 48px;
  padding: 26px 0 10px;
  border-top: 1px solid rgba(48, 35, 20, 0.08);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .pricing-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .process .steps,
  .plan-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel h2,
  .section-heading h2 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header__inner,
  .site-footer {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    max-width: none;
  }

  .hero-metrics,
  .service-grid,
  .calculator,
  .band-grid,
  .testimonial-grid,
  .plan-grid,
  .rates-board,
  .mini-panels {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .dashboard-top,
  .status-strip {
    display: block;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .section {
    padding-top: 72px;
  }

  .feature-band,
  .contact-panel,
  .dashboard-card,
  .calculator,
  .summary-card {
    padding: 20px;
    border-radius: 24px;
  }
}
