:root {
  --ink: #111111;
  --muted: #646a73;
  --line: #e6e8ec;
  --panel: #f6f7f9;
  --white: #ffffff;
  --accent: #00a6c8;
  --accent-dark: #00677d;
  --gold: #d9a441;
  --green: #2f7a5f;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
}

.brand img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: transparent;
}

.brand span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #30343a;
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a,
.footer-links a {
  text-decoration: none;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  padding: 138px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
  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(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  align-self: end;
  max-width: 840px;
}

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

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: #004f60;
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

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

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
}

.section,
.contact-section,
.feature-band {
  padding: clamp(72px, 8vw, 128px) clamp(18px, 5vw, 72px);
}

.intro {
  max-width: 1120px;
}

.intro h2,
.section-heading h2,
.feature-copy h2,
.split h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.2vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.feature-copy p,
.split p,
.contact-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.services {
  background: var(--panel);
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-number {
  color: var(--gold);
  font-weight: 800;
}

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

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

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: #101214;
  color: var(--white);
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.example-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.example-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.example-list strong,
.example-list span {
  display: block;
}

.example-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #30343a;
  font-weight: 600;
}

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

.dashboard-panel {
  position: relative;
}

.dashboard-panel > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metric-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 310px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(16, 24, 40, 0.18);
}

.metric-card span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.metric-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.process {
  background: var(--panel);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--line);
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-steps li {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
}

.process-steps span {
  color: var(--accent-dark);
  font-weight: 800;
}

.process-steps p {
  margin: 46px 0 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  background: #fdfdfb;
}

address {
  margin-top: 28px;
  color: #30343a;
  font-style: normal;
}

address a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-self: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16, 24, 40, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #30343a;
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfd4dc;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 166, 200, 0.18);
  border-color: var(--accent-dark);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 500;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.consent a {
  color: var(--accent-dark);
  font-weight: 800;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #101214;
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: start;
  justify-content: end;
  color: var(--white);
  font-weight: 700;
}

.credits {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.82rem;
}

.credits span {
  color: rgba(255, 255, 255, 0.68);
}

.credits a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.credits a:hover {
  color: var(--white);
  text-decoration: underline;
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 4vw, 36px);
  top: clamp(150px, 16vh, 190px);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 144px;
  min-height: 56px;
  padding: 0 18px;
  color: var(--white);
  background: var(--accent-dark);
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: transform 180ms ease, background 180ms ease;
}

.back-to-top:hover {
  background: var(--ink);
}

.back-to-top span {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.back-to-top strong {
  font-size: 0.92rem;
  line-height: 1;
}

.legal-page {
  background: var(--panel);
}

.legal-header {
  position: sticky;
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 88px) clamp(18px, 5vw, 56px);
  background: var(--white);
}

.legal-content h1 {
  margin: 0 0 30px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.legal-content p {
  margin: 0 0 12px;
  color: #30343a;
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    min-height: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding-top: 4px;
  }

  .hero {
    min-height: 760px;
    padding-top: 92px;
  }

  .trust-strip,
  .service-grid,
  .feature-band,
  .split,
  .process-steps,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-steps li {
    min-height: auto;
  }

  .process-steps p {
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span,
  .nav-cta {
    display: none;
  }

  .site-header {
    gap: 8px;
    padding-inline: 18px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.82rem;
    overflow: visible;
  }

  .main-nav a {
    min-width: 0;
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.55rem);
  }

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

  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .metric-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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