/* ═══════════════════════════════════════
   SEO SCALA — Main Stylesheet
   ═══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --green:        #1c7a4e;
  --green-mid:    #22935d;
  --green-light:  #e9f5ee;
  --green-dark:   #0d4a2e;
  --green-darker: #0a3520;
  --black:        #0f0f0f;
  --dark:         #1a1a1a;
  --dark2:        #242424;
  --white:        #ffffff;
  --off:          #f8f8f6;
  --gl:           #f2f2f0;
  --gm:           #e4e4e0;
  --body:         #3a3a3a;
  --muted:        #888880;
  --bl:           #e0e0da;
  --bd:           rgba(255, 255, 255, 0.1);
  --gold:         #c8993a;
  --yellow:       #ffd23f;
  --yellow-soft:  rgba(255, 210, 63, 0.18);
  --serif: Georgia, 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--white);
  color: var(--body);
  font-family: var(--sans);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--black);
  line-height: 1.12;
}

a { text-decoration: none; }

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bl);
}

.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.logo span { color: var(--green); }

.nav-btn {
  background: var(--black);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--dark2); }

/* ── BUTTONS ── */
/* Snappier taps on iOS Safari: skip the 300ms double-tap-zoom delay
   and suppress the gray tap-highlight flash. */
.btn-g, .btn-o, .btn-w, .btn-wg, .nav-btn, .form-submit, .faq-question {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn-g {
  background: var(--green);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.22s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-g:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28, 122, 78, 0.25);
}

.btn-o {
  color: var(--black);
  padding: 1rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid var(--bl);
  transition: all 0.22s;
  display: inline-block;
}
.btn-o:hover { border-color: var(--black); background: var(--gl); }

.btn-w {
  background: #fff;
  color: var(--green);
  padding: 1rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.22s;
  display: inline-block;
}
.btn-w:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); }

.btn-wg {
  color: rgba(255, 255, 255, 0.8);
  padding: 1rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: all 0.22s;
  display: inline-block;
}
.btn-wg:hover { border-color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.08); }

/* ── SECTION LAYOUT ── */
.sec  { padding: 7rem 6%; }
.wrap { max-width: 1080px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  font-family: var(--sans);
}

.section-label-dark {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
  font-family: var(--sans);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}

.section-title-dark {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  color: #fff;
}

/* Section backgrounds */
.bg-white   { background: var(--white); }
.bg-gray    { background: var(--gl); }
.bg-black   { background: var(--black); }
.bg-offwhite { background: var(--off); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 6% 5rem;
  background: var(--white);
}

.hero-inner { max-width: 900px; width: 100%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  border: 1px solid rgba(28, 122, 78, 0.2);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.42rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--black);
}
.hero-title em { font-style: italic; color: var(--green); }

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.price-was {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
}
.price-now {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-badge {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 5px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.scarcity {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}
.slots { display: flex; gap: 5px; }
.slot  { width: 12px; height: 12px; border-radius: 3px; }
.slot.taken { background: var(--gm); }
.slot.free  { background: var(--green); }
.scarcity-text { font-size: 0.82rem; color: var(--muted); }
.scarcity-text strong { color: var(--black); font-weight: 700; }

/* ── Kategorie-Hero: zwei Spalten (Text links, Bild rechts) ── */
#hero.hero-2col { min-height: auto; display: block; text-align: left; padding: 8.5rem 6% 4.5rem; background: var(--white); }
#hero.hero-2col .hero-2col-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
#hero.hero-2col .hero-2col-copy { max-width: 38rem; }
#hero.hero-2col .hero-subtitle { margin: 0 0 1.9rem; max-width: 38rem; }
#hero.hero-2col .price-row { justify-content: flex-start; margin-bottom: 1.9rem; }
#hero.hero-2col .price-now { font-size: clamp(2.4rem, 4.5vw, 3.4rem); }
#hero.hero-2col .hero-actions { justify-content: flex-start; }
#hero.hero-2col .scarcity { justify-content: flex-start; }
#hero.hero-2col .svc-trust { justify-content: flex-start; }
#hero.hero-2col .hero-2col-media img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; display: block; border-radius: 20px; box-shadow: 0 28px 64px rgba(15,15,15,0.16); }
@media (max-width: 880px) {
  #hero.hero-2col { padding: 7rem 6% 3.5rem; }
  #hero.hero-2col .hero-2col-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  #hero.hero-2col .hero-2col-media { max-width: 34rem; }
  #hero.hero-2col .hero-2col-media img { height: auto; }
}

/* ── TIMER STRIP ── */
.timer-strip {
  background: var(--black);
  padding: 1.4rem 6%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.timer-label { font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.6); }
.timer-digits { display: flex; align-items: center; gap: 0.5rem; }
.timer-unit { text-align: center; }
.timer-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  min-width: 2.4rem;
  line-height: 1;
}
.timer-sep {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.timer-caption { font-size: 0.6rem; color: rgba(255, 255, 255, 0.3); letter-spacing: 0.1em; text-transform: uppercase; }
.timer-note { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); }
.timer-note strong { color: rgba(255, 255, 255, 0.75); }

/* ── TRUST BAR ── */
#trust {
  padding: 3.5rem 6%;
  background: var(--gl);
  border-top: 1px solid var(--bl);
  border-bottom: 1px solid var(--bl);
}
.trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-divider { width: 1px; height: 36px; background: var(--bl); }
.trust-label { font-size: 0.75rem; font-weight: 700; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.trust-stats { display: flex; gap: 3rem; flex-wrap: wrap; align-items: center; }
.trust-stat { text-align: center; }
.trust-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  display: block;
  line-height: 1;
}
.trust-desc { font-size: 0.73rem; color: var(--muted); margin-top: 3px; }

