:root {
  color-scheme: light;
  --ink: #102733;
  --ink-soft: #49616d;
  --muted: #6f828c;
  --line: #d7e1e6;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --surface-blue: #edf6f7;
  --teal: #0f7975;
  --teal-dark: #0b5c59;
  --blue: #315fbb;
  --amber: #d08b21;
  --green: #227e4c;
  --shadow: 0 18px 48px rgba(16, 39, 51, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(15, 121, 117, 0.18);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.icon-sprite {
  display: none;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px clamp(18px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 225, 230, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(16, 39, 51, 0.16);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.header-contact:hover,
.footer-links a:hover {
  color: var(--teal);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.section-band,
.section {
  padding: clamp(48px, 7vw, 78px) clamp(18px, 4vw, 42px);
}

.section-muted {
  background: var(--surface-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.8fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 42px;
  padding-bottom: 34px;
}

.hero-content {
  max-width: 730px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.8rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

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

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 7px 11px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-board {
  width: min(100%, 470px);
  justify-self: end;
  padding: clamp(16px, 2.4vw, 22px);
  background: #12313f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
}

.board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.board-header strong {
  display: block;
  max-width: 260px;
  margin-top: 5px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.board-kicker {
  color: #a8d8d5;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-accent {
  width: 30px;
  height: 30px;
  color: #ffd28b;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.board-tile {
  min-height: 84px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.board-tile span {
  display: block;
  margin-top: 11px;
  color: #ecf6f6;
  font-weight: 800;
}

.tile-icon {
  width: 26px;
  height: 26px;
  color: #8dd6d1;
}

.workflow-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.workflow-list div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 38px;
  padding: 7px 10px;
  color: #d8e8eb;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-weight: 700;
}

.workflow-list span,
.step-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  background: #ffd28b;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.client-grid,
.category-grid,
.service-grid,
.proof-grid {
  display: grid;
  gap: 12px;
}

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

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

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

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.section-about {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--surface-blue);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.about-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink-soft);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

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

.proof-card {
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-card .image-frame {
  aspect-ratio: 4 / 3;
  margin-bottom: 12px;
}

.large-proof .image-frame {
  aspect-ratio: 16 / 9;
}

.proof-card h3,
.proof-card p {
  padding: 0 6px;
}

.proof-card p {
  margin: 7px 0 4px;
  color: var(--ink-soft);
}

.large-proof {
  grid-column: span 2;
}

.info-card,
.category-card {
  min-height: 100%;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section:not(.section-muted) .info-card,
.section:not(.section-muted) .category-card {
  background: #fff;
}

.card-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 13px;
  color: var(--teal);
}

.info-card p,
.category-card p,
.process-step p,
.why-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.category-card:nth-child(2) .card-icon,
.service-grid .info-card:nth-child(3n) .card-icon {
  color: var(--amber);
}

.category-card:nth-child(3) .card-icon,
.service-grid .info-card:nth-child(4n) .card-icon {
  color: var(--blue);
}

.category-card:nth-child(4) .card-icon,
.service-grid .info-card:nth-child(5n) .card-icon {
  color: var(--green);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  position: relative;
  min-height: 178px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-number {
  margin-bottom: 16px;
}

.step-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.why-list {
  display: grid;
  gap: 10px;
}

.why-list > div {
  padding: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list {
  display: grid;
  gap: 8px;
  max-width: 920px;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--ink-soft);
}

.section-rfq {
  background: #12313f;
  color: white;
}

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.rfq-copy {
  position: sticky;
  top: 92px;
}

.rfq-copy .eyebrow {
  color: #8dd6d1;
}

.rfq-copy p {
  color: #d5e4e8;
  font-size: 1.06rem;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-options a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 800;
}

.rfq-form {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.5vw, 24px);
  color: var(--ink);
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--ink);
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

.rfq-form textarea {
  min-height: 96px;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 121, 117, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 26px clamp(18px, 4vw, 42px);
  color: #c9d7db;
  background: #0d222d;
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: #97adb5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  color: white;
  font-weight: 700;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(15, 121, 117, 0.08), rgba(255, 210, 139, 0.08)),
    var(--surface-soft);
}

.thank-you-main {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px;
}

.thank-you-panel {
  width: min(100%, 920px);
  padding: clamp(24px, 5vw, 46px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.thank-you-panel h1 {
  max-width: 780px;
  font-size: 3.25rem;
}

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

.thank-you-steps > div {
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.thank-you-steps h3 {
  margin-top: 14px;
}

.thank-you-steps p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

@media (max-width: 1060px) {
  .hero,
  .why-layout,
  .rfq-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-board {
    justify-self: start;
  }

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

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .rfq-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-contact {
    margin-left: auto;
  }

  .section-band,
  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 1.95rem;
  }

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

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

  .button {
    min-height: 48px;
  }

  .trust-strip span {
    width: 100%;
  }

  .client-grid,
  .category-grid,
  .service-grid,
  .proof-grid,
  .process,
  .form-row {
    grid-template-columns: 1fr;
  }

  .large-proof {
    grid-column: auto;
  }

  .portrait-frame {
    aspect-ratio: 4 / 3;
  }

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

  .process-step {
    min-height: auto;
  }

  .rfq-layout {
    gap: 20px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .thank-you-panel h1 {
    font-size: 2.35rem;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 100%;
  }

  .header-contact {
    margin-left: 0;
  }

  .nav-links {
    gap: 18px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.78rem;
  }
}
