:root{
  --sage: #87ae73;
  --navy: #0b2740;
  --ink: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.12);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(135,174,115,0.35) 0%, rgba(135,174,115,0.18) 45%, #fff 100%);
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; display: block; }

.container{
  width: min(1250px, calc(100% - 2rem));
  margin: 0 auto;
}

header{
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.78);
  border-bottom: 1px solid var(--border);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.brand{
  min-width: 160px;
}
.brand img{
  width: 140px;
  height: auto;
}
.brand .title{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand .title strong{ font-size: 1.05rem; color: var(--navy); }
.brand .title span{ font-size: 0.85rem; color: var(--muted); }

/* Prevent desktop nav items from wrapping */
.navlinks{
  display: flex;
  align-items: center;
  gap: 0.35rem;

  flex-wrap: nowrap;
  min-width: 0;
}
.navlinks a{
  white-space: nowrap;
  padding: 0.42rem 0.58rem;
  font-size: 0.93rem;
}
.navlinks a:hover{
  background: rgba(135,174,115,0.18);
}
.navlinks a.active{
  background: rgba(11,39,64,0.10);
  outline: 1px solid rgba(11,39,64,0.18);
}

.nav-cta{
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn{
  border: 0;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.06s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-secondary{
  background: rgba(255,255,255,0.7);
  color: var(--navy);
  outline: 1px solid var(--border);
}

.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  outline: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
}

main{ padding: 2.25rem 0 3rem; }

.hero{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  outline: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero h1{
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 2.7vw, 3rem);
  color: var(--navy);
}
.hero p{
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}
.hero .badges{
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Home hero right card */
.hero-right{
  text-align: center;
}

/* Logo sizing */
.hero-logo{
  max-width: 220px;
  margin: 0 auto 1rem;
  display: block;
}

/* Put the two lists next to each other */
.available-lists{
  display: flex;
  justify-content: center;
  gap: 2rem;
  text-align: left;
}

/* Mobile: stack lists */
@media (max-width: 900px){
  .available-lists{
    flex-direction: column;
    align-items: center;
  }
}



.badge-card{
  border-radius: 14px;
  background: #fff;
  outline: 1px solid var(--border);
  padding: 0.75rem;
}
.badge-card img{
  width: 120px;      /* default (badge) */
  height: auto;
}

.hero > .section img{
  max-width: 240px;
  width: 100%;
  height: auto;
  margin: 0 auto 0.75rem;
}

/* Make Michelle photo larger (right side) */
.certifications-row .badge-card:last-child img{
  width: 150px;
  border-radius: 12px;
}

.certifications-row{
  display:flex;
  align-items:center;
  gap:1.25rem;
  flex-wrap:wrap;
}

.cert-text{
  display:flex;
  flex-direction:column;
  gap:1rem;
  flex:1;
  min-width:260px;
}

.logo-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin-top: 1rem;
}

/* Uniform logo card */
.logo-tile{
  display: flex;
  flex-direction: column;        /* STACK label + logo */
  align-items: center;
  justify-content: center;
  height: 140px;                 /* more room for label */
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  outline: 1px solid var(--border);
  text-align: center;
}

/* Label above logo */
.logo-label{
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.2;
}

/* Normalize ALL logos */
.logo-tile img{
  max-height: 64px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Text-based tile (Ohio SOS) */
.logo-tile-link{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
}

.logo-tile-link span{
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}

.section{
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  outline: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(2,6,23,0.08);
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card{
  border-radius: 14px;
  outline: 1px solid var(--border);
  padding: 1rem;
  background: #fff;
}
.card h3{ margin: 0 0 0.25rem; color: var(--navy); }
.card p{ margin: 0; color: var(--muted); line-height: 1.5; }

.pricing{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.price-card{
  border-radius: 16px;
  outline: 1px solid var(--border);
  background: #fff;
  padding: 1rem;
}
.price-card.featured{
  outline: 2px solid rgba(135,174,115,0.55);
  box-shadow: var(--shadow);
}
.price{
  font-size: 2rem;
  color: var(--navy);
  font-weight: 800;
  margin: 0.5rem 0;
}
.small{ color: var(--muted); font-size: 0.92rem; }
.list{ margin: 0.75rem 0 1rem; padding-left: 1.1rem; color: var(--muted); }
.list li{ margin: 0.35rem 0; }

footer{
  padding: 2rem 0;
  color: var(--muted);
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.footer-inner img{ width: 130px; opacity: 0.95; }

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .nav-cta{
    display: none !important;
  }
  header[data-open="true"] .nav-cta{
    display: none !important;
  }
}

@media (max-width: 720px){
  .hamburger{ display: inline-flex; align-items: center; justify-content: center; }
  .navlinks, .nav-cta
  { display: none; 
  }
  header[data-open="true"] .navlinks{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.75rem 0 1rem;
  }
 header[data-open="true"] .nav-cta{
  display: none;
}
  header[data-open="true"] .nav{
    align-items: flex-start;
  }
}

.kicker{
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(135,174,115,0.22);
  color: var(--navy);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
