/* ============================================
   SUPER POOPER SCOOPER HEROES — DESIGN TOKENS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Color */
  --navy: #0F1E3D;
  --navy-2: #16294F;
  --navy-soft: #2A3B63;
  --green: #1E6B2E;
  --green-2: #268C3C;
  --lime: #A7D944;
  --lime-2: #C4EB6B;
  --cream: #F5F7EF;
  --white: #FFFFFF;
  --ink: #16213B;
  --ink-soft: #4B5670;

  /* Type */
  --display: 'Bangers', system-ui, sans-serif;
  --body: 'Poppins', system-ui, -apple-system, sans-serif;

  /* Shape */
  --panel-radius: 14px;
  --panel-border: 3px solid var(--navy);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, .display {
  font-family: var(--display);
  letter-spacing: 0.5px;
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
  display: inline-block;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 3px solid var(--navy);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn-primary {
  background: var(--lime);
  color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}
.btn-primary:hover { box-shadow: 6px 6px 0 var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--lime);
}
.btn-dark:hover { box-shadow: 6px 6px 0 var(--lime); }

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: 1160px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--navy);
}
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  line-height: 1;
}
.brand-tag {
  font-size: 11px;
  color: var(--green-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
nav.main-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--green);
  border-color: var(--lime);
}
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta .btn { padding: 10px 22px; font-size: 14px; }
.menu-toggle { display: none; }

@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    background: none;
    border: 2px solid var(--navy);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 20px;
    cursor: pointer;
  }
  .nav-inner { flex-wrap: wrap; }
  nav.main-nav.open {
    display: flex;
    width: 100%;
    order: 3;
    padding-top: 14px;
  }
  nav.main-nav.open ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }
  .nav-cta .btn-outline { display: none; }
}

/* ---------- Halftone / texture backgrounds ---------- */
.halftone-navy {
  background-color: var(--navy);
  background-image: radial-gradient(rgba(167,217,68,0.18) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
}
.halftone-cream {
  background-color: var(--cream);
  background-image: radial-gradient(rgba(15,30,61,0.06) 1.6px, transparent 1.6px);
  background-size: 16px 16px;
}

/* ---------- Cape swoosh divider ---------- */
.swoosh {
  display: block;
  width: 100%;
  height: 70px;
  margin-bottom: -1px;
}

/* ---------- Panels / Cards ---------- */
.panel {
  background: var(--white);
  border: var(--panel-border);
  border-radius: var(--panel-radius);
  box-shadow: 6px 6px 0 rgba(15,30,61,0.12);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.service-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--lime);
  border: 2.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.service-card h3 { font-family: var(--body); font-size: 19px; font-weight: 700; color: var(--navy); }
.service-card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Starburst badge ---------- */
.starburst {
  --size: 150px;
  width: var(--size);
  height: var(--size);
  background: var(--lime);
  border: 3px solid var(--navy);
  clip-path: polygon(50% 0%, 61% 18%, 80% 8%, 82% 29%, 100% 35%, 90% 52%, 100% 69%, 82% 74%, 79% 95%, 61% 84%, 50% 100%, 39% 84%, 21% 95%, 18% 74%, 0% 69%, 10% 52%, 0% 35%, 18% 29%, 21% 8%, 39% 18%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.15;
  padding: 10px;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  color: var(--white);
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 54px;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 span { color: var(--lime); }
.hero p.lead {
  font-size: 18px;
  color: #D7DEEE;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art img {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(8px 10px 0 rgba(0,0,0,0.25));
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 38px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--lime);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  padding: 16px 0;
}
.trust-bar .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

/* ---------- Sections ---------- */
section { padding: 78px 0; }
.section-head {
  max-width: 620px;
  margin: 0 0 44px;
}
.section-head h2 { font-size: 38px; margin-top: 10px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  padding: 26px;
  position: relative;
}
.step .step-num {
  font-family: var(--display);
  font-size: 46px;
  color: var(--lime-2);
  -webkit-text-stroke: 2px var(--navy);
  margin-bottom: 6px;
}
.step h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 14.5px; margin: 0; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
}
.cta-banner .wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); font-size: 32px; max-width: 460px; }
.cta-banner-content { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ---------- Pricing tables ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #E4E7DD;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.price-table td.amount { font-weight: 700; color: var(--green); text-align: right; }
.price-table tr:last-child td { border-bottom: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-bottom: 46px;
}
.price-card {
  padding: 30px 26px;
  text-align: center;
  position: relative;
}
.price-card.featured {
  border-color: var(--green);
  box-shadow: 6px 6px 0 var(--lime);
}
.price-card .tag {
  display: inline-block;
  background: var(--lime);
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.price-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.price-card .price {
  font-family: var(--display);
  font-size: 40px;
  color: var(--navy);
  margin: 8px 0;
}
.price-card .price small { font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.price-card ul { text-align: left; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 14px; color: var(--ink-soft); padding-left: 22px; position: relative; }
.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-hero img { border: 3px solid var(--navy); border-radius: var(--panel-radius); }
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.value-card {
  padding: 24px;
  text-align: center;
}
.value-card .emoji { font-size: 32px; margin-bottom: 10px; }
.value-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 13.5px; margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-info-item .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item h4 { margin: 0 0 4px; font-size: 15px; color: var(--navy); }
.contact-info-item p { margin: 0; font-size: 14px; }

form.contact-form {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 14.5px;
  padding: 11px 14px;
  border: 2px solid #D8DBCD;
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--lime);
  outline-offset: 1px;
  border-color: var(--navy);
}
.field textarea { resize: vertical; min-height: 100px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #C6CDDF;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--lime); }
.footer-brand-name { font-family: var(--display); font-size: 19px; color: var(--white); }
footer h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
footer ul li { margin-bottom: 10px; font-size: 14px; }
footer a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid #2A3B63;
  padding-top: 22px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  color: var(--white);
  padding: 54px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 44px; margin-top: 12px; }
.page-hero p { color: #D7DEEE; max-width: 560px; margin: 14px auto 0; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}
