*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #0a2463;
  --blue-m:  #123080;
  --blue-lt: #1e4db7;
  --amber:   #e8a020;
  --amber-lt:#f5b840;
  --white:   #ffffff;
  --grey:    #f2f3f7;
  --light:   #e8eaf2;
  --text:    #0d1b3e;
  --muted:   #5a6480;
  --border:  rgba(10,36,99,0.1);
  --border-s: rgba(10,36,99,0.16);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo-box {
  width: 36px; height: 36px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-box span {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--amber);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-logo-name {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  color: var(--blue);
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-links .n-cta a {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.4rem;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-links .n-cta a:hover { background: var(--blue-m); }

/* ── TICKER ── */
.ticker {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 99;
  background: var(--blue);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--amber);
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.ticker-item span { color: var(--amber-lt); font-weight: 500; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: calc(68px + 36px);
  background: var(--grey);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Large background number */
.hero-bg-num {
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 28rem;
  color: rgba(10,36,99,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 4.5rem;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.hero-left { animation: hLeft 0.9s ease both; }

@keyframes hLeft {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.35rem 1rem;
  margin-bottom: 1.8rem;
  border-radius: 2px;
}

.hero-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.hero h1 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}

.hero h1 strong {
  font-weight: 400;
  color: var(--blue-lt);
  display: block;
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2.8rem;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-blue {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s;
}

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

.btn-amber {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--amber);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-amber:hover { background: var(--amber-lt); }

/* Hero right — stat cards */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  animation: hRight 0.9s ease both 0.15s;
}

@keyframes hRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-stat-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  transition: background 0.25s;
}

.hero-stat-card:hover { background: var(--grey); }

.hsc-num {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 2.4rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.hsc-num em { color: var(--amber); font-style: normal; }

.hsc-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.hsc-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.hsc-icon svg {
  width: 14px; height: 14px;
  stroke: var(--blue-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

/* ── ABOUT ── */
#about {
  padding: 8rem 4.5rem;
  background: var(--white);
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.overtitle {
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.sec-h {
  font-family: 'Tenor Sans', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.rule {
  width: 32px; height: 2px;
  background: var(--amber);
  margin: 1.2rem 0;
}

.about-top-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-top-text p strong { color: var(--text); font-weight: 500; }

/* About pillars */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.pillar {
  background: var(--grey);
  padding: 2.4rem 2rem;
  transition: background 0.25s;
}

.pillar:hover { background: var(--light); }

.pillar-icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}

.pillar-icon svg {
  width: 18px; height: 18px;
  stroke: var(--blue-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

.pillar h3 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.pillar p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ── SERVICES ── */
#services {
  padding: 8rem 4.5rem;
  background: var(--blue);
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.services-inner .overtitle { color: var(--amber-lt); }
.services-inner .sec-h { color: var(--white); }
.services-inner .rule { background: var(--amber); }

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-note { font-size: 1rem; color: rgba(255,255,255,0.42); line-height: 1.8; }

/* Bento-style grid */
.bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.bento-card {
  background: var(--blue);
  padding: 2.6rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.bento-card:hover { background: var(--blue-m); }

.bento-card.wide { grid-column: span 1; }

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--amber);
  transition: width 0.4s;
}

.bento-card:hover::before { width: 100%; }

.bc-num {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 3rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  bottom: 1rem; right: 1.5rem;
}

.bc-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(232,160,32,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}

.bc-icon svg {
  width: 18px; height: 18px;
  stroke: var(--amber-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

.bento-card h3 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.bento-card p { font-size: 0.86rem; color: rgba(255,255,255,0.38); line-height: 1.65; }

/* ── REVIEWS ── */
#reviews {
  padding: 8rem 4.5rem;
  background: var(--grey);
  border-top: 1px solid var(--border);
}

.reviews-inner { max-width: 1140px; margin: 0 auto; }

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.reviews-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-stars {
  display: flex;
  gap: 3px;
}

.star {
  width: 16px; height: 16px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.reviews-score {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.8rem;
  color: var(--blue);
  line-height: 1;
}

.reviews-count { font-size: 0.8rem; color: var(--muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.review-card {
  background: var(--white);
  padding: 2.4rem 2.2rem;
  position: relative;
}

.review-quote {
  font-size: 3rem;
  color: var(--amber);
  font-family: 'Tenor Sans', sans-serif;
  line-height: 0.8;
  margin-bottom: 1rem;
  display: block;
}

.review-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  color: var(--amber);
  flex-shrink: 0;
}

.review-name { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.review-role { font-size: 0.75rem; color: var(--muted); }

/* ── FAQ ── */
#faq {
  padding: 8rem 4.5rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-aside p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 1rem;
}

.faq-aside-cta {
  margin-top: 2rem;
  padding: 1.6rem;
  background: var(--grey);
  border-left: 3px solid var(--amber);
}

.faq-aside-cta p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.faq-list { list-style: none; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
}

.faq-q-text {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.4;
}

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.faq-icon svg {
  width: 12px; height: 12px;
  stroke: var(--blue); fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { background: var(--blue); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.4rem; }

.faq-a p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; }

/* ── CONTACT ── */
#contact {
  background: var(--blue);
  padding: 8rem 4.5rem;
}

.contact-inner {
  max-width: 1140px;
  margin: 0 auto;
}

/* Big contact layout */
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-inner .overtitle { color: var(--amber-lt); }
.contact-inner .sec-h { color: var(--white); font-size: clamp(2rem, 3.5vw, 3.2rem); }
.contact-inner .rule { background: var(--amber); }

.contact-tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  align-self: end;
}

/* 3-column contact blocks */
.contact-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 3rem;
}

.contact-col {
  background: var(--blue);
  padding: 2.4rem 2.2rem;
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s;
}

.contact-col:hover { background: var(--blue-m); }

.contact-col-icon {
  width: 44px; height: 44px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}

.contact-col-icon svg {
  width: 18px; height: 18px;
  stroke: var(--amber-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

.contact-col-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-col-value {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
  font-family: 'Tenor Sans', sans-serif;
}

.contact-col-value a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
}

.contact-col-value a:hover { color: var(--amber-lt); }

.contact-col-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}

/* Map full width */
.contact-map {
  width: 100%;
  height: 320px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(1) invert(1) brightness(0.7) contrast(1.2);
}

/* ── FOOTER ── */
footer {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

footer p { font-size: 0.74rem; color: rgba(255,255,255,0.2); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .ticker { display: none; }
  .hero { padding-top: 68px; }
  .hero-body { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero-right { grid-template-columns: 1fr 1fr; }
  #about, #services, #reviews, #faq, #contact { padding: 5rem 1.5rem; }
  .about-top { grid-template-columns: 1fr; gap: 3rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  .bento { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .faq-inner { grid-template-columns: 1fr; gap: 3rem; }
  .faq-aside { position: static; }
  .contact-top { grid-template-columns: 1fr; gap: 2rem; }
  .contact-cols { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1.5rem; }
}
