:root{
  --navy:#000835;
  --blue:#09225c;
  --teal:#13dabf;
  --ink:#07164c;
  --muted:#5c6b8b;
  --line:#dfe6f1;
  --soft:#f5f8fc;
  --white:#ffffff;
  --ease-smooth:cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--white);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.65;
  animation:servicePageIn .58s var(--ease-smooth) both;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:9999;
  background:#000835;
  opacity:0;
  pointer-events:none;
  transition:opacity .52s var(--ease-smooth);
}
body.page-is-leaving::before{opacity:1}
body.page-is-leaving main,
body.page-is-leaving .site-header,
body.page-is-leaving .site-footer{
  opacity:.22;
  transform:scale(.996);
  filter:blur(3px);
}
main,
.site-header,
.site-footer{
  transition:opacity .46s var(--ease-smooth), transform .46s var(--ease-smooth), filter .46s ease;
}
@keyframes servicePageIn{
  from{opacity:0}
  to{opacity:1}
}
a{color:inherit}
.skip-link{position:absolute;left:-999px;top:1rem;background:var(--white);color:var(--ink);padding:.7rem 1rem;z-index:30}
.skip-link:focus{left:1rem}
.container{width:min(1120px, calc(100% - 40px));margin:0 auto}
.site-header{
  position:absolute;
  inset:0 0 auto 0;
  z-index:10;
  color:var(--white);
  padding:1.1rem 0;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.logo{display:inline-flex;align-items:center;text-decoration:none}
.logo img{width:min(210px,42vw);height:auto;max-height:58px;object-fit:contain;display:block}
.main-nav{display:flex;align-items:center;gap:1rem;font-size:.95rem;font-weight:700}
.main-nav a{text-decoration:none;color:rgba(255,255,255,.86);transition:color .34s ease, transform .34s var(--ease-smooth)}
.main-nav a:hover{color:var(--teal)}
.main-nav .back-services{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:.72rem 1rem;
  border:1px solid rgba(255,255,255,.42);
  border-radius:8px;
  background:rgba(255,255,255,.08);
  color:var(--white);
  white-space:nowrap;
  transition:transform .38s var(--ease-smooth), background .38s ease, border-color .38s ease, color .38s ease, box-shadow .38s ease;
}
.main-nav .back-services:hover{background:var(--teal);border-color:var(--teal);color:#001733;transform:translateY(-2px);box-shadow:0 14px 28px rgba(19,218,191,.18)}
.hero{
  min-height:64vh;
  display:flex;
  align-items:center;
  color:var(--white);
  padding:8.5rem 0 5rem;
  background:
    linear-gradient(90deg, rgba(0,8,53,.92), rgba(9,34,92,.72) 54%, rgba(19,218,191,.24)),
    url("../img/hero-reunion-anyquestion.jpg") center/cover no-repeat;
}
.hero-copy{max-width:850px}
.eyebrow{margin:0 0 .8rem;color:var(--teal);font-weight:800;text-transform:uppercase;letter-spacing:.1em;font-size:.82rem}
h1{margin:0;font-size:clamp(2.3rem, 5vw, 4.9rem);line-height:.98;letter-spacing:0}
.hero p{max-width:720px;margin:1.4rem 0 0;font-size:clamp(1rem, 1.7vw, 1.24rem);color:rgba(255,255,255,.86)}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:2rem}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:.82rem 1.05rem;
  border-radius:8px;
  font-weight:800;
  text-decoration:none;
  border:1px solid transparent;
  transition:transform .38s var(--ease-smooth), box-shadow .38s ease, background .38s ease, border-color .38s ease, color .38s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{background:var(--teal);color:#001733}
.btn-secondary{border-color:rgba(255,255,255,.42);color:var(--white);background:rgba(255,255,255,.08)}
.section{padding:4.6rem 0}
.section-soft{background:var(--soft)}
.section h2{margin:0 0 1rem;font-size:clamp(1.8rem, 3vw, 2.8rem);line-height:1.08;letter-spacing:0;color:var(--ink)}
.section-intro{max-width:760px;margin:0 0 2rem;color:var(--muted);font-size:1.05rem}
.two-col{display:grid;grid-template-columns:1.05fr .95fr;gap:2rem;align-items:start}
.list{display:grid;gap:.8rem;margin:0;padding:0;list-style:none}
.list li{padding:1rem;border:1px solid var(--line);border-radius:8px;background:var(--white);transition:transform .42s var(--ease-smooth), box-shadow .42s ease, border-color .42s ease}
.list li:hover{transform:translateY(-3px);border-color:rgba(19,218,191,.32);box-shadow:0 14px 28px rgba(7,22,76,.08)}
.card-grid{display:grid;grid-template-columns:repeat(3, 1fr);gap:1rem}
.card{border:1px solid var(--line);border-radius:8px;background:var(--white);padding:1.2rem;transition:transform .42s var(--ease-smooth), box-shadow .42s ease, border-color .42s ease}
.card:hover{transform:translateY(-3px);border-color:rgba(19,218,191,.28);box-shadow:0 16px 34px rgba(7,22,76,.08)}
.card h3{margin:.2rem 0 .5rem;font-size:1.1rem;line-height:1.25;color:var(--blue)}
.card p{margin:0;color:var(--muted)}
.proof{background:var(--navy);color:var(--white)}
.proof h2{color:var(--white)}
.proof .section-intro{color:rgba(255,255,255,.76)}
.proof .card{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18)}
.proof .card h3{color:var(--teal)}
.proof .card p{color:rgba(255,255,255,.78)}
.cta-band{padding:4rem 0;background:#e9fbf8;color:var(--ink)}
.cta-inner{display:grid;grid-template-columns:1fr auto;gap:1.5rem;align-items:center}
.cta-inner h2{margin:0 0 .5rem;font-size:clamp(1.8rem, 3vw, 2.7rem);line-height:1.05}
.cta-inner p{margin:0;color:var(--muted)}
.cta-actions{display:flex;gap:.8rem;flex-wrap:wrap}
.cta-actions .btn-secondary{color:var(--ink);border-color:#9fc9c2;background:var(--white)}
.site-footer{padding:2.2rem 0;background:#07164c;color:rgba(255,255,255,.74)}
.footer-grid{display:grid;grid-template-columns:1fr auto;gap:1rem;align-items:center}
.footer-links{display:flex;flex-wrap:wrap;gap:.8rem;font-size:.92rem}
.footer-links a{text-decoration:none}
.footer-links a:hover{color:var(--teal)}

@media (max-width:860px){
  .container{width:min(100% - 28px, 1120px)}
  .site-header{position:absolute}
  .header-inner{align-items:flex-start}
  .main-nav{justify-content:flex-end;flex-wrap:wrap;gap:.65rem;font-size:.86rem}
  .main-nav .back-services{white-space:normal;text-align:center;padding:.65rem .85rem}
  .hero{min-height:70vh;padding-top:8rem}
  .two-col,.card-grid,.cta-inner,.footer-grid{grid-template-columns:1fr}
  .cta-actions{justify-content:flex-start}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    animation:none!important;
    transition:none!important;
  }
  body.page-is-leaving main,
  body.page-is-leaving .site-header,
  body.page-is-leaving .site-footer{
    opacity:1;
    transform:none;
    filter:none;
  }
}
