/* ═══ Vereinsgeist – Shared Design System ═══ */

:root {
  --green-900: #0A3D2A;
  --green-800: #0E5038;
  --green-700: #155A3D;
  --green-600: #1B6B4A;
  --green-500: #22875D;
  --green-400: #34D399;
  --green-100: #E6F4EA;
  --green-50: #F0FDF4;
  --amber-500: #F59E0B;
  --amber-400: #FBBF24;
  --amber-300: #FCD34D;
  --amber-100: #FEF3C7;
  --dark: #1A1A2E;
  --gray-700: #374151;
  --gray-600: #475569;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --white: #FFFFFF;
  --bg: #F7FAFC;
  --radius: 16px;
  --radius-sm: 10px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
ul, ol { list-style: none; }

/* Language */
.lang-en [data-lang="de"],
.lang-de [data-lang="en"] { display: none !important; }

/* ═══ NAV ═══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--gray-200);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: var(--white);
  transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--green-600); }
.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-right {
  display: flex; align-items: center; gap: 12px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7);
  transition: color 0.3s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
nav.scrolled .nav-links a { color: var(--gray-600); }
nav.scrolled .nav-links a:hover { color: var(--green-600); background: var(--green-50); }
.lang-toggle {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--white); transition: all 0.3s;
}
nav.scrolled .lang-toggle {
  background: none; border-color: var(--gray-200); color: var(--gray-500);
}
.lang-toggle:hover { opacity: 0.8; }
.nav-cta {
  padding: 8px 20px; border-radius: 8px;
  background: var(--amber-500); color: var(--dark);
  font-size: 14px; font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--amber-400); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; width: 32px; height: 32px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer; position: relative; z-index: 110;
}
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
nav.scrolled .nav-hamburger span { background: var(--dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  padding: 100px 32px 40px;
  flex-direction: column; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-size: 17px; font-weight: 600; color: var(--dark);
  transition: background 0.2s;
}
.nav-mobile a:hover { background: var(--green-50); }
.nav-mobile .nav-cta {
  margin-top: 12px; text-align: center;
  padding: 16px 20px; font-size: 17px;
}
.nav-mobile .lang-toggle {
  margin-top: auto; align-self: flex-start;
  color: var(--gray-500); border-color: var(--gray-200); background: none;
}

/* ═══ HERO (base) ═══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; background: var(--green-900); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(27,107,74,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245,158,11,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(14,80,56,0.8) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
  padding: 130px 32px 80px; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px; padding: 8px 20px;
  font-size: 13px; font-weight: 600; color: var(--amber-300);
  margin-bottom: 32px; animation: fadeUp 0.8s ease both;
}
.hero-badge svg { width: 16px; height: 16px; }
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); letter-spacing: -0.03em;
  margin-bottom: 24px; animation: fadeUp 0.8s ease 0.1s both;
}
h1 .accent {
  background: linear-gradient(135deg, var(--green-400), var(--amber-400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.65); line-height: 1.65;
  max-width: 580px; margin: 0 auto 44px;
  animation: fadeUp 0.8s ease 0.2s both;
}

/* Signup form */
.signup-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto;
  animation: fadeUp 0.8s ease 0.3s both;
}
.signup-form input {
  flex: 1; padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white); font-size: 15px; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.35); }
.signup-form input:focus { border-color: var(--green-400); background: rgba(255,255,255,0.12); }
.signup-form button {
  padding: 16px 28px; border-radius: var(--radius-sm);
  background: var(--amber-500); color: var(--dark);
  font-size: 15px; font-weight: 700; white-space: nowrap;
  transition: transform 0.15s, background 0.2s;
}
.signup-form button:hover { background: var(--amber-400); transform: translateY(-1px); }
.signup-form button:active { transform: translateY(0); }
.form-success {
  display: none; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; background: rgba(34,211,93,0.12);
  border: 1px solid rgba(34,211,93,0.3); border-radius: var(--radius-sm);
  color: var(--green-400); font-size: 14px; font-weight: 500;
  max-width: 480px; margin: 0 auto;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; width: 18px; height: 18px; }
