/* ==========================================================================
   Sell My Scrap — stylesheet
   ========================================================================== */

:root {
  --green-900: #08331f;
  --green-800: #0b4a2c;
  --green-700: #0f6b3d;
  --green-600: #12864a;
  --green-500: #16a34a;
  --green-400: #34c96b;
  --green-100: #e4f8ec;
  --green-50:  #f2fbf6;

  --gold-600: #b8790c;
  --gold-500: #e2a336;
  --gold-400: #f5b942;
  --gold-100: #fdf1d9;

  --ink-900: #0e1912;
  --ink-700: #33413a;
  --ink-500: #5c6b63;
  --ink-300: #93a49b;
  --ink-100: #e6ede9;

  --white: #ffffff;
  --bg-soft: #f6faf7;

  --shadow-sm: 0 2px 8px rgba(11, 43, 27, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 43, 27, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 43, 27, 0.16);
  --shadow-gold: 0 12px 28px rgba(226, 163, 54, 0.35);
  --shadow-green: 0 12px 28px rgba(22, 163, 74, 0.30);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;

  --header-h: 76px;
  --topbar-h: 40px;
}

/* ---- Reset ---- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--ink-900); }
p { margin: 0 0 1em; color: var(--ink-700); }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, select { font: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-700);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---- Utility ---- */
.text-gradient {
  background: linear-gradient(100deg, var(--green-600), var(--green-400) 60%, var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-gradient--light {
  background: linear-gradient(100deg, var(--gold-400), #ffe3a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hide-mobile { display: inline-flex; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-400); background: rgba(255,255,255,.1); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-weight: 600;
  font-size: .96rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn i { font-size: 1.15em; }
.btn:active { transform: scale(.97); }

.btn--primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: #fff;
  box-shadow: var(--shadow-green);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(22,163,74,.38); }

.btn--accent {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(226,163,54,.45); }

.btn--outline {
  background: #fff;
  color: var(--green-700);
  border: 2px solid var(--green-100);
}
.btn--outline:hover { border-color: var(--green-500); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--ink-700);
}
.btn--ghost:hover { color: var(--green-600); }

.btn--sm { padding: 10px 20px; font-size: .88rem; }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}
.badge--soft { background: var(--green-100); color: var(--green-700); }
.badge--soft i { color: var(--gold-500); }

/* ---- Topbar ---- */
.topbar {
  background: var(--ink-900);
  color: #cfe3d7;
  font-size: .82rem;
  height: var(--topbar-h);
  position: sticky;
  top: 0;
  z-index: 501;
}
.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__inner i { color: var(--gold-400); margin-right: 4px; }
.topbar__phone a { color: #fff; font-weight: 600; }
.topbar__phone { display: flex; align-items: center; }

/* ---- Header ---- */
.header {
  position: sticky;
  top: var(--topbar-h);
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--ink-100);
  background: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  color: #fff;
  font-size: 1.3rem;
  box-shadow: var(--shadow-green);
}
.logo__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--ink-900);
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo__text em {
  font-style: normal;
  color: var(--green-600);
}
.logo--footer .logo__text { color: #fff; }

.nav {
  min-width: 0;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
}
.nav__link {
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--green-500);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--green-700); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

@media (max-width: 1240px) {
  .hide-mobile { display: none; }
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: 10px;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green-700);
  margin: 0 auto;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  background: radial-gradient(ellipse at top right, var(--green-50), var(--white) 55%);
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .5;
  z-index: 0;
}
.hero__blob--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--green-100), transparent 70%);
  top: -180px; right: -140px;
}
.hero__blob--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--gold-100), transparent 70%);
  bottom: -160px; left: -120px;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 18px;
}
.hero__subtitle {
  font-size: 1.08rem;
  color: var(--ink-500);
  max-width: 540px;
  margin-bottom: 22px;
}

.hero__steps {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__steps i { color: var(--gold-500); }

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero__trust-item { display: flex; flex-direction: column; }
.hero__trust-item strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-900);
}
.hero__trust-item span { font-size: .84rem; color: var(--ink-500); }

/* Hero visual */
.hero__visual { position: relative; }
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid var(--ink-100);
  position: relative;
  z-index: 2;
}
.hero-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.hero-card__top strong { display: block; font-size: .95rem; }
.hero-card__top span { font-size: .8rem; color: var(--ink-500); }
.pulse-dot {
  margin-left: auto;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 rgba(22,163,74,.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); }
  70% { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.hero-card__scale {
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.hero-card__scale-display span { display: block; font-size: .78rem; opacity: .8; margin-bottom: 4px; }
.hero-card__scale-display strong { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; }
.hero-card__scale-display strong small { font-size: 1rem; font-weight: 600; }
.hero-card__scale-icon { font-size: 3rem; opacity: .25; }

.hero-card__payout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--gold-100);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 18px;
}
.hero-card__payout span { font-size: .85rem; color: var(--gold-600); font-weight: 600; }
.hero-card__payout strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold-600); }

