:root {
  --ink: #161f1d;
  --muted: #5f6d6a;
  --paper: #f4f7f5;
  --surface: #ffffff;
  --line: #d9e4df;
  --teal: #0d9488;
  --teal-dark: #075f58;
  --coral: #ff6148;
  --coral-dark: #d83e2a;
  --yellow: #f5c84c;
  --mint: #dff7ef;
  --charcoal: #0b1412;
  --shadow: 0 26px 80px rgba(11, 20, 18, 0.16);
  --shadow-soft: 0 16px 40px rgba(11, 20, 18, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(223, 247, 239, 0.72), transparent 420px),
    var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

::selection {
  color: #ffffff;
  background: var(--teal-dark);
}

.site-header {
  position: fixed;
  inset: 16px 18px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(11, 20, 18, 0.12);
  backdrop-filter: blur(18px);
  animation: dropIn 700ms ease both;
}

.brand,
.nav-links,
.hero-actions,
.hero-metrics,
.trust-strip,
.plan-top,
.site-footer,
.ticker-track {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  font-size: 0.85rem;
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.2);
}

.nav-links {
  justify-content: center;
  gap: 22px;
  color: #31413d;
  font-size: 0.94rem;
}

.nav-links a,
.site-footer a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  content: "";
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--teal-dark);
}

.nav-links a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #ffffff;
  background: var(--charcoal);
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(11, 20, 18, 0.18);
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 106px 24px 46px;
  overflow: hidden;
  background-image: url("assets/hero-growth.png");
  background-size: cover;
  background-position: center right;
}

.hero::before {
  position: absolute;
  inset: auto -6% -18% 48%;
  height: 48%;
  background: linear-gradient(120deg, rgba(13, 148, 136, 0.14), rgba(255, 97, 72, 0.16));
  filter: blur(16px);
  transform: skewY(-6deg);
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 247, 245, 0.99) 0%, rgba(244, 247, 245, 0.93) 36%, rgba(244, 247, 245, 0.18) 74%),
    linear-gradient(0deg, rgba(244, 247, 245, 0.92) 0%, rgba(244, 247, 245, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 690px;
  animation: fadeUp 850ms 120ms ease both;
}

.hero-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: min(1180px, 100%);
  min-height: 586px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 28px rgba(11, 20, 18, 0.08);
}

.hero-kicker::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(255, 97, 72, 0.45);
  animation: pulseDot 1.7s infinite;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13.6ch;
  margin-bottom: 18px;
  color: var(--charcoal);
  font-size: clamp(3.2rem, 5.9vw, 5.75rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 24px;
  color: #31413d;
  font-size: clamp(1.07rem, 2vw, 1.26rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 21px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
  content: "";
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 18px 34px rgba(7, 95, 88, 0.26);
}

.btn.primary:hover {
  box-shadow: 0 22px 42px rgba(7, 95, 88, 0.32);
}

.btn.secondary,
.btn.outline {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(11, 20, 18, 0.18);
}

.btn.outline {
  width: 100%;
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 14px;
}

.metric-card {
  min-width: 140px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  animation: floatSoft 4.8s ease-in-out infinite;
}

.metric-card:nth-child(2) {
  animation-delay: 450ms;
}

.metric-card:nth-child(3) {
  animation-delay: 900ms;
}

.hero-metrics dt {
  color: var(--coral-dark);
  font-size: 1.48rem;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.floating-order {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  bottom: 72px;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 224px;
  padding: 16px 18px 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: floatOrder 5s ease-in-out infinite;
}

.hero-calculator-panel {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: fadeUp 850ms 220ms ease both;
}

.hero-calc-header,
.hero-calc-total {
  display: grid;
  gap: 4px;
}

.hero-calc-header span,
.hero-calc-total span {
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-calc-header strong {
  color: var(--charcoal);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.02;
}

.hero-calculator-panel label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 900;
}

.hero-calculator-panel input,
.hero-calculator-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
}

.hero-calculator-panel input:focus,
.hero-calculator-panel select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.14);
}

.hero-calc-total {
  padding: 16px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), var(--teal-dark));
}

.hero-calc-total span {
  color: rgba(255, 255, 255, 0.74);
}

.hero-calc-total strong {
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1;
}

.hero-calculator-panel small {
  color: var(--muted);
  text-align: center;
}

.status-dot {
  position: absolute;
  top: 22px;
  left: 18px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(13, 148, 136, 0.12);
}

