/* ============================================================
   STYLE.CSS — Bin Champs
   All page-specific styles. base.css + brand.css loaded first.
   ============================================================ */

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%       { transform: translateY(-50%) scale(1.04); }
}

@keyframes pulseSlow {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}

.hero__badge   { animation: fadeUp 0.5s ease both; animation-delay: 0.05s; }
.hero__title   { animation: fadeUp 0.6s ease both; animation-delay: 0.15s; }
.hero__subtitle{ animation: fadeUp 0.6s ease both; animation-delay: 0.28s; }
.hero__actions { animation: fadeUp 0.6s ease both; animation-delay: 0.42s; }

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Override base.css section padding — tighter rhythm */
section { padding-block: var(--space-16); }

/* ---- NAV ENHANCEMENTS ---- */
.nav {
  transition: box-shadow var(--transition-base);
}
.nav--scrolled {
  box-shadow: var(--shadow-md);
}
.nav__logo img {
  height: 40px;
  width: auto;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-6);
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.nav__mobile a {
  display: block;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--space-2) 0;
}
.nav__mobile .btn {
  margin-top: var(--space-3);
  width: 100%;
  justify-content: center;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-block: var(--space-20);
  overflow: hidden;
  background: #ffffff;
}

.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
}
.hero__circle--1 {
  width: 540px;
  height: 540px;
  background: var(--color-navy-soft);
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  animation: pulse 8s ease-in-out infinite;
}
.hero__circle--2 {
  width: 300px;
  height: 300px;
  background: rgba(132, 204, 22, 0.13);
  right: 130px;
  top: 28%;
}
.hero__circle--3 {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(56, 189, 248, 0.25);
  background: transparent;
  right: 280px;
  bottom: 18%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-green-soft);
  color: #166534;
  border: 1px solid var(--color-green-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-6);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  max-width: 680px;
}
.hero__accent { color: var(--color-accent); }

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: var(--space-8);
  line-height: 1.75;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

/* ---- HERO SPLIT LAYOUT ---- */
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-12);
  align-items: center;
  width: 100%;
}

.hero__illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__illustration img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(15,30,53,0.18), 0 2px 8px rgba(15,30,53,0.06);
  display: block;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--color-primary);
  padding-block: var(--space-4);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.88);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}
.trust-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ---- SECTION TYPOGRAPHY HELPERS ---- */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}
.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* ---- BEFORE / AFTER ---- */
.ba-section { background: var(--color-navy-soft); }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
  align-items: center;
  max-width: 920px;
  margin-inline: auto;
  margin-top: var(--space-6);
}

.ba-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.ba-label {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: var(--space-2) var(--space-5);
}
.ba-label--before {
  background: #f5f5f0;
  color: #6b6b42;
}
.ba-label--after {
  background: var(--color-green-soft);
  color: #166534;
  border-bottom: 2px solid var(--color-green-border);
}

.ba-visual {
  overflow: hidden;
  line-height: 0;
}
.ba-visual--before { background: #e8e8dc; }
.ba-visual--after  { background: #dff0f8; }

.ba-visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ba-caption {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-border);
  line-height: 1.5;
  margin: 0;
}

.ba-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
  .ba-arrow { transform: rotate(90deg); }
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-border);
  transition: background var(--transition-base);
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::after { background: var(--color-secondary); }

.service-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.service-card--featured::after { background: var(--color-accent); }
.service-card--featured:hover::after { background: var(--color-accent-light); }

.service-card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}
.service-card__icon {
  display: flex;
  align-items: center;
  height: 56px;
  margin-bottom: var(--space-5);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.service-card--featured .service-card__title { color: #ffffff; }
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.65;
}
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.7); }

.service-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.service-card__features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.service-card--featured .service-card__features li { color: rgba(255,255,255,0.82); }
.service-card__features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 800;
  flex-shrink: 0;
}

/* ---- HOW IT WORKS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: calc(var(--space-6) + 32px);
  left: calc(33.33% + var(--space-6));
  right: calc(33.33% + var(--space-6));
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  opacity: 0.35;
}
.step {
  text-align: center;
  padding: var(--space-6);
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-5);
}
.step__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 240px;
  margin-inline: auto;
}

/* ---- ECO SECTION ---- */
.eco-section {
  background: var(--color-primary);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.eco-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(132, 204, 22, 0.06);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.eco-section .section-label { color: var(--color-accent); }
.eco-section .section-title { color: #ffffff; }
.eco-section .section-subtitle { color: rgba(255,255,255,0.72); }

.eco-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.eco-pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: background var(--transition-base), border-color var(--transition-base);
}
.eco-pillar:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(132, 204, 22, 0.35);
}
.eco-pillar__icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
  line-height: 1;
}
.eco-pillar__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-2);
}
.eco-pillar__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}

