:root {
  --bg: #ffffff;
  --ink: #121820;
  --muted: #5e6975;
  --line: #e7eaee;
  --panel: #f6f8fb;
  --dark: #0f1720;
  --blue: #006bdc;
  --red: #f01822;
  --orange: #ff6a21;
  --shadow: 0 24px 80px rgba(15, 23, 32, .12);
  --radius: 24px;
}

* { 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(--bg);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 170px; height: auto; }
.nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 15px; font-weight: 650; }
.nav a:hover { color: var(--ink); }
.header-cta {
  display: inline-flex;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 750;
  font-size: 14px;
}

.section { padding-inline: clamp(18px, 4vw, 64px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 78% 24%, rgba(0,107,220,.12), transparent 32%),
    radial-gradient(circle at 88% 62%, rgba(240,24,34,.10), transparent 30%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  font-size: clamp(40px, 7vw, 84px);
  line-height: .95;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 34px;
}
.hero-actions, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
}
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 14px 28px rgba(0,107,220,.18);
}
.button.secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}
.hero-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; max-width: 360px; margin: 0 auto 24px; }
.quick-list { display: grid; gap: 12px; }
.quick-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-weight: 750;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--dark);
  color: #fff;
}
.trust-strip div { padding: 20px; border-radius: 18px; background: rgba(255,255,255,.06); }
.trust-strip strong { display: block; font-size: 18px; margin-bottom: 4px; }
.trust-strip span { color: rgba(255,255,255,.72); }

.services-section, .about-section, .areas-section, .contact-section { padding-top: 88px; padding-bottom: 88px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.compact { margin-inline: auto; text-align: center; }
h2 { font-size: clamp(32px, 4.5vw, 58px); line-height: 1; letter-spacing: -0.04em; margin-bottom: 18px; }
.section-heading p, .about-copy p, .contact-card p, .about-panel p { color: var(--muted); font-size: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  min-height: 260px;
  box-shadow: 0 12px 38px rgba(15, 23, 32, .05);
}
.service-card h3 { font-size: 21px; line-height: 1.1; margin: 18px 0 12px; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-icon { width: 42px; height: 42px; border-radius: 14px; background: var(--blue); }
.service-icon.red { background: var(--red); }
.service-icon.dark { background: var(--dark); }
.service-icon.split { background: linear-gradient(135deg, var(--blue), var(--red)); }

.about-section {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 28px;
  background: var(--panel);
}
.about-panel {
  align-self: start;
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.about-panel h3 { font-size: 30px; line-height: 1; letter-spacing: -0.03em; }
.about-panel p { color: rgba(255,255,255,.72); }

.areas-section { background: #fff; }
.area-grid {
  max-width: 980px;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
  font-weight: 800;
  color: var(--ink);
}
.area-note {
  max-width: 720px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

.contact-section { background: var(--panel); }
.contact-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-actions { justify-content: center; margin-top: 26px; }
.small-note { font-size: 14px !important; margin-top: 18px; margin-bottom: 0; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 4vw, 64px);
  background: var(--dark);
  color: rgba(255,255,255,.76);
  font-size: 14px;
}

@media (max-width: 960px) {
  .hero, .about-section { grid-template-columns: 1fr; }
  .hero { min-height: unset; padding-top: 56px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .site-header { align-items: flex-start; gap: 12px; flex-wrap: wrap; }
  .brand img { width: 142px; }
  .nav { order: 3; width: 100%; justify-content: space-between; gap: 12px; }
  .header-cta { margin-left: auto; }
  .service-grid { grid-template-columns: 1fr; }
  h1 { font-size: 46px; }
  .hero-card { padding: 22px; }
  .button { width: 100%; }
}
