.section { padding: 68px 0; }
.section-tint { background: var(--tint); border-block: 1px solid var(--line); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.4px; margin-bottom: 10px; }
.section-head p { color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius, 14px);
  padding: 26px 24px; transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  position: relative;
}
.card:hover { transform: translateY(-4px); border-color: #f3c9a4; box-shadow: 0 14px 30px rgba(194, 79, 4, 0.09); }
.card h3 { margin-bottom: 8px; font-size: 1.08rem; }
.card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 14px; }
.card-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  font-size: 1.5rem; border-radius: 13px; margin-bottom: 16px;
}
.ci-orange { background: #ffe9d7; } .ci-teal { background: #d9f2ef; }
.ci-blue { background: #e2edfb; } .ci-green { background: #e3f5e9; }
.ci-red { background: #fde7e4; } .ci-purple { background: #efe7fd; }
.card-link {
  color: var(--brand-dark); text-decoration: none; font-weight: 700; font-size: 0.88rem;
}
.card-link:hover { text-decoration: underline; }

.price-table-wrap {
  max-width: 760px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius, 14px); overflow: hidden;
}
.price-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.price-table th {
  background: var(--ink); color: #fff; text-align: left;
  padding: 13px 20px; font-size: 0.85rem; letter-spacing: 0.4px;
}
.price-table td { padding: 12px 20px; border-top: 1px solid var(--line); }
.price-table tr:nth-child(even) td { background: #fbf7f0; }
.price-table td:nth-child(2) { font-weight: 800; color: var(--brand-dark); white-space: nowrap; }
.price-table td:nth-child(3) { color: var(--muted); white-space: nowrap; }
.table-note { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 860px; margin: 0 auto 26px; }
.chip {
  background: var(--card); border: 1px solid var(--line); color: var(--ink);
  padding: 10px 18px; border-radius: 999px; font-size: 0.9rem; transition: all 0.15s;
}
.chip:hover { border-color: var(--brand); transform: translateY(-2px); }
.center-btn { text-align: center; }

.why-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.why-copy h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin-bottom: 22px; letter-spacing: -0.4px; }
.why-list { list-style: none; display: grid; gap: 16px; }
.why-list li {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: 10px; padding: 14px 18px; font-size: 0.94rem; color: var(--muted);
}
.why-list b { color: var(--ink); }

.testimonials { display: grid; gap: 16px; }
.t-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius, 14px);
  padding: 22px 24px;
}
.stars { color: #f5a623; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 8px; }
.t-card blockquote { font-size: 0.96rem; margin-bottom: 10px; }
.t-card figcaption { color: var(--muted); font-size: 0.84rem; font-weight: 600; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.g-item {
  border-radius: var(--radius, 14px); padding: 28px 22px; color: #fff;
  min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}
.g-item span { font-size: 2.2rem; margin-bottom: auto; }
.g-item figcaption { font-weight: 700; font-size: 0.92rem; line-height: 1.45; }
.g-item small { font-weight: 400; opacity: 0.85; }
.g-orange { background: linear-gradient(145deg, #e8630a, #b34a03); }
.g-teal   { background: linear-gradient(145deg, #0d9488, #0a6f66); }
.g-blue   { background: linear-gradient(145deg, #2563eb, #1c46a8); }
.g-green  { background: linear-gradient(145deg, #16a34a, #10702f); }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(255,255,255,0.22), transparent 50%);
}

.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; font-weight: 700; padding: 16px 20px; list-style: none;
  position: relative; padding-right: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; translate: 0 -50%;
  font-size: 1.3rem; color: var(--brand); font-weight: 400;
}
.faq[open] summary::after { content: "–"; }
.faq[open] summary { border-bottom: 1px solid var(--line); }
.faq p { padding: 14px 20px; color: var(--muted); font-size: 0.94rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.contact-info-card, .map-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius, 14px);
  padding: 30px;
}
.contact-info-card h2 { margin-bottom: 20px; letter-spacing: -0.4px; }
.info-list { list-style: none; display: grid; gap: 16px; margin-bottom: 24px; }
.info-list li { display: flex; gap: 12px; font-size: 0.95rem; }
.info-list a { color: var(--brand-dark); font-weight: 700; text-decoration: none; }
.info-list a:hover { text-decoration: underline; }
.cta-row { display: grid; gap: 10px; }
.map-card { display: flex; flex-direction: column; padding: 14px; }
.map-card iframe { width: 100%; flex: 1; min-height: 300px; border: 0; border-radius: 10px; }
.map-note { color: var(--muted); font-size: 0.83rem; text-align: center; padding: 12px 6px 4px; }

.footer { background: var(--ink); color: #cfc9c0; margin-top: 20px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  padding: 46px 0 30px;
}
.footer .logo { color: #fff; }
.foot-about { font-size: 0.88rem; margin-top: 12px; max-width: 36ch; }
.footer h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-grid a, .footer-grid span {
  display: block; color: #cfc9c0; text-decoration: none; font-size: 0.9rem; margin-bottom: 9px;
}
.footer-grid a:hover { color: var(--brand); }
.copyright { border-top: 1px solid rgba(255,255,255,0.09); padding: 18px 0; font-size: 0.82rem; }

.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 99;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(31, 168, 85, 0.45);
  animation: pulse 2.2s infinite;
}
.wa-float:hover { scale: 1.08; }
@keyframes pulse {
  0% { box-shadow: 0 10px 26px rgba(31,168,85,0.45), 0 0 0 0 rgba(31,168,85,0.35); }
  70% { box-shadow: 0 10px 26px rgba(31,168,85,0.45), 0 0 0 16px rgba(31,168,85,0); }
  100% { box-shadow: 0 10px 26px rgba(31,168,85,0.45), 0 0 0 0 rgba(31,168,85,0); }
}

@media (max-width: 880px) {
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .fc2, .fc3 { margin-left: 0; }
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.plate {
  position: relative;
  display: inline-flex; flex-direction: column; align-items: center;
  background: linear-gradient(160deg, #ff9138 0%, var(--brand) 48%, #a84403 100%);
  border-radius: 12px; padding: 9px 14px 8px;
  box-shadow:
    inset 0 2px 2px rgba(255,255,255,0.55),
    inset 0 -3px 5px rgba(0,0,0,0.30),
    0 5px 12px rgba(194,79,4,0.35);
}
.plate-rivet {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe0c4, #7c3201);
  box-shadow: 0 1px 1px rgba(255,255,255,0.6);
}
.r1 { top: 6px; left: 6px; } .r2 { top: 6px; right: 6px; }
.r3 { bottom: 6px; left: 6px; } .r4 { bottom: 6px; right: 6px; }

.p-top {
  color: #fff; font-weight: 900; font-size: 1.06rem; line-height: 1;
  letter-spacing: 1px;
  text-shadow: 0 2px 1px rgba(90,35,0,0.65), 0 -1px 0 rgba(255,255,255,0.35);
}
.p-mid {
  color: #ffe7d0; font-size: 0.58rem; font-weight: 700; letter-spacing: 4px;
  margin-top: 3px; text-shadow: 0 1px 1px rgba(90,35,0,0.5);
}
.p-line { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent); margin: 5px 0 4px; }
.p-sub {
  color: #fff; font-size: 0.5rem; font-weight: 800; letter-spacing: 3.5px;
  text-shadow: 0 1px 1px rgba(90,35,0,0.55);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { color: var(--ink); font-size: 1.02rem; font-weight: 800; letter-spacing: -0.2px; }
.brand-text small { color: var(--brand-dark); font-size: 0.56rem; font-weight: 800; letter-spacing: 2.6px; }

.footer .brand-text b { color: #fff; }

.nav-links a.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 700; }

.page-head {
  background: linear-gradient(180deg, var(--brand-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.page-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.4px; margin-bottom: 8px; }
.page-head p { color: var(--muted); max-width: 60ch; }
.page-head .crumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; display: block; }
.page-head .crumb a { color: var(--brand-dark); text-decoration: none; font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 20px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(194,79,4,0.3);
}
.step b { display: block; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.acc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.acc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-align: center; transition: transform 0.15s, border-color 0.15s;
}
.acc-card:hover { transform: translateY(-3px); border-color: #f3c9a4; }
.acc-card .acc-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.acc-card b { display: block; margin-bottom: 4px; }
.acc-card small { color: var(--muted); display: block; margin-bottom: 12px; }

.band {
  background: var(--ink); color: #fff; border-radius: 18px;
  padding: 40px 34px; text-align: center;
}
.band h2 { color: #fff; letter-spacing: -0.4px; margin-bottom: 10px; }
.band p { color: #cfc9c0; max-width: 55ch; margin: 0 auto 24px; }
.nav-links a.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 700; }

.page-head {
  background: linear-gradient(180deg, var(--brand-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.page-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.4px; margin-bottom: 8px; }
.page-head p { color: var(--muted); max-width: 60ch; }
.page-head .crumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; display: block; }
.page-head .crumb a { color: var(--brand-dark); text-decoration: none; font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 20px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(194,79,4,0.3);
}
.step b { display: block; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.acc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.acc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-align: center; transition: transform 0.15s, border-color 0.15s;
}
.acc-card:hover { transform: translateY(-3px); border-color: #f3c9a4; }
.acc-card .acc-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.acc-card b { display: block; margin-bottom: 4px; }
.acc-card small { color: var(--muted); display: block; margin-bottom: 12px; }

.band {
  background: var(--ink); color: #fff; border-radius: 18px;
  padding: 40px 34px; text-align: center;
}
.band h2 { color: #fff; letter-spacing: -0.4px; margin-bottom: 10px; }
.band p { color: #cfc9c0; max-width: 55ch; margin: 0 auto 24px; }
.nav-links a.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 700; }

.page-head {
  background: linear-gradient(180deg, var(--brand-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.page-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.4px; margin-bottom: 8px; }
.page-head p { color: var(--muted); max-width: 60ch; }
.page-head .crumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; display: block; }
.page-head .crumb a { color: var(--brand-dark); text-decoration: none; font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 20px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(194,79,4,0.3);
}
.step b { display: block; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.acc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.acc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-align: center; transition: transform 0.15s, border-color 0.15s;
}
.acc-card:hover { transform: translateY(-3px); border-color: #f3c9a4; }
.acc-card .acc-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.acc-card b { display: block; margin-bottom: 4px; }
.acc-card small { color: var(--muted); display: block; margin-bottom: 12px; }

.band {
  background: var(--ink); color: #fff; border-radius: 18px;
  padding: 40px 34px; text-align: center;
}
.band h2 { color: #fff; letter-spacing: -0.4px; margin-bottom: 10px; }
.band p { color: #cfc9c0; max-width: 55ch; margin: 0 auto 24px; }
/* ================= MOBILE ================= */
.mobile-cta-bar { display: none; }

@media (max-width: 768px) {
  html { -webkit-tap-highlight-color: transparent; scroll-padding-top: 70px; }
  body { overflow-x: hidden; padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }

  /* ---- topbar ---- */
  .topbar { font-size: 0.72rem; }
  .topbar-wrap { justify-content: center; gap: 12px; }

  /* ---- navbar ---- */
  .nav-wrap { padding-block: 10px; }
  .brand-text small { font-size: 0.55rem; letter-spacing: 1px; }
  .hamburger { display: flex; padding: 10px; }
  .nav-cta { display: none; }
  .nav-links a { padding: 15px 6px; font-size: 1.02rem; }

  /* ---- buttons & touch feel ---- */
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .btn:active { transform: scale(0.97); }

  /* ---- hero ---- */
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy h1 { font-size: clamp(1.6rem, 7.5vw, 2.05rem); line-height: 1.18; }
  .hero-copy p { font-size: 0.95rem; }
  .pill { font-size: 0.74rem; padding: 6px 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; min-height: 54px; font-size: 1.02rem; }
  .trust-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
  .trust-row li {
    background: var(--card); border: 1px solid var(--line);
    border-radius: 999px; padding: 6px 12px;
    font-size: 0.78rem; font-weight: 600;
  }

  .hero-cards { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .float-card, .fc2, .fc3 { margin-left: 0; animation: none; }
  .fc-icon { width: 44px; height: 44px; font-size: 1.25rem; }
  .fc-tag { font-size: 0.68rem; padding: 4px 9px; }

  /* ---- sections ---- */
  .section { padding: 52px 0; }
  .section-head h2 { font-size: 1.42rem; }
  .section-head p { font-size: 0.92rem; }

  .cards { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 22px 18px; }

  /* ---- price table -> stacked cards ---- */
  .price-table-wrap { border: none; overflow: visible; }
  .price-table thead { display: none; }
  .price-table tr {
    display: block; background: var(--card);
    border: 1px solid var(--line); border-radius: 14px;
    padding: 6px 16px; margin-bottom: 12px;
  }
  .price-table tbody tr:hover { background: var(--card); }
  .price-table td {
    display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
    padding: 10px 0; border-bottom: 1px dashed var(--line);
    font-weight: 600; font-size: 0.93rem;
  }
  .price-table td:last-child { border-bottom: none; }
  .price-table td::before {
    content: attr(data-label);
    font-weight: 700; color: var(--muted);
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px;
  }
  .table-note { font-size: 0.84rem; }

  /* ---- why / testimonials ---- */
  .why-grid { grid-template-columns: 1fr; gap: 26px; }
  .why-list li { font-size: 0.94rem; }

  /* ---- gallery: swipeable snap carousel ---- */
  .gallery {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px; padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .g-item {
    flex: 0 0 78%; scroll-snap-align: center;
    min-height: 180px; margin: 0;
  }
  .g-item span { font-size: 2.3rem; }

  /* ---- accessories ---- */
  .acc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .acc-card { padding: 18px 10px 16px; }
  .acc-card:active { transform: scale(0.96); }
  .acc-card .acc-icon { font-size: 1.7rem; margin-bottom: 8px; }
  .acc-card b { font-size: 0.88rem; }
  .acc-card small { font-size: 0.72rem; margin-bottom: 8px; }
  .acc-card .card-link { font-size: 0.76rem; }

  /* ---- steps / faq / contact ---- */
  .steps { grid-template-columns: 1fr; gap: 24px; overflow: visible; }
  .faq summary { padding: 16px; font-size: 0.99rem; }
  .faq p { padding: 0 16px 16px; font-size: 0.92rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .map-card iframe { height: 300px; }
  .contact-info-card .btn.full { width: 100%; }

  /* ---- dark band ---- */
  .band { padding: 32px 20px; }
  .band h2 { font-size: 1.32rem; }
  .cta-row { flex-direction: column; gap: 10px; }
  .band .btn { width: 100%; min-height: 52px; }

  /* ---- footer ---- */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid a, .footer-grid span { padding: 4px 0; }
  .copyright { text-align: center; padding-bottom: 6px; }

  /* ---- bottom chrome: ONE ai float + sticky action bar ---- */
  .wa-float { display: none; }
  #aiFloat {
    left: 14px;
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    padding: 13px 18px;
    box-shadow: 0 6px 18px rgba(43, 38, 34, 0.45);
  }

  .mobile-cta-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 9990;
    display: flex; gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(43, 38, 34, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 -6px 20px rgba(43, 38, 34, 0.25);
  }
  .mobile-cta-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 50px; border-radius: 14px;
    font-weight: 800; font-size: 0.98rem; letter-spacing: 0.2px;
    color: #fff; text-decoration: none;
  }
  .mobile-cta-bar a:active { transform: scale(0.98); opacity: 0.92; }
  .mcb-call { background: #e8630a; }
  .mcb-wa { background: #1fa855; }
}

@media (max-width: 380px) {
  .hero-copy h1 { font-size: 1.55rem; }
  .acc-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item { flex-basis: 88%; }
}
.nav-links a.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 700; }

.page-head {
  background: linear-gradient(180deg, var(--brand-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.page-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.4px; margin-bottom: 8px; }
.page-head p { color: var(--muted); max-width: 60ch; }
.page-head .crumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; display: block; }
.page-head .crumb a { color: var(--brand-dark); text-decoration: none; font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 20px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(194,79,4,0.3);
}
.step b { display: block; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.acc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.acc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-align: center; transition: transform 0.15s, border-color 0.15s;
}
.acc-card:hover { transform: translateY(-3px); border-color: #f3c9a4; }
.acc-card .acc-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.acc-card b { display: block; margin-bottom: 4px; }
.acc-card small { color: var(--muted); display: block; margin-bottom: 12px; }

.band {
  background: var(--ink); color: #fff; border-radius: 18px;
  padding: 40px 34px; text-align: center;
}
.band h2 { color: #fff; letter-spacing: -0.4px; margin-bottom: 10px; }
.band p { color: #cfc9c0; max-width: 55ch; margin: 0 auto 24px; }
/* ================= PREMIUM LAYER ================= */
body {
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(1100px 480px at 88% -60px, rgba(255, 214, 170, 0.55) 0%, transparent 62%),
    radial-gradient(900px 420px at -8% 22%, rgba(250, 236, 214, 0.6) 0%, transparent 58%),
    var(--bg);
}
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; }

.navbar.nav-scrolled { box-shadow: 0 12px 32px -14px rgba(34, 37, 43, 0.18); }

/* section titles get an accent bar */
.section-head { position: relative; }
.section-head h2::after {
  content: ""; display: block; width: 46px; height: 4px; border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), #ffb066);
  margin-top: 10px;
}

/* card elevation system */
.card, .float-card, .acc-card, .step, .t-card {
  border-color: rgba(236, 231, 223, 0.9);
  box-shadow: 0 1px 2px rgba(34, 37, 43, 0.04), 0 10px 28px -18px rgba(34, 37, 43, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover, .float-card:hover, .acc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(34, 37, 43, 0.05), 0 22px 44px -20px rgba(194, 79, 4, 0.28);
  border-color: #f5cba0;
}

/* gradient icon tiles */
.card-icon {
  color: #fff !important;
  box-shadow: 0 10px 22px -8px rgba(34, 37, 43, 0.35);
}
.ci-orange { background: linear-gradient(135deg, #ff9d4d, #e8630a) !important; }
.ci-teal   { background: linear-gradient(135deg, #2dd4bf, #0d9488) !important; }
.ci-blue   { background: linear-gradient(135deg, #60a5fa, #2563eb) !important; }
.ci-green  { background: linear-gradient(135deg, #4ade80, #16a34a) !important; }
.ci-red    { background: linear-gradient(135deg, #f87171, #dc2626) !important; }
.ci-purple { background: linear-gradient(135deg, #c084fc, #7c3aed) !important; }

/* hero polish */
.pill {
  background: #fff; border: 1px solid #ffd9ba;
  box-shadow: 0 4px 14px -6px rgba(232, 99, 10, 0.25);
}
.pill::before { content: "\25CF"; font-size: 0.55rem; vertical-align: 1px; margin-right: 7px; color: var(--brand); }
.hero h1 strong {
  background: linear-gradient(transparent 64%, #ffd9ba 64%);
  padding: 0 3px;
}
.float-card { position: relative; overflow: hidden; }
.float-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--brand), #ffb066);
}

/* buttons with depth */
.btn-wa {
  background: linear-gradient(135deg, #25c765, #158a45);
  box-shadow: 0 8px 20px -8px rgba(21, 138, 69, 0.55);
}
.btn-wa:hover { background: linear-gradient(135deg, #22b45c, #12763c); transform: translateY(-2px); }
.btn-dark {
  background: linear-gradient(135deg, #33373f, #17191d);
  box-shadow: 0 8px 20px -8px rgba(23, 25, 29, 0.5);
}
.btn-dark:hover { transform: translateY(-2px); }
.btn-outline-brand:hover { background: var(--brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(232, 99, 10, 0.5); }

/* testimonial flair */
.t-card { position: relative; }
.t-card::before {
  content: "\201C"; position: absolute; right: 14px; top: -6px;
  font-size: 4rem; line-height: 1; color: var(--brand-soft); font-weight: 800;
  pointer-events: none;
}

/* price table refinement */
.price-table-wrap {
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(34, 37, 43, 0.04), 0 14px 36px -22px rgba(34, 37, 43, 0.25);
}
.price-table th {
  text-transform: uppercase; letter-spacing: 0.6px; font-size: 0.72rem;
}
.price-table td:first-child { font-weight: 600; }

/* footer richness */
.footer {
  background: linear-gradient(180deg, #26221d 0%, #16130f 100%);
  border-top: 3px solid var(--brand);
}
.footer h4 { color: #ffb066; letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.8rem; }
.footer-grid a { transition: all 0.15s; }
.footer-grid a:hover { color: #fff; padding-left: 4px; }

@media (max-width: 768px) {
  body {
    background:
      radial-gradient(700px 340px at 100% -40px, rgba(255, 214, 170, 0.5) 0%, transparent 60%),
      var(--bg);
  }
  .card:hover, .float-card:hover, .acc-card:hover { transform: none; }
  .g-item { box-shadow: 0 10px 26px -14px rgba(34, 37, 43, 0.3); }
  .mobile-cta-bar a { box-shadow: 0 4px 14px -4px rgba(0, 0, 0, 0.35); }
  .mcb-call { background: linear-gradient(135deg, #ff9d4d, #e8630a); }
  .mcb-wa { background: linear-gradient(135deg, #25c765, #158a45); }
}
.nav-links a.active { color: var(--brand); border-bottom-color: var(--brand); font-weight: 700; }

.page-head {
  background: linear-gradient(180deg, var(--brand-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}
.page-head h1 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.4px; margin-bottom: 8px; }
.page-head p { color: var(--muted); max-width: 60ch; }
.page-head .crumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; display: block; }
.page-head .crumb a { color: var(--brand-dark); text-decoration: none; font-weight: 600; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 22px; position: relative; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 20px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800;
  display: grid; place-items: center; font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(194,79,4,0.3);
}
.step b { display: block; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 0.9rem; }

.acc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.acc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; text-align: center; transition: transform 0.15s, border-color 0.15s;
}
.acc-card:hover { transform: translateY(-3px); border-color: #f3c9a4; }
.acc-card .acc-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.acc-card b { display: block; margin-bottom: 4px; }
.acc-card small { color: var(--muted); display: block; margin-bottom: 12px; }

.band {
  background: var(--ink); color: #fff; border-radius: 18px;
  padding: 40px 34px; text-align: center;
}
.band h2 { color: #fff; letter-spacing: -0.4px; margin-bottom: 10px; }
.band p { color: #cfc9c0; max-width: 55ch; margin: 0 auto 24px; }