﻿* { box-sizing: border-box; }

:root {
  --bg: #0b1220;
  --bg-soft: #111b2e;
  --surface: #ffffff;
  --surface-alt: #f4f7fb;
  --text: #142033;
  --muted: #5b6778;
  --line: #dfe6ef;
  --accent: #1771d6;
  --accent-dark: #1056a5;
  --white: #ffffff;
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 18, 32, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-text {
  font-size: 0.95rem;
  color: #c8d5e6;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: #dce7f4;
  font-size: 0.93rem;
}

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

.nav-cta {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 8px 14px;
}

.hero {
  background:
    radial-gradient(circle at 85% 18%, rgba(23,113,214,0.28), transparent 30%),
    linear-gradient(135deg, #0b1220, #12213a);
  color: var(--white);
  padding: 92px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.77rem;
  font-weight: 800;
  color: #4b94e6;
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: #c9d6e7;
  font-size: 1.18rem;
}

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

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

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

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: #aebed2;
  font-size: 0.93rem;
}

.hero-points span::before {
  content: "✓";
  margin-right: 7px;
  color: #66aaf6;
  font-weight: 800;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.hero-card h2 { margin-top: 0; line-height: 1.25; }
.hero-card p, .hero-card li { color: #cbd7e6; }
.hero-card ul { padding-left: 20px; margin-bottom: 0; }

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

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

.trust-grid div { padding: 26px 24px; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 1.1rem; }
.trust-grid span { margin-top: 3px; color: var(--muted); font-size: 0.92rem; }

.section { padding: 88px 0; }
.section.alt { background: var(--surface-alt); }

.section-heading { max-width: 840px; margin-bottom: 42px; }
.section-heading.narrow { max-width: 760px; }

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.13;
  letter-spacing: -0.03em;
}

.section-heading > p:last-child,
.two-column > div > p,
.service-area-grid > div > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--surface);
  min-height: 190px;
}

.card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); }

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.feature-list { display: grid; gap: 18px; }

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
}

.feature h3 { margin: 0 0 6px; }
.feature p { margin: 0; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: start;
}

.about-story p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: var(--surface-alt);
}

.about-panel h3 { margin-top: 0; }
.about-panel ul { padding-left: 20px; margin-bottom: 0; }

.industry-grid,
.area-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.industry-grid span,
.area-list span {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  background: #fff;
  font-weight: 650;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact-section {
  padding-top: 20px;
  padding-bottom: 90px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  background: var(--bg);
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
}

.contact-box h2 { font-size: clamp(2rem, 4vw, 3rem); }

.contact-box > div > p:last-child {
  color: #c7d3e3;
}

.contact-details {
  align-self: center;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 12px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
}

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

.contact-details a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.contact-details a:hover { text-decoration: underline; }

.site-footer {
  background: #070c14;
  color: #b8c4d3;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.footer-inner strong { color: var(--white); }
.footer-inner p { margin: 5px 0 0; font-size: 0.9rem; }

@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .about-grid,
  .service-area-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .cards,
  .industry-grid,
  .area-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid { gap: 40px; }
}

@media (max-width: 760px) {
  .site-header { position: static; }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 4px;
  }

  .nav a { white-space: nowrap; }

  .hero { padding: 64px 0; }

  .cards,
  .industry-grid,
  .area-list,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 64px 0; }
  .contact-box { padding: 30px 24px; }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.contact-note {
  margin-top: 14px !important;
  color: #c7d3e3;
  font-size: 0.9rem;
  line-height: 1.5;
}