.hero-card__btn { width: 100%; }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-700);
  z-index: 3;
  border: 1px solid var(--ink-100);
}
.float-chip i { font-size: 1.1rem; color: var(--green-600); }
.float-chip--1 { top: 6%; left: -8%; animation: float 4.5s ease-in-out infinite; }
.float-chip--2 { bottom: 18%; right: -10%; animation: float 5.5s ease-in-out infinite .4s; }
.float-chip--3 { bottom: -4%; left: 8%; animation: float 5s ease-in-out infinite .8s; }
.float-chip--3 i { color: var(--gold-500); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- Sections ---- */
.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section__head p { color: var(--ink-500); font-size: 1.02rem; }

/* ---- Steps ---- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 20px;
}
.step { text-align: center; max-width: 260px; margin: 0 auto; }
.step__number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  color: var(--gold-500);
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.step__icon {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--green-700);
  background: var(--green-100);
  border: 2px dashed var(--green-400);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--ink-500); margin-bottom: 0; }
.step-connector {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--green-400) 0 8px, transparent 8px 16px);
  margin-top: 42px;
}

/* ---- Categories ---- */
.categories {
  --cols: 4;
  --gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.category-card {
  flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-400);
}
.category-card__icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
}
.category-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.category-card p { font-size: .85rem; color: var(--ink-500); margin-bottom: 0; }

/* ---- Rates ---- */
.rates-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.chip-btn {
  border: 1px solid var(--ink-100);
  background: #fff;
  color: var(--ink-700);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: .88rem;
  transition: all .2s ease;
}
.chip-btn:hover { border-color: var(--green-400); color: var(--green-700); }
.chip-btn.is-active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}

.rates-table {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}
.rates-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 16px 26px;
  border-bottom: 1px solid var(--ink-100);
  font-size: .94rem;
}
.rates-table__row:last-child { border-bottom: none; }
.rates-table__row--head {
  background: var(--green-900);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.rates-table__row:not(.rates-table__row--head):hover { background: var(--green-50); }
.rates-table__row i { color: var(--green-600); margin-right: 8px; }
.rates-table__row:not(.rates-table__row--head) span:last-child { font-weight: 700; color: var(--ink-900); }

.tag {
  display: inline-block;
  width: fit-content;
  font-size: .74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.tag--paper { background: #e3f0ff; color: #1d6fd6; }
.tag--metal { background: #f1eafe; color: #7b3fe4; }
.tag--plastic { background: var(--green-100); color: var(--green-700); }
.tag--ewaste { background: var(--gold-100); color: var(--gold-600); }
.tag--automobile { background: #dcf3f3; color: #0c7676; }

.rates-note {
  text-align: center;
  color: var(--ink-500);
  font-size: .88rem;
  margin: 22px 0 0;
}
.rates-note i { color: var(--gold-500); margin-right: 4px; }

/* ---- Tabs ---- */
.tabs { max-width: 780px; margin: 0 auto; }
.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-pill);
  padding: 6px;
  width: fit-content;
  margin: 0 auto 34px;
}
.tabs__btn {
  border: none;
  background: transparent;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .25s ease;
}
.tabs__btn.is-active {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: #fff;
  box-shadow: var(--shadow-green);
}
.tabs__panel { display: none; }
.tabs__panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tabs__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--ink-100);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .94rem;
}
.tabs__list i { color: var(--green-500); font-size: 1.2rem; flex-shrink: 0; }

/* ---- Features ---- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 30px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--ink-100);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--gold-100);
  color: var(--gold-600);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-card p { font-size: .92rem; color: var(--ink-500); margin-bottom: 0; }

/* ---- Impact ---- */
.impact {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.impact::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
  top: -240px; right: -160px;
}
.impact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.impact__text h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.impact__text p { color: #cfe3d7; margin-bottom: 26px; }

.impact__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.impact-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: center;
  backdrop-filter: blur(6px);
}
.impact-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-400);
}
.impact-stat span { color: #cfe3d7; font-size: .88rem; }

/* ---- Testimonials ---- */
.carousel { max-width: 820px; margin: 0 auto; position: relative; overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}
.testimonial {
  flex: 0 0 100%;
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.testimonial__stars { color: var(--gold-500); font-size: 1.2rem; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial p {
  font-size: 1.1rem;
  color: var(--ink-700);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 26px;
}
.testimonial__author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-head);
}
.testimonial__author div { text-align: left; }
.testimonial__author strong { display: block; font-size: .94rem; }
.testimonial__author span { font-size: .8rem; color: var(--ink-500); }

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.carousel__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-100);
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--green-700);
  transition: all .2s ease;
}
.carousel__btn:hover { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.carousel__dots { display: flex; gap: 8px; }
.carousel__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-100);
  cursor: pointer;
  transition: all .25s ease;
}
.carousel__dots span.is-active { background: var(--green-600); width: 24px; border-radius: 4px; }

