:root {
  --ink: #071016;
  --deep: #0b171d;
  --panel: #10232d;
  --muted: #5a6972;
  --line: rgba(7, 16, 22, 0.12);
  --paper: #f7faf8;
  --white: #ffffff;
  --aqua: #29d6c5;
  --gold: #f4c95d;
  --clay: #c65b40;
  --steel: #dce7e6;
  --shadow: 0 24px 70px rgba(7, 16, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 250, 248, 0.88);
  border-bottom: 1px solid rgba(7, 16, 22, 0.08);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--aqua);
  display: inline-flex;
  font-size: 0.78rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
  color: #293940;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a,
.footer a {
  transition: color 180ms ease;
}

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

.nav-cta,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.hero {
  color: var(--white);
  min-height: 86vh;
  overflow: hidden;
  position: relative;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 16, 22, 0.2), rgba(7, 16, 22, 0.38)),
    url("images/banner.jpg") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 84% 22%, rgba(41, 214, 197, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(7, 16, 22, 0.96) 0%, rgba(7, 16, 22, 0.72) 45%, rgba(7, 16, 22, 0.34) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86vh;
  padding: 92px clamp(20px, 5vw, 72px) 54px;
  position: relative;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--aqua);
}

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

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin-bottom: 26px;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
  line-height: 1;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.16;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 40px;
}

.button.primary {
  background: var(--aqua);
  color: var(--ink);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 18px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.hero-stats strong {
  color: var(--gold);
  display: block;
  font-size: 1.6rem;
}

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

.intro-grid,
.section-heading,
.feature-strip,
.proof,
.contact-hero,
.contact-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.intro-grid p,
.section-heading p,
.feature-content p,
.proof-card p,
.process p,
.contact-hero p,
.contact-card p,
.contact-aside li {
  color: var(--muted);
  font-size: 1.04rem;
}

.dark-panel {
  background: var(--deep);
  color: var(--white);
}

.dark-panel .section-heading p,
.dark-panel .service-card p {
  color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-height: 310px;
  padding: 24px;
}

.service-card.highlight {
  background: var(--aqua);
  color: var(--ink);
}

.service-card.highlight p {
  color: rgba(7, 16, 22, 0.72);
}

.service-number {
  color: var(--gold);
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 54px;
}

.highlight .service-number {
  color: var(--clay);
}

.feature-strip {
  align-items: center;
  background: var(--white);
}

.feature-image img,
.proof-card.large img,
.contact-aside img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-image {
  min-height: 440px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  background: var(--steel);
  border-radius: 999px;
  color: #26383f;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 10px 14px;
}

.proof {
  align-items: stretch;
  display: block;
}

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

.proof-card.large {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  min-height: clamp(430px, 54vw, 680px);
  padding: clamp(16px, 2vw, 28px);
}

.proof-card.large div {
  align-self: center;
  padding: clamp(18px, 4vw, 56px);
}

.proof-card.large h2 {
  font-size: clamp(2.4rem, 5vw, 5.9rem);
  max-width: 980px;
}

.proof-card.large p:not(.section-kicker) {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  max-width: 780px;
}

.process {
  background:
    linear-gradient(rgba(247, 250, 248, 0.88), rgba(247, 250, 248, 0.94)),
    url("images/pic03.jpg") center / cover;
}

.process > h2 {
  max-width: 720px;
}

.process-steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.process-steps article {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.process-steps span {
  color: var(--clay);
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-section {
  align-items: center;
  background: var(--panel);
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto;
  padding: clamp(52px, 8vw, 86px) clamp(20px, 5vw, 72px);
}

.cta-section p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
}

.footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.92rem;
  gap: 14px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.footer a {
  color: var(--aqua);
  font-weight: 800;
}

.contact-page {
  background:
    linear-gradient(90deg, rgba(247, 250, 248, 0.96), rgba(247, 250, 248, 0.82)),
    url("images/banner.jpg") center / cover fixed;
}

.contact-main {
  padding: clamp(46px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.contact-hero {
  align-items: end;
  margin-bottom: 48px;
}

.contact-hero h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 900px;
}

.contact-card,
.contact-form,
.contact-aside .aside-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 32px;
}

.email-link {
  color: var(--clay);
  display: inline-block;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 800;
  margin: 0 0 18px;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

label {
  color: #21323a;
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

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

input,
select,
textarea {
  background: #f9fbfa;
  border: 1px solid rgba(7, 16, 22, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--aqua);
  outline: 3px solid rgba(41, 214, 197, 0.28);
}

.form-button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.contact-aside img {
  max-height: 360px;
}

.aside-panel {
  padding: 30px;
}

.aside-panel ul {
  margin: 0;
  padding-left: 20px;
}

.aside-panel li + li {
  margin-top: 12px;
}

.response-page {
  display: grid;
  min-height: 100vh;
  padding: clamp(24px, 5vw, 72px);
  place-items: center;
}

.response-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 760px;
  padding: clamp(28px, 5vw, 58px);
}

.response-card h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.response-card p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.button.secondary.dark {
  border: 1px solid rgba(7, 16, 22, 0.22);
  color: var(--ink);
}

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

  .intro-grid,
  .section-heading,
  .feature-strip,
  .proof,
  .contact-hero,
  .contact-layout,
  .proof-card.large {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: start;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 16, 22, 0.96), rgba(7, 16, 22, 0.68));
  }

  .hero-stats,
  .service-grid,
  .process-steps,
  .cta-section {
    grid-template-columns: 1fr;
  }

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

  .service-number {
    margin-bottom: 28px;
  }

  .feature-image {
    min-height: 280px;
  }

  .cta-section .button {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .brand {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

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