:root {
  --ink: #000000;
  --muted: #737373;
  --paper: #ffffff;
  --line: #d9d9d9;
  --teal: #20384f;
  --teal-dark: #000000;
  --amber: #20384f;
  --clay: #20384f;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.78rem;
}

.site-nav {
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 4vw, 56px) 80px;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 56, 79, 0.96) 0%, rgba(32, 56, 79, 0.76) 44%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

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

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

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

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-bar strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 2rem;
}

.trust-bar span {
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: 96px clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 110px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 4px 4px 22px;
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.service-grid article:hover {
  border-color: var(--teal);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.service-grid article:hover .service-icon {
  border-color: var(--teal);
  background: var(--white);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal);
  background: var(--white);
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease;
}

.service-icon svg {
  width: 38px;
  height: 38px;
}

.icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 800;
}

.metrics {
  color: var(--white);
  background: var(--ink);
}

.metrics p {
  color: rgba(255, 255, 255, 0.68);
}

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

.metric-board {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 16px;
}

.metric-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.metric-card.accent {
  background: var(--teal);
}

.metric-card.accent {
  color: var(--white);
}

.metric-card span,
.metric-card small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.metric-card strong {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.partners,
.clients {
  background: #d9d9d9;
}

.partner-list,
.client-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.partner-list div,
.client-list a,
.client-list div {
  min-height: 94px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
  text-align: center;
}

.client-list a:hover {
  color: var(--white);
  background: var(--teal);
}

.carousel-heading {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.carousel-controls {
  display: flex;
  gap: 8px;
}

.carousel-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

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

.client-carousel {
  overflow: hidden;
}

.client-track {
  display: grid;
  grid-auto-columns: minmax(280px, 32%);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.client-track::-webkit-scrollbar {
  display: none;
}

.client-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

.client-logo {
  width: 100%;
  height: 104px;
  flex: 0 0 104px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
  overflow: hidden;
}

.client-logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.client-logo.text-logo {
  color: var(--white);
  background: var(--teal);
  font-size: 1.5rem;
  font-weight: 800;
}

.client-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.client-card h3 {
  margin-top: 10px;
  font-size: 1.35rem;
}

.client-card p {
  flex: 1;
}

.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.client-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  font-weight: 800;
}

.client-card a:hover {
  color: var(--white);
  background: var(--teal);
}

.instagram-link {
  width: 42px;
  padding: 0;
  font-size: 0;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
}

.served {
  background: var(--white);
}

.legacy-served {
  display: none;
}

.served-v2 {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(32, 56, 79, 0.08), rgba(217, 217, 217, 0.42)),
    var(--white);
}

.served-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.served-content {
  position: sticky;
  top: 110px;
}

.section-description {
  max-width: 680px;
  font-size: 1.04rem;
}

.served-highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.served-highlights div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

.served-highlights strong {
  color: var(--teal);
  font-size: 1.05rem;
}

.served-highlights span {
  color: var(--muted);
  font-weight: 700;
}

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

.segment-grid article {
  min-height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.segment-grid article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(32, 56, 79, 0.08);
}

.segment-grid article:hover {
  border-color: var(--teal);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.segment-grid article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}

.segment-grid h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 8px;
  font-size: 1.04rem;
}

.segment-grid p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.segment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.segment-list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--ink);
  background: #d9d9d9;
  font-weight: 800;
}

.prospecting {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  background: #d9d9d9;
}

.form-intro {
  position: sticky;
  top: 110px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(32, 56, 79, 0.18);
  border-color: var(--teal);
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.86rem;
}

.prospecting-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.prospecting-card .button {
  margin-top: 12px;
}

.form-page {
  min-height: 100vh;
  background:
    linear-gradient(110deg, rgba(32, 56, 79, 0.94), rgba(0, 0, 0, 0.78)),
    url("assets/hero-performance.png");
  background-size: cover;
  background-position: center;
}

.campaign-page {
  min-height: 100vh;
  background:
    linear-gradient(110deg, rgba(32, 56, 79, 0.94), rgba(0, 0, 0, 0.72)),
    url("assets/hero-performance.png");
  background-size: cover;
  background-position: center;
}

.campaign-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 4vw, 56px) 44px;
}

.campaign-hero {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin: 0 auto;
}

.campaign-copy {
  color: var(--white);
}

.campaign-copy .eyebrow {
  color: var(--white);
}

.campaign-copy h1 {
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.campaign-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.campaign-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.campaign-benefits div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--teal);
  background: var(--white);
  font-weight: 800;
}

.campaign-benefits strong {
  color: var(--white);
}

.campaign-benefits small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.campaign-visual {
  display: none;
}

.campaign-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.campaign-form h2 {
  margin-bottom: 4px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.radio-group legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-weight: 800;
}

.radio-group label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
}

.radio-group input {
  width: auto;
}

.form-header {
  position: fixed;
}

.form-nav {
  color: inherit;
}

.step-shell {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 112px clamp(18px, 4vw, 56px) 44px;
}

.step-panel {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: stretch;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.step-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 22px);
}

.step-aside h1 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  color: var(--ink);
}

.step-progress {
  width: 100%;
  height: 8px;
  overflow: hidden;
  margin-top: 28px;
  border-radius: 999px;
  background: #d9d9d9;
}

.progress-bar {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
  transition: width 0.25s ease;
}

.step-counter {
  margin: 12px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.step-form,
.success-panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step.active {
  display: block;
}

.form-step label {
  gap: 18px;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.form-step input,
.form-step select,
.form-step textarea {
  font-size: 1rem;
}

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

.form-status {
  min-height: 28px;
  margin: 14px 0 0;
  font-weight: 700;
}

.success-panel {
  align-items: flex-start;
}

.success-panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .split,
  .prospecting,
  .contact-section,
  .metric-board,
  .step-panel,
  .served-wrapper,
  .campaign-hero,
  .campaign-benefits {
    grid-template-columns: 1fr;
  }

  .section-copy,
  .form-intro,
  .served-content {
    position: static;
  }

  .partner-list,
  .client-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-track {
    grid-auto-columns: minmax(260px, 48%);
  }

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

@media (max-width: 680px) {
  .hero {
    min-height: 88vh;
    padding-top: 108px;
  }

  .hero-actions {
    width: 100%;
  }

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

  .hero-overlay {
    background: linear-gradient(90deg, rgba(32, 56, 79, 0.96), rgba(0, 0, 0, 0.7));
  }

  .trust-bar,
  .service-grid,
  .lead-form,
  .partner-list,
  .client-list,
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .carousel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-track {
    grid-auto-columns: minmax(250px, 86%);
  }

  .section {
    padding-block: 72px;
  }

  .lead-form {
    padding: 18px;
  }

  .campaign-shell {
    align-items: start;
    padding-top: 92px;
  }

  .campaign-copy h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

  .campaign-benefits div {
    min-height: auto;
  }

  .campaign-form {
    padding: 18px;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }

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

  .step-shell {
    padding-top: 96px;
  }

  .step-form,
  .success-panel {
    min-height: 360px;
  }

  .form-step label {
    font-size: 1.5rem;
  }
}

@media (max-width: 920px) {
  .form-header .form-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .form-header .form-nav a {
    padding: 0;
  }
  
}