/* ---- Accordion ---- */
.accordion { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion__item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 700;
  font-size: .98rem;
  color: var(--ink-900);
}
.accordion__head i { transition: transform .3s ease; color: var(--green-600); font-size: 1.3rem; }
.accordion__item.is-active .accordion__head i { transform: rotate(180deg); }
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.accordion__item.is-active .accordion__body {
  max-height: 240px;
  padding: 0 24px 22px;
}
.accordion__body p { color: var(--ink-500); margin-bottom: 0; font-size: .94rem; }

/* ---- CTA banner / schedule ---- */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(160deg, var(--green-50), #fff 60%);
}
.cta-banner__blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-100), transparent 70%);
  bottom: -220px; right: -160px;
}
.cta-banner__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-banner__text h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-top: 16px;
}
.cta-banner__text p { color: var(--ink-500); margin-bottom: 22px; max-width: 460px; }
.cta-banner__points { display: flex; flex-direction: column; gap: 12px; }
.cta-banner__points li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.cta-banner__points i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-500);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.schedule-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}
.schedule-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink-900);
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
}
.input-prefix {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  overflow: hidden;
}
.input-prefix span { padding: 0 14px; font-weight: 700; color: var(--ink-500); }
.input-prefix input { border: none; background: transparent; padding-left: 0; }
.input-prefix:focus-within { border-color: var(--green-500); background: #fff; }

.schedule-form__note {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-300);
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---- Footer ---- */
.footer { background: var(--ink-900); color: #b9c7bf; padding: 80px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col p { color: #97a89e; font-size: .92rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: #b9c7bf; font-size: .92rem; transition: color .2s ease; }
.footer__col a:hover { color: var(--gold-400); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; color: #b9c7bf; font-size: .92rem; }
.footer__contact i { color: var(--gold-400); margin-top: 2px; }

.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all .2s ease;
}
.footer__social a:hover { background: var(--green-500); color: #fff; transform: translateY(-3px); }

.footer__bottom { padding: 22px 0; }
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: #8a9c92;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--gold-400); }

/* ---- Floating buttons ---- */
.fab-stack {
  position: fixed;
  right: 22px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 600;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: none;
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab--whatsapp { background: #25D366; }
.fab--call { background: linear-gradient(135deg, var(--green-600), var(--green-500)); }
.fab--top {
  background: var(--ink-900);
  font-size: 1.3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.fab--top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---- Toast ---- */
.toast {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%, -140%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  z-index: 999;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.toast { max-width: calc(100vw - 32px); }
.toast.is-visible { transform: translate(-50%, 0); }
.toast i { font-size: 1.8rem; color: var(--green-500); flex-shrink: 0; }
.toast.is-error i { color: #d64545; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}
.btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.toast strong { display: block; font-size: .92rem; }
.toast span { font-size: .82rem; color: var(--ink-500); }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .categories { --cols: 3; }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 420px; margin: 40px auto 0; }
  .impact__grid { grid-template-columns: 1fr; }
  .impact__stats { max-width: 480px; }
  .cta-banner__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar__inner p:first-child { display: none; }
  .nav { position: fixed; top: calc(var(--topbar-h) + var(--header-h)); left: 0; right: 0; bottom: 0;
    background: #fff; transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto; z-index: 400; }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; padding: 20px 24px 40px; }
  .nav__list li { width: 100%; border-bottom: 1px solid var(--ink-100); }
  .nav__link { display: block; padding: 16px 0; }
  .nav__toggle { display: flex; }
  .hide-mobile { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .step { max-width: 100%; }
  .categories { --cols: 2; }
  .features { grid-template-columns: 1fr; }
  .tabs__panel.is-active { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .rates-table__row { grid-template-columns: 1.6fr 1fr 1fr; padding: 14px 16px; font-size: .84rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header__inner { gap: 8px; }
  .logo__icon { width: 34px; height: 34px; font-size: 1.1rem; border-radius: 10px; }
  .logo__text { font-size: 1.05rem; }
  .header__actions { gap: 8px; }
  .header__actions .btn--primary { padding: 9px 14px; font-size: .8rem; }
  .nav__toggle { width: 36px; height: 36px; flex-shrink: 0; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .categories { --gap: 12px; }
  .category-card { padding: 18px 12px; }
  .footer__grid { grid-template-columns: 1fr; }
  .impact__stats { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 20px; }
  .float-chip { display: none; }
  .fab { width: 48px; height: 48px; font-size: 1.3rem; }
}