.form-error {
  display: none; padding: 12px 20px; max-width: 480px; margin: 0 auto;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm); color: #fca5a5; font-size: 0.9rem;
}
.form-error a { color: #fca5a5; text-decoration: underline; }
.hero-trust {
  margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.35);
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-trust svg { display: inline; width: 14px; height: 14px; vertical-align: -2px; margin-right: 2px; }

/* ═══ COMPACT HERO (for subpages) ═══ */
.hero-compact {
  min-height: auto;
  padding: 0;
}
.hero-compact .hero-content {
  padding: 140px 32px 80px;
}

/* ═══ SECTIONS COMMON ═══ */
.section { padding: 100px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 13px; font-weight: 700; color: var(--green-600);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.65; max-width: 620px; margin-bottom: 56px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-title { margin-bottom: 16px; }
.section-header .section-sub { margin: 0 auto; }

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ CARD STYLES (shared) ═══ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.card-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon.green { background: var(--green-100); }
.card-icon.amber { background: var(--amber-100); }
.card-icon.purple { background: #ede9fe; }
.card-icon.red { background: #fef2f2; }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.5; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* Tier badges */
.tier-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 12px;
}
.tier-badge.free { color: var(--green-600); }
.tier-badge.pro { color: var(--amber-500); }
.tier-badge.verein-plus { color: #6d28d9; }
.tier-badge svg { width: 14px; height: 14px; }

/* Feature link (arrow links in cards) */
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--green-600);
  margin-top: 12px; transition: gap 0.2s;
}
.feature-link:hover { gap: 10px; }
.feature-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.card.ai .feature-link { color: var(--amber-600); }
.card.plus .feature-link { color: #6d28d9; }

/* Feature card variants */
.card.ai {
  background: linear-gradient(135deg, var(--amber-100) 0%, var(--white) 60%);
  border-color: rgba(245,158,11,0.2);
}
.card.ai:hover { border-color: var(--amber-400); }
.card.plus {
  background: linear-gradient(135deg, #ede9fe 0%, var(--white) 60%);
  border-color: rgba(109,40,217,0.15);
}
.card.plus:hover { border-color: #a78bfa; }

/* ═══ PROBLEM CARDS ═══ */
.problem-card .card-icon { background: #fef2f2; }
.problem-card .card-icon svg { color: #ef4444; }

/* ═══ TRUST / DSGVO ═══ */
.trust-section { background: var(--green-50); }
.trust-badge-row {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
.trust-seal {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: var(--white);
  border: 1px solid var(--green-600); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--green-600);
}
.trust-seal svg { width: 18px; height: 18px; }

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--white); border: 2px solid var(--gray-200);
  border-radius: var(--radius); padding: 36px 28px;
  text-align: center; position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pricing-card.popular { border-color: var(--amber-500); box-shadow: 0 8px 32px rgba(245,158,11,0.15); }
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber-500); color: var(--white);
  padding: 4px 20px; border-radius: 100px; font-size: 12px; font-weight: 700;
}
.pricing-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
.pricing-period { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 28px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.9rem; color: var(--gray-600);
}
.pricing-features li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--green-600); }
.pricing-btn {
  display: block; width: 100%; padding: 14px;
  border-radius: var(--radius-sm); font-size: 1rem; font-weight: 700;
  transition: opacity 0.2s, transform 0.15s; text-align: center;
}
.pricing-btn:hover { transform: translateY(-1px); }
.pricing-btn.green { background: var(--green-600); color: var(--white); }
.pricing-btn.green:hover { background: var(--green-700); }
.pricing-btn.amber { background: var(--amber-500); color: var(--white); }
.pricing-btn.amber:hover { background: #d97706; }

/* ═══ FAQ ═══ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  font-size: 1rem; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--gray-400); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; font-size: 0.95rem; color: var(--gray-500); line-height: 1.7; }

/* ═══ CTA SECTION (dark) ═══ */
.cta-section {
  background: var(--green-900); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(27,107,74,0.4) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 50%);
}
.cta-section .section-inner { position: relative; z-index: 2; }
.cta-section .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 40px; }
.cta-trust { margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.35); }
.cta-trust svg { display: inline; width: 14px; height: 14px; vertical-align: -2px; margin-right: 2px; }

/* ═══ FOOTER ═══ */
footer {
  padding: 60px 32px 40px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--dark); margin-bottom: 16px;
}
.footer-col a {
  display: block; padding: 4px 0; font-size: 14px; color: var(--gray-500);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green-600); }
