:root {
  --bg: #f6f4ee;
  --surface: #fffef9;
  --ink: #171511;
  --muted: #6a645b;
  --brand: #0b6e4f;
  --brand-2: #f36f45;
  --border: #d8d0c2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -20%, #f7c8a6 0%, transparent 60%),
    radial-gradient(1000px 500px at -10% 0%, #c3dfd1 0%, transparent 55%),
    var(--bg);
}

h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.1;
  margin-top: 0;
}

p {
  line-height: 1.6;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg) 88%, white 12%);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, white 25%);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.9;
}

.nav-actions {
  display: flex;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.66rem 1.1rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn.solid {
  background: linear-gradient(130deg, var(--brand), #0f8b66);
  color: #fff;
  box-shadow: 0 8px 26px rgba(11, 110, 79, 0.28);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--ink);
  background: color-mix(in srgb, white 80%, var(--bg) 20%);
}

.hero {
  padding: 5.2rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  animation: fade-slide 0.65s ease both;
}

.panel-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  padding: 1.2rem;
  box-shadow: 0 20px 38px rgba(23, 21, 17, 0.1);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border);
  padding: 0.9rem 0;
}

.metric-row:first-of-type {
  border-top: 0;
}

.danger {
  color: var(--brand-2);
}

.section {
  padding: 2.2rem 0 4rem;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.logo-strip span {
  border: 1px dashed var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  text-align: center;
  background: color-mix(in srgb, white 82%, var(--bg) 18%);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.section.compact {
  padding-top: 3.2rem;
}

.section h2,
.section h1 {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  margin-bottom: 1.2rem;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.one {
  grid-template-columns: 1fr;
}

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

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

.card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, white 92%, var(--bg) 8%);
  padding: 1.1rem;
  box-shadow: 0 12px 30px rgba(23, 21, 17, 0.07);
  animation: fade-slide 0.5s ease both;
}

.card.price {
  min-height: 220px;
}

.card.price.featured {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--border) 45%);
  transform: translateY(-8px);
}

.price-tag {
  font-weight: 700;
  font-size: 1.3rem;
}

.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 4.4rem 0 5rem;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 1.6rem 0 auto;
  height: 16rem;
  background:
    linear-gradient(115deg, rgba(11, 110, 79, 0.16), transparent 34%),
    linear-gradient(245deg, rgba(243, 111, 69, 0.2), transparent 30%),
    color-mix(in srgb, white 72%, var(--bg) 28%);
  border-block: 1px solid color-mix(in srgb, var(--border) 65%, white 35%);
  z-index: -1;
}

.pricing-intro {
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
  animation: fade-slide 0.55s ease both;
}

.pricing-intro h1 {
  font-size: clamp(2.1rem, 3.6vw, 3.4rem);
  margin-bottom: 0;
}

.pricing-intro .lead {
  margin: 0 auto;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 254, 249, 0.96)),
    var(--surface);
  box-shadow: 0 16px 36px rgba(23, 21, 17, 0.09);
  animation: plan-rise 0.56s ease backwards;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.plan-card:nth-child(2) {
  animation-delay: 0.08s;
}

.plan-card:nth-child(3) {
  animation-delay: 0.16s;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--border) 55%);
  box-shadow: 0 24px 54px rgba(23, 21, 17, 0.14);
}

.plan-card.featured {
  border: 2px solid var(--brand);
  background:
    linear-gradient(150deg, rgba(11, 110, 79, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 254, 249, 0.98)),
    var(--surface);
  transform: translateY(-10px);
}

.plan-card.featured:hover {
  transform: translateY(-16px);
}

.plan-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.52) 45%, transparent 58%);
  transform: translateX(-120%);
  animation: plan-shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  padding: 0.36rem 0.68rem;
  color: #fff;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-label {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-top h2 {
  margin-bottom: 0.55rem;
  font-size: 2rem;
}

.plan-top p {
  min-height: 5rem;
  margin: 0;
  color: var(--muted);
}

.plan-price {
  display: grid;
  gap: 0.15rem;
  margin: 1.15rem 0 0.2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.plan-price strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1;
}

.plan-price span {
  color: var(--muted);
  font-weight: 600;
}

.price-features {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-features li {
  position: relative;
  padding-left: 1.05rem;
}

.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--brand);
}

.plan-cta {
  width: 100%;
  margin-top: auto;
}

.pricing-assurance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  border: 1px dashed color-mix(in srgb, var(--brand) 35%, var(--border) 65%);
  border-radius: 8px;
  padding: 1rem;
  background: color-mix(in srgb, white 82%, var(--bg) 18%);
  animation: fade-slide 0.65s ease 0.18s both;
}

.pricing-assurance div {
  display: grid;
  gap: 0.2rem;
}

.pricing-assurance span {
  color: var(--muted);
}

.pricing-assurance a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.process {
  position: relative;
}

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

.step {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(23, 21, 17, 0.06);
}

.step span {
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.06em;
}

.mk-form {
  display: grid;
  gap: 0.8rem;
}

.mk-row {
  display: grid;
  gap: 0.65rem;
}

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

.mk-row label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.mk-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.62rem 0.7rem;
  background: #fff;
  font: inherit;
}

.mk-input:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 28%, transparent 72%);
  border-color: color-mix(in srgb, var(--brand) 40%, var(--border) 60%);
}

.contact-form-card {
  margin-top: 1rem;
}

.contact-feedback {
  border: 1px solid var(--border);
  border-left: 6px solid var(--brand);
  border-radius: 8px;
  padding: 0.72rem 0.9rem;
  margin-bottom: 0.9rem;
  background: color-mix(in srgb, white 90%, var(--bg) 10%);
}

.contact-feedback.success {
  border-left-color: var(--brand);
}

.mk-form .btn[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.errorlist {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
  color: #9f2f1a;
  font-size: 0.85rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0 2.2rem;
  background: color-mix(in srgb, white 75%, var(--bg) 25%);
}

.marketing-messages {
  padding-top: 1rem;
}

.message {
  border: 1px solid var(--border);
  border-left: 6px solid var(--brand);
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-shell p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes plan-rise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes plan-shine {
  0%,
  48% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 930px) {
  .main-nav {
    display: none;
  }

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

  .cards.two,
  .cards.three {
    grid-template-columns: 1fr;
  }

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

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

  .plan-top p {
    min-height: 0;
  }

  .pricing-assurance {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-proof {
    flex-direction: column;
    gap: 0.35rem;
  }

  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .mk-row.two {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
  }
}
