:root{
  --red:#c4122f;
  --red-dark:#9d0e25;
  --blue:#082f6f;
  --blue-dark:#041d45;
  --green:#237b2d;
  --green-bright:#2f9b43;
  --white:#ffffff;
  --ivory:#fbfcff;
  --soft:#f3f7fb;
  --ink:#111b2d;
  --muted:#627084;
  --line:#dfe7f0;
  --shadow:0 24px 70px rgba(4,29,69,.16);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--ivory);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.topbar{
  background:linear-gradient(90deg,var(--red),var(--blue),var(--green));
  color:#fff;
  font-size:14px;
  font-weight:800;
}
.topbar-inner{
  max-width:1200px;
  margin:auto;
  padding:9px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(8,47,111,.12);
}
.nav{
  max-width:1200px;
  margin:auto;
  padding:14px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{
  width:74px;
  height:74px;
  object-fit:contain;
  border-radius:14px;
  background:#fff;
  padding:4px;
  box-shadow:0 8px 22px rgba(8,47,111,.12);
}
.brand span{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand strong{
  color:var(--blue);
  font-size:23px;
  font-weight:900;
  letter-spacing:-.02em;
}
.brand small{
  margin-top:6px;
  color:var(--green);
  font-size:12px;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:14px;
  font-weight:900;
  color:#22324b;
}
.nav-links a:hover{color:var(--red)}
.nav-button{
  background:var(--blue);
  color:#fff!important;
  padding:11px 17px;
  border-radius:999px;
  box-shadow:0 12px 24px rgba(8,47,111,.2);
}
.menu-toggle{
  display:none;
  border:0;
  background:transparent;
  color:var(--blue);
  font-size:32px;
}
.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:linear-gradient(135deg,var(--blue-dark) 0%,var(--blue) 46%,var(--green) 100%);
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%,rgba(196,18,47,.38),transparent 28%),
    radial-gradient(circle at 92% 16%,rgba(47,155,67,.32),transparent 28%),
    linear-gradient(115deg,rgba(255,255,255,.11),transparent 42%);
}
.hero-inner{
  position:relative;
  max-width:1200px;
  margin:auto;
  padding:82px 22px 92px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:46px;
  align-items:center;
}
.kicker,.eyebrow{
  margin:0 0 14px;
  color:var(--green-bright);
  text-transform:uppercase;
  letter-spacing:.17em;
  font-size:13px;
  font-weight:900;
}
.hero .kicker{
  color:#fff;
  display:inline-flex;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  padding:10px 14px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(44px,6vw,78px);
  line-height:.98;
  letter-spacing:-.06em;
  margin-bottom:24px;
}
.lead{
  font-size:20px;
  color:rgba(255,255,255,.9);
  max-width:690px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 22px;
  font-weight:900;
  border:2px solid transparent;
}
.btn.primary{
  background:#fff;
  color:var(--blue);
}
.btn.secondary{
  color:#fff;
  border-color:rgba(255,255,255,.56);
}
.trust-strip{
  margin-top:30px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust-strip span{
  font-size:13px;
  font-weight:900;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
}
.hero-card{
  background:rgba(255,255,255,.97);
  color:var(--ink);
  border-radius:36px;
  padding:22px;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.45);
}
.logo-frame{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  border:1px solid rgba(8,47,111,.1);
}
.logo-frame img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
}
.card-note{
  margin-top:18px;
  padding:20px;
  border-radius:22px;
  background:linear-gradient(135deg,#f7fbff,#eef8f0);
}
.card-note strong{color:var(--blue);font-size:20px}
.card-note p{margin:6px 0 0;color:var(--muted)}
.quick-cards{
  max-width:1200px;
  margin:-40px auto 0;
  padding:0 22px 46px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  position:relative;
}
.quick-cards article{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:0 18px 45px rgba(4,29,69,.09);
}
.quick-cards span{
  color:var(--red);
  font-weight:900;
  letter-spacing:.12em;
}
.quick-cards h3{
  color:var(--blue);
  font-size:24px;
  margin:8px 0 8px;
}
.quick-cards p{color:var(--muted);margin:0}
.section{
  max-width:1200px;
  margin:auto;
  padding:84px 22px;
}
.two-col{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:56px;
}
h2{
  font-size:clamp(34px,4vw,52px);
  line-height:1.05;
  letter-spacing:-.045em;
  margin-bottom:20px;
  color:var(--blue-dark);
}
.rich-text p{
  font-size:18px;
  color:#3a4658;
}
.section-heading{
  max-width:760px;
  margin-bottom:34px;
}
.section-heading p:not(.eyebrow){color:var(--muted);font-size:18px}
.services-section{
  padding-top:60px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  min-height:220px;
  box-shadow:0 15px 40px rgba(4,29,69,.07);
  position:relative;
  overflow:hidden;
}
.service-card:before{
  content:"";
  position:absolute;
  top:0;left:0;right:0;
  height:7px;
}
.service-card.red:before{background:var(--red)}
.service-card.blue:before{background:var(--blue)}
.service-card.green:before{background:var(--green)}
.service-card h3{
  color:var(--blue);
  font-size:23px;
  line-height:1.15;
}
.service-card p{color:var(--muted);margin:0}
.feature-band{
  background:
    linear-gradient(135deg,rgba(8,47,111,.94),rgba(4,29,69,.94)),
    url("aabode-ohio-logo.jpeg");
  color:#fff;
  border-top:1px solid rgba(8,47,111,.08);
  border-bottom:1px solid rgba(8,47,111,.08);
}
.approach-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:stretch;
}
.feature-card{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  border-radius:32px;
  padding:36px;
}
.feature-card h2{color:#fff}
.feature-card p{color:rgba(255,255,255,.82);font-size:18px}
.text-link{
  display:inline-block;
  margin-top:14px;
  color:#fff;
  font-weight:900;
}
.light{color:#fff}
.process{
  display:grid;
  gap:14px;
}
.process-item{
  background:#fff;
  color:var(--ink);
  border-radius:24px;
  padding:24px;
  display:grid;
  grid-template-columns:160px 1fr;
  gap:20px;
  align-items:center;
}
.process-item span{
  color:var(--red);
  font-weight:900;
  font-size:22px;
}
.process-item p{margin:0;color:var(--muted)}
.compliance{
  padding-bottom:70px;
}
.check-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.check-grid div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
  font-weight:900;
  color:var(--blue);
}
.check-grid div:before{
  content:"✓";
  color:var(--green);
  margin-right:9px;
  font-weight:900;
}
.cta{
  max-width:1200px;
  margin:0 auto;
  padding:44px;
  border-radius:34px;
  background:linear-gradient(135deg,var(--red),var(--blue) 55%,var(--green));
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;
  box-shadow:var(--shadow);
}
.cta h2{
  color:#fff;
  margin:0;
  max-width:780px;
}
.contact-section{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:36px;
}
.contact-copy p:not(.eyebrow){color:var(--muted);font-size:18px}
.contact-list{
  margin-top:26px;
  display:grid;
  gap:12px;
}
.contact-list a,.contact-list div{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px 20px;
  box-shadow:0 10px 30px rgba(4,29,69,.06);
}
.contact-list strong{
  display:block;
  color:var(--red);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.contact-list span{
  display:block;
  color:var(--blue);
  font-size:18px;
  font-weight:900;
  margin-top:4px;
}
.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:30px;
  box-shadow:var(--shadow);
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
label{
  display:grid;
  gap:8px;
  margin-bottom:15px;
  font-size:14px;
  color:var(--blue);
  font-weight:900;
}
input,select,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 15px;
  font:inherit;
  color:var(--ink);
  background:#fbfdff;
}
input:focus,select:focus,textarea:focus{
  outline:3px solid rgba(47,155,67,.16);
  border-color:var(--green);
}
.submit{
  width:100%;
  background:var(--blue);
  color:#fff;
  border:0;
  cursor:pointer;
}
.form-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:12px;
}
.footer{
  background:var(--blue-dark);
  color:#fff;
  margin-top:28px;
}
.footer-inner{
  max-width:1200px;
  margin:auto;
  padding:36px 22px;
  display:flex;
  gap:18px;
  align-items:center;
}
.footer img{
  width:90px;
  height:90px;
  object-fit:contain;
  background:#fff;
  border-radius:18px;
  padding:6px;
}
.footer strong{font-size:22px}
.footer p{margin:4px 0;color:rgba(255,255,255,.82);font-weight:800}
.footer small{color:rgba(255,255,255,.65)}
@media(max-width:900px){
  .topbar-inner{flex-direction:column;align-items:flex-start}
  .menu-toggle{display:block}
  .nav-links{
    display:none;
    position:absolute;
    top:103px;
    left:0;
    right:0;
    background:#fff;
    padding:18px 22px 24px;
    flex-direction:column;
    align-items:flex-start;
    border-bottom:1px solid var(--line);
  }
  .nav-links.open{display:flex}
  .hero-inner,.two-col,.approach-grid,.contact-section{
    grid-template-columns:1fr;
  }
  .quick-cards,.service-grid,.check-grid{
    grid-template-columns:1fr;
  }
  .process-item{
    grid-template-columns:1fr;
    gap:6px;
  }
  .cta{
    margin:0 22px;
    flex-direction:column;
    align-items:flex-start;
    padding:32px;
  }
  .brand img{width:60px;height:60px}
  .brand strong{font-size:19px}
  .hero-inner{padding-top:54px}
  .form-row{grid-template-columns:1fr}
}

