/* ============================================================
 * portalexporte.de · Home-CSS
 * Nur für die Startseite (index.php)
 * ============================================================ */

/* =================== HERO =================== */
.hero{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 70px 28px 90px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.hero-left{ min-width: 0 }
.hero-right{
  min-width: 0;
  display: flex; flex-direction: column;
  gap: 28px;
}

@media(max-width: 1000px){
  .hero{
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 28px 70px;
  }
}

.hero-tag{
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--pe-green-deep);
  background: var(--pe-green-soft);
  border: 1px solid var(--pe-line);
  padding: 7px 14px; border-radius: 999px;
  letter-spacing: 0.05em;
}
.hero-tag .pulse{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pe-green);
  box-shadow: 0 0 0 4px rgba(132,170,0,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100%{ box-shadow: 0 0 0 4px rgba(132,170,0,0.18) }
  50%{ box-shadow: 0 0 0 9px rgba(132,170,0,0.05) }
}

.hero h1{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--pe-ink);
  margin-bottom: 28px;
}
.hero h1 .ink-block{
  background: var(--pe-ink);
  color: #fff;
  padding: 2px 14px 4px;
  display: inline-block;
}
.hero h1 .green-block{
  background: var(--pe-green);
  color: #fff;
  padding: 2px 14px 4px;
  display: inline-block;
}

.hero-sub{
  font-size: 1.2rem;
  color: var(--pe-text);
  max-width: 60ch;
  line-height: 1.55;
  margin-bottom: 42px;
  font-weight: 300;
}
.hero-sub strong{ color: var(--pe-ink); font-weight: 700 }

.hero-cta{ display: flex; gap: 16px; flex-wrap: wrap; align-items: center }

/* Kompaktere Variante in der rechten Spalte (engerer Platz neben Hero-Text) */
.hero-right .hero-cta{ gap: 12px; flex-wrap: nowrap }
.hero-right .btn-primary{ padding: 14px 22px }
.hero-right .btn-ghost{ padding: 14px 12px }
@media(max-width: 1000px){
  .hero-right .hero-cta{ flex-wrap: wrap }
  .hero-right .btn-primary{ padding: 14px 30px }
  .hero-right .btn-ghost{ padding: 14px 22px }
}
.btn-primary{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic; font-size: 17px;
  padding: 14px 30px;
  background: var(--pe-ink); color: #fff;
  border: 0; border-radius: var(--r);
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, transform .2s;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.btn-primary:hover{ background: var(--pe-green); transform: translateY(-1px) }
.btn-primary .arrow{ font-size: 20px; transition: transform .2s }
.btn-primary:hover .arrow{ transform: translateX(4px) }

.btn-ghost{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic; font-size: 17px;
  padding: 14px 22px;
  background: transparent; color: var(--pe-ink);
  border: 0;
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.03em;
}
.btn-ghost:hover{ color: var(--pe-green) }
.btn-ghost::after{ content: "→"; font-size: 20px; transition: transform .2s }
.btn-ghost:hover::after{ transform: translateX(4px) }

/* =================== HERO-STATS-CARD (rechts neben Hero-Content) =================== */
.hero-stats-card{
  background: var(--pe-ink);
  color: #fff;
  border-radius: var(--r-lg);
  border-left: 4px solid var(--pe-green);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 28px 60px -28px rgba(48,48,48,0.4);
}

/* Oberer Bereich: Label + Beschreibung */
.hsc-head{
  padding: 30px 34px 26px;
  border-bottom: 1px solid #444;
}
.hsc-label{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pe-green);
  margin-bottom: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.hsc-label .pulse-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pe-green);
  box-shadow: 0 0 0 4px rgba(132,170,0,0.25);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hsc-headline{
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
}
.hsc-headline strong{ color: var(--pe-green); font-weight: 700; font-style: italic }