.floating-order strong {
  color: var(--charcoal);
}

.floating-order small {
  color: var(--muted);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(11, 20, 18, 0.08);
  background: var(--charcoal);
}

.ticker-track {
  width: max-content;
  gap: 34px;
  padding: 12px 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  position: relative;
  padding-left: 22px;
}

.ticker-track span::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateY(-50%);
  content: "";
}

.trust-strip {
  justify-content: center;
  gap: 12px;
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.trust-item {
  flex: 1;
  min-height: 116px;
  padding: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), #153431);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.trust-item:hover,
.process-step:hover,
.price-card:hover,
.testimonial:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 14px;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.38rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.contact-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
}

.calculator-card,
.service-board,
.service-row,
.order-total {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(11, 20, 18, 0.05);
}

.calculator-card {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  padding: 24px;
}

.calculator-card label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 900;
}

.calculator-card input,
.calculator-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
}

.calculator-card input:focus,
.calculator-card select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.14);
}

.calculator-result,
.order-total {
  display: grid;
  gap: 4px;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--charcoal), var(--teal-dark));
}

.calculator-result span,
.order-total span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 850;
}

.calculator-result strong,
.order-total strong {
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1;
}

.calculator-result small {
  color: rgba(255, 255, 255, 0.7);
}

.service-board {
  overflow: hidden;
}

.service-board-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: #ffffff;
  background: var(--charcoal);
}

.service-board-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.service-list {
  display: grid;
  gap: 10px;
  max-height: 620px;
  overflow: auto;
  padding: 14px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-row:hover {
  border-color: rgba(13, 148, 136, 0.36);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.service-row strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.25;
}

.service-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.service-price {
  color: var(--teal-dark);
  font-size: 1.08rem;
  font-weight: 950;
  white-space: nowrap;
}

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

.process-step,
.price-card,
.testimonial,
.proof-panel,
.lead-form,
.faq-list details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(11, 20, 18, 0.05);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.process-step {
  min-height: 250px;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(255, 97, 72, 0.2);
}

.process-step h3,
.price-card h3 {
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: 1.18rem;
}

.process-step p,
.price-card p,
.testimonial p,
.faq-list p {
  color: var(--muted);
}

.plans {
  max-width: none;
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(255, 97, 72, 0.08)),
    #edf5f2;
}

.plans .section-heading,
.pricing-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
}

.price-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--coral), var(--yellow));
  content: "";
}

.price-card.featured {
  border-color: rgba(255, 97, 72, 0.72);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.price-card.featured:hover {
  transform: translateY(-12px);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--charcoal);
  background: var(--yellow);
  font-size: 0.77rem;
  font-weight: 950;
  animation: pulseBadge 2.2s ease-in-out infinite;
}

.plan-top {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.plan-label {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 950;
}

.plan-price {
  margin: 0;
  color: var(--charcoal);
  font-size: 2.18rem;
  font-weight: 950;
}

.plan-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.plan-description {
  min-height: 74px;
  margin-bottom: 20px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  min-height: 196px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: #31413d;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--mint);
  border: 4px solid var(--teal);
  content: "";
}

.price-card .btn {
  margin-top: auto;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

.proof-panel {
  display: grid;
  min-height: 342px;
  align-content: center;
  padding: 32px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(11, 20, 18, 0.96), rgba(21, 74, 69, 0.96)),
    var(--charcoal);
}

.proof-number {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: clamp(4rem, 11vw, 7.2rem);
  font-weight: 950;
  line-height: 0.9;
}

.proof-label {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

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

.testimonial {
  min-height: 160px;
  padding: 24px;
}

.testimonial:first-child {
  grid-column: 1 / -1;
}

.testimonial p {
  margin-bottom: 18px;
  font-size: 1.04rem;
}

.testimonial span {
  color: var(--teal-dark);
  font-weight: 900;
}

.faq {
  padding-top: 24px;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list details[open] {
  border-color: rgba(13, 148, 136, 0.42);
}

.faq-list summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  animation: fadeDown 220ms ease both;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  background:
    linear-gradient(135deg, rgba(13, 148, 136, 0.2), transparent 42%),
    var(--charcoal);
}

.contact .eyebrow {
  color: var(--yellow);
}

.contact-copy h2,
.contact-copy p {
  color: #ffffff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.14);
  transform: translateY(-1px);
}

.lead-form textarea {
  min-height: 122px;
  resize: vertical;
}

.form-submit {
  width: 100%;
}

.order-total strong {
  font-size: 2.1rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2 + 24px));
  color: rgba(255, 255, 255, 0.72);
  background: #08100f;
}

