/* styles.css (UPDATED — adds Add-Ons grid + disclaimer styling) */
:root{
  --bg: #fbfbfc;
  --panel: #ffffff;
  --text: #12131a;
  --muted: #5a6072;
  --border: rgba(17, 19, 26, .10);
  --shadow: 0 12px 30px rgba(16, 24, 40, .10);
  --shadow2: 0 10px 22px rgba(16, 24, 40, .08);

  --primary: #1b7f4a;
  --primary2: #14633a;
  --soft: rgba(27, 127, 74, .10);
  --soft2: rgba(27, 127, 74, .14);

  --radius: 18px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
}

.container{
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.topbar{
  position: sticky;
  top:0;
  z-index: 20;
  background: rgba(251,251,252,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand__mark{
  width: 38px;
  height: 38px;
  display:grid;
  place-items:center;
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(16,24,40,.06);
}
.brand__name{
  letter-spacing: .10em;
  font-weight: 900;
  font-size: 18px; /* was 13px */
}
.brand__meta{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
}
.nav a{
  font-size: 14px;
  color: var(--muted);
}
.nav a:hover{ color: var(--text); text-decoration:none; }

.hamburger{
  display:none;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16,24,40,.06);
}

.mobileMenu{
  border-top: 1px solid var(--border);
  background: var(--panel);
}
.mobileMenu__inner{
  padding: 12px 0 16px;
  display:grid;
  gap: 10px;
}
.mobileLink{
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted);
}
.mobileBtn{ width: 100%; }

/* Buttons */
.btn{
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16,24,40,.06);
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--primary);
  color: white;
  border-color: rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(27, 127, 74, .22);
}
.btn--primary:hover{ background: var(--primary2); }

.btn--soft{
  background: var(--soft);
  border-color: rgba(27, 127, 74, .22);
  color: var(--primary2);
}
.btn--soft:hover{ background: var(--soft2); }

.btn--outline{
  background: var(--panel);
  border-color: rgba(27, 127, 74, .35);
  color: var(--primary2);
}

.pill{
  display:inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid rgba(27, 127, 74, .22);
  margin-left: 6px;
  font-weight: 800;
}

