:root {
  --ink: #17201d;
  --muted: #66736e;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --panel-soft: #f4f1ea;
  --line: #dce4df;
  --teal: #0f6c67;
  --teal-dark: #0a4744;
  --coral: #e46f5d;
  --gold: #c49a43;
  --shadow: 0 28px 80px rgba(21, 38, 34, 0.16);
  --shadow-soft: 0 14px 42px rgba(21, 38, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(23, 32, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 29, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid rgba(220, 228, 223, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.trust-strip,
.footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 108, 103, 0.24);
}

.nav {
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px;
  color: #fff !important;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 32, 29, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 5vw, 66px) clamp(20px, 5vw, 72px) clamp(34px, 4vw, 48px);
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 11px;
  color: var(--teal-dark);
  background: #eef7f3;
  border: 1px solid #cde2db;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.availability::before {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.hero h1,
.section-heading h2,
.showcase h2,
.contact h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 14px 26px rgba(15, 108, 103, 0.18);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--ink);
}

.button.full {
  width: 100%;
}

.hero-media {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(23, 32, 29, 0.08);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.12;
  border-radius: 7px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: min(330px, calc(100% - 48px));
  padding: 16px 18px;
  color: #fff;
  background: rgba(23, 32, 29, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.media-caption span {
  display: block;
  margin-bottom: 4px;
  color: #b7d7d1;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 28px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-weight: 900;
}

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

.trust-strip {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--ink);
}

.trust-strip span {
  padding: 8px 12px;
  color: #eef6f3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.92rem;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

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

.section-heading h2,
.showcase h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.feature-grid,
.pricing-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.price-card,
.timeline div,
.faq-list details,
.contact-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  min-height: 230px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.feature-card h3,
.price-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.feature-card p,
.showcase p,
.timeline p,
.faq-list p,
.contact p,
.package-desc {
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: center;
  background: #eaf4ef;
  border-top: 1px solid #d4e7df;
  border-bottom: 1px solid #d4e7df;
}

.showcase-copy {
  max-width: 720px;
}

.showcase-copy p:last-child {
  max-width: 650px;
  font-size: 1.08rem;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}

.checklist span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border-color: rgba(15, 108, 103, 0.5);
  box-shadow: var(--shadow);
}

.badge {
  align-self: flex-start;
  margin: 0;
  padding: 6px 10px;
  color: #fff;
  background: var(--coral);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.package-name {
  margin: 0;
  color: var(--teal);
  font-weight: 900;
}

.price-card h3 {
  font-size: 3rem;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 auto;
  list-style: none;
}

.price-card li {
  color: var(--muted);
}

.price-card li::before {
  margin-right: 8px;
  color: var(--teal);
  content: "✓";
}

.process {
  background: #fff;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  background: var(--ink);
}

.proof .eyebrow,
.quote-band cite {
  color: #a6d3ca;
}

.proof h2,
.proof-intro p,
.deliverables h3,
.deliverables p {
  color: #fff;
}

.proof-intro {
  position: sticky;
  top: 104px;
}

.proof-intro h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.7rem);
  line-height: 1.03;
}

.proof-intro p {
  max-width: 520px;
  opacity: 0.72;
}

.deliverables {
  display: grid;
  gap: 14px;
}

.deliverables article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.deliverables span {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #17201d;
  background: #f1d394;
  border-radius: 8px;
  font-weight: 900;
}

.deliverables h3,
.deliverables p {
  margin: 0;
}

.deliverables p {
  margin-top: 6px;
  opacity: 0.72;
}

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

.timeline div {
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.quote-band {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background: var(--panel-soft);
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.quote-band p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
}

.quote-band cite {
  display: block;
  margin-top: 22px;
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
}

.faq-section {
  padding-top: 0;
}

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

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

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 32px;
  align-items: start;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.contact .eyebrow,
.contact p {
  color: #b7d7d1;
}

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

.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
}

.footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.footer div {
  flex-wrap: wrap;
  gap: 16px;
}

.tool-page {
  background: linear-gradient(180deg, #fbfaf6 0%, #eef7f3 44%, #fbfaf6 44%);
}

.tool-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(26px, 5vw, 56px);
  align-items: end;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) clamp(38px, 5vw, 72px);
}

.tool-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.tool-summary,
.calculator-panel,
.result-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.tool-summary {
  padding: 24px;
}

.tool-summary span,
.result-price span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.tool-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.tool-summary p {
  margin: 10px 0 0;
  color: var(--ink);
  font-weight: 850;
}

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

.calculator-panel,
.result-panel {
  padding: clamp(20px, 3vw, 30px);
}

.calculator-panel {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 88px;
}

.calculator-panel label,
.calculator-panel fieldset {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.calculator-panel fieldset {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calculator-panel legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.calculator-panel select,
.calculator-panel input[type="text"] {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #f8faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.check-row {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.result-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.05;
}

.result-panel > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.result-price {
  display: inline-grid;
  gap: 4px;
  margin: 8px 0 22px;
  padding: 18px 22px;
  background: #eaf4ef;
  border: 1px solid #cde2db;
  border-radius: 8px;
}

.result-price strong {
  color: var(--teal);
  font-size: 2.4rem;
  line-height: 1;
}

.brief-box {
  padding: 18px;
  background: #17201d;
  border-radius: 8px;
}

.brief-box h3 {
  margin: 0 0 12px;
  color: #fff;
}

.brief-box pre {
  overflow-x: auto;
  white-space: pre-wrap;
  margin: 0;
  color: #dcece7;
  font: 0.92rem/1.55 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.legal-page {
  padding: clamp(44px, 6vw, 82px) clamp(20px, 5vw, 72px);
}

.legal-content {
  max-width: 880px;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.legal-content h2 {
  margin: 32px 0 8px;
  font-size: 1.25rem;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--teal);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero,
  .showcase,
  .contact,
  .proof,
  .tool-hero,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .proof-intro {
    position: static;
  }

  .calculator-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.84rem;
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

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

  .media-caption {
    position: static;
    max-width: none;
    margin-top: 10px;
  }

  .deliverables article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer {
    flex-direction: column;
  }
}