.expanded-services .service-card{
  min-height:300px;
  display:flex;
  flex-direction:column;
}
.service-card a{
  margin-top:auto;
  color:var(--blue);
  font-weight:900;
  padding-top:18px;
}
.status-pill{
  align-self:flex-start;
  background:linear-gradient(90deg,var(--green),var(--blue));
  color:#fff;
  border-radius:999px;
  padding:7px 11px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.service-hero{
  background:linear-gradient(135deg,var(--blue-dark),var(--blue) 55%,var(--green));
  color:#fff;
  position:relative;
  overflow:hidden;
}
.service-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 15% 20%,rgba(196,18,47,.35),transparent 28%),
             radial-gradient(circle at 92% 10%,rgba(47,155,67,.28),transparent 30%);
}
.service-hero-inner{
  position:relative;
  max-width:1200px;
  margin:auto;
  padding:82px 22px;
  display:grid;
  grid-template-columns:1fr 320px;
  gap:40px;
  align-items:center;
}
.service-hero h1{
  margin-bottom:20px;
}
.service-hero p{
  color:rgba(255,255,255,.88);
  font-size:20px;
  max-width:760px;
}
.service-logo-card{
  background:#fff;
  border-radius:30px;
  padding:18px;
  box-shadow:var(--shadow);
}
.service-logo-card img{
  border-radius:22px;
}
.service-page{
  max-width:1200px;
  margin:auto;
  padding:76px 22px;
  display:grid;
  grid-template-columns:1fr 360px;
  gap:42px;
  align-items:start;
}
.service-content{
  background:#fff;
  border:1px solid var(--line);
  border-radius:32px;
  padding:38px;
  box-shadow:0 18px 50px rgba(4,29,69,.08);
}
.service-content p{
  color:#3a4658;
  font-size:18px;
}
.service-content h2{
  font-size:38px;
}
.service-list{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:12px;
}
.service-list li{
  background:#f8fbff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 18px;
  font-weight:800;
  color:var(--blue);
}
.service-list li:before{
  content:"✓";
  color:var(--green);
  margin-right:10px;
  font-weight:900;
}
.service-sidebar{
  position:sticky;
  top:125px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:24px;
  box-shadow:0 18px 48px rgba(4,29,69,.08);
}
.service-sidebar h3{
  color:var(--blue);
  margin-bottom:14px;
}
.service-sidebar a{
  display:block;
  padding:11px 0;
  border-bottom:1px solid var(--line);
  color:#3a4658;
  font-weight:800;
}
.service-sidebar a:hover{
  color:var(--red);
}
.back-link{
  display:inline-flex;
  margin-top:22px;
  color:var(--blue);
  font-weight:900;
}
@media(max-width:900px){
  .service-hero-inner,.service-page{
    grid-template-columns:1fr;
  }
  .service-sidebar{
    position:static;
  }
}