/* ── PAIN SECTION ── */
.pain-intro { max-width: 580px; margin-bottom: 3.5rem; }
.pain-intro p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-top: 0.8rem; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--bl);
  border-radius: 14px;
  overflow: hidden;
}
.pain-card {
  background: var(--white);
  padding: 2.2rem 2.5rem;
  border-right: 1px solid var(--bl);
  border-bottom: 1px solid var(--bl);
  transition: background 0.2s;
}
.pain-card:nth-child(2n) { border-right: none; }
.pain-card:nth-child(3),
.pain-card:nth-child(4)  { border-bottom: none; }
.pain-card:hover { background: var(--off); }

.pain-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gm);
  line-height: 1;
  margin-bottom: 0.8rem;
  display: block;
}
.pain-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.45rem; }
.pain-card p  { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ── SOLUTION SECTION ── */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.solution-points { list-style: none; display: flex; flex-direction: column; gap: 1.8rem; }
.solution-point  { display: flex; gap: 1.2rem; align-items: flex-start; }

.solution-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(28, 122, 78, 0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.solution-text h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 0.22rem; font-family: var(--sans); }
.solution-text p  { font-size: 0.84rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }

.perf-card {
  background: var(--dark2);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 2.5rem;
}
.perf-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.35); margin-bottom: 2rem; }
.perf-row   { margin-bottom: 1.8rem; }
.perf-head  { display: flex; justify-content: space-between; font-size: 0.84rem; font-weight: 600; color: rgba(255, 255, 255, 0.65); margin-bottom: 0.55rem; }

.bar-bg   { background: rgba(255, 255, 255, 0.06); border-radius: 100px; height: 10px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1); }
.bar-fill.slow { background: #f87171; }
.bar-fill.fast { background: var(--green); }

.perf-score-row { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--bd); display: flex; align-items: center; gap: 1.5rem; }
.score-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(28, 122, 78, 0.15);
  border: 2px solid var(--green);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.score-num   { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--green); line-height: 1; }
.score-small { font-size: 0.58rem; color: rgba(255, 255, 255, 0.35); }
.score-label { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); line-height: 1.5; }
.score-label strong { color: #fff; }

/* ── OFFER / VALUE STACK ── */
.offer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: start;
}

.value-stack { border: 1px solid var(--bl); border-radius: 16px; overflow: hidden; }

.vs-header { background: var(--black); padding: 1.2rem 2rem; display: flex; justify-content: space-between; }
.vs-header span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }

.vs-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--bl);
  gap: 1rem;
  background: var(--white);
}
.vs-left  { display: flex; gap: 0.9rem; align-items: center; }
.vs-emoji { font-size: 1.1rem; min-width: 1.8rem; text-align: center; }
.vs-name  { font-size: 0.9rem; font-weight: 700; color: var(--black); }
.vs-sub   { font-size: 0.74rem; color: var(--muted); margin-top: 1px; }
.vs-price { font-size: 0.88rem; color: var(--muted); text-decoration: line-through; white-space: nowrap; font-weight: 600; }

.vs-total { background: var(--gl); display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 2rem; border-top: 2px solid var(--bl); }
.vs-total-label { font-size: 0.85rem; font-weight: 700; color: var(--body); }
.vs-total-price { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; color: var(--muted); text-decoration: line-through; }

.price-card {
  position: sticky;
  top: 6rem;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 18px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 40px rgba(28, 122, 78, 0.1);
}
.pc-label  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.pc-was    { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--muted); text-decoration: line-through; }
.pc-now    { font-family: var(--serif); font-size: 4.5rem; font-weight: 700; color: var(--green); letter-spacing: -0.04em; line-height: 1; display: block; margin: 0.3rem 0; }
.pc-note   { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.8rem; }
.pc-extra  { background: var(--gl); border-radius: 8px; padding: 0.9rem 1.1rem; font-size: 0.81rem; color: var(--body); margin: 1.2rem 0; text-align: left; border-left: 3px solid var(--green); }
.pc-extra strong { color: var(--green); }
.pc-checks { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.8rem; text-align: left; }
.pc-check  { display: flex; gap: 0.7rem; align-items: center; font-size: 0.82rem; color: var(--body); }
.pc-check-icon { color: var(--green); font-weight: 700; }

/* ── BONUSES ── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bonus-card {
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0, 0, 0, 0.07); }
.bonus-tag {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--yellow); color: var(--black);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 4px;
}
.bonus-icon  { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.bonus-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.45rem; }
.bonus-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }
.bonus-value { font-size: 0.78rem; color: var(--muted); text-decoration: line-through; margin-top: 1.2rem; font-weight: 600; }

/* ── GUARANTEE ── */
.guarantee-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.guarantee-icon { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.guarantee-box h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.02em; margin-bottom: 1.5rem; color: #fff; }
.guarantee-box p  { font-size: 0.95rem; color: rgba(255, 255, 255, 0.55); line-height: 1.78; max-width: 500px; margin: 0 auto; }
.guarantee-box p strong { color: #fff; }

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem 2rem;
  margin-top: 3rem;
}
/* Portfolio-Karten nur einblenden (kein Hochschieben). Die Bewegung liess den
   kleinen, herunterskalierten Telefon-Screenshot beim Reveal flimmern/„wandern". */
.js-loaded .portfolio-item.rv { transform: none; }
.portfolio-item { display: flex; flex-direction: column; gap: 0.5rem; }

.portfolio-hero { padding: 8.5rem 6% 3.2rem; text-align: center; }
.portfolio-hero .wrap { max-width: 720px; }
.portfolio-hero .hero-subtitle { margin-left: auto; margin-right: auto; }
.portfolio-hero .hero-actions { justify-content: center; }

.browser-mockup {
  background: var(--dark2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.portfolio-item:hover .browser-mockup { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); }

.browser-bar { background: #2e2e2e; padding: 0.55rem 1rem; display: flex; align-items: center; gap: 0.6rem; }
.browser-dots { display: flex; gap: 5px; }
.browser-dot  { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #28c840; }
.browser-url  {
  flex: 1; background: #1a1a1a; border-radius: 4px;
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.35);
  font-family: var(--sans); margin-left: 0.5rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.browser-screen { overflow: hidden; aspect-ratio: 1280/642; position: relative; }
.browser-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}
.browser-screen img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 3s ease;
}
.portfolio-item:hover .browser-screen img { transform: translateY(-20%); }

/* Screen mockup styles removed - using real screenshots */

.portfolio-meta { padding: 0.8rem 0.2rem 0; }
.portfolio-tag  { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); background: var(--green-light); padding: 0.2rem 0.6rem; border-radius: 4px; margin-bottom: 0.6rem; }
.portfolio-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 0.3rem; display: block; }
.portfolio-desc { font-size: 0.82rem; color: var(--muted); display: block; margin-bottom: 0.4rem; }
.portfolio-link { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.82rem; font-weight: 700; color: var(--green); margin-top: 0.2rem; transition: gap 0.2s; }
.portfolio-link:hover { gap: 0.6rem; }