/* ---- STORY SECTION ---- */
.story-section { background: var(--color-navy-soft); }
.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.story-text .section-label { color: var(--color-secondary); }
.story-quote {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-6);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-5);
}
.story-body {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.story-text .btn {
  margin-top: var(--space-6);
}
.story-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
}
.story-circle-bg {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: var(--space-8);
  animation: pulseSlow 6s ease-in-out infinite;
}
.story-circle-bg .big-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.story-circle-bg .big-number sup {
  font-size: 2rem;
  vertical-align: super;
}
.story-circle-bg .big-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.72);
  margin-top: var(--space-3);
  line-height: 1.4;
  max-width: 160px;
}
.story-circle-accent {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--color-accent);
  bottom: 10px;
  right: calc(50% - 210px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.story-circle-accent .small-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.story-circle-accent .small-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(15,30,53,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

/* ---- HERO TRUST CHIPS ---- */
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.56s;
}
.hero__trust-item {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.hero__trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ---- SERVICE CARD TOP BARS — colored at rest ---- */
.service-card::after { background: var(--color-secondary); }
.service-card--featured::after { background: var(--color-accent); }

/* ---- STEP NUMBER RING ---- */
.step__number {
  box-shadow: 0 0 0 5px rgba(132, 204, 22, 0.18), 0 0 0 10px rgba(132, 204, 22, 0.07);
}

/* ---- FAQ SECTION ---- */
.faq-section { background: #ffffff; }
.faq-header {
  max-width: 560px;
  margin-bottom: var(--space-12);
}
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-a {
  padding: 0 var(--space-8) var(--space-5) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin: 0;
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: var(--color-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(132,204,22,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.08) 0%, transparent 70%);
  right: -200px;
  bottom: -200px;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-title {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  color: #ffffff;
}
.cta-section .section-label { display: block; text-align: center; color: var(--color-accent); }
.cta-section > .container > p {
  color: rgba(255,255,255,0.68);
  max-width: 460px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.btn--cta {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.btn--cta:hover {
  background: #93d020;
  border-color: #93d020;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(132,204,22,0.35);
}
.cta-guarantee {
  color: rgba(255,255,255,0.48);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* ---- FOOTER CITIES ---- */
.footer__cities {
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.footer__cities-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
}
.footer__cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.footer__cities-list span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  white-space: nowrap;
}

/* ---- FOOTER ENHANCEMENTS ---- */
.footer__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: inline-block;
  margin-bottom: var(--space-3);
}
.footer__wordmark span { color: var(--color-accent); }
.footer__eco-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero {
  background: var(--color-navy-soft);
  padding-block: var(--space-20);
  text-align: center;
}
.contact-hero .section-label { color: var(--color-secondary); display: block; }
.contact-hero .section-title { margin-inline: auto; max-width: 560px; }
.contact-hero .section-subtitle {
  margin-inline: auto;
  margin-bottom: 0;
}

.contact-section { background: #ffffff; }
.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info {
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  color: #ffffff;
  position: sticky;
  top: calc(72px + var(--space-8));
}
.contact-info__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: var(--space-6);
}
.contact-info__item {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  align-items: flex-start;
}
.contact-info__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-info__text h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 3px;
}
.contact-info__text p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  line-height: 1.5;
}
.contact-info__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-block: var(--space-6);
}
.contact-info__eco {
  background: rgba(132, 204, 22, 0.12);
  border: 1px solid rgba(132, 204, 22, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.contact-info__eco p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 0;
}
.contact-info__eco strong {
  color: var(--color-accent);
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  letter-spacing: -0.02em;
}
.contact-form-card .form-intro {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-required {
  color: var(--color-accent);
  font-size: var(--text-xs);
  margin-bottom: var(--space-6);
}

.form-submit { margin-top: var(--space-6); width: 100%; font-size: var(--text-base); }

.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-3);
  text-align: center;
}

/* Form states */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-16) var(--space-8);
}
.form-success.visible { display: block; }
.form-success__icon { font-size: 3.5rem; margin-bottom: var(--space-4); }
.form-success__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.form-success__text { color: var(--color-text-muted); max-width: 380px; margin-inline: auto; }

.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: #dc2626;
  margin-top: var(--space-4);
  text-align: center;
}
.form-error-msg.visible { display: block; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }

  .hero {
    min-height: auto;
    padding-block: var(--space-16);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .hero__illustration { display: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .steps::before { display: none; }

  .eco-pillars { grid-template-columns: 1fr; }

  .story-content {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .story-visual { display: none; }

  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-bar__inner { gap: var(--space-4); }
  .trust-bar__item:nth-child(n+3) { display: none; }
  .hero__title { letter-spacing: -0.02em; }
  .contact-form-card { padding: var(--space-6); }

  /* Keep primary hero CTA full-width; secondary btn stays compact */
  .hero__actions .btn--outline {
    width: auto;
    align-self: center;
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
  }
}
