/* =========================================
   CANDO TRASH — STYLESHEET
   ========================================= */

/* ----- CSS Variables ----- */
:root {
  --green-primary: #1a9e6e;
  --green-dark: #147a55;
  --green-light: #e8f7f1;
  --green-mid: #2db87e;
  --teal: #0d9488;
  --orange: #f97316;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --text-dark: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --bg-light: #f9fafb;
  --bg-green-subtle: #f0fdf4;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Inter', system-ui, sans-serif;
}

/* ----- Reset & Base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, button, select { font-family: inherit; }

/* ----- Container ----- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 24px; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green-primary); color: var(--white); border-color: var(--green-primary); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,158,110,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border-color: var(--border); }
.btn-outline-dark:hover { background: var(--bg-light); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-disabled { background: #d1d5db; color: #9ca3af; border-color: #d1d5db; cursor: not-allowed; }
.btn-pay { padding: 16px 24px; font-size: 1rem; }

/* ----- Section Headers ----- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 620px; margin: 0 auto; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-container {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; height: 68px;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1.1;
  background: #000000; padding: 8px 14px; border-radius: 8px;
  min-width: 90px;
}
.logo-can { font-size: 1rem; font-weight: 800; color: #FFD700; letter-spacing: .5px; }
.logo-trash { font-size: 0.65rem; font-weight: 700; color: #FFD700; letter-spacing: 2px; }
.nav-links { display: flex; gap: 4px; flex: 1; justify-content: center; }
.nav-links a {
  padding: 6px 12px; border-radius: 6px; font-size: 0.9rem;
  font-weight: 500; color: var(--text-mid); transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-primary); background: var(--green-light); }
.nav-cta { margin-left: auto; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1a9e6e 0%, #0d7a55 40%, #0a5c40 100%);
  position: relative; overflow: hidden; padding-top: 68px;
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22; pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,92,64,.82) 0%, rgba(13,122,85,.72) 60%, rgba(26,158,110,.55) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-eyebrow { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 32px; }
.hero-price-card {
  display: inline-flex; flex-direction: column; gap: 6px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  padding: 20px 28px; margin-bottom: 32px;
}
.price-badge { display: flex; align-items: baseline; gap: 2px; }
.price-dollar { font-size: 1.4rem; font-weight: 700; color: var(--white); }
.price-amount { font-size: 3.5rem; font-weight: 800; color: var(--white); line-height: 1; }
.price-period { font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,.8); }
.price-note { font-size: 0.85rem; color: rgba(255,255,255,.7); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* =========================================
   FEATURES
   ========================================= */
.features { padding: 64px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; margin: 0 auto 20px;
}
.feature-icon svg { width: 26px; height: 26px; }
.icon-green { background: var(--green-light); color: var(--green-primary); }
.icon-teal { background: #ccfbf1; color: var(--teal); }
.icon-orange { background: #fff7ed; color: var(--orange); }
.icon-purple { background: #f5f3ff; color: var(--purple); }
.icon-blue { background: #eff6ff; color: var(--blue); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* =========================================
   IMAGE STRIP
   ========================================= */
.image-strip { padding: 0; background: var(--text-dark); overflow: hidden; }
.image-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.img-strip-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.img-strip-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.img-strip-item:hover img { transform: scale(1.06); }
.img-strip-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: var(--white); font-size: 0.85rem; font-weight: 600;
  padding: 20px 14px 12px; text-align: center; letter-spacing: .5px;
}

/* =========================================
   PROMO BANNER
   ========================================= */
.promo-banner {
  background: linear-gradient(135deg, #1a9e6e, #0d7a55);
  background-size: cover; background-position: center;
  padding: 64px 0; text-align: center;
  position: relative; overflow: hidden;
}
.promo-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,92,64,.88), rgba(26,158,110,.80));
  z-index: 0;
}
.promo-content { position: relative; z-index: 1; }
.promo-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.promo-badge {
  display: inline-block; background: rgba(255,255,255,.2); color: var(--white);
  padding: 6px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600;
}
.promo-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; color: var(--white); }
.promo-subtitle { font-size: 1.3rem; font-weight: 600; color: rgba(255,255,255,.9); }
.promo-desc { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 8px; }