/* ── Desktop- + Mobile-Vorschau (statisch): Screenshot im Browser, Telefon seitlich ── */
.preview { position: relative; padding-bottom: 0; }
.preview .browser-screen { aspect-ratio: 1.85 / 1; }
.preview .browser-screen img.shot-desktop {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 0%;
  transform: none; transition: none;
}
.portfolio-item:hover .preview .browser-screen img.shot-desktop { transform: none; }
/* Telefon ragt unten rechts aus dem Rahmen – verdeckt den Desktop kaum */
.preview .device-phone {
  position: absolute; z-index: 5;
  right: -3%; bottom: 0.3rem;
  width: 24%;
  aspect-ratio: 390 / 844;
  background: #0c0c0e;
  border-radius: 13px;
  padding: 2px;                 /* dünner, gleichmässiger Rand wie ein echtes Handy */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}
.preview .device-phone img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 0%;
  border-radius: 11px; display: block;
}
/* Kein Hover-Zoom: das Skalieren liess den kleinen Telefon-Screenshot flimmern/„wandern". */

.portfolio-note {
  margin-top: 3rem;
  margin-bottom: 1rem;
  text-align: center;
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--bl);
  border-radius: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.portfolio-note-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.portfolio-note h4   { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.portfolio-note p    { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.portfolio-note strong { color: var(--black); }

/* ── TESTIMONIALS ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card { background: var(--white); border: 1px solid var(--bl); border-radius: 14px; padding: 2rem; }
.stars { color: var(--yellow); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-card blockquote { font-size: 0.87rem; color: var(--body); line-height: 1.72; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; color: var(--green); border: 1px solid rgba(28, 122, 78, 0.2); flex-shrink: 0; }
.author-name   { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.author-role   { font-size: 0.74rem; color: var(--muted); }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bl);
  border: 1px solid var(--bl);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 4rem;
}
.stat-cell { background: var(--white); text-align: center; padding: 2.5rem 2rem; }
.stat-number { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--black); display: block; letter-spacing: -0.03em; line-height: 1; }
.stat-label  { font-size: 0.8rem; color: var(--muted); margin-top: 0.5rem; }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 260px 1fr; gap: 5rem; align-items: start; }
.about-photo  { border-radius: 14px; overflow: hidden; border: 1px solid var(--bl); background: var(--gl); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; margin-bottom: 1.4rem; }
.about-text p  { color: var(--muted); font-size: 0.93rem; line-height: 1.78; margin-bottom: 1.1rem; }
.about-tags    { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.about-tag     { background: var(--gl); border: 1px solid var(--bl); color: var(--body); font-size: 0.73rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 100px; }

/* ── CTA SECTION ── */
#cta {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-darker) 100%);
  padding: 8rem 6%;
  text-align: center;
}
#cta h2 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); letter-spacing: -0.035em; color: #fff; margin-bottom: 1.2rem; }
#cta h2 em { font-style: italic; color: #6ee4a8; }
#cta p  { font-size: 1rem; color: rgba(255, 255, 255, 0.65); max-width: 480px; margin: 0 auto 3rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
#contact { scroll-margin-top: 4rem; }
#contactForm { scroll-margin-top: 5rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.contact-info p  { color: var(--muted); font-size: 0.93rem; line-height: 1.6; margin-bottom: 1.3rem; }

.promises { display: flex; flex-direction: column; gap: 0.55rem; }
.promise  { display: flex; gap: 0.7rem; align-items: flex-start; }
.promise-check { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--green-light); border: 1px solid rgba(28, 122, 78, 0.2); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; color: var(--green); font-weight: 700; margin-top: 1px; }
.promise p { font-size: 0.87rem; line-height: 1.55; color: var(--body); margin-bottom: 0; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group   { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fafaf6;
  border: 2px solid #cdcdc4;
  border-radius: 8px;
  color: var(--black);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #a8a89e;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(28, 122, 78, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(120, 120, 112, 0.75);
  font-size: 0.95rem;
}

.form-submit { background: var(--black); color: #fff; padding: 1.1rem; border-radius: 8px; font-family: var(--sans); font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: all 0.22s; width: 100%; }
.form-submit:hover { background: var(--dark2); transform: translateY(-1px); }
.form-note { font-size: 0.73rem; color: var(--muted); text-align: center; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--bl); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.faq-icon { color: var(--green); font-size: 1.25rem; transition: transform 0.3s; flex-shrink: 0; font-style: normal; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s; font-size: 0.88rem; color: var(--muted); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 2.5rem 6%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.flogo { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: #fff; }
.flogo span { color: var(--green); }
.flinks { display: flex; gap: 2rem; }
.flinks a { font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); transition: color 0.2s; }
.flinks a:hover { color: rgba(255, 255, 255, 0.75); }
.fcopy { font-size: 0.75rem; color: rgba(255, 255, 255, 0.25); }

/* ── INLINE FORM FEEDBACK ──
   Replaces the toast pattern — success/error appear right where the form was. */
.contact-thanks {
  background: linear-gradient(180deg, var(--green-light) 0%, #f1faf4 100%);
  border: 1px solid rgba(28, 122, 78, 0.25);
  border-radius: 16px;
  padding: 2.4rem 2rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(28, 122, 78, 0.08);
}
.contact-thanks .thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6rem;
  box-shadow: 0 6px 16px rgba(28, 122, 78, 0.35);
}
.contact-thanks .thanks-icon svg { width: 32px; height: 32px; display: block; }
.contact-thanks h3 {
  color: var(--green-dark);
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: .9rem;
  line-height: 1.15;
}
.contact-thanks p {
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: .5rem;
  font-size: .98rem;
}
.contact-thanks p strong { color: var(--green); }
.contact-thanks .thanks-meta {
  font-size: .88rem;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px dashed rgba(28, 122, 78, 0.3);
  color: var(--green-dark);
}
.contact-thanks .thanks-meta a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.form-alert {
  padding: 1rem 1.15rem;
  border-radius: 10px;
  margin-bottom: 1.3rem;
  font-size: .9rem;
  line-height: 1.45;
  background: #fde8e8;
  border-left: 4px solid #c83a3a;
  color: #821010;
}
.form-alert-msg {
  font-weight: 700;
  margin-bottom: .6rem;
}
.form-alert-cta {
  display: inline-block;
  color: #821010;
  font-weight: 700;
  text-decoration: underline;
  font-size: .9rem;
}
.form-alert-cta:hover { color: #5a0a0a; }

/* ── DSGVO consent (white corner card, mobile = full-width bottom) ──
   Designed to never blend with the dark footer and to never look like a
   stray brand-coloured CTA button. */
.dsgvo-bar {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 998;
  display: none;
  flex-direction: column;
  gap: 1rem;
  width: min(380px, calc(100vw - 2.5rem));
  padding: 1.15rem 1.25rem;
  background: #fff;
  color: var(--black);
  font-size: .85rem;
  line-height: 1.55;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.dsgvo-bar.show { display: flex; }
.dsgvo-bar.on { opacity: 1; transform: translateY(0); }

.dsgvo-text { color: var(--body); }
.dsgvo-text a { color: var(--green); font-weight: 700; text-decoration: underline; }
.dsgvo-text a:hover { color: var(--green-dark); }

.dsgvo-btn {
  background: var(--black);
  color: #fff;
  border: none;
  padding: .65rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  align-self: flex-start;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.dsgvo-btn:hover { background: var(--dark2); }

@media (max-width: 600px) {
  .dsgvo-bar {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}

/* ── SCROLL REVEAL ── */
/* Bez JS: sve vidljivo odmah */
.rv {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

/* Sa JS (js-loaded klasa na body): animiraj */
.js-loaded .rv {
  opacity: 0;
  transform: translateY(22px);
}
.js-loaded .rv.on {
  opacity: 1;
  transform: none;
}
.js-loaded .d1 { transition-delay: 0.08s; }
.js-loaded .d2 { transition-delay: 0.16s; }
.js-loaded .d3 { transition-delay: 0.24s; }
.js-loaded .d4 { transition-delay: 0.32s; }

/* On mobile the scroll-reveal animation is unreliable (iOS Safari throttles
   IntersectionObserver during fast scroll). Just show everything. */
@media (max-width: 860px) {
  .js-loaded .rv {
    opacity: 1;
    transform: none;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .sec { padding: 5rem 5%; }
  #hero { padding: 8rem 5% 4rem; }

  .pain-grid,
  .solution-layout,
  .offer-layout,
  .bonus-grid,
  .portfolio-grid,
  .testimonial-grid,
  .stats-strip,
  .about-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .portfolio-grid { gap: 4rem; }

  .price-card { position: static; }
  .timer-strip { gap: 1.5rem; flex-direction: column; }
  .about-photo { max-width: 180px; aspect-ratio: 1; }
  .trust-divider { display: none; }
  footer { flex-direction: column; align-items: flex-start; }
  .flinks { flex-wrap: wrap; gap: 1rem; }
  .guarantee-box { padding: 2rem 1.5rem; }
}

/* ── HEADER / NAVIGATION (enhanced) ── */
nav { justify-content: flex-start; gap: 1rem; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; margin-left: auto; }
.nav-link { font-family: var(--sans); font-weight: 600; font-size: 0.92rem; color: var(--body); background: none; border: 0; cursor: pointer; padding: 0.55rem 0.85rem; border-radius: 7px; display: inline-flex; align-items: center; gap: 0.35rem; transition: color 0.2s, background 0.2s; }
.nav-link:hover { color: var(--black); background: var(--gl); }
.caret { font-size: 0.62rem; opacity: 0.55; transition: transform 0.25s cubic-bezier(0.16,1,0.3,1); }
.nav-drop { position: relative; }
.nav-drop:hover .caret, .nav-drop:focus-within .caret { transform: rotate(180deg); }
.nav-menu { position: absolute; top: calc(100% + 0.4rem); left: 0; min-width: 240px; background: #fff; border: 1px solid var(--bl); border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,0.13); padding: 0.45rem; opacity: 0; visibility: hidden; transform: translateY(7px); transition: opacity 0.2s, transform 0.25s cubic-bezier(0.16,1,0.3,1), visibility 0.2s; }
.nav-drop:hover .nav-menu, .nav-drop:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: block; padding: 0.7rem 0.9rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; color: var(--black); transition: background 0.15s, color 0.15s; }
.nav-menu a:hover { background: var(--green-light); color: var(--green); }
nav .nav-btn { margin-left: 0.4rem; }
.burger { display: none; align-items: center; gap: 0.55rem; background: none; border: 0; padding: 8px 0 8px 8px; cursor: pointer; }
.burger-text { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--black); letter-spacing: 0.01em; }
.burger-icon { display: flex; flex-direction: column; gap: 5px; }
.burger-icon span { width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), opacity 0.2s; }
.burger[aria-expanded="true"] .burger-icon span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-icon span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 99; flex-direction: column; padding: 0.5rem 6% 1.4rem; background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--bl); box-shadow: 0 14px 30px rgba(0,0,0,0.07); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 0.9rem 0.3rem; font-weight: 600; font-size: 1rem; color: var(--black); border-bottom: 1px solid var(--gl); }
.mobile-menu .nav-btn { margin-top: 0.9rem; text-align: center; border-bottom: 0; color: #fff; padding: 0.95rem 1.4rem; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  nav .nav-btn { display: none; }
  .burger { display: flex; margin-left: auto; }
}

/* ── Zaobljena (Pill) Buttons ── */
.btn-g, .btn-o, .btn-w, .btn-wg, .nav-btn, .form-submit, .dsgvo-btn { border-radius: 100px; }

/* ═══════════════════════════════════════════════════════════
   Cenovnik / Pricing tiers (Webdesign- & SEO-Seiten)
   ═══════════════════════════════════════════════════════════ */
.price-subhead { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin: 2.4rem 0 1.2rem; }
.price-subhead.first { margin-top: 0.5rem; }
.tier-grid { display: grid; gap: 1.2rem; }
.tier-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.tier-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.tier { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--bl); border-radius: 16px; padding: 2rem 1.8rem; }
.tier.featured { border-color: var(--green); box-shadow: 0 10px 36px rgba(28,122,78,0.1); position: relative; }
.tier-badge { position: absolute; top: -11px; left: 1.8rem; background: var(--yellow); color: var(--black); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.85rem; border-radius: 100px; }
.tier-name { font-weight: 700; color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.tier-price { font-family: var(--serif); font-weight: 700; font-size: 2rem; color: var(--green); margin: 0.35rem 0 0.05rem; letter-spacing: -0.02em; line-height: 1; }
.tier-price small { font-family: var(--sans); font-size: 0.9rem; color: var(--muted); font-weight: 600; }
.tier-pricebar { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.4rem; }
.tier-pricebar + .tier-price { margin-top: 0.05rem; }
.tier-was { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.3); }
.tier-save { background: rgba(224,162,59,0.16); color: #9a6a15; font-family: var(--sans); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.03em; padding: 0.2rem 0.6rem; border-radius: 100px; }

/* Preis-Skala (price ladder, brand: scala) */
.price-ladder { display: grid; border: 1px solid var(--bl); border-radius: 12px; overflow: hidden; margin: 0.5rem 0 1.1rem; }
.pl-step { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; padding: 0.5rem 0.9rem; }
.pl-step + .pl-step { border-top: 1px solid var(--bl); }
.pl-when { font-size: 0.8rem; color: var(--muted); }
.pl-val { font-family: var(--serif); font-weight: 600; color: var(--body); font-size: 0.95rem; }
.pl-val.was { text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.3); color: var(--muted); }
.pl-step.active { background: rgba(28,122,78,0.07); padding: 0.7rem 0.9rem; }
.pl-step.active .pl-when { color: var(--green); font-weight: 700; }
.pl-step.active .pl-val { color: var(--green); font-weight: 700; font-size: 1.55rem; line-height: 1; }
.ent-was { display: block; font-size: 0.95rem; color: rgba(255,255,255,0.5); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.35); font-weight: 600; margin-bottom: 0.25rem; }
.ent-was span { color: #4ec98a; text-decoration: none; font-weight: 700; margin-left: 0.4rem; }
.tier-for { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.3rem; min-height: 1.2em; }
.tier ul { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.55rem; flex: 1; }
.tier li { font-size: 0.86rem; color: var(--body); display: flex; gap: 0.55rem; line-height: 1.45; }
.tier li::before { content: "✓"; color: var(--green); font-weight: 700; flex: none; }
.tier .btn-g, .tier .btn-o { margin-top: auto; text-align: center; width: 100%; padding: 0.78rem 1rem; font-size: 0.9rem; }

/* Enterprise flagship (dark, full-width bundle) */
.tier-enterprise { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; background: var(--dark2); border: 1px solid var(--bd); border-radius: 20px; padding: clamp(2.2rem,4vw,3.2rem); margin-top: 1.2rem; }
.ent-eyebrow { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #4ec98a; }
.tier-enterprise h3 { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.1rem); color: #fff; margin: 0.6rem 0 0.8rem; letter-spacing: -0.02em; line-height: 1.15; }
.tier-enterprise p { color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.5rem; max-width: 33rem; }
.ent-price { font-family: var(--serif); font-weight: 700; font-size: 2.4rem; color: #4ec98a; line-height: 1; margin-bottom: 1.5rem; }
.ent-price small { display: block; font-family: var(--sans); font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 600; margin-top: 0.35rem; letter-spacing: 0.02em; }
.ent-right { display: grid; gap: 0.85rem; }
.ent-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.ent-item { background: rgba(255,255,255,0.04); border: 1px solid var(--bd); border-radius: 12px; padding: 1.05rem 1.3rem; }
.ent-item strong { display: block; color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.ent-item span { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.5; }
.tier-enterprise .btn-g { display: inline-block; }
@media (max-width: 860px) { .tier-grid.cols-3, .tier-grid.cols-2 { grid-template-columns: 1fr; } .tier-enterprise { grid-template-columns: 1fr; gap: 1.8rem; padding: 2rem 1.6rem; } }

.bonus-grid.g4 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .bonus-grid.g4 { grid-template-columns: 1fr; } }