/* ============================================================
   PuzzleCraft - style.css
   Light toy-box theme: cream, candy-lime, ink, white, cherry-coral
   ============================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2A2A2E;
  background-color: #FBF7EF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2A2A2E;
  text-decoration: none;
}

h1, h2, h3, h4 {
  color: #2A2A2E;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
}

p {
  margin: 0 0 14px;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------- Scroll reveal ---------------- */

.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.to-reveal {
  opacity: 0;
  transform: translateY(26px);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .fade-up.to-reveal {
    transform: none;
    opacity: 1;
  }
}

/* ---------------- Crumb-trail navigation ---------------- */

.crumb-nav {
  background-color: #FBF7EF;
  border-bottom: 1px solid #E8E0D0;
}

.crumb-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.crumb-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 15px;
  color: #2A2A2E;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #A8C63B;
  border: 2px solid #2A2A2E;
  border-radius: 4px;
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 3px;
  width: 10px;
  height: 8px;
  background: #A8C63B;
  border: 2px solid #2A2A2E;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

.crumb-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.crumb-links a {
  position: relative;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
  color: #2A2A2E;
  padding: 4px 0;
}

.crumb-links a::after {
  content: "";
  display: block;
  height: 2px;
  background: #A8C63B;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.crumb-links a:hover::after {
  transform: scaleX(1);
}

.crumb-links a[aria-current="page"] {
  color: #556B12;
}

.crumb-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2A2A2E;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: #2A2A2E;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid #2A2A2E;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.btn-primary {
  background: #A8C63B;
  color: #2A2A2E;
}

.btn-primary:hover {
  background: #2A2A2E;
  color: #FBF7EF;
}

.btn-outline {
  background: transparent;
  color: #2A2A2E;
}

.btn-outline:hover {
  background: #2A2A2E;
  color: #FBF7EF;
}

.btn:active {
  transform: translateY(2px);
}

/* ---------------- Eyebrow chip ---------------- */

.eyebrow-chip {
  display: inline-block;
  background: #A8C63B;
  color: #2A2A2E;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid #2A2A2E;
}

/* ---------------- Centered stack hero (homepage) ---------------- */

.center-stack-hero {
  background-color: #FBF7EF;
  text-align: center;
  padding: 76px 24px 56px;
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.hero-title {
  font-size: 52px;
  line-height: 1.1;
  max-width: 840px;
  margin: 30px auto 0;
}

.hero-sub {
  color: #55555C;
  font-size: 19px;
  max-width: 760px;
  margin: 24px auto 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* ---------------- CSS toy graphics (hero) ---------------- */

.toy-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.toy-item {
  width: 168px;
  min-height: 188px;
  background: #FFFFFF;
  border: 2px solid #E8E0D0;
  border-radius: 22px;
  box-shadow: 0 8px 0 0 #E8E0D0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 16px;
}

.toy-caption {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: #2A2A2E;
}

.toy-puzzle {
  position: relative;
  width: 72px;
  height: 72px;
  background: #2A2A2E;
  border-radius: 12px;
  padding: 3px;
}

.toy-puzzle::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 8px;
  width: 34px;
  height: 24px;
  background: #2A2A2E;
  border-radius: 16px 16px 4px 4px;
}

.toy-puzzle::after {
  content: "";
  position: absolute;
  top: -13px;
  left: 11px;
  width: 28px;
  height: 20px;
  background: #A8C63B;
  border-radius: 13px 13px 4px 4px;
}

.toy-puzzle .puzzle-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #FF6B57;
  border: 2px solid #2A2A2E;
  border-radius: 50%;
  z-index: 2;
}

.toy-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.toy-blocks .block {
  display: block;
  height: 20px;
  border: 3px solid #2A2A2E;
  border-radius: 5px;
}

.toy-blocks .b1 {
  width: 84px;
  background: #FFFFFF;
}

.toy-blocks .b2 {
  width: 64px;
  background: #A8C63B;
}

.toy-blocks .b3 {
  width: 44px;
  background: #FFFFFF;
}

