@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --eco-bg: #FFFFFF;
  --eco-bg-alt: #F8FAFC;
  --eco-bg-dark: #0F172A;
  --eco-text: #111827;
  --eco-text-secondary: #4B5563;
  --eco-text-muted: #6B7280;
  --eco-text-on-dark: #F1F5F9;

  --eco-primary: #1B4FD8;
  --eco-primary-dark: #1240B0;
  --eco-primary-light: #E8EEFB;

  --eco-accent: #10B981;
  --eco-accent-light: #D1FAE5;

  --eco-cta: #FF6B35;
  --eco-cta-dark: #E55520;
  --eco-cta-light: #FFF0EB;

  --eco-gold: #D4AF37;
  --eco-gold-soft: #FFF8E1;

  --eco-border: #E5E7EB;
  --eco-border-light: #F3F4F6;
  --eco-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --eco-shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.02);
  --eco-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.12);

  --eco-radius: 16px;
  --eco-radius-lg: 24px;
  --eco-radius-sm: 12px;
}

/* ─── Reset local ─── */
.gano-eco-v3,
.gano-eco-v3 *,
.gano-eco-v3 *::before,
.gano-eco-v3 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gano-eco-v3 ul,
.gano-eco-v3 ol {
  list-style: none;
}

/* ─── Base ─── */
.gano-eco-v3 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--eco-text);
  background: var(--eco-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gano-eco-v3 h1,
.gano-eco-v3 h2,
.gano-eco-v3 h3,
.gano-eco-v3 h4,
.gano-eco-v3 h5,
.gano-eco-v3 h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ─── Keyframes ─── */
@keyframes ecoFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ecoFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ecoScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ecoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ecoPulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(255,107,53,0.25);
  }
  50% {
    box-shadow: 0 4px 24px rgba(255,107,53,0.4);
  }
}

/* ─── Scroll reveal ─── */
.gano-eco-v3 .eco-reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gano-eco-v3 .eco-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Container ─── */
.gano-eco-v3 .eco-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .gano-eco-v3 .eco-container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .gano-eco-v3 .eco-container {
    padding: 0 32px;
  }
}

/* ─── Hero ─── */
.gano-eco-v3 .eco-hero {
  position: relative;
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  overflow: hidden;
}

.gano-eco-v3 .eco-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gano-eco-v3 .eco-hero__orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.gano-eco-v3 .eco-hero__orb--primary {
  background: var(--eco-primary);
  top: -100px;
  left: -100px;
}

.gano-eco-v3 .eco-hero__orb--accent {
  background: var(--eco-accent);
  bottom: -80px;
  right: -80px;
}

.gano-eco-v3 .eco-hero__orb--gold {
  background: var(--eco-gold);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.gano-eco-v3 .eco-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.gano-eco-v3 .eco-hero__label {
  display: inline-block;
  background: var(--eco-primary-light);
  color: var(--eco-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 24px;
}

.gano-eco-v3 .eco-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--eco-text);
  margin-bottom: 20px;
}

