:root {
  --fox: #f15a24;
  --fox-dark: #bf481b;
  --ink: #0d1725;
  --muted: #4f616a;
  --paper: #fffaf4;
  --cream: #f3eadc;
  --sage: #6e8774;
  --sage-dark: #283d33;
  --line: rgba(23, 33, 38, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(28, 35, 33, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 33, 38, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 33, 38, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 250, 244, 0.88);
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 34px;
  height: 34px;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--fox);
  box-shadow: 0 10px 24px rgba(241, 90, 36, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.8;
}

.site-nav a:hover {
  opacity: 1;
  color: var(--fox-dark);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: end;
  gap: clamp(22px, 4vw, 54px);
  padding: 130px clamp(18px, 4vw, 52px) 56px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.97) 0%, rgba(255, 250, 244, 0.78) 48%, rgba(255, 250, 244, 0.28) 100%),
    linear-gradient(0deg, rgba(255, 250, 244, 0.95) 0%, rgba(255, 250, 244, 0.1) 45%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  max-width: 760px;
  padding-bottom: 24px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--fox-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(44px, 8vw, 92px);
}

.hero-copy {
  max-width: 650px;
  margin-top: 22px;
  color: #38474c;
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--fox);
  border-color: var(--fox);
}

.button.primary:hover {
  background: var(--fox-dark);
  border-color: var(--fox-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--fox);
  color: var(--fox-dark);
}

.button.secondary:hover {
  background: var(--fox);
  color: var(--white);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.proof-strip span,
.audience-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--fox);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--fox-dark);
  background: rgba(241, 90, 36, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.hero-card,
.service-card,
.price-card,
.pick,
.workbench,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.hero-card {
  align-self: end;
  padding: 18px;
  backdrop-filter: blur(8px);
}

.card-header,
.workbench-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.card-header strong,
.workbench-top span:last-child {
  color: var(--sage-dark);
}

.score-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
}

.score-row div {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--cream);
}

.score-row small {
  display: block;
  color: var(--muted);
}

.score-row strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
}

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

.task-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344349;
  font-size: 14px;
}

.task-list span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--fox);
}

.section {
  padding: 76px clamp(18px, 4vw, 52px);
}

.intro,
.audience-section,
.cta-section,
.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 6vw, 76px);
  align-items: start;
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--sage-dark);
}

.intro h2,
.intro .eyebrow,
.intro p {
  color: var(--white);
}

.intro p {
  max-width: 720px;
  opacity: 0.82;
  font-size: 18px;
}

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

.section-heading h2,
.intro h2,
.split-copy h2,
.audience-section h2,
.cta-section h2 {
  font-size: clamp(32px, 5vw, 58px);
}

.section-heading p + h2,
.intro p + h2 {
  margin-top: 8px;
}

.service-grid,
.pricing-grid,
.process-grid {
  display: grid;
  gap: 14px;
}

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

.service-card,
.price-card {
  padding: 22px;
  box-shadow: none;
}

.service-card {
  min-height: 250px;
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--fox);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3,
.price-card h3,
.process-grid h3,
.workflow-item strong {
  font-size: 22px;
}

.service-card p,
.price-card p,
.process-grid p,
.split-copy p {
  margin-top: 12px;
}

.process-section {
  background: #efe4d2;
}

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

.process-grid article {
  min-height: 240px;
  padding: 22px;
  border-left: 1px solid rgba(23, 33, 38, 0.2);
}

.process-grid span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 800;
}

.split-section {
  align-items: center;
}

.split-copy p {
  max-width: 620px;
  font-size: 17px;
}

.check-list {
  margin-top: 24px;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: #334249;
}

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

.workbench {
  padding: 20px;
  box-shadow: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 238, 0.96));
}

.workflow-item {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pricing-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8f0e4;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured small {
  color: rgba(255, 255, 255, 0.76);
}

.price-card.featured li::before {
  background: var(--fox);
}

.featured-label {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--fox);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-top: 24px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price span {
  font-size: 15px;
  font-weight: 700;
}

.price-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.price-card ul {
  margin-top: 28px;
}

.audience-section {
  align-items: center;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cta-section {
  align-items: center;
  color: var(--ink);
  background: var(--cream);
}

.cta-section p,
.cta-section .eyebrow {
  color: var(--muted);
}

.cta-section h2 {
  margin-bottom: 16px;
  color: var(--ink);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #344349;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--fox);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--fox-dark);
}

.form-note {
  font-size: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 4vw, 52px);
  background: var(--ink);
}

.site-footer,
.site-footer p {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .intro,
  .split-section,
  .audience-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-card {
    max-width: 520px;
  }

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

  .audience-list {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.2;
  }

  .hero-copy {
    font-size: clamp(15px, 4vw, 18px);
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .proof-strip {
    flex-direction: column;
    gap: 6px;
  }

  .proof-strip span {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    max-width: 100%;
    padding: 16px;
  }

  .service-grid,
  .pricing-grid,
  .process-grid,
  .score-row {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(23, 33, 38, 0.2);
    padding: 16px 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-section {
    gap: 24px;
  }

  .eyebrow {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 12px 14px;
    gap: 12px;
  }

  .brand {
    gap: 6px;
    font-size: 16px;
  }

  .brand-logo {
    width: 28px;
  }

  .hero {
    padding-top: 70px;
    padding-bottom: 30px;
  }

  .hero h1 {
    font-size: clamp(24px, 5.5vw, 36px);
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    min-height: 42px;
    font-size: 13px;
    padding: 0 16px;
  }

  .section {
    padding: 40px 14px;
  }

  .section-heading h2 {
    font-size: clamp(24px, 5vw, 36px);
  }

  .service-card,
  .price-card {
    padding: 16px;
  }

  .icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .workbench {
    padding: 16px;
  }

  .price {
    font-size: 24px;
  }

  .check-list,
  .price-card ul {
    gap: 8px;
  }

  .check-list li,
  .price-card ul li {
    font-size: 13px;
  }
}