.toy-blocks .top-dot {
  width: 14px;
  height: 14px;
  background: #FF6B57;
  border: 2px solid #2A2A2E;
  border-radius: 50%;
  margin-bottom: 6px;
}

.toy-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.toy-top .top-handle {
  display: block;
  width: 10px;
  height: 34px;
  background: #2A2A2E;
  border-radius: 6px;
}

.toy-top .top-body {
  display: block;
  width: 78px;
  height: 64px;
  background: #A8C63B;
  border-radius: 50% 50% 46% 46% / 22% 22% 78% 78%;
  box-shadow: 0 0 0 3px #2A2A2E;
  margin-top: 4px;
}

.toy-top .top-tip {
  display: block;
  width: 12px;
  height: 12px;
  background: #FF6B57;
  border: 2px solid #2A2A2E;
  border-radius: 50%;
  margin-top: -6px;
}

/* ---------------- Hero stats ---------------- */

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 46px;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 8px 34px;
  text-align: center;
}

.hero-stat + .hero-stat {
  border-left: 1px solid #A8C63B;
}

.hero-stat b {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: #2A2A2E;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #55555C;
  font-weight: 700;
}

/* ---------------- Alternating blocks ---------------- */

.blocks-section {
  padding: 88px 24px;
}

.blocks-head {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.blocks-head h2 {
  font-size: 38px;
  margin: 18px 0 14px;
}

.blocks-head p {
  color: #55555C;
  font-size: 18px;
}

.block-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 44px 0;
  max-width: 1140px;
  margin: 0 auto;
}

.block-row.reverse {
  flex-direction: row-reverse;
}

.block-text {
  flex: 1 1 50%;
}

.block-label {
  display: inline-block;
  background: #A8C63B;
  color: #2A2A2E;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid #2A2A2E;
}

.block-text h3 {
  font-size: 30px;
  margin: 16px 0 14px;
}

.block-text p {
  color: #55555C;
  font-size: 17px;
}

.block-tags {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.block-tags span {
  border: 1px solid #A8C63B;
  color: #2A2A2E;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: #FFFFFF;
}

.block-graphic {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.block-art {
  width: 100%;
  max-width: 380px;
  min-height: 300px;
  background: #FFFFFF;
  border: 2px solid #E8E0D0;
  border-radius: 22px;
  box-shadow: 0 10px 0 0 #E8E0D0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
}

/* Puzzle grid graphic (row 1) */

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(2, 88px);
  grid-auto-rows: 88px;
  gap: 4px;
}

.puzzle-cell {
  position: relative;
  background: #2A2A2E;
  border-radius: 14px;
  padding: 3px;
}

.puzzle-cell::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 16px;
  width: 22px;
  height: 10px;
  background: #2A2A2E;
  border-radius: 10px 10px 2px 2px;
}

.puzzle-cell::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 18px;
  width: 18px;
  height: 8px;
  background: #A8C63B;
  border-radius: 8px 8px 2px 2px;
}

.puzzle-cell i {
  display: block;
  width: 100%;
  height: 100%;
  background: #A8C63B;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.puzzle-cell:nth-child(2) i {
  background: #FF6B57;
}

.puzzle-cell:nth-child(2)::after {
  background: #FF6B57;
}

.puzzle-cell:nth-child(3) i {
  background: #FFFFFF;
}

.puzzle-cell:nth-child(3)::after {
  background: #FFFFFF;
}

.puzzle-cell:nth-child(4) i {
  background: #2A2A2E;
}

.puzzle-cell:nth-child(4)::after {
  background: #2A2A2E;
}

.cell-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border: 2px solid #2A2A2E;
  border-radius: 50%;
}

/* Block stack graphic (row 2) */

.block-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.block-stack span {
  display: block;
  height: 34px;
  border: 3px solid #2A2A2E;
  border-radius: 6px;
}

.block-stack .s1 {
  width: 200px;
  background: #FFFFFF;
}

.block-stack .s2 {
  width: 158px;
  background: #A8C63B;
}

.block-stack .s3 {
  width: 116px;
  background: #FFFFFF;
}