.footer-bottom {
  text-align: center; padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px; color: var(--gray-400);
}
.footer-bottom a { color: var(--gray-500); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--green-600); }

/* ═══ KI SECTION (dark) ═══ */
.ki-section { background: linear-gradient(170deg, var(--dark) 0%, #0f172a 100%); color: var(--white); }
.ki-section .section-label { color: var(--amber-400); }
.ki-section .section-sub { color: rgba(255,255,255,0.55); }
.ki-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.ki-card:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.3); }
.ki-card-icon {
  width: 48px; height: 48px; background: rgba(245,158,11,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.ki-card-icon svg { width: 24px; height: 24px; color: var(--amber-400); }
.ki-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.ki-card p { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.ki-note {
  text-align: center; padding: 20px 28px;
  background: rgba(27,107,74,0.1); border: 1px solid rgba(27,107,74,0.2);
  border-radius: var(--radius); color: rgba(255,255,255,0.7);
  font-size: 0.95rem; line-height: 1.6;
}
.ki-note strong { color: var(--green-400); }

/* ═══ ROI / Before-After ═══ */
.roi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.roi-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 28px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.roi-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.roi-before {
  font-size: 14px; color: #ef4444; font-weight: 600; margin-bottom: 8px;
  text-decoration: line-through; opacity: 0.7;
}
.roi-after {
  font-size: 20px; font-weight: 800; color: var(--green-600);
}
.roi-label { font-size: 13px; color: var(--gray-500); margin-top: 8px; }

/* ═══ STEPS / JOURNEY ═══ */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px;
  counter-reset: step;
}
.step {
  text-align: center; counter-increment: step;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-100); color: var(--green-600);
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ═══ COMPARISON TABLE ═══ */
.comparison-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-200);
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
}
.comparison-table th {
  background: var(--green-50); font-weight: 700; color: var(--dark);
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
}
.comparison-table td:first-child { font-weight: 600; color: var(--dark); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--green-600); font-weight: 700; }
.comparison-table .cross { color: var(--gray-400); }
.comparison-table .highlight { background: rgba(245,158,11,0.05); }

/* ═══ INTERNAL LINK ═══ */
.text-link {
  color: var(--green-600); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.text-link:hover { color: var(--green-700); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .section { padding: 72px 20px; }
  nav { padding: 12px 20px; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-compact .hero-content { padding: 120px 20px 60px; }
  .signup-form { flex-direction: column; }
  .signup-form button { width: 100%; }
  .card-grid, .card-grid--2col { grid-template-columns: 1fr; gap: 14px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-badge-row { flex-direction: column; align-items: center; }
  .cta-section .signup-form { flex-direction: column; }
  .cta-section .signup-form button { width: 100%; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .roi-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  /* Cards: horizontal layout on mobile */
  .card {
    padding: 16px; display: grid;
    grid-template-columns: 40px 1fr; grid-template-rows: auto auto auto;
    gap: 0 14px; align-items: start;
  }
  .card .tier-badge { grid-column: 2; margin-bottom: 2px; }
  .card-icon {
    grid-column: 1; grid-row: 1 / 5;
    width: 40px; height: 40px; border-radius: 10px; margin-bottom: 0; margin-top: 18px;
  }
  .card-icon svg { width: 20px; height: 20px; }
  .card h3 { grid-column: 2; font-size: 0.95rem; margin-bottom: 2px; }
  .card p {
    grid-column: 2; font-size: 13px; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card a.text-link { grid-column: 2; }

  /* Pricing: compact on mobile */
  .pricing-card { padding: 28px 20px; }
  .pricing-price { font-size: 2.2rem; }
  .pricing-period { margin-bottom: 20px; }
  .pricing-features { margin-bottom: 20px; }
  .pricing-features li { padding: 5px 0; font-size: 0.85rem; }

  /* KI cards: compact */
  .ki-card { padding: 20px 18px; }
  .ki-card-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .ki-card-icon svg { width: 20px; height: 20px; }
  .ki-card h3 { font-size: 1rem; margin-bottom: 6px; }
  .ki-card p { font-size: 0.9rem; }

  /* Section spacing tighter */
  .section-header { margin-bottom: 36px; }
  .section-sub { margin-bottom: 36px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
