:root {
  --navy: #122c63;
  --navy-dark: #071a3d;
  --red: #c92832;
  --red-dark: #9f1e27;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --light-blue: #e9eef8;
  --text: #172033;
  --muted: #637083;
  --line: rgba(18, 44, 99, 0.14);
  --shadow: 0 20px 60px rgba(7, 26, 61, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-height: 100px;
}
.brand img { width: 245px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; color: var(--navy); }
.nav-links a:not(.login-btn) { position: relative; }
.nav-links a:not(.login-btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.login-btn {
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 10px 20px;
  transition: all .25s ease;
}
.login-btn:hover { background: var(--navy); color: var(--white); }
.mobile-menu { display: none; background: none; border: 0; padding: 8px; }
.mobile-menu span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--navy); border-radius: 3px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(201, 40, 50, .10), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5f7fb 52%, #edf2fb 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(18,44,99,.05) 0 1px, transparent 1px 100%);
  background-size: 38px 38px;
  opacity: .5;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 54px; }
.eyebrow { margin: 0 0 14px; text-transform: uppercase; letter-spacing: .13em; color: var(--red); font-size: .78rem; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { color: var(--navy-dark); font-size: clamp(2.55rem, 6vw, 5.25rem); line-height: .98; letter-spacing: -0.06em; margin-bottom: 24px; }
h2 { color: var(--navy-dark); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -0.045em; margin-bottom: 18px; }
h3 { color: var(--navy); font-size: 1.2rem; line-height: 1.2; margin-bottom: 10px; }
.hero-text { max-width: 650px; color: var(--muted); font-size: 1.14rem; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.primary-btn, .secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.primary-btn { color: var(--white); background: linear-gradient(135deg, var(--red), var(--red-dark)); box-shadow: 0 12px 26px rgba(201,40,50,.24); }
.secondary-btn { color: var(--navy); background: var(--white); border-color: var(--line); }
.primary-btn:hover, .secondary-btn:hover { transform: translateY(-1px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 8px 12px; border: 1px solid var(--line); background: rgba(255,255,255,.8); border-radius: 999px; color: var(--navy); font-size: .9rem; font-weight: 700; }
.hero-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(18,44,99,.12);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.card-topline { width: 86px; height: 6px; background: linear-gradient(90deg, var(--navy), var(--red)); border-radius: 99px; margin-bottom: 28px; }
.hero-card p { color: var(--muted); }
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.metric-grid div { background: var(--off-white); border: 1px solid var(--line); border-radius: 18px; padding: 18px 12px; text-align: center; }
.metric-grid strong { display: block; color: var(--red); font-size: 1.55rem; }
.metric-grid span { color: var(--navy); font-size: .85rem; font-weight: 800; }

.intro-band { background: var(--navy); color: var(--white); padding: 30px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.intro-grid p { margin: 0; font-weight: 600; }

.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.services-section { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7,26,61,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--light-blue); color: var(--navy); font-weight: 900; margin-bottom: 20px; }
.service-card p, .about-copy p, .timeline-item p, .contact-copy p { color: var(--muted); }

.about-section { background: linear-gradient(135deg, var(--off-white), #ffffff); }
.about-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 54px; align-items: center; }
.text-link { color: var(--red); font-weight: 800; }
.values-panel { background: var(--navy-dark); color: var(--white); border-radius: 30px; padding: 38px; box-shadow: var(--shadow); }
.values-panel h3 { color: var(--white); font-size: 1.55rem; }
.values-panel ul { list-style: none; padding: 0; margin: 24px 0 0; }
.values-panel li { display: flex; gap: 12px; margin: 18px 0; color: rgba(255,255,255,.86); }
.values-panel li span { flex: 0 0 10px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); margin-top: 8px; }

.process-section { background: var(--white); }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.timeline-item { background: var(--off-white); border: 1px solid var(--line); border-radius: 24px; padding: 26px; }
.timeline-item span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 900; margin-bottom: 18px; }

.cta-section { padding: 30px 0; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 34px; color: var(--white); }
.cta-card h2 { color: var(--white); max-width: 760px; }
.cta-card p:not(.eyebrow) { color: rgba(255,255,255,.76); margin-bottom: 0; }

.contact-section { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: start; }
.contact-details { margin-top: 28px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; }
.contact-details p { margin: 6px 0; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); }
.form-honey { display: none; }
.contact-form label { display: block; color: var(--navy); font-weight: 800; margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18,44,99,.2);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  margin-bottom: 18px;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(18,44,99,.08); }
.contact-form button { width: 100%; }
.login-section { background: var(--white); padding: 22px 0; }
.login-note { display: flex; gap: 16px; align-items: center; justify-content: center; color: var(--muted); font-size: .94rem; text-align: center; }
.login-note strong { color: var(--navy); }

.site-footer { border-top: 1px solid var(--line); padding: 28px 0; background: var(--white); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-grid img { width: 210px; }
.footer-grid p { margin: 0; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .mobile-menu { display: block; }
  .nav-links {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 10px; }
  .login-btn { text-align: center; margin-top: 8px; }
  .hero-grid, .about-grid, .contact-grid, .intro-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .cta-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-pad { padding: 70px 0; }
  .brand img { width: 195px; }
  .service-grid, .timeline { grid-template-columns: 1fr; }
  .hero-card, .contact-form, .values-panel { padding: 26px; border-radius: 24px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-grid, .login-note { flex-direction: column; }
}
