
:root {
  --navy: #0a3161;
  --red: #b31942;
  --slate: #1e293b;
  --text: #0f172a;
  --muted: #475569;
  --white: #ffffff;
  --bg: #f8fafc;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji"; background: var(--bg); color: var(--slate); }

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

.header {
  width: 100%;
  border-bottom: none;
  box-shadow: none;
}

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

.header .brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header img.logo {
  height: 96px;
  width: auto;
}

.header .brand-name {
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--navy);
}
.badge { background: #eef2ff; color:#334155; border: 1px solid #e2e8f0; padding: 6px 10px; border-radius: 999px; font-size: 12px; }

.hero { 
  position: relative; 
  min-height: 64vh; 
  display:flex; 
  align-items:center; 
  background-image: url('assets/hero_modern_clean.png');
  background-size: cover;
  background-position: center;
}
.hero .inner { 
  position:relative; 
  z-index:2; 
  color: var(--white); 
  padding: 64px 0; 
}
.hero h1 { 
  font-size: clamp(30px, 5vw, 56px); 
  line-height:1.03; 
  margin: 10px 0 12px; 
  letter-spacing:.2px; 
  text-shadow: 0 2px 4px rgba(0,0,0,.55);
}
.hero p { 
  color: #e2e8f0; 
  font-size: clamp(15px, 2.2vw, 19px); 
  max-width: 740px; 
  text-shadow: 0 2px 4px rgba(0,0,0,.55);
}

.cta { display:inline-flex; align-items:center; gap:12px; background: var(--red); color: #fff; padding: 14px 22px; 
  border-radius: 14px; font-weight:800; font-size: 16px; border: 0; text-decoration:none;
  box-shadow: 0 8px 24px rgba(179,25,66,.35), 0 2px 6px rgba(0,0,0,.12); transform: translateY(0); transition: transform .18s ease, box-shadow .18s ease; }
.cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(179,25,66,.42), 0 4px 10px rgba(0,0,0,.16); }

/* sticky quote button */
.sticky-quote { position: fixed; right: 14px; bottom: 14px; z-index: 50; }
.sticky-quote a { display:inline-flex; align-items:center; gap:10px; background: var(--red); color:#fff; padding: 12px 16px; border-radius: 999px; font-weight:800; text-decoration:none; box-shadow: 0 8px 20px rgba(179,25,66,.35); }
.sticky-quote a:hover { box-shadow: 0 12px 28px rgba(179,25,66,.42); }

.section { padding: 40px 0; }
.kicker { color: var(--navy); font-weight:800; letter-spacing:.02em; font-size: 12px; text-transform: uppercase; }
.section h2 { font-size: 26px; margin: 10px 0 6px; color: var(--navy); }
.section p.lead { color: #475569; max-width: 760px; }

/* grids */
.cards { display:grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin: 26px 0; }
.card { grid-column: span 12; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 18px; box-shadow: 0 1px 2px rgba(2,6,23,.04); }
.card h3 { margin: 8px 0 6px; color: var(--slate); }
.card p { color: #475569; margin: 0; }
@media (min-width: 720px) { .card { grid-column: span 6; } }

/* process row */
.process { display:grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 14px; }
.step { grid-column: span 12; display:flex; align-items:flex-start; gap: 10px; background:#fff; border:1px solid #e2e8f0; border-radius: 14px; padding: 14px; }
.step svg { flex:0 0 auto; }
@media (min-width: 800px) { .step { grid-column: span 4; } }

/* why choose grid */
.features { display:grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 14px; }
.feature { grid-column: span 12; background:#fff; border:1px solid #e2e8f0; border-radius: 14px; padding: 16px; display:flex; gap:10px; align-items:flex-start; }
@media (min-width: 800px) { .feature { grid-column: span 3; } }

/* testimonials */
.testimonials { display:grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 14px; }
.quote { grid-column: span 12; background:#fff; border:1px solid #e2e8f0; border-radius: 14px; padding: 16px; position:relative; }
.quote:before { content:"“"; position:absolute; top:-24px; left:10px; font-size:60px; color:#e2e8f0; }
@media (min-width: 800px) { .quote { grid-column: span 4; } }

.form { display:grid; gap:12px; }
.form input, .form textarea { background:#fff; color: var(--slate); border:1px solid #cbd5e1; border-radius: 10px; padding: 12px 14px; }
.form button { background: var(--navy); color: white; border: 0; border-radius: 10px; padding: 12px 16px; font-weight: 800; cursor: pointer; }
.form button:hover { background: #07274a; }
.notice { font-size: 12px; color: #64748b; }

.footer { margin-top: 46px; padding: 34px 0 46px; color: #e2e8f0; background: var(--navy); }
.footer .row { display:grid; grid-template-columns: 1fr; gap: 16px; }
.footer .small { font-size: 13px; }
.footer a { color: #fff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.badges { display:flex; gap:10px; margin-top:8px; flex-wrap: wrap; }
.badge-outline { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(255,255,255,.35); color:#fff; padding:6px 10px; border-radius:12px; font-size:12px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  .reveal { transition: none; }
}


.header .brand-name { font-weight:800; letter-spacing:.3px; color:var(--navy); }



.page-hero {
  padding: 32px 0 10px;
}
.page-hero h1 {
  font-size: 30px;
  margin: 0 0 6px;
  color: var(--navy);
}
.page-hero p {
  color: #475569;
  max-width: 680px;
}

.plans {
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  margin-top:18px;
}
.plan-card {
  grid-column: span 12;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:16px;
  padding:20px;
}
.plan-card h3 {
  margin:0 0 4px;
  color: var(--navy);
  font-size:20px;
}
.plan-price {
  font-size:18px;
  font-weight:800;
  margin-bottom:10px;
}
.plan-card ul {
  margin:0;
  padding-left:18px;
  color:#475569;
}
@media (min-width: 800px) {
  .plan-card { grid-column: span 6; }
}

.info-grid {
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
  margin-top:14px;
}
.info-item {
  grid-column: span 12;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:16px;
}
.info-item h3 {
  margin-top:0;
  color: var(--navy);
}
@media (min-width: 800px) {
  .info-item { grid-column: span 4; }
}

@media (max-width: 800px) {
  .header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 6px;
    margin-top: 4px;
  }
  .contact {
    align-items: flex-start;
    text-align: left;
  }
}


.header-blue {
  background: var(--navy);
  color: #ffffff;
}

.header-blue .brand-name {
  color: #ffffff;
}

.header-blue .badge {
  background: rgba(15,23,42,.4);
  color: #e2e8f0;
  border-color: rgba(148,163,184,.7);
}

/* Nav dropdown */
.nav-links {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.6);
  background: rgba(255,255,255,.96);
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown-toggle:hover {
  background: #ffffff;
}

.header-blue .nav-dropdown-toggle {
  background: rgba(15,23,42,.25);
  color: #e5e7eb;
  border-color: rgba(148,163,184,.8);
}

.header-blue .nav-dropdown-toggle:hover {
  background: rgba(15,23,42,.5);
}

.nav-caret {
  font-size: 11px;
}

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: 115%;
  background: #ffffff;
  color: #0f172a;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15,23,42,.32);
  padding: 10px 14px;
  display: none;
  min-width: 210px;
  z-index: 40;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: #0f172a;
  text-decoration: none;
}

.nav-dropdown-menu a:hover {
  color: var(--navy);
}

.nav-dropdown-menu a.nav-link-active {
  font-weight: 700;
  color: var(--navy);
}

/* Responsive header / nav */
@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-links {
    margin-left: 0;
  }

  .nav-dropdown-menu {
    position: static;
    margin-top: 6px;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}