.site-footer p {
  margin: 0;
}

.mobile-sticky-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.process-step.reveal:nth-child(2),
.price-card.reveal:nth-child(2),
.testimonial.reveal:nth-child(2) {
  transition-delay: 90ms;
}

.process-step.reveal:nth-child(3),
.price-card.reveal:nth-child(3),
.testimonial.reveal:nth-child(3) {
  transition-delay: 180ms;
}

.process-step.reveal:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 97, 72, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 97, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 97, 72, 0);
  }
}

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

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes floatOrder {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-main {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-content {
    max-width: 700px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 247, 245, 0.98) 0%, rgba(244, 247, 245, 0.9) 58%, rgba(244, 247, 245, 0.34) 100%),
      linear-gradient(0deg, rgba(244, 247, 245, 0.92) 0%, rgba(244, 247, 245, 0) 28%);
  }

  .floating-order {
    display: none;
  }

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

  .calculator-card {
    position: static;
  }

  .price-card.featured,
  .price-card.featured:hover {
    transform: none;
  }

  .trust-strip {
    display: grid;
    margin-top: 24px;
    padding-top: 0;
  }

  .plan-description,
  .price-card ul {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    inset: 10px 10px auto;
    padding: 8px;
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    width: 100%;
    min-height: 38px;
    padding: 9px 12px;
    font-size: 0.9rem;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 88px 18px 26px;
    background-position: 73% center;
  }

  .hero-main {
    gap: 18px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(244, 247, 245, 0.99) 0%, rgba(244, 247, 245, 0.9) 68%, rgba(244, 247, 245, 0.48) 100%),
      linear-gradient(0deg, rgba(244, 247, 245, 0.95) 0%, rgba(244, 247, 245, 0.12) 42%);
  }

  h1 {
    max-width: 12.5ch;
    margin-bottom: 16px;
    font-size: clamp(2.3rem, 10.8vw, 3.15rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 34ch;
    margin-bottom: 16px;
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    width: auto;
    min-height: 46px;
    padding: 12px 10px;
    font-size: 0.9rem;
  }

  .hero-calculator-panel {
    gap: 12px;
    padding: 18px;
    border-radius: 14px;
  }

  .hero-calc-header strong {
    font-size: 1.5rem;
  }

  .hero-calc-total strong {
    font-size: 2rem;
  }

  .hero-metrics {
    display: none;
  }

  .metric-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    min-width: 0;
    padding: 10px 12px;
  }

  .hero-metrics dt {
    font-size: 1.1rem;
  }

  .hero-metrics dd {
    font-size: 0.82rem;
  }

  .floating-order {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin: 18px auto 0;
  }

  .ticker-track {
    gap: 24px;
    animation-duration: 18s;
  }

  .section {
    padding: 56px 18px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 10vw, 2.45rem);
  }

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

  .pricing-grid {
    gap: 14px;
  }

  .price-card.featured {
    order: -1;
  }

  .process-step,
  .price-card,
  .testimonial,
  .proof-panel,
  .lead-form {
    padding: 22px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial:first-child {
    grid-column: auto;
  }

  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .lead-form label {
    font-size: 0.94rem;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea,
  .calculator-card input,
  .calculator-card select {
    font-size: 1rem;
  }

  .service-board-header,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-board-header {
    display: grid;
  }

  .service-list {
    max-height: none;
    overflow: visible;
    padding: 12px;
  }

  .service-row {
    align-items: start;
  }

  .service-price {
    white-space: normal;
  }

  .site-footer {
    display: grid;
    padding: 22px 18px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 30;
    display: grid;
    min-height: 58px;
    align-content: center;
    justify-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--coral), var(--teal-dark));
    box-shadow: 0 18px 48px rgba(11, 20, 18, 0.26);
    animation: mobileCtaPulse 2.8s ease-in-out infinite;
  }

  .mobile-sticky-cta span {
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.86;
  }

  .mobile-sticky-cta strong {
    font-size: 1rem;
    line-height: 1.05;
  }
}

@keyframes mobileCtaPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 48px rgba(11, 20, 18, 0.26);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(11, 20, 18, 0.32);
  }
}