.gano-eco-v3 .eco-hero__title span {
  background: linear-gradient(135deg, #1B4FD8, #10B981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gano-eco-v3 .eco-hero__lead {
  font-size: 1.125rem;
  color: var(--eco-text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.gano-eco-v3 .eco-hero__toggle {
  display: inline-flex;
  align-items: center;
  background: #F3F4F6;
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.gano-eco-v3 .eco-hero__toggle-btn {
  border: none;
  background: transparent;
  color: var(--eco-text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gano-eco-v3 .eco-hero__toggle-btn.active {
  background: white;
  color: var(--eco-text);
  box-shadow: var(--eco-shadow);
}

.gano-eco-v3 .eco-hero__badge {
  background: var(--eco-accent-light);
  color: var(--eco-accent);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 4px;
}

/* ─── Sticky Category Tabs ─── */
.gano-eco-v3 .eco-tabs {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--eco-border);
  padding: 12px 0;
}

.gano-eco-v3 .eco-tabs__scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gano-eco-v3 .eco-tabs__scroll::-webkit-scrollbar {
  display: none;
}

.gano-eco-v3 .eco-tabs__btn {
  flex-shrink: 0;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--eco-text-muted);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.gano-eco-v3 .eco-tabs__btn:hover:not(.active) {
  background: var(--eco-border-light);
}

.gano-eco-v3 .eco-tabs__btn.active {
  background: var(--eco-primary);
  color: white;
}

/* ─── Section Headers ─── */
.gano-eco-v3 .eco-section-header {
  margin-bottom: 48px;
  text-align: center;
}

.gano-eco-v3 .eco-section-header__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 12px;
}

.gano-eco-v3 .eco-section-header__subtitle {
  font-size: 1.0625rem;
  color: var(--eco-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Plan Cards ─── */
.gano-eco-v3 .eco-plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .gano-eco-v3 .eco-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gano-eco-v3 .eco-plans-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gano-eco-v3 .eco-plan-card {
  position: relative;
  background: white;
  border: 1px solid var(--eco-border);
  border-radius: var(--eco-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.gano-eco-v3 .eco-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--eco-shadow-xl);
  border-color: transparent;
}

.gano-eco-v3 .eco-plan-card--featured {
  border: 2px solid var(--eco-gold);
  box-shadow: 0 0 0 1px #D4AF37, 0 12px 32px -8px rgba(212,175,55,0.2);
}

.gano-eco-v3 .eco-plan-card--featured:hover {
  box-shadow: 0 0 0 1px #D4AF37, var(--eco-shadow-xl);
}

.gano-eco-v3 .eco-plan-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #D4AF37, #B8941D);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 0 10px 10px;
}

.gano-eco-v3 .eco-plan-card__illustration {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gano-eco-v3 .eco-plan-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--eco-text);
  margin-bottom: 8px;
}

.gano-eco-v3 .eco-plan-card__desc {
  font-size: 0.9375rem;
  color: var(--eco-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.gano-eco-v3 .eco-plan-card__price-wrap {
  margin-bottom: 4px;
}

.gano-eco-v3 .eco-plan-card__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--eco-text);
  letter-spacing: -0.02em;
}

.gano-eco-v3 .eco-plan-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--eco-text-muted);
}

.gano-eco-v3 .eco-plan-card__period {
  font-size: 0.875rem;
  color: var(--eco-text-muted);
}

.gano-eco-v3 .eco-plan-card__save {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--eco-accent);
  background: var(--eco-accent-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-top: 8px;
}

.gano-eco-v3 .eco-plan-card__features {
  margin-top: 24px;
  flex-grow: 1;
}

.gano-eco-v3 .eco-plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--eco-text-secondary);
  border-bottom: 1px solid var(--eco-border-light);
}

.gano-eco-v3 .eco-plan-card__feature:last-child {
  border-bottom: none;
}

.gano-eco-v3 .eco-plan-card__check {
  width: 20px;
  height: 20px;
  color: var(--eco-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.gano-eco-v3 .eco-plan-card__cta {
  width: 100%;
  padding: 16px;
  border-radius: var(--eco-radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 24px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.gano-eco-v3 .eco-plan-card__cta--primary {
  background: linear-gradient(135deg, #FF6B35, #E55520);
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,53,0.25);
}

.gano-eco-v3 .eco-plan-card__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

.gano-eco-v3 .eco-plan-card__cta--featured {
  background: var(--eco-primary);
  color: white;
}

.gano-eco-v3 .eco-plan-card__cta--featured:hover {
  background: var(--eco-primary-dark);
  transform: translateY(-2px);
}

.gano-eco-v3 .eco-plan-card__cta--secondary {
  background: transparent;
  color: var(--eco-primary);
  font-weight: 600;
  padding: 12px;
}

.gano-eco-v3 .eco-plan-card__cta--secondary:hover {
  background: var(--eco-primary-light);
}

/* ─── Product Cards ─── */
.gano-eco-v3 .eco-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .gano-eco-v3 .eco-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gano-eco-v3 .eco-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gano-eco-v3 .eco-product-card {
  background: white;
  border: 1px solid var(--eco-border);
  border-radius: var(--eco-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gano-eco-v3 .eco-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--eco-shadow-lg);
}

.gano-eco-v3 .eco-product-card__image {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  object-fit: contain;
}

.gano-eco-v3 .eco-product-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--eco-text);
  margin-bottom: 6px;
}

.gano-eco-v3 .eco-product-card__desc {
  font-size: 0.875rem;
  color: var(--eco-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  max-height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.gano-eco-v3 .eco-product-card__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--eco-text);
  margin-bottom: 16px;
}

.gano-eco-v3 .eco-product-card__cta {
  display: block;
  background: var(--eco-primary-light);
  color: var(--eco-primary);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.25s ease;
}

.gano-eco-v3 .eco-product-card__cta:hover {
  background: var(--eco-primary);
  color: white;
}

/* ─── Trust Signals ─── */
.gano-eco-v3 .eco-trust {
  padding: 80px 0;
  background: #FFFFFF;
}

.gano-eco-v3 .eco-trust__title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 60px;
}

.gano-eco-v3 .eco-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.gano-eco-v3 .eco-trust__item {
  text-align: center;
  padding: 32px 24px;
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  transition: all 0.35s ease;
}

.gano-eco-v3 .eco-trust__item:hover {
  border-color: var(--eco-accent);
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.gano-eco-v3 .eco-trust__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--eco-accent);
}

