:root {
  --ink: #112027;
  --muted: #557070;
  --paper: #f7faf8;
  --panel: #ffffff;
  --line: rgba(17, 32, 39, 0.12);
  --teal: #08766e;
  --teal-soft: #eef8f3;
  --teal-dark: #074a49;
  --gold: #c99a34;
  --gold-dark: #a47921;
  --mint: #dceee6;
  --blue: #163f72;
  --shadow: 0 24px 70px rgba(8, 47, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 250, 248, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: flex;
  width: 320px;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-weight: 750;
  letter-spacing: 0;
}

.brand-line {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #315052;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(8, 118, 110, 0.28);
  border-radius: 8px;
  background: #fff;
  color: var(--teal-dark);
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(44px, 6vw, 72px);
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 154, 52, 0.20), transparent 28%),
    linear-gradient(135deg, rgba(220, 238, 230, 0.88), rgba(247, 250, 248, 0.96) 42%, rgba(232, 240, 238, 0.92));
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2.85rem, 4.55vw, 3.82rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  color: #284548;
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tags span {
  border: 1px solid rgba(8, 118, 110, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #315052;
  font-size: 0.88rem;
  font-weight: 650;
  padding: 8px 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.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: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 22px rgba(8, 118, 110, 0.22);
}

.button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.button.secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--teal-dark);
}

.quiet-note {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual,
.about-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    var(--panel);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(8, 118, 110, 0.10);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.insight-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.insight-head,
.insight-metrics {
  display: grid;
  gap: 16px;
}

.insight-head {
  grid-template-columns: 1fr auto;
}

.insight-metrics {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.insight-head span,
.insight-metrics small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.insight-head strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.insight-metrics {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.insight-metrics span {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(1.8rem, 2.75vw, 2.65rem);
  font-weight: 750;
  line-height: 0.95;
  white-space: nowrap;
}

.visibility-stack {
  display: grid;
  gap: 10px;
}

.visibility-stack div {
  display: grid;
  grid-template-columns: minmax(120px, 0.62fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(8, 118, 110, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 118, 110, 0.07), rgba(255, 255, 255, 0.78)),
    #fff;
  padding: 14px 16px;
}

.visibility-stack span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.visibility-stack strong {
  color: var(--ink);
  font-size: 1rem;
}

.insight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insight-list span {
  border: 1px solid rgba(8, 118, 110, 0.16);
  border-radius: 999px;
  color: #315052;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 7px 10px;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 38px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(30px, 6vw, 86px);
  color: #2f4c4f;
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.services {
  background: #10282e;
  color: #eef8f4;
}

.services .eyebrow {
  color: #91d8cb;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.service-grid article {
  min-height: 330px;
  padding: 28px;
  background: #14333a;
}

.service-number {
  display: inline-block;
  margin-bottom: 48px;
  color: #91d8cb;
  font-weight: 750;
}

.service-grid p {
  color: #cae1db;
}

.about {
  background:
    linear-gradient(90deg, rgba(220, 238, 230, 0.95), rgba(247, 250, 248, 0.76)),
    var(--mint);
}

.about-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(30px, 6vw, 64px);
}

.about-copy {
  color: #284548;
  font-size: 1.08rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.proof-strip span {
  border: 1px solid rgba(8, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 650;
  padding: 10px 12px;
}

.boundary-note {
  border-top: 1px solid rgba(8, 118, 110, 0.18);
  color: var(--muted);
  font-size: 0.96rem;
  padding-top: 18px;
}

.contact {
  background:
    radial-gradient(circle at 22% 16%, rgba(201, 154, 52, 0.18), transparent 24%),
    linear-gradient(135deg, #0d2027, #123039);
  color: #eff8f4;
}

.contact .eyebrow {
  color: #91d8cb;
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.88fr 0.72fr;
  gap: clamp(30px, 6vw, 88px);
  padding: clamp(30px, 6vw, 64px);
  background: #123039;
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-panel p {
  color: #cfe2dc;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-title {
  margin-bottom: 0;
  font-weight: 750;
}

label {
  display: grid;
  gap: 8px;
  color: #e6f3ef;
  font-weight: 650;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: #a7c4be;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #08161b;
  color: #c7d9d4;
}

.site-footer a {
  color: #fff;
}

.site-footer a:first-child {
  color: #c7d9d4;
  text-decoration: none;
}

.thank-you-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 18%, rgba(201, 154, 52, 0.20), transparent 28%),
    linear-gradient(135deg, rgba(220, 238, 230, 0.88), rgba(247, 250, 248, 0.96) 42%, rgba(232, 240, 238, 0.92));
}

.thank-you-card {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 58px);
}

.thank-you-brand {
  margin-bottom: 42px;
}

.thank-you-card h1 {
  font-size: clamp(2.8rem, 8vw, 4.4rem);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 620px;
  color: #284548;
  font-size: 1.12rem;
}

@media (max-width: 1080px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid article {
    min-height: 260px;
  }

}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    overflow-x: visible;
    padding-bottom: 0;
    font-size: 0.88rem;
  }

  .hero,
  .two-column,
  .about-card,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-tags span {
    font-size: 0.82rem;
    padding: 7px 10px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .visibility-stack div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .service-grid article {
    min-height: 0;
  }

  .brand-line {
    display: none;
  }

  .brand-logo {
    width: 230px;
  }
}
