:root {
  --blue: #003399;
  --blue-dark: #00256f;
  --navy: #071b3a;
  --graphite: #333333;
  --steel: #6b7280;
  --light: #f5f7fa;
  --white: #ffffff;
  --border: #e5e7eb;
  --soft-blue: #eef3ff;
  --shadow: 0 18px 50px rgba(7, 27, 58, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.65;
}

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

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

p {
  margin-top: 0;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 880px;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
}

.logo {
  width: 245px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
}

.main-nav a {
  color: var(--graphite);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.menu-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  width: 46px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
}

.hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 51, 153, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f2f5fb 100%);
  padding: 86px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.eyebrow.light {
  color: #dbe7ff;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0 0 22px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 0 0 16px;
}

h3 {
  font-size: 21px;
  margin: 0 0 10px;
}

.hero-text {
  font-size: 19px;
  color: var(--steel);
  max-width: 740px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary-btn {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 51, 153, 0.20);
}

.primary-btn:hover {
  background: var(--blue-dark);
}

.secondary-btn {
  background: var(--white);
  color: var(--blue);
  border: 1px solid var(--blue);
}

.hero-image-wrap,
.content-image {
  filter: drop-shadow(0 22px 35px rgba(7, 27, 58, 0.10));
}

.hero-image {
  border-radius: 28px;
}

.section {
  padding: 78px 0;
}

.light-section {
  background: var(--light);
}

.split-section {
  overflow: hidden;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--steel);
  font-size: 18px;
}

.section-kicker {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 82px 0;
}

.page-hero h1 {
  color: var(--white);
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 860px;
  font-size: 19px;
  color: #e5e7eb;
}

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

.service-grid.detailed {
  align-items: stretch;
}

.service-card,
.content-card,
.blog-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 32px rgba(7, 27, 58, 0.06);
}

a.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card p,
.content-card p,
.blog-card p,
.contact-card p {
  color: var(--steel);
}

.icon-box {
  min-width: 50px;
  width: fit-content;
  height: 48px;
  padding: 0 12px;
  background: var(--soft-blue);
  color: var(--blue);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.highlight-card {
  border-left: 6px solid var(--blue);
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.stat-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-panel div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(7, 27, 58, 0.06);
}

.stat-panel strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-panel span {
  color: var(--steel);
}

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

.process-grid div {
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(7, 27, 58, 0.05);
}

.process-grid strong {
  color: var(--blue);
  font-size: 30px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.pill-grid span {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(7, 27, 58, 0.04);
}

.light-section .pill-grid span {
  background: var(--white);
}

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

.blog-card span {
  display: inline-block;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
}

.blog-card h2 {
  font-size: 24px;
}

.contact-card {
  background: var(--light);
  border-left: 6px solid var(--blue);
}

.contact-card a:not(.btn) {
  color: var(--blue);
  font-weight: 700;
}

.small-note {
  font-size: 14px;
  margin-top: 16px;
}

.cta-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.14), transparent 24%),
    var(--navy);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: #d1d5db;
  font-size: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  background: #111827;
  color: #d1d5db;
  padding-top: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 42px;
}

.footer-logo {
  width: 230px;
  background: var(--white);
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.footer-tagline {
  color: var(--white);
  font-weight: 800;
}

.site-footer h4 {
  color: var(--white);
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #d1d5db;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  text-align: center;
  margin-top: 42px;
  padding: 18px;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 12px;
    font-size: 13px;
  }

  .logo {
    width: 210px;
  }
}

@media (max-width: 920px) {
  .header-inner {
    align-items: center;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 4%;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 12px 0;
  }

  .hero-grid,
  .split-grid,
  .card-grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 62px 0;
  }

  .page-hero {
    padding: 62px 0;
  }

  .logo {
    width: 200px;
  }
}

@media (max-width: 640px) {
  .service-grid,
  .blog-grid,
  .process-grid,
  .stat-panel {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .logo {
    width: 175px;
  }

  .footer-logo {
    width: 190px;
  }
}


/* Pure HTML visual panels - no image files required */
.hero-panel {
  background: linear-gradient(145deg, #ffffff 0%, #eef3ff 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.hero-panel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 18px;
}

.hero-panel-card strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  margin-top: 8px;
}

.hero-panel-card p {
  color: var(--steel);
  margin-bottom: 0;
}

.panel-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-panel-grid span {
  background: var(--white);
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  padding: 16px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(7, 27, 58, 0.06);
}

.diagram-card {
  background: linear-gradient(145deg, #ffffff 0%, #f5f7fa 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.diagram-step {
  display: block;
  background: var(--white);
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--navy);
  font-weight: 900;
}

.diagram-arrow {
  display: block;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}