.gano-eco-v3 .eco-trust__item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--eco-text);
  margin-bottom: 12px;
}

.gano-eco-v3 .eco-trust__item-desc {
  font-size: 0.9rem;
  color: var(--eco-text-muted);
  line-height: 1.6;
}

/* ─── Bundles Section ─── */
.gano-eco-v3 .eco-bundles {
  background: var(--eco-bg-alt);
  padding: 80px 0;
}

.gano-eco-v3 .eco-bundles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .gano-eco-v3 .eco-bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gano-eco-v3 .eco-bundles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gano-eco-v3 .eco-bundle-card {
  background: white;
  border: 2px solid transparent;
  border-radius: var(--eco-radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gano-eco-v3 .eco-bundle-card:hover {
  border-color: var(--eco-primary);
  box-shadow: var(--eco-shadow-lg);
}

.gano-eco-v3 .eco-bundle-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--eco-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eco-primary);
}

.gano-eco-v3 .eco-bundle-card__name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--eco-text);
  margin-bottom: 8px;
}

.gano-eco-v3 .eco-bundle-card__desc {
  font-size: 0.9375rem;
  color: var(--eco-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.gano-eco-v3 .eco-bundle-card__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 8px;
}

.gano-eco-v3 .eco-bundle-card__save {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--eco-accent);
  background: var(--eco-accent-light);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ─── Comparison Table ─── */
.gano-eco-v3 .eco-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gano-eco-v3 .eco-table {
  width: 100%;
  background: white;
  border-radius: var(--eco-radius-lg);
  border: 1px solid var(--eco-border);
  overflow: hidden;
  border-collapse: collapse;
  min-width: 720px;
}

.gano-eco-v3 .eco-table th {
  background: var(--eco-bg-alt);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 16px 20px;
  text-align: left;
  color: var(--eco-text);
  border-bottom: 1px solid var(--eco-border);
}

.gano-eco-v3 .eco-table td {
  padding: 14px 20px;
  font-size: 0.9375rem;
  color: var(--eco-text-secondary);
  border-bottom: 1px solid var(--eco-border-light);
}

.gano-eco-v3 .eco-table tr:last-child td {
  border-bottom: none;
}

.gano-eco-v3 .eco-table tr:hover td {
  background: #FAFBFC;
}

.gano-eco-v3 .eco-table__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--eco-accent-light);
  color: var(--eco-accent);
}

.gano-eco-v3 .eco-table__dash {
  color: var(--eco-text-muted);
}

.gano-eco-v3 .eco-table__highlight {
  font-weight: 600;
  color: var(--eco-text);
}

/* ─── Trust Section ─── */
.gano-eco-v3 .eco-trust {
  background: var(--eco-bg-dark);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.gano-eco-v3 .eco-trust__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  margin-bottom: 48px;
}

.gano-eco-v3 .eco-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .gano-eco-v3 .eco-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gano-eco-v3 .eco-trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gano-eco-v3 .eco-trust__item {
  padding: 16px;
}

.gano-eco-v3 .eco-trust__icon {
  width: 44px;
  height: 44px;
  color: var(--eco-gold);
  margin: 0 auto 16px;
}

.gano-eco-v3 .eco-trust__item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.gano-eco-v3 .eco-trust__item-desc {
  font-size: 0.9375rem;
  color: #94A3B8;
  line-height: 1.6;
}

/* ─── FAQ ─── */
.gano-eco-v3 .eco-faq {
  background: var(--eco-bg-alt);
  padding: 80px 0;
}

