:root {
  --ink: #142326;
  --muted: #536468;
  --line: #d9e2e2;
  --panel: #ffffff;
  --wash: #f4f8f8;
  --teal: #006f70;
  --teal-dark: #00484b;
  --gold: #f2a20c;
  --gold-dark: #c67d00;
  --shadow: 0 24px 70px rgba(13, 42, 45, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background: #ffffff;
}

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: 32px;
  min-height: 92px;
  padding: 18px clamp(22px, 4vw, 58px);
  border-bottom: 1px solid rgba(217, 226, 226, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 3px;
  min-width: max-content;
  color: var(--teal-dark);
  text-transform: uppercase;
}

.brand span {
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: #18282b;
  font-size: 0.95rem;
}

nav a:hover,
.text-link:hover {
  color: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font: 800 0.82rem/1 var(--sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.button::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  background: currentColor;
  clip-path: polygon(53% 16%, 100% 50%, 53% 84%, 53% 60%, 0 60%, 0 40%, 53% 40%);
}

.button-gold {
  color: #171f20;
  background: var(--gold);
}

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

.button-teal {
  color: #ffffff;
  background: var(--teal);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: stretch;
  min-height: min(690px, calc(100vh - 190px));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 58%;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 66%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 82px) clamp(24px, 4vw, 58px);
}

.hero h1,
.section-heading h2,
.approach h2,
.proof h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.85rem, 4.25vw, 4.75rem);
  line-height: 1.01;
}

.hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 28px;
  background: var(--teal);
}

.hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #273d41;
  font-size: clamp(1.03rem, 1.5vw, 1.26rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.text-link::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 8px;
  vertical-align: -2px;
  background: currentColor;
  clip-path: polygon(50% 14%, 88% 50%, 50% 86%, 44% 80%, 70% 54%, 10% 54%, 10% 46%, 70% 46%, 44% 20%);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 28px;
}

.hero-points span {
  display: grid;
  gap: 8px;
  color: #263e42;
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-points b {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services,
.approach,
.proof,
.contact {
  padding: clamp(58px, 7vw, 96px) clamp(24px, 4vw, 58px);
}

.services {
  position: relative;
  z-index: 3;
  margin-top: -116px;
  background: #ffffff;
}

.section-label {
  display: block;
  margin-bottom: 13px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2,
.approach h2,
.proof h2,
.contact h2 {
  font-size: clamp(2rem, 3.5vw, 3.35rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.service-card {
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(13, 42, 45, 0.06);
}

.icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 7px;
  color: #ffffff;
  background: var(--teal);
}

.icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3,
.timeline h3,
.buyer-columns h3 {
  margin: 22px 0 12px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-card p,
.approach-intro p,
.proof p,
.contact p {
  color: var(--muted);
  line-height: 1.68;
}

.service-card ul,
.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.service-card li,
.check-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 12px;
  color: #263e42;
  font-size: 0.95rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.approach {
  display: grid;
  grid-template-columns: 0.75fr 1.65fr;
  gap: clamp(32px, 6vw, 80px);
  background: var(--wash);
}

.approach-intro p {
  max-width: 360px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 32px;
  right: 32px;
  height: 1px;
  background: #8da2a5;
}

.timeline article {
  position: relative;
  z-index: 1;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-weight: 900;
}

.timeline p {
  max-width: 210px;
  color: #33494d;
  line-height: 1.62;
}

.proof {
  background: #ffffff;
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  column-gap: clamp(30px, 7vw, 100px);
  align-items: end;
}

.proof-heading .section-label,
.proof-heading h2 {
  grid-column: 1;
}

.proof-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 660px;
  margin: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(34px, 5vw, 58px);
}

.proof-story {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  background: var(--wash);
  box-shadow: 0 18px 50px rgba(13, 42, 45, 0.07);
}

.story-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-meta strong {
  color: var(--gold-dark);
}

.proof-story h3 {
  max-width: 600px;
  margin: 28px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.12;
}

.proof-story .story-challenge,
.proof-story .story-outcome {
  margin: 10px 0 0;
}

.proof-story .story-outcome strong {
  color: var(--ink);
}

.story-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 22px 0 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.story-results li {
  color: #263e42;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 5px;
  height: 3px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(-45deg);
}

.market-note {
  margin-top: 20px;
  padding: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 111, 112, 0.1), rgba(242, 162, 12, 0.12));
}

.market-note strong,
.market-note span {
  display: block;
}

.market-note strong {
  color: var(--teal-dark);
  font-size: 1.15rem;
  line-height: 1.35;
}

.market-note span {
  margin-top: 8px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  color: #ffffff;
  background: radial-gradient(circle at 18% 10%, rgba(0, 111, 112, 0.48), transparent 34%), #0f282d;
}

.contact p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  font: 1rem/1.4 var(--sans);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(242, 162, 12, 0.35);
  border-color: var(--gold);
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.4;
}

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

  nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

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

  .hero::before {
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.92) 55%, rgba(255,255,255,0) 100%);
  }

  .hero-copy {
    min-height: 650px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    min-height: 100%;
    opacity: 0.72;
  }

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

  .approach,
  .contact {
    grid-template-columns: 1fr;
  }

  .proof-heading {
    grid-template-columns: 1fr;
  }

  .proof-heading .section-label,
  .proof-heading h2,
  .proof-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .proof-heading p {
    margin-top: 18px;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-height: 760px) and (min-width: 701px) {
  .hero-points {
    display: none;
  }

  .hero h1::after {
    margin-top: 22px;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    min-height: 0;
    gap: 20px;
  }

  .header-cta {
    width: 100%;
  }

  nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-copy {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .hero h1::after {
    margin-top: 22px;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 14px;
    margin-top: 24px;
  }

  .hero-points span {
    grid-template-columns: 42px 1fr;
    align-items: center;
  }

  .hero-points,
  .service-grid,
  .timeline,
  .story-grid,
  .story-results {
    grid-template-columns: 1fr;
  }

  .proof-story {
    min-height: 0;
  }

  .story-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .services {
    margin-top: 0;
    padding-top: 54px;
  }

  .section-heading h2,
  .approach h2,
  .proof h2,
  .contact h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.04;
  }

  .service-card {
    min-height: 0;
  }
}
