:root {
  --ink: #17201e;
  --muted: #636773;
  --line: #e1e4ef;
  --paper: #fbfcff;
  --soft: #f3f7ff;
  --blue: #36a7e8;
  --blue-dark: #1678bd;
  --purple: #ae5ae6;
  --purple-dark: #8d39d1;
  --accent: #25b8dd;
  --white: #ffffff;
  --gradient: linear-gradient(90deg, var(--blue), var(--purple));
  --shadow: 0 20px 60px rgba(42, 73, 130, 0.14);
}

* {
  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", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 252, 251, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand-logo {
  height: auto;
  width: min(190px, 48vw);
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover {
  color: var(--purple-dark);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-text,
.section p,
.legal-content p {
  color: var(--muted);
  font-size: 17px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

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

.button.primary:hover {
  filter: saturate(1.08) brightness(0.96);
}

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

.hero-media {
  margin: 0;
}

.hero-media img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(174, 90, 230, 0.18);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.trust-band {
  align-items: center;
  background: linear-gradient(90deg, #111827, #213a67 42%, #6f33b3);
  color: var(--white);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 28px;
  padding-top: 28px;
}

.trust-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  text-align: center;
}

.split {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
}

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

.service-card,
.contact-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.service-card {
  border-top: 3px solid transparent;
  border-image: var(--gradient) 1;
}

.service-card p,
.contact-summary p {
  margin-bottom: 0;
}

.about {
  background: var(--soft);
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.about-page {
  background: var(--soft);
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  min-height: calc(72vh - 72px);
}

.about-copy {
  max-width: 820px;
}

.about-page .contact-summary h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.about-detail {
  background: var(--paper);
}

.contact {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 24px;
}

label {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 750;
  gap: 7px;
}

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

input:focus,
textarea:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(174, 90, 230, 0.16);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

.legal-page {
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 72px);
}

.legal-content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 880px;
  padding: clamp(24px, 5vw, 56px);
}

.legal-content h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 34px;
}

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: min(190px, 72vw);
  }

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .about,
  .about-page,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

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

@media (max-width: 560px) {
  .nav {
    gap: 12px;
  }

  h1 {
    font-size: 38px;
  }

  .trust-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trust-band p {
    text-align: left;
  }

  .button {
    width: 100%;
  }
}