.block-stack .s4 {
  width: 48px;
  height: 26px;
  background: #FF6B57;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* Board mockup graphic (row 3) */

.board-mockup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
  width: 250px;
  height: 172px;
  background: #A8C63B;
  border: 3px solid #2A2A2E;
  border-radius: 16px;
  padding: 10px;
}

.board-mockup i {
  background: #FFFFFF;
  border-radius: 3px;
}

.board-mockup i.dot {
  background: #2A2A2E;
  border-radius: 50%;
  width: 60%;
  height: 60%;
  justify-self: center;
  align-self: center;
}

/* ---------------- Metric band ---------------- */

.metric-band {
  background-color: #A8C63B;
  padding: 56px 24px 64px;
  text-align: center;
}

.metric-head {
  color: #2A2A2E;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 26px;
}

.metric-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.metric-item {
  text-align: center;
  padding: 0 40px;
}

.metric-item + .metric-item {
  border-left: 1px solid #2A2A2E;
}

.metric-num {
  display: inline-block;
  font-size: 54px;
  font-weight: 900;
  color: #2A2A2E;
  line-height: 1;
}

.metric-suffix {
  display: inline-block;
  font-size: 54px;
  font-weight: 900;
  color: #2A2A2E;
  line-height: 1;
}

.metric-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2A2A2E;
  font-weight: 800;
}

/* ---------------- Statement band ---------------- */

.statement-band {
  background-color: #2A2A2E;
  padding: 84px 24px;
  text-align: center;
}

.statement-inner {
  max-width: 860px;
  margin: 0 auto;
}

.statement-mark {
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #A8C63B;
  border: 2px solid #FBF7EF;
  border-radius: 5px;
  position: relative;
  margin-bottom: 22px;
}

.statement-mark::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 5px;
  width: 14px;
  height: 10px;
  background: #A8C63B;
  border: 2px solid #FBF7EF;
  border-bottom: none;
  border-radius: 7px 7px 0 0;
}

.statement-band p {
  color: #FBF7EF;
  font-size: 23px;
  line-height: 1.8;
  font-weight: 600;
  margin: 0;
}

/* ---------------- CTA band ---------------- */

.cta-band {
  background-color: #FFFFFF;
  padding: 84px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 34px;
}

.cta-inner p {
  color: #55555C;
  font-size: 18px;
  margin: 16px 0 30px;
}

/* ---------------- Link-row footer ---------------- */

.link-row-footer {
  background-color: #2A2A2E;
  padding: 40px 24px 44px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.footer-links a {
  color: #FBF7EF;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 14px;
}

.footer-links a:hover {
  color: #A8C63B;
}

.footer-dot {
  width: 4px;
  height: 4px;
  background: #A8C63B;
  border-radius: 50%;
}

.footer-legal {
  text-align: center;
  color: #B9B29F;
  font-size: 13px;
  margin: 0;
}

/* ---------------- Secondary page hero ---------------- */

.page-hero {
  background-color: #FBF7EF;
  text-align: center;
  padding: 68px 24px 56px;
  border-bottom: 1px solid #E8E0D0;
}

.page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 42px;
  margin: 24px 0 18px;
}

/* ---------------- Services page ---------------- */

.service-section {
  padding: 40px 24px 72px;
}

.service-row {
  display: flex;
  gap: 34px;
  align-items: flex-start;
  padding: 46px 0;
  max-width: 1040px;
  margin: 0 auto;
  border-bottom: 1px solid #E8E0D0;
}

.service-row:last-child {
  border-bottom: none;
}

.service-num {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #A8C63B;
  color: #2A2A2E;
  font-size: 24px;
  font-weight: 900;
  border: 2px solid #2A2A2E;
  border-radius: 14px;
}

.service-body {
  flex: 1;
}

.service-body h2 {
  font-size: 28px;
  margin: 14px 0 12px;
}

.service-body p {
  color: #55555C;
  font-size: 17px;
}

.service-deliverables {
  margin: 6px 0 0;
  padding-left: 20px;
}

.service-deliverables li {
  color: #2A2A2E;
  margin-bottom: 6px;
}

.service-deliverables li::marker {
  color: #A8C63B;
}

/* ---------------- Process overview ---------------- */

