/* ===== Tokens ===== */
:root {
  --ink: #0b1220;
  --text-muted: #5b6478;
  --navy: #0f1b34;
  --navy-2: #16264a;
  --blue: #2f6fed;
  --blue-light: #eaf1ff;
  --orange: #ff7a29;
  --orange-dark: #e5651a;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f6f8fc;
  --border: #e4e9f5;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 52, 0.06), 0 1px 1px rgba(15, 27, 52, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 27, 52, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 27, 52, 0.16);
  --container: 1140px;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; letter-spacing: -0.01em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

.accent { color: var(--orange); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-primary {
  background: var(--orange);
  color: #1a0f04;
  box-shadow: 0 8px 20px rgba(255, 122, 41, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(15, 27, 52, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  border-radius: 8px;
  display: block;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a { position: relative; color: #e7ecfb; padding: 4px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-call { display: flex; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu a {
  padding: 10px 4px;
  font-weight: 500;
  color: #e7ecfb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu.open { display: flex; }
.mobile-call { margin-top: 10px; align-self: flex-start; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 55%, #1c3164 100%);
  color: #fff;
  padding: 70px 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(47, 111, 237, 0.35), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(255, 122, 41, 0.18), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #cfe0ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-dark {
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid #d5e4ff;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-text p {
  color: #cdd6f0;
  max-width: 540px;
  margin-bottom: 22px;
  font-size: 1.03rem;
}

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #e3e9ff;
}

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

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px 24px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hero-card-head h3 { font-size: 1.05rem; color: #fff; }
.hero-stat {
  font-size: 0.88rem;
  color: #c7d2f3;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stat strong { color: var(--orange); }
.hero-list { display: flex; flex-direction: column; gap: 9px; font-size: 0.88rem; color: #dbe3fb; }
.hero-list li { position: relative; padding-left: 16px; }
.hero-list li::before { content: "•"; position: absolute; left: 0; color: var(--orange); }

/* ===== Trust strip ===== */
.trust-strip { background: var(--navy-2); padding: 18px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eef2ff;
  font-size: 0.85rem;
  font-weight: 500;
  justify-content: center;
}

/* ===== Sections ===== */
.section { padding: 76px 0; }
.alt-bg { background: var(--bg-alt); }

.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #d5e4ff;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 14px; }
.service-items { display: flex; flex-direction: column; gap: 6px; font-size: 0.87rem; color: var(--ink); }
.service-items li { position: relative; padding-left: 16px; }
.service-items li::before { content: "›"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ===== Why us ===== */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.list-check { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.list-check li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink); }
.list-check .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.highlight-block {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.highlight-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.highlight-block p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== Coverage ===== */
.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.coverage-tag {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.coverage-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.coverage-type {
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.contact-row:hover { border-color: var(--blue); transform: translateX(2px); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-md);
}
.form-row { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 150px; }
.form-group-full { flex: 1 1 100%; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
input, select, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: var(--font-body);
}
textarea { resize: vertical; min-height: 90px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.15);
  background: #fff;
}
.form-submit { width: 100%; margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #cfd7f2; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding: 56px 0 36px;
}
.footer-brand p { margin-top: 12px; font-size: 0.88rem; color: #aab6de; max-width: 320px; }
.footer-brand .logo-text { color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-title {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 16px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: #8b96bd;
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .two-column, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: flex; }
  .site-header { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero { padding: 50px 0 40px; }
  .hero-text h1 { font-size: 1.9rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
