:root {
  --navy: #071d33;
  --navy-2: #0d2d4f;
  --blue: #1f6fff;
  --green: #24a66a;
  --teal: #0fa3a3;
  --ink: #182433;
  --muted: #607085;
  --soft: #f4f8fb;
  --line: rgba(7, 29, 51, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(7, 29, 51, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: none; }
img { max-width: 100%; height: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand img { width: 168px; max-height: 46px; object-fit: contain; }
.site-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.site-nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 9px 12px;
  border-radius: 999px;
}
.site-nav a:hover { background: var(--soft); }
.site-nav .nav-cta { background: var(--navy); color: white; padding-inline: 18px; }
.site-nav .nav-cta:hover { background: var(--blue); color: white; }

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/h6.jpg') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(31,111,255,0.34), transparent 36%),
    linear-gradient(90deg, rgba(7,29,51,0.94) 0%, rgba(7,29,51,0.78) 48%, rgba(7,29,51,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
}
.hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 800;
}
.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); text-decoration: none; }
.button-primary { background: var(--green); color: white; box-shadow: 0 16px 32px rgba(36,166,106,.28); }
.button-primary:hover { background: #1f925d; color: white; }
.button-secondary { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.28); }
.button-secondary:hover { background: white; color: var(--navy); }

.container-modern { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: clamp(62px, 9vw, 110px) 0; }
.bg-soft { background: var(--soft); }
.two-col { display: grid; grid-template-columns: .9fr 1.25fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.align-start { align-items: start; }
h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 0;
  font-weight: 800;
}
.rich-text p { margin: 0 0 18px; color: var(--muted); font-size: 1.05rem; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading.light h2 { color: white; }
.section-heading.light .section-kicker { color: #8ee0b3; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card, .feature-panel, .cta-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(7, 29, 51, 0.08);
}
.product-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  min-height: 330px;
}
.product-card:before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
}
.product-card.accent-green:before { background: var(--green); }
.product-card.accent-dark:before { background: var(--navy); }
.card-label { display: inline-flex; color: var(--muted); font-weight: 800; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.product-card h3 { margin: 10px 0 18px; color: var(--navy); font-size: 1.45rem; line-height: 1.2; }
.product-card ul { margin: 0; padding-left: 18px; color: var(--muted); }
.product-card li { margin: 9px 0; }

.image-band { padding: 34px 0; background: linear-gradient(180deg, var(--soft), #fff); }
.visual-strip { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
.visual-strip img { width: 100%; height: 330px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.visual-strip img:first-child { height: 390px; }

.feature-panel { padding: clamp(28px, 4vw, 44px); }
.feature-panel p { color: var(--muted); font-size: 1.06rem; margin-top: 0; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 28px; }
.mini-grid div { padding: 18px; border-radius: 20px; background: var(--soft); }
.mini-grid strong { display: block; color: var(--navy); margin-bottom: 6px; }
.mini-grid span { display: block; color: var(--muted); font-size: .94rem; }

.bg-navy { background: var(--navy); color: white; }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.partner-card {
  display: grid;
  gap: 16px;
  align-content: space-between;
  min-height: 220px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.82);
}
.partner-card:hover { background: rgba(255,255,255,.13); color: white; }
.partner-card img { width: 100%; height: 92px; object-fit: contain; object-position: left center; background: white; border-radius: 18px; padding: 14px; }
.partner-card span { font-weight: 700; }

.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(28px, 5vw, 56px); }
.cta-panel p { color: var(--muted); margin: 18px 0 0; max-width: 720px; }
.cta-panel .button-primary { white-space: nowrap; }

.site-footer { background: #07131f; color: rgba(255,255,255,.72); padding-top: 62px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 42px; }
.footer-logo { width: 170px; background: white; border-radius: 16px; padding: 12px; margin-bottom: 18px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.site-footer a { color: #9fe0bd; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px; font-size: .9rem; }

@media (max-width: 900px) {
  .site-header { position: relative; align-items: flex-start; flex-direction: column; }
  .site-nav { width: 100%; }
  .hero { min-height: 620px; }
  .two-col, .product-grid, .partner-grid, .footer-grid { grid-template-columns: 1fr; }
  .visual-strip { grid-template-columns: 1fr; }
  .visual-strip img, .visual-strip img:first-child { height: 250px; }
  .mini-grid { grid-template-columns: 1fr; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .site-nav a { font-size: .85rem; padding: 8px 10px; }
  .hero-bg { background-image: url('../img/h6s.jpg'); }
  .hero h1 { font-size: 2.4rem; }
  .section-pad { padding: 54px 0; }
}

/* Mobile usability: keep the full menu in the document flow instead of sticky overlay */
@media (max-width: 900px) {
  .site-header {
    position: relative !important;
    top: auto !important;
  }
}