.process-section {
  background-color: #FFFFFF;
  padding: 76px 24px;
}

.process-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.process-head h2 {
  font-size: 32px;
  margin: 16px 0 10px;
}

.process-head p {
  color: #55555C;
  font-size: 17px;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto;
}

.process-step {
  background: #FBF7EF;
  border: 2px solid #E8E0D0;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 6px 0 0 #E8E0D0;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #A8C63B;
  color: #2A2A2E;
  font-size: 16px;
  font-weight: 900;
  border: 2px solid #2A2A2E;
  border-radius: 50%;
}

.process-step h3 {
  font-size: 18px;
  margin: 14px 0 8px;
}

.process-step p {
  color: #55555C;
  font-size: 15px;
  margin: 0;
}

/* ---------------- Contact page ---------------- */

.contact-section {
  padding: 64px 24px;
}

.contact-layout {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 44%;
}

.contact-form-wrap {
  flex: 1 1 56%;
}

.contact-card {
  background: #FFFFFF;
  border: 2px solid #E8E0D0;
  border-radius: 22px;
  box-shadow: 0 10px 0 0 #E8E0D0;
  padding: 34px 32px;
}

.contact-card h2 {
  font-size: 26px;
  margin: 14px 0 8px;
}

.form-note {
  color: #55555C;
  font-size: 15px;
  margin: 0 0 22px;
}

.info-item {
  padding: 16px 0;
  border-bottom: 1px solid #E8E0D0;
}

.info-item:last-child {
  border-bottom: none;
}

.info-key {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: #556B12;
  margin-bottom: 4px;
}

.info-item p {
  color: #2A2A2E;
  font-size: 16px;
  margin: 0 0 4px;
}

.info-item a {
  color: #2A2A2E;
  border-bottom: 2px solid #A8C63B;
}

.info-item a:hover {
  color: #556B12;
}

/* Contact form */

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  color: #2A2A2E;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  color: #2A2A2E;
  background: #FBF7EF;
  border: 2px solid #2A2A2E;
  border-radius: 10px;
  font-family: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #A8C63B;
  box-shadow: 0 0 0 3px #A8C63B;
}

.field textarea {
  resize: vertical;
}

.form-status {
  display: none;
  margin-top: 16px;
  font-size: 15px;
  color: #556B12;
  background: #F3F7DC;
  border: 2px solid #A8C63B;
  border-radius: 10px;
  padding: 12px 14px;
}

/* ---------------- FAQ ---------------- */

.faq-section {
  padding: 56px 24px 88px;
}

.faq-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 36px;
}

.faq-head h2 {
  font-size: 32px;
  margin: 16px 0 10px;
}

.faq-head p {
  color: #55555C;
  font-size: 17px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 2px solid #E8E0D0;
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 800;
  color: #2A2A2E;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #A8C63B;
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #2A2A2E;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: #55555C;
  font-size: 16px;
  padding: 0 22px 18px;
  margin: 0;
}

/* ---------------- Responsive ---------------- */

@media (max-width: 980px) {
  .block-row,
  .block-row.reverse {
    flex-direction: column;
    gap: 34px;
    padding: 36px 0;
  }
  .process-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 860px) {
  .contact-layout {
    flex-direction: column;
  }
  .hero-title {
    font-size: 38px;
  }
  .metric-inner {
    flex-direction: column;
    gap: 30px;
  }
  .metric-item + .metric-item {
    border-left: none;
  }
  .toy-row {
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .crumb-nav-inner {
    flex-wrap: wrap;
  }
  .nav-toggle {
    display: block;
  }
  .crumb-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 6px;
    gap: 10px;
  }
  .crumb-links.open {
    display: flex;
  }
  .crumb-sep {
    display: none;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .hero-stat + .hero-stat {
    border-left: none;
    border-top: 1px solid #A8C63B;
    padding-top: 16px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 17px;
  }
  .service-row {
    flex-direction: column;
    gap: 18px;
    padding: 34px 0;
  }
  .service-num {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
  .page-hero h1 {
    font-size: 32px;
  }
  .footer-links a {
    padding: 6px 8px;
  }
}