.gano-eco-v3 .eco-faq__item {
  background: white;
  border: 1px solid var(--eco-border);
  border-radius: var(--eco-radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}

.gano-eco-v3 .eco-faq__question {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--eco-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.25s ease;
  user-select: none;
}

.gano-eco-v3 .eco-faq__question:hover {
  background: var(--eco-bg-alt);
}

.gano-eco-v3 .eco-faq__arrow {
  width: 20px;
  height: 20px;
  color: var(--eco-text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.gano-eco-v3 .eco-faq__item.open .eco-faq__arrow {
  transform: rotate(180deg);
}

.gano-eco-v3 .eco-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.gano-eco-v3 .eco-faq__item.open .eco-faq__answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.gano-eco-v3 .eco-faq__answer-text {
  color: var(--eco-text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ─── Final CTA ─── */
.gano-eco-v3 .eco-final-cta {
  padding: 80px 0;
  text-align: center;
}

.gano-eco-v3 .eco-final-cta__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 24px;
}

.gano-eco-v3 .eco-final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.gano-eco-v3 .eco-final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--eco-radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.gano-eco-v3 .eco-final-cta__btn--primary {
  background: linear-gradient(135deg, #FF6B35, #E55520);
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,53,0.25);
}

.gano-eco-v3 .eco-final-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

.gano-eco-v3 .eco-final-cta__btn--secondary {
  background: white;
  color: var(--eco-primary);
  border: 1px solid var(--eco-border);
}

.gano-eco-v3 .eco-final-cta__btn--secondary:hover {
  background: var(--eco-primary-light);
  border-color: var(--eco-primary);
}

/* ─── Utilities ─── */
.gano-eco-v3 .eco-section {
  padding: 80px 0;
}

.gano-eco-v3 .eco-section--bg-alt {
  background: var(--eco-bg-alt);
}

/* ─── Responsive ─── */
@media (max-width: 639px) {
  .gano-eco-v3 .eco-hero {
    padding: 60px 0 40px;
  }

  .gano-eco-v3 .eco-plan-card {
    padding: 28px 20px;
  }

  .gano-eco-v3 .eco-plan-card__price {
    font-size: 2.5rem;
  }

  .gano-eco-v3 .eco-bundles {
    padding: 60px 0;
  }

  .gano-eco-v3 .eco-trust {
    padding: 60px 0;
  }

  .gano-eco-v3 .eco-faq {
    padding: 60px 0;
  }

  .gano-eco-v3 .eco-final-cta {
    padding: 60px 0;
  }

  .gano-eco-v3 .eco-section {
    padding: 60px 0;
  }
}

/* ================================================================
   ECOSISTEMAS V3 — Estilos adicionales para clases no cubiertas
   ================================================================ */

html { scroll-behavior: smooth; }

/* ---- .eco-plans ---- */
.eco-plans {
  padding: 60px 0;
  background: var(--eco-bg);
}

/* ---- .eco-btn system ---- */
.eco-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--eco-radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.eco-btn--primary {
  background: linear-gradient(135deg, #FF6B35, #E55520);
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,53,0.25);
}

.eco-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

.eco-btn--ghost {
  background: transparent;
  color: var(--eco-primary);
  font-weight: 600;
  padding: 12px;
}

.eco-btn--ghost:hover {
  background: var(--eco-primary-light);
}

.eco-btn--secondary {
  background: white;
  color: var(--eco-primary);
  border: 1px solid var(--eco-border);
}

.eco-btn--secondary:hover {
  background: var(--eco-primary-light);
  border-color: var(--eco-primary);
}

/* Ghost button inside plan card */
.eco-plan-card .eco-btn--ghost {
  width: 100%;
  margin-top: 8px;
}

/* ---- Tabs button extras ---- */
.eco-tabs__btn {
  text-decoration: none;
}

/* ---- Category section ---- */
.eco-category {
  padding: 60px 0;
  background: #FFFFFF;
  border-top: 1px solid #F3F4F6;
}

.eco-category:nth-child(even) {
  background: #F8FAFC;
}

.eco-category__header {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.eco-category__header h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

.eco-category__count {
  font-size: 0.875rem;
  color: #9CA3AF;
  font-weight: 500;
}

/* ---- Products grid (BEM variant) ---- */
.eco-products__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .eco-products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .eco-products__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Bundles ---- */
.eco-bundles__header {
  margin-bottom: 48px;
  text-align: center;
}

.eco-bundles__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 12px;
}

.eco-bundles__header p {
  font-size: 1.0625rem;
  color: var(--eco-text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.eco-bundles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .eco-bundles__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .eco-bundles__grid { grid-template-columns: repeat(3, 1fr); }
}

.eco-bundle {
  background: white;
  border: 2px solid transparent;
  border-radius: var(--eco-radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.eco-bundle:hover {
  border-color: var(--eco-primary);
  box-shadow: var(--eco-shadow-lg);
}

.eco-bundle__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--eco-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eco-primary);
}

.eco-bundle h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--eco-text);
  margin-bottom: 8px;
}

.eco-bundle p {
  font-size: 0.9375rem;
  color: var(--eco-text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.eco-bundle__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 8px;
}

.eco-bundle__save {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--eco-accent);
  background: var(--eco-accent-light);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ---- FAQ ---- */
.eco-faq__header {
  margin-bottom: 48px;
  text-align: center;
}

.eco-faq__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 12px;
}

.eco-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.eco-faq__question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

/* ---- Final CTA ---- */
.eco-final {
  padding: 80px 0;
  text-align: center;
}

.eco-final h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 24px;
}

.eco-final p {
  font-size: 1.0625rem;
  color: var(--eco-text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.eco-final__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Plan card illustration modifiers ---- */
.eco-plan-card__illustration--basic { background: #E8EEFB; }
.eco-plan-card__illustration--deluxe { background: #E0FAF0; }
.eco-plan-card__illustration--premium { background: #FFF8E1; }
.eco-plan-card__illustration--ultimate { background: #F3E8FF; }

/* ---- Product card shortcode overrides ---- */
.eco-product-card .rstore-product,
.eco-product-card .reseller-product {
  margin: 0;
}

.eco-product-card .rstore-product-title,
.eco-product-card .reseller-product-title,
.eco-product-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F1923;
}

.eco-product-card .rstore-product-price,
.eco-product-card .reseller-product-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F1923;
  margin: 12px 0;
  display: block;
}

.eco-product-card .rstore-product-button,
.eco-product-card .reseller-product-button,
.eco-product-card .button,
.eco-product-card a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1B4FD8, #1240B0);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.eco-product-card .rstore-product-button:hover,
.eco-product-card .reseller-product-button:hover,
.eco-product-card .button:hover,
.eco-product-card a.button:hover {
  box-shadow: 0 4px 12px rgba(27,79,216,0.25);
  transform: translateY(-1px);
}

/* ─── Compare Section ─── */
.gano-eco-v3 .eco-compare {
  padding: 80px 0;
  background: var(--eco-bg-alt);
}

/* ─── Product Card Hidden State ─── */
.gano-eco-v3 .eco-product-card--hidden {
  display: none;
}
.gano-eco-v3 .eco-products__grid.is-expanded .eco-product-card--hidden {
  display: flex;
  animation: ecoFadeUp 0.5s ease forwards;
}
.gano-eco-v3 .eco-products__more {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
}

/* ─── RStore Product Card Overrides ─── */
.gano-eco-v3 .eco-product-card .rstore-product {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.gano-eco-v3 .eco-product-card .rstore-product-icons {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}
.gano-eco-v3 .eco-product-card .rstore-product-icons svg {
  width: 100%;
  height: 100%;
}
.gano-eco-v3 .eco-product-card .rstore-product-header {
  flex-grow: 1;
}
.gano-eco-v3 .eco-product-card .widget-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--eco-text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.gano-eco-v3 .eco-product-card .rstore-pricing {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--eco-text);
  margin-bottom: 12px;
}
.gano-eco-v3 .eco-product-card .rstore-pricing .rstore-price {
  color: var(--eco-text);
}
.gano-eco-v3 .eco-product-card .rstore-pricing {
  font-size: 0;
}
.gano-eco-v3 .eco-product-card .rstore-pricing .rstore-price {
  font-size: 1.25rem;
}
.gano-eco-v3 .eco-product-card .rstore-add-to-cart-form {
  margin: 0;
}
.gano-eco-v3 .eco-product-card .rstore-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1B4FD8, #1240B0);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.gano-eco-v3 .eco-product-card .rstore-add-to-cart:hover {
  box-shadow: 0 4px 12px rgba(27,79,216,0.25);
  transform: translateY(-1px);
}
.gano-eco-v3 .eco-product-card .rstore-product-summary {
  display: none;
}
.gano-eco-v3 .eco-product-card .rstore-product-permalink {
  margin-top: 12px;
  text-align: center;
}
.gano-eco-v3 .eco-product-card .rstore-product-permalink a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--eco-primary);
  text-decoration: none;
}
.gano-eco-v3 .eco-product-card .rstore-product-permalink a:hover {
  text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 639px) {
  .eco-plans { padding: 40px 0; }
  .eco-category { padding: 40px 0; }
  .eco-category__header h2 { font-size: 1.25rem; }
  .eco-final { padding: 60px 0; }
}