/* =========================================
   SERVICES
   ========================================= */
.services { padding: 80px 0; background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); }
.service-tag { display: inline-block; margin-top: 12px; font-size: 0.8rem; color: var(--orange); font-weight: 500; }

/* =========================================
   COMPARISON TABLE
   ========================================= */
.compare { padding: 80px 0; background: var(--white); }
.table-wrapper { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 40px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: var(--bg-light); padding: 14px 18px; text-align: left;
  font-size: 0.85rem; font-weight: 600; color: var(--text-mid); border-bottom: 1px solid var(--border);
}
.compare-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 0.9rem; vertical-align: middle; }
.compare-table tr:last-child td { border-bottom: none; }
.highlight-row { background: var(--bg-green-subtle); }
.highlight-row td { border-bottom: 1px solid #bbf7d0; }
.company-cell { display: flex; align-items: center; gap: 12px; }
.company-star { font-size: 1.2rem; color: var(--green-primary); }
.company-icon { font-size: 1.1rem; }
.company-cell div { display: flex; flex-direction: column; gap: 2px; }
.company-cell strong { font-size: 0.9rem; }
.company-cell small { font-size: 0.78rem; color: var(--text-light); }
.company-name-green { color: var(--green-primary); }
.price-green { color: var(--green-primary); font-weight: 700; }
.compare-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.compare-highlight-card {
  background: var(--bg-light); border-radius: var(--radius); padding: 24px;
  text-align: center; border: 1px solid var(--border);
}
.ch-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-light); color: var(--green-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.ch-icon svg { width: 22px; height: 22px; }
.compare-highlight-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.compare-highlight-card p { font-size: 0.85rem; color: var(--text-light); }

/* =========================================
   PRICING
   ========================================= */
.pricing { padding: 80px 0; background: var(--bg-light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; position: relative; box-shadow: var(--shadow-sm);
}
.pricing-featured {
  border-color: var(--green-primary); box-shadow: 0 0 0 2px var(--green-primary), var(--shadow-lg);
  transform: scale(1.02);
}
.pricing-soon { opacity: .8; }
.pricing-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.pricing-badge-green { display: inline-block; background: var(--green-light); color: var(--green-primary); padding: 4px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; margin-bottom: 16px; }
.coming-soon-badge { display: inline-block; background: #f3f4f6; color: var(--text-light); padding: 4px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; margin-bottom: 16px; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.p-dollar { font-size: 1.4rem; font-weight: 700; color: var(--text-dark); }
.p-amount { font-size: 3rem; font-weight: 800; color: var(--text-dark); line-height: 1; }
.pricing-price.muted .p-dollar, .pricing-price.muted .p-amount { color: var(--text-light); }
.p-period { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.check { color: var(--green-primary); font-weight: 700; }
.check-muted { color: #9ca3af; font-weight: 700; }
.muted-list li { color: var(--text-light); }

/* =========================================
   ABOUT / WHY CHOOSE US
   ========================================= */
.about { padding: 80px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.about-card {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
}
.about-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--green-light); color: var(--green-primary); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.about-icon svg { width: 24px; height: 24px; }
.about-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-card p { font-size: 0.88rem; color: var(--text-light); }
.trust-banner {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg-green-subtle); border: 1px solid #bbf7d0;
  border-radius: var(--radius); padding: 24px 28px;
}
.trust-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-light); color: var(--green-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 24px; height: 24px; }
.trust-banner h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.trust-banner p { font-size: 0.88rem; color: var(--text-light); }

/* =========================================
   HOW IT WORKS
   ========================================= */
.how-it-works { padding: 80px 0; background: var(--bg-light); }
.steps-grid { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; align-items: center; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.step-number {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-primary);
  color: var(--white); font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.step-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.85rem; color: var(--text-light); }
.step-connector { width: 40px; height: 2px; background: linear-gradient(90deg, var(--green-primary), var(--green-mid)); border-radius: 2px; }

/* =========================================
   PORTAL
   ========================================= */
.portal { padding: 80px 0; background: var(--white); }
.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portal-card { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; }
.portal-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.portal-card-header svg { width: 22px; height: 22px; color: var(--green-primary); }
.portal-card-header h3 { font-size: 1rem; font-weight: 700; }

/* =========================================
   FORMS (shared)
   ========================================= */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 0.9rem; color: var(--text-dark); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(26,158,110,.15);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-label { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; cursor: pointer; }
.radio-label input { width: auto; }
.forgot-link { display: block; text-align: center; margin-top: 12px; font-size: 0.85rem; color: var(--green-primary); }
.forgot-link:hover { text-decoration: underline; }
.success-msg { margin-top: 12px; padding: 10px 14px; background: var(--green-light); color: var(--green-dark); border-radius: 8px; font-size: 0.88rem; font-weight: 500; }

/* =========================================
   PAYMENT
   ========================================= */
.payment { padding: 80px 0; background: var(--bg-light); }
.payment-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.payment-options-col h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.pay-option {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 12px; cursor: pointer; transition: all 0.2s;
}
.pay-option:hover { border-color: var(--green-primary); }
.pay-option.active { border-color: var(--green-primary); background: var(--bg-green-subtle); }
.pay-option-icon { font-size: 1.4rem; }
.pay-option div { display: flex; flex-direction: column; gap: 2px; }
.pay-option strong { font-size: 0.9rem; }
.pay-option small { font-size: 0.78rem; color: var(--text-light); }
.payment-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-top: 20px; }
.payment-summary h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.summary-row:last-child { border-bottom: none; }
.total-row { padding-top: 12px; }
.free { color: var(--green-primary); font-weight: 600; }
.payment-form-col { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.checkbox-group { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.88rem; }
.checkbox-group input { width: auto; }
.security-note { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-light); margin-top: 14px; }

/* =========================================
   CONTACT
   ========================================= */
.contact { padding: 80px 0; background: var(--bg-light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-light); color: var(--green-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.88rem; color: var(--text-light); }
.contact-item a:hover { color: var(--green-primary); }
.service-area-note { background: var(--bg-green-subtle); border: 1px solid #bbf7d0; border-radius: var(--radius); padding: 18px 20px; margin-top: 8px; }
.service-area-note h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.service-area-note p { font-size: 0.85rem; color: var(--text-light); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }

/* =========================================
   AFFILIATION DISCLAIMER
   ========================================= */
.affil-disclaimer {
  background: #fff8e1; border-top: 3px solid #f59e0b; border-bottom: 3px solid #f59e0b;
  padding: 28px 0;
}
.affil-disclaimer-inner {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius);
  padding: 24px 28px;
}
.affil-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: #fef3c7; color: #d97706;
  display: flex; align-items: center; justify-content: center;
}
.affil-icon svg { width: 22px; height: 22px; }
.affil-text h4 { font-size: 0.95rem; font-weight: 700; color: #92400e; margin-bottom: 8px; }
.affil-text p { font-size: 0.88rem; color: #78350f; line-height: 1.65; }
.affil-text strong { color: #92400e; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #111827; color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.newsletter p { font-size: 0.85rem; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: rgba(255,255,255,.08); color: var(--white); font-size: 0.88rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--green-primary); }
.footer-col h5 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--green-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; flex-direction: column; gap: 16px; }
.disclaimer { font-size: 0.78rem; color: rgba(255,255,255,.4); line-height: 1.6; }
.disclaimer strong { color: rgba(255,255,255,.6); }
.footer-legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-legal span { font-size: 0.82rem; color: rgba(255,255,255,.5); }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,.5); transition: color 0.2s; }
.footer-legal a:hover { color: var(--green-primary); }

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .image-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .step-connector { display: none; }
  .portal-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .compare-highlights { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 280px; }
  .affil-disclaimer-inner { flex-direction: column; gap: 12px; }
}


@media (max-width: 480px) {
  .image-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .promo-title { font-size: 2.5rem; }
}