/* Untere Zahlen-Reihe */
.hsc-nums{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 28px 0;
}
.hsc-num-cell{
  padding: 4px 18px;
  text-align: center;
  border-right: 1px solid #444;
}
.hsc-num-cell:last-child{ border-right: 0 }

.hsc-num{
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 700; font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}
.hsc-num small{
  font-size: 1.1rem;
  color: var(--pe-green);
  font-weight: 700;
  font-style: italic;
  margin-left: 2px;
}
.hsc-sub{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #d4dccc;
  letter-spacing: 0.06em;
  opacity: .75;
  line-height: 1.3;
}

@media(max-width: 1000px){
  .hsc-num{ font-size: 2.2rem }
  .hsc-num-cell{ padding: 4px 10px }
}
@media(max-width: 480px){
  .hsc-nums{ grid-template-columns: 1fr; padding: 14px 0 }
  .hsc-num-cell{
    border-right: 0;
    border-bottom: 1px solid #444;
    padding: 18px;
  }
  .hsc-num-cell:last-child{ border-bottom: 0 }
}

/* =================== KANAL-RASTER (Sektion 01) =================== */
.kanal-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.kanal{
  background: var(--pe-bg);
  border: 1px solid var(--pe-line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.kanal::before{
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--pe-green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s;
}
.kanal:hover{
  border-color: var(--pe-green);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -16px rgba(132,170,0,0.25);
}
.kanal:hover::before{ transform: scaleX(1) }

.kanal-num{
  font-family: var(--font-mono); font-size: 11px; color: var(--pe-text-mute);
  letter-spacing: 0.12em; margin-bottom: 16px; font-weight: 500;
}
.kanal h3{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.5rem;
  color: var(--pe-ink); margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.kanal p{
  font-size: 1rem; color: var(--pe-text); line-height: 1.55; margin-bottom: 22px;
  font-weight: 300;
}
.kanal-list{ list-style: none; display: flex; flex-direction: column; gap: 8px }
.kanal-list li{
  font-family: var(--font-mono); font-size: 12px; color: var(--pe-text);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.02em;
}
.kanal-list li::before{
  content: ""; width: 6px; height: 6px; background: var(--pe-green); border-radius: 50%;
}

@media(max-width: 820px){
  .kanal-grid{ grid-template-columns: 1fr }
}

/* Pauschal-Banner */
.pauschal-banner{
  margin-top: 32px;
  padding: 30px 38px;
  background: var(--pe-green-soft);
  border: 1px solid var(--pe-line);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  position: relative;
}
.pauschal-banner::before{
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--pe-green);
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}
.pauschal-banner .pb-left{ flex: 1; min-width: 280px }
.pauschal-banner .pb-headline{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.5rem;
  color: var(--pe-ink); margin-bottom: 6px;
}
.pauschal-banner .pb-sub{ color: var(--pe-text); font-size: 1rem; font-weight: 300 }
.pauschal-banner .pb-price{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 3.2rem; color: var(--pe-ink); line-height: 1;
}
.pauschal-banner .pb-price small{ font-size: 0.85rem; color: var(--pe-text-mute); font-weight: 300; font-style: normal }

/* =================== ABRECHNUNGSLOGIK (Sektion 02) =================== */
.abrechnung{
  background: rgba(250, 251, 246, 0.78);   /* --pe-bg-soft mit Alpha, damit Aurora durchscheint */
  border-top: 1px solid var(--pe-line);
  border-bottom: 1px solid var(--pe-line);
  margin: 50px 0;
  padding: 80px 0;
  position: relative;
}
.abrechnung-inner{ max-width: var(--maxw); margin: 0 auto; padding: 0 28px }

/* Flow-Diagramm */
.flow{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 50px;
}
.flow-arrow{
  display: grid; place-items: center;
  color: var(--pe-text-mute); font-size: 1.6rem;
  font-family: var(--font-mono);
}
.flow-card{
  background: var(--pe-bg);
  border: 1px solid var(--pe-line);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  position: relative;
}
.flow-card.highlight{
  border-color: var(--pe-green);
  background: linear-gradient(135deg, var(--pe-green-soft), var(--pe-bg) 60%);
  box-shadow: 0 12px 32px -16px rgba(132,170,0,0.35);
}
.flow-num{
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; color: var(--pe-text-mute); margin-bottom: 14px;
  text-transform: uppercase; font-weight: 500;
}
.flow-card.highlight .flow-num{ color: var(--pe-green-deep) }
.flow-card h4{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.15rem;
  color: var(--pe-ink); margin-bottom: 8px;
}
.flow-card p{ font-size: 0.95rem; color: var(--pe-text); line-height: 1.5; font-weight: 300 }

@media(max-width: 820px){
  .flow{ grid-template-columns: 1fr; gap: 8px }
  .flow-arrow{ transform: rotate(90deg); padding: 4px 0 }
}

/* Feed-Counter + Invoice */
.feed-status{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media(max-width: 980px){ .feed-status{ grid-template-columns: 1fr } }

.feed-card{
  background: var(--pe-bg);
  border: 1px solid var(--pe-line);
  border-radius: var(--r-lg);
  padding: 32px;
}
.feed-head{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.25rem; color: var(--pe-ink); margin-bottom: 4px;
}
.feed-meta{
  font-family: var(--font-mono); font-size: 11px; color: var(--pe-text-mute);
  letter-spacing: 0.04em; margin-bottom: 26px;
}
.feed-meta strong{ color: var(--pe-ink); font-weight: 500 }

.bar-row{ margin-bottom: 22px }
.bar-head{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.bar-label{ font-size: 1rem; color: var(--pe-ink); font-weight: 700; font-style: italic }
.bar-value{
  font-family: var(--font-mono); font-size: 0.82rem; color: var(--pe-ink);
  font-weight: 500;
}
.bar-track{
  height: 10px; background: var(--pe-line-soft);
  border-radius: 5px; overflow: hidden;
}
.bar-fill{
  height: 100%; background: var(--pe-green);
  border-radius: 5px; transition: width .6s ease;
}
.bar-fill.ink{ background: var(--pe-ink) }
.bar-note{
  font-size: 0.85rem; color: var(--pe-text); margin-top: 8px;
  font-family: var(--font-mono); letter-spacing: 0.01em;
}
.bar-note strong{ color: var(--pe-green-deep); font-weight: 600 }

/* Invoice */
.invoice{
  background: var(--pe-bg);
  border: 1px solid var(--pe-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.invoice-head{
  padding: 22px 30px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--pe-line);
  background: var(--pe-green-soft);
}
.invoice-head h4{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.2rem; color: var(--pe-ink);
}
.invoice-num{ font-family: var(--font-mono); font-size: 11px; color: var(--pe-text-mute); letter-spacing: 0.04em }

.invoice-hint{
  padding: 14px 30px;
  background: var(--pe-cream);
  border-bottom: 1px solid var(--pe-line);
  font-size: 0.9rem; color: var(--pe-text); line-height: 1.55; font-weight: 300;
}
.invoice-hint strong{ color: var(--pe-accent); font-weight: 700; font-style: italic }

.invoice-body{ padding: 16px 30px; flex: 1 }
.inv-line{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--pe-line-soft);
  align-items: baseline;
}
.inv-line:last-of-type{ border-bottom: 0 }
.inv-label{ font-size: 1rem; color: var(--pe-ink); font-weight: 700; font-style: italic }
.inv-tag{
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; font-style: normal; font-weight: 500;
  padding: 2px 7px; border-radius: 3px;
  background: var(--pe-cream); color: var(--pe-green-deep);
}
.inv-sub{
  font-family: var(--font-mono); font-size: 11px; color: var(--pe-text-mute);
  display: block; margin-top: 3px;
}
.inv-qty{ font-family: var(--font-mono); font-size: 0.85rem; color: var(--pe-text); text-align: right }
.inv-amt{ font-family: var(--font-mono); font-size: 0.95rem; color: var(--pe-ink); font-weight: 600; text-align: right }

.invoice-total{
  padding: 20px 30px;
  background: var(--pe-ink); color: #fff;
  display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: baseline;
}
.invoice-total .tl{
  font-family: var(--font-sans); font-weight: 700; font-style: italic;
  font-size: 1rem; color: var(--pe-green);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.invoice-total .tv{
  font-family: var(--font-sans); font-weight: 700; font-style: italic;
  font-size: 1.8rem; letter-spacing: -0.01em;
}

.invoice-footnote{
  padding: 16px 30px;
  font-size: 0.88rem; color: var(--pe-text); line-height: 1.55;
  background: var(--pe-green-soft); font-weight: 300;
}
.invoice-footnote strong{ color: var(--pe-ink); font-weight: 700 }

/* Garantien */
.guarantees{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media(max-width: 820px){ .guarantees{ grid-template-columns: 1fr } }
.guarantee{
  background: var(--pe-bg);
  border: 1px solid var(--pe-line);
  border-radius: var(--r-lg);
  padding: 28px 28px;
  transition: all .2s;
}
.guarantee:hover{
  border-color: var(--pe-green);
  background: var(--pe-green-soft);
}
.guarantee-icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--pe-green); color: #fff;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 700; font-style: italic;
  font-family: var(--font-sans); font-size: 22px;
}
.guarantee h5{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.15rem;
  color: var(--pe-ink); margin-bottom: 8px;
}
.guarantee p{ font-size: 0.95rem; color: var(--pe-text); line-height: 1.55; font-weight: 300 }
.guarantee p strong{ color: var(--pe-ink); font-weight: 700 }

/* =================== SHOP-BOOST-MODULE (Sektion 03) =================== */
.boost-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media(max-width: 820px){ .boost-grid{ grid-template-columns: 1fr } }

.boost{
  background: var(--pe-bg);
  border: 1px solid var(--pe-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all .2s;
}
.boost:hover{
  border-color: var(--pe-green);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(132,170,0,0.3);
}
.boost-head{ padding: 30px 32px 0 }
.boost-eyebrow{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pe-green-deep); font-weight: 500; margin-bottom: 14px;
}
.boost h3{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.9rem;
  color: var(--pe-accent); line-height: 1.1; margin-bottom: 12px;
}
.boost-lead{
  font-size: 1rem; color: var(--pe-text); line-height: 1.55;
  padding: 0 32px 26px; font-weight: 300;
}

.boost-list{
  list-style: none; padding: 0 32px 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.boost-list li{
  font-size: 0.98rem; color: var(--pe-text); line-height: 1.5;
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 300;
}
.boost-list li::before{
  content: "→"; color: var(--pe-green); font-weight: 700; flex-shrink: 0;
  font-family: var(--font-mono); font-size: 1.1em;
}
.boost-list li strong{ color: var(--pe-ink); font-weight: 700 }

.boost-price-row{
  padding: 24px 32px;
  background: var(--pe-green-soft);
  border-top: 1px solid var(--pe-line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.boost-price-row .scale{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1rem; color: var(--pe-ink);
}
.boost-price-row .unit{ font-family: var(--font-sans); color: var(--pe-text); font-size: 0.85rem; font-weight: 300; font-style: normal }
.boost-price-strong{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 2.4rem; color: var(--pe-green-deep); line-height: 1;
}

.boost-calc{
  padding: 24px 32px;
  background: var(--pe-cream);
  border-top: 1px solid var(--pe-line);
}
.boost-calc .calc-head{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pe-green-deep);
  font-weight: 600; margin-bottom: 12px;
}
.boost-calc .calc-line{
  font-size: 1.05rem; color: var(--pe-ink); line-height: 1.5;
  font-weight: 700; font-style: italic; margin-bottom: 10px;
}
.boost-calc .calc-rate{
  color: var(--pe-green-deep);
}
.boost-calc .calc-total{
  font-size: 1.4rem; color: var(--pe-accent);
  padding-left: 8px;
}
.boost-calc .calc-foot{ font-size: 0.88rem; color: var(--pe-text); line-height: 1.5; font-weight: 300; font-style: normal }
.boost-calc .calc-foot strong{ color: var(--pe-ink); font-weight: 700 }

.boost-foot{
  padding: 26px 32px;
  margin-top: auto;
  border-top: 1px solid var(--pe-line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.boost-foot .from-label{ font-size: 11px; color: var(--pe-text-mute); font-family: var(--font-mono); letter-spacing: 0.06em; text-transform: uppercase }
.boost-foot .from-price{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.6rem; color: var(--pe-ink); letter-spacing: -0.01em;
}
.boost-foot .from-price small{ font-size: 0.7rem; color: var(--pe-text-mute); font-weight: 300; font-style: normal }

/* =================== PRICING (Sektion 04) =================== */
.pricing-wrap{ background: var(--pe-ink); color: #fff; padding: 90px 0; margin-top: 60px }
.pricing-wrap .section-eyebrow{ color: var(--pe-green) }
.pricing-wrap .section-title{ color: #fff }
.pricing-wrap .section-title em{ color: var(--pe-green); font-style: italic }
.pricing-wrap .section-title .green{ color: var(--pe-accent) }
.pricing-wrap .section-lead{ color: #d4dccc }

.pricing-grid{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media(max-width: 900px){ .pricing-grid{ grid-template-columns: 1fr } }

.plan{
  background: #3a3a3a;
  border: 1px solid #555;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s;
}
.plan:hover{ transform: translateY(-4px) }
.plan.featured{
  background: linear-gradient(180deg, rgba(132,170,0,0.18), #3a3a3a 50%);
  border-color: var(--pe-green);
}
.plan-tag{
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pe-green); font-weight: 600;
  margin-bottom: 16px;
}
.plan.featured .plan-tag{ color: var(--pe-accent) }
.plan h3{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 1.5rem;
  color: #fff; margin-bottom: 8px;
}
.plan-sub{ font-size: 0.95rem; color: #c8d0bc; margin-bottom: 28px; font-weight: 300 }

.plan-price{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic;
  font-size: 3.4rem; color: #fff; line-height: 1;
}
.plan-price small{ font-size: 1rem; color: #c8d0bc; font-weight: 300; font-style: normal }
.plan-unit{ font-size: 0.85rem; color: #c8d0bc; margin-top: 6px; margin-bottom: 32px; font-family: var(--font-mono); letter-spacing: 0.02em }

.plan-list{ list-style: none; flex: 1; margin-bottom: 32px }
.plan-list li{
  font-size: 0.98rem; color: #e0e6d4; line-height: 1.5;
  padding: 9px 0; display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid #555;
  font-weight: 300;
}
.plan-list li:last-child{ border-bottom: 0 }
.plan-list li::before{
  content: "✓"; color: var(--pe-green); font-weight: 700; flex-shrink: 0;
  font-size: 1.1em;
}
.plan-list li strong{ color: #fff; font-weight: 700 }

.btn-plan{
  font-family: var(--font-sans);
  font-weight: 700; font-style: italic; font-size: 16px;
  padding: 14px 26px;
  background: var(--pe-green); color: #fff;
  border: 0; border-radius: var(--r); width: 100%;
  transition: background .15s;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.btn-plan:hover{ background: #fff; color: var(--pe-ink) }
.plan.featured .btn-plan{ background: var(--pe-accent) }
.plan.featured .btn-plan:hover{ background: #fff; color: var(--pe-accent) }
