/* ── VARIABLES ── */
:root {
  --navy:   #1a2e4a;
  --blue:   #2563a8;
  --accent: #1d5fa6;
  --teal:   #0f7c72;
  --amber:  #b45309;
  --bg:     #ffffff;
  --bg2:    #f7f9fc;
  --bg3:    #eef2f7;
  --border: #dde3ec;
  --border2:#c8d3e0;
  --text:   #1a2535;
  --muted:  #4a5568;
  --dimmed: #8896a8;
  --shadow: 0 2px 16px rgba(26,46,74,0.09);
  --shadow2:0 8px 40px rgba(26,46,74,0.13);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.65; overflow-x: hidden;
}
img, svg, video, canvas, iframe { max-width: 100%; height: auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
p  { color: var(--muted); line-height: 1.75; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; }
section    { padding: 5.5rem 2.5rem; }

/* ── SECTION LABELS ── */
.sec-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.8rem;
}
.sec-sub {
  font-size: 1rem; color: var(--muted);
  max-width: 540px; line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: white;
  padding: 0.9rem 1.8rem; border-radius: 7px;
  font-weight: 600; font-size: 0.94rem;
  text-decoration: none; transition: all 0.22s;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(37,99,168,0.28);
  font-family: 'Source Sans 3', sans-serif;
}
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }

.btn-outline {
  background: white; color: var(--navy);
  padding: 0.9rem 1.8rem; border-radius: 7px;
  font-weight: 500; font-size: 0.94rem;
  text-decoration: none; border: 1.5px solid var(--border2);
  transition: all 0.22s; display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-teal {
  width: 100%; padding: 0.88rem;
  background: var(--teal); color: white;
  border: none; border-radius: 7px;
  font-weight: 600; font-size: 0.92rem;
  cursor: pointer; font-family: inherit;
  margin-top: 0.25rem; transition: all 0.22s;
}
.btn-teal:hover { background: #0a6b62; }

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  min-height: 66px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 10px rgba(26,46,74,0.06);
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 2.5rem;
  position: relative;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--navy); text-decoration: none;
}
.logo span { color: var(--accent); }
nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  min-width: 0;
}
nav a {
  font-size: 0.84rem; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: 0.4rem 0.85rem; border-radius: 6px;
  transition: all 0.18s; white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--navy); background: var(--bg3); }
.nav-cta {
  background: var(--accent) !important; color: white !important;
  font-weight: 600 !important; margin-left: 0.5rem;
  padding: 0.45rem 1.15rem !important;
}
.nav-cta:hover { background: var(--navy) !important; }
.nav-burger { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--navy); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy); padding: 0.85rem 2.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.titem { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; white-space: nowrap; }
.tdot  { width: 5px; height: 5px; border-radius: 50%; background: #2dd4bf; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy); padding: 2rem 2.5rem;
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.75); }

/* ── REVEAL ANIMATION ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s;} .d2{transition-delay:.2s;} .d3{transition-delay:.3s;}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1.25rem;
    right: 1.25rem;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(26,46,74,0.12);
    z-index: 260;
  }
  .site-header.nav-open nav { display: flex; }
  nav a {
    display: flex;
    align-items: center;
    white-space: normal;
    padding: 0.8rem 0.95rem;
  }
  .nav-cta {
    margin-left: 0;
    justify-content: center;
  }
  .nav-burger { display: block; }
  .footer-inner { align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 0.9rem 1.25rem; }
}
@media(max-width:768px) {
  section { padding: 4.25rem 1.5rem; }
  .site-header-inner { padding: 0 1.5rem; }
  .trust-bar, .site-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media(max-width:580px) {
  section { padding: 3.5rem 1.25rem; }
  .site-header-inner { padding: 0 1.25rem; }
  nav {
    left: 0.85rem;
    right: 0.85rem;
  }
  .trust-bar { justify-content: flex-start; gap: 0.85rem 1.25rem; }
  .footer-inner { flex-direction: column; }
}