.iconBtn{
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

/* HERO */
.hero{ padding: 44px 0 22px; }
.hero__inner{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 22px;
  align-items: start;
}
.kicker{
  display:inline-block;
  background: rgba(17, 19, 26, .04);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}
.ctaRow{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.trustRow{
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}
.trustLabel{ font-weight: 800; color: var(--text); }
.dot{ opacity: .55; }

.hero__card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.heroCard__top{
  padding: 16px 16px 10px;
  border-bottom: 1px solid var(--border);
  display:flex;
  justify-content: space-between;
  gap: 12px;
}
.miniTitle{ font-weight: 900; letter-spacing: .06em; font-size: 12px; }
.miniMeta{ color: var(--muted); font-size: 12px; }
.heroCard__body{ padding: 14px 16px; display:grid; gap: 10px; }
.callout{
  display:flex;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(17, 19, 26, .02);
}
.callout__icon{
  width: 34px; height: 34px;
  display:grid; place-items:center;
  background: var(--soft);
  border: 1px solid rgba(27, 127, 74, .22);
  border-radius: 12px;
}
.callout__title{ font-weight: 850; }
.callout__text{ color: var(--muted); font-size: 13px; margin-top: 2px; line-height: 1.35; }
.heroCard__footer{
  padding: 14px 16px 16px;
  border-top: 1px solid var(--border);
  display:flex;
  gap: 10px;
}

/* SECTIONS */
.section{ padding: 42px 0; }
.section--alt{
  background: rgba(17, 19, 26, .03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sectionHead{ margin-bottom: 18px; }
.sectionHead h2{
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.01em;
}
.sectionHead p{
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.sectionHead--row{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.panel{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.panel__icon{
  width: 40px; height: 40px;
  display:grid; place-items:center;
  background: var(--soft);
  border: 1px solid rgba(27, 127, 74, .22);
  border-radius: 14px;
  margin-bottom: 10px;
}
.panel h3{ margin: 0 0 6px; }
.panel p{ margin: 0; color: var(--muted); line-height: 1.45; }

.disclaimer{
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(27, 127, 74, .06);
  border: 1px solid rgba(27, 127, 74, .18);
  border-radius: var(--radius);
  color: var(--muted);
  line-height: 1.45;
}
.disclaimer strong{ color: var(--text); }

/* Roster */
.tools{ display:flex; gap: 10px; flex-wrap: wrap; }
.input, .select, .textarea{
  width: 100%;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  padding: 11px 12px;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(16,24,40,.05);
}
.input{ min-width: 260px; }
.select{ min-width: 190px; }
.textarea{ resize: vertical; }

.rosterGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  overflow: hidden;
  display:flex;
  flex-direction: column;
}
.card__top{
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--border);
  display:flex;
  justify-content: space-between;
  gap: 12px;
}
.card__title{ font-weight: 900; }
.card__role{ color: var(--muted); font-size: 13px; margin-top: 3px; }
.tagRow{ display:flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.tag{
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(17, 19, 26, .04);
  border: 1px solid var(--border);
  color: var(--muted);
}
.rate{ text-align:right; font-weight: 900; }
.rate small{
  display:block;
  font-weight: 700;
  color: var(--muted);
  margin-top: 2px;
}
.card__body{ padding: 12px 14px; display:grid; gap: 10px; }
.specs{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.35;
}
.metaLine{ font-size: 13px; color: var(--muted); }
.metaLine strong{ color: var(--text); }
.card__actions{
  margin-top: auto;
  padding: 12px 14px 14px;
  display:flex;
  gap: 10px;
}

.rosterNote{
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.rosterNote p{ margin: 0; color: var(--muted); }

/* Pricing */
.priceCard{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
  position: relative;
}
.priceCard--featured{
  border-color: rgba(27, 127, 74, .35);
  box-shadow: 0 18px 36px rgba(27, 127, 74, .14);
}
.badge{
  position:absolute;
  top: 14px;
  right: 14px;
  background: var(--soft);
  border: 1px solid rgba(27, 127, 74, .22);
  color: var(--primary2);
  font-weight: 900;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.priceCard__top h3{ margin: 0 0 6px; }
.price{ font-weight: 950; font-size: 28px; letter-spacing: -0.02em; }
.fine{ color: var(--muted); font-size: 13px; margin-top: 4px; }
.bullets{
  margin: 12px 0 14px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.4;
}

/* Add-ons */
.addonsGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.addonCard{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 16px;
  display:flex;
  flex-direction: column;
}
.addonTop{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.addonName{ font-weight: 950; }
.addonPrice{ font-weight: 950; text-align:right; }
.addonDesc{ color: var(--muted); line-height: 1.45; margin: 0 0 12px; }
.addonTags{ display:flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.addonActions{ margin-top:auto; display:flex; gap: 10px; }

/* Footer */
.footer{
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: var(--panel);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footerBrand{ font-weight: 950; letter-spacing: .08em; font-size: 13px; }
.footerMeta{ color: var(--muted); margin-top: 4px; font-size: 13px; }
.footerFine{
  color: var(--muted);
  max-width: 520px;
  font-size: 13px;
  line-height: 1.45;
  margin: 10px 0 0;
}
.footerLinks{ display:flex; gap: 12px; align-items:center; }
.footerLinks a{ color: var(--muted); }
.footerLinks a:hover{ color: var(--text); text-decoration: none; }

/* Drawer */
.drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100vh;
  background: var(--panel);
  border-left: 1px solid var(--border);
  box-shadow: -16px 0 40px rgba(16,24,40,.14);
  transform: translateX(110%);
  transition: transform .18s ease;
  z-index: 40;
  display:flex;
  flex-direction: column;
}
.drawer.open{ transform: translateX(0); }
.drawer__header{
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.drawer__header h2{ margin:0; }
.drawer__sub{ color: var(--muted); font-size: 13px; margin-top: 2px; }
.drawer__body{ padding: 12px 16px; overflow: auto; flex: 1; }
.drawer__footer{ padding: 12px 16px 16px; border-top: 1px solid var(--border); }
.row{ display:flex; justify-content: space-between; align-items:center; margin-bottom: 10px; }
.cartItem{ padding: 10px 0; border-bottom: 1px dashed rgba(17, 19, 26, .16); }
.cartItemTitle{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
}
.cartItemMeta{ color: var(--muted); font-size: 13px; margin-top: 4px; line-height: 1.35; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 50;
}
.modal.open{ display:flex; }
.modal__card{
  width: min(720px, 96vw);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal__header{
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.modal__header h2{ margin:0; }
.modal__sub{ color: var(--muted); font-size: 13px; margin-top: 2px; }
.form{ padding: 16px; display:grid; gap: 12px; }
.formRow{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.formRow--actions{ grid-template-columns: 1fr auto; align-items: center; }
.label{ display:grid; gap: 6px; font-size: 13px; color: var(--muted); }
.legalBody{ padding: 16px; color: var(--muted); line-height: 1.5; }

/* Backdrop */
.backdrop{ position: fixed; inset: 0; background: rgba(14, 18, 28, .45); z-index: 35; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .rosterGrid{ grid-template-columns: 1fr; }
  .addonsGrid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hamburger{ display:block; }
  .input{ min-width: 220px; }
  .select{ min-width: 200px; }
  .heroCard__footer{ flex-wrap: wrap; }
}
