:root {
  --green: #9ad918;
  --green-strong: #74b80a;
  --blue: #18a9e5;
  --blue-dark: #086b98;
  --ink: #14222a;
  --muted: #59707a;
  --line: #d7e8ee;
  --soft: #eff8fa;
  --surface: #ffffff;
  --primer: #eef2f4;
  --yellow: #f4d142;
  --shadow: 0 20px 54px rgba(20, 34, 42, 0.14);
  font-family: 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);
  background: var(--surface);
  line-height: 1.5;
}

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

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

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

li + li {
  margin-top: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: var(--primer);
  border-bottom: 1px solid #d6dde0;
}

.brand img {
  object-fit: contain;
}

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

.brand-logo {
  width: 230px;
  height: 58px;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--blue-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.button.primary {
  color: #102026;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(116, 184, 10, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(8, 107, 152, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(42px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(239, 248, 250, 0.94), rgba(255, 255, 255, 0.96) 56%, rgba(225, 246, 253, 0.92));
}

.hero-copy {
  min-width: 0;
}

.hero-logo {
  width: min(420px, 100%);
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 24px rgba(8, 107, 152, 0.12));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.1rem, 7vw, 6.4rem);
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  width: min(260px, calc(100% - 36px));
  padding: 16px 18px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(20, 34, 42, 0.88);
  backdrop-filter: blur(10px);
}

.media-badge strong {
  font-size: 1.2rem;
}

.media-badge span {
  color: #dcecf1;
}

.slogan-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.slogan-strip span {
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #ffffff;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 950;
  text-align: center;
}

.section,
.contact-section {
  padding: clamp(62px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

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

.audience-panel {
  min-height: 390px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 34, 42, 0.06);
}

.audience-panel.highlight {
  color: #ffffff;
  background:
    linear-gradient(150deg, rgba(20, 34, 42, 0.96), rgba(8, 107, 152, 0.94));
  border-color: transparent;
}

.audience-panel h2,
.section h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.audience-panel p {
  margin: 18px 0 0;
  color: var(--muted);
}

.audience-panel.highlight .section-kicker {
  color: var(--yellow);
}

.audience-panel.highlight h2,
.audience-panel.highlight p {
  color: #ffffff;
}

.audience-panel.highlight li {
  color: #e6f4f8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading.compact {
  display: block;
}

.section-heading p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  min-height: 258px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(20, 34, 42, 0.06);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--blue-dark);
  font-weight: 950;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.22rem;
}

.service-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.team-section {
  color: #ffffff;
  background:
    linear-gradient(140deg, #14222a 0%, #0b6f9b 64%, #74b80a 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.team-section .section-kicker {
  color: var(--yellow);
}

.team-section h2 {
  color: #ffffff;
}

.team-points {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.team-points div {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.team-points strong {
  color: #ffffff;
  font-size: 1.1rem;
}

.team-points span {
  color: #e7f5f8;
}

.process-section {
  background: #ffffff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.process-list li {
  min-height: 190px;
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
}

.process-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 950;
}

.contact-section {
  color: #ffffff;
  background: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.contact-section .section-kicker {
  color: var(--yellow);
}

.contact-section h2 {
  color: #ffffff;
}

.contact-copy p {
  margin: 20px 0 0;
  color: #c7d5db;
}

.contact-details {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details p {
  margin: 0 0 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(24, 169, 229, 0.22);
  border-color: var(--blue);
}

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

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

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

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

  .main-nav {
    display: none;
  }

  .hero,
  .audience-grid,
  .section-heading,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    gap: 12px;
    padding-inline: 16px;
  }

  .brand-logo {
    width: 158px;
    height: 44px;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 34px 16px 44px;
  }

  .hero-logo {
    width: min(330px, 100%);
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
  }

  .slogan-strip,
  .service-grid,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .slogan-strip span {
    min-height: 68px;
  }

  .section,
  .contact-section {
    padding: 54px 16px;
  }

  .audience-panel,
  .service-card,
  .process-list li {
    min-height: auto;
  }

  .team-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 16px;
  }
}
