/* ============================================================
   greenHeat — style.css
   Ausgelagert aus index.html <style>-Block
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green:       #16a34a;
  --green-light: #22c55e;
  --green-soft:  #bbf7d0;
  --green-mist:  #f0fdf4;
  --green-deep:  #14532d;
  --emerald:     #059669;
  --bg:          #fafcf8;
  --bg-warm:     #f5f7f2;
  --text:        #1a2e1a;
  --text-mid:    #3d5a3d;
  --text-muted:  #6b8f6b;
  --card:        #ffffff;
  --card-border: #e2edd9;
  --divider:     #dce8d4;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body { font-family: 'Roboto', system-ui, sans-serif; background: var(--bg); color: var(--text-mid); line-height: 1.65; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
::selection { background: rgba(22,163,74,0.15); color: var(--green-deep); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-light); border-radius: 3px; }

/* ============================================================
   NAV
   ============================================================ */
nav { position: sticky; top: 0; z-index: 100; padding: 20px 48px; display: flex; align-items: center; justify-content: space-between; transition: padding .4s ease, border-color .4s ease; background: rgba(250,252,248,0.94); backdrop-filter: blur(24px); border-bottom: 1px solid transparent; }
nav.scrolled { padding: 14px 48px; border-bottom-color: var(--divider); }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--green-deep); letter-spacing: -0.02em; }
.nav-logo img { height: 50px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.01em; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green); border-radius: 1px; transition: width .25s ease; }
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--green) !important; color: #fff !important; padding: 9px 20px; border-radius: 6px; font-weight: 600 !important; font-size: 13px !important; }
.nav-cta:hover { background: var(--green-deep) !important; }
.nav-cta::after { display: none !important; }
.nav-lang-btn { border: 1px solid var(--border) !important; padding: 6px 12px !important; border-radius: 4px !important; font-size: 12px !important; color: var(--muted) !important; font-weight: 500 !important; }
.nav-lang-btn:hover { border-color: var(--green) !important; color: var(--green) !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.d1 { transition-delay: .1s; }
.fade-in.d2 { transition-delay: .2s; }
.fade-in.d3 { transition-delay: .3s; }
.fade-in.d4 { transition-delay: .4s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 80px 48px 100px; background: var(--bg); position: relative; overflow: hidden; }
.hero-pattern { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 75% 20%, rgba(22,163,74,0.07) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(5,150,105,0.05) 0%, transparent 40%); }
.hero-grid-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.4; background-image: linear-gradient(var(--divider) 1px, transparent 1px), linear-gradient(90deg, var(--divider) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, black 20%, transparent 70%); }
.hero-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 18px; border-radius: 100px; background: var(--green-mist); border: 1px solid var(--green-soft); margin-bottom: 28px; font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: block; box-shadow: 0 0 0 3px rgba(22,163,74,0.2); }
.hero h1 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(2.6rem, 5.5vw, 4.25rem); line-height: 1.08; letter-spacing: -0.03em; color: var(--text); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; font-weight: 300; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { background: var(--green); color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; transition: background .2s, transform .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-secondary { background: var(--card); color: var(--text-mid); padding: 14px 28px; border-radius: 8px; border: 1px solid var(--card-border); font-weight: 500; font-size: 0.95rem; transition: border-color .2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* Hero image */
.hero-image-wrap { position: relative; }
.hero-image-wrap img { width: 100%; max-width: 560px; height: auto; border-radius: 20px; box-shadow: 0 24px 80px rgba(0,0,0,0.14), 0 4px 20px rgba(22,163,74,0.1); display: block; }
.hero-image-placeholder { width: 100%; aspect-ratio: 4/3; max-width: 560px; border-radius: 20px; background: var(--green-mist); border: 2px dashed var(--green-soft); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 2rem; }
.hero-image-placeholder svg { width: 40px; height: 40px; stroke: var(--green-soft); }
.hero-image-glow { position: absolute; width: 70%; height: 70%; top: 15%; left: 15%; background: radial-gradient(circle, rgba(22,163,74,0.1) 0%, transparent 70%); border-radius: 50%; filter: blur(50px); pointer-events: none; }

/* Hero stats strip */
.hero-stats-strip { max-width: 1200px; margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--divider); border: 1px solid var(--divider); border-radius: 14px; overflow: hidden; position: relative; }
.stat-box { background: var(--card); padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 1rem; }
.stat-box:nth-child(even) { background: var(--green-mist); }
.stat-num { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.75rem; color: var(--green); line-height: 1; letter-spacing: -0.02em; white-space: nowrap; }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; line-height: 1.4; }

/* ============================================================
   PROBLEM CARD IMAGES
   ============================================================ */
.problem-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; margin-bottom: 1.5rem; display: block; }
.problem-card-img-placeholder { width: 100%; aspect-ratio: 16/9; border-radius: 8px; margin-bottom: 1.5rem; background: rgba(220,232,212,0.5); border: 2px dashed var(--divider); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--text-muted); font-size: 0.8rem; text-align: center; }
.problem-card.solution .problem-card-img-placeholder { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); color: var(--green-soft); }

/* Tech showcase image */
.tech-showcase { width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 2rem; position: relative; }
.tech-showcase img { width: 100%; height: auto; object-fit: contain; display: block; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
.tech-showcase-placeholder { width: 100%; height: 300px; border-radius: 16px; background: var(--green-mist); border: 2px dashed var(--green-soft); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--green-soft); font-weight: 500; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); flex-shrink: 0; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 6rem 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--green); text-transform: uppercase; margin-bottom: 16px; }
.section-label::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 1px; }
.section-title { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.75rem); line-height: 1.1; letter-spacing: -0.025em; color: var(--text); margin-bottom: 1.25rem; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; font-weight: 300; margin-bottom: 3rem; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: 12px; overflow: hidden; border: 1px solid var(--divider); margin-top: 3rem; }
.problem-card { background: var(--card); padding: 2rem; }
.problem-card.solution { background: var(--green-deep); }
.problem-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.problem-card.solution .problem-badge { color: var(--green-soft); }
.problem-card h3 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--text); margin-bottom: 1rem; }
.problem-card.solution h3 { color: #fff; }
.problem-items { list-style: none; }
.problem-items li { padding: 0.55rem 0; border-bottom: 1px solid var(--divider); font-size: 0.875rem; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; }
.problem-items li::before { content: '—'; color: var(--card-border); flex-shrink: 0; margin-top: 2px; }
.problem-card.solution .problem-items li { border-bottom-color: rgba(255,255,255,0.1); color: #d1fae5; }
.problem-card.solution .problem-items li::before { content: '✓'; color: var(--green-light); font-weight: 700; }

/* ============================================================
   TECH
   ============================================================ */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--divider); border: 1px solid var(--divider); border-radius: 12px; overflow: hidden; margin-top: 3rem; }
.tech-card { background: var(--card); padding: 2rem 1.75rem; transition: background .2s; }
.tech-card:hover { background: var(--green-mist); }
.tech-card-num { font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.tech-card-title { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
.tech-card-desc { font-size: 0.855rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ============================================================
   SAISONALITÄT
   ============================================================ */
.season-section { background: var(--green-deep); padding: 5rem 48px; }
.season-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.season-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--green-soft); text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.season-label::before { content: ''; width: 20px; height: 2px; background: var(--green-light); border-radius: 1px; }
.season-title { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1.25rem; }
.season-title em { color: var(--green-light); font-style: normal; }
.season-text { color: #d1fae5; line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300; font-size: 0.95rem; }
.season-stat { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 1.25rem 1.5rem; display: flex; align-items: center; gap: 1.5rem; margin-top: 1.5rem; }
.season-stat-num { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--green-light); line-height: 1; white-space: nowrap; letter-spacing: -0.02em; }
.season-stat p { font-size: 0.85rem; color: #d1fae5; font-weight: 300; line-height: 1.6; }
.season-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
.season-card { background: rgba(20,83,45,0.7); padding: 1.5rem; }
.season-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.season-card h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-light); margin-bottom: 0.4rem; }
.season-card p { font-size: 0.82rem; color: #a7f3d0; line-height: 1.55; font-weight: 300; }

/* ============================================================
   STATS BANNER
   ============================================================ */
.stats-banner { background: var(--green-deep); padding: 4rem 48px; position: relative; overflow: hidden; }
.stats-banner-accent { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,0.08) 0%, transparent 70%); }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.stats-grid > div { text-align: center; }
.stat-val { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--green-light); letter-spacing: -0.02em; margin-bottom: 0.3rem; }
.stats-grid .stat-label { font-size: 0.78rem; color: #d1fae5; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; }
.stat-sub { font-size: 0.75rem; color: var(--green-soft); font-weight: 300; margin-top: 0.2rem; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.benefit-card { background: var(--card); border-radius: 12px; padding: 2rem; border: 1px solid var(--card-border); transition: border-color .2s, box-shadow .2s; }
.benefit-card:hover { border-color: var(--green-soft); box-shadow: 0 4px 24px rgba(22,163,74,0.08); }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }
.benefit-who { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1rem; color: var(--text); margin-bottom: 1.25rem; }
.benefit-point { display: flex; gap: 10px; align-items: flex-start; padding: 0.4rem 0; font-size: 0.875rem; color: var(--text-muted); }
.benefit-check { width: 18px; height: 18px; border-radius: 50%; background: var(--green-mist); border: 1.5px solid var(--green-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.benefit-check svg { width: 9px; height: 9px; stroke: var(--green); stroke-width: 2; fill: none; }
.benefit-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.25rem; font-size: 0.83rem; font-weight: 600; color: var(--green); border-bottom: 1px solid transparent; transition: border-color .2s; }
.benefit-cta:hover { border-bottom-color: var(--green); }

/* ============================================================
   DIFF TABLE
   ============================================================ */
.diff-table-wrap { overflow-x: auto; margin-top: 3rem; }
table.diff-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.diff-table th { text-align: left; padding: 0.75rem 1rem; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); border-bottom: 2px solid var(--divider); }
.diff-table td { padding: 0.9rem 1rem; border-bottom: 1px solid var(--divider); color: var(--text-mid); vertical-align: middle; }
.diff-table tr.highlight { background: var(--green-mist); }
.diff-table tr.highlight td { font-weight: 600; color: var(--green-deep); }
.diff-table tr.highlight td:first-child { border-left: 3px solid var(--green); }
.check { color: var(--green); font-weight: 700; }
.cross { color: var(--divider); }
.partial { color: #d97706; }

/* ============================================================
   REGULATORIK
   ============================================================ */
.reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.reg-card { background: var(--card); border-radius: 12px; padding: 2rem; border: 1px solid var(--card-border); border-top: 3px solid var(--green); }
.reg-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.reg-law { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.1rem; color: var(--green-deep); }
.reg-year { font-size: 11px; font-weight: 600; padding: 3px 10px; background: var(--green-mist); color: var(--green); border-radius: 100px; border: 1px solid var(--green-soft); }
.reg-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ============================================================
   PROOF
   ============================================================ */
.proof-section { background: var(--bg-warm); padding: 5rem 48px; border-top: 1px solid var(--divider); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--divider); border: 1px solid var(--divider); border-radius: 12px; overflow: hidden; margin-top: 3rem; }
.proof-item { background: var(--card); padding: 1.75rem; }
.proof-status { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; }
.proof-item h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--text); margin-bottom: 0.4rem; }
.proof-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; font-weight: 300; }

/* ============================================================
   INVESTOR
   ============================================================ */
.investor-section { background: var(--text); padding: 5rem 48px; }
.investor-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.investor-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--green-light); text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.investor-label::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 1px; }
.investor-title { font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 3.5vw, 2.75rem); color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1.25rem; }
.investor-title em { color: var(--green-light); font-style: normal; }
.investor-text { color: #9ca3af; line-height: 1.75; font-weight: 300; font-size: 0.95rem; margin-bottom: 1.25rem; }
.investor-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; }
.investor-metric { background: rgba(30,41,30,0.8); padding: 1.5rem; }
.investor-metric-num { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.6rem; color: var(--green-light); letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.investor-metric-label { font-size: 0.75rem; color: #6b7280; line-height: 1.4; }

/* ============================================================
   CONTACT — tabbed form
   ============================================================ */
.contact-section { background: var(--bg); padding: 6rem 48px; border-top: 1px solid var(--divider); }
.contact-header { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.contact-intro { color: var(--text-muted); font-size: 1rem; line-height: 1.7; font-weight: 300; margin-top: 0.5rem; }

/* Tabs */
.form-tabs { display: flex; gap: 6px; max-width: 800px; margin: 0 auto 1.5rem; background: var(--bg-warm); border: 1px solid var(--divider); border-radius: 12px; padding: 6px; }
.form-tab { flex: 1; padding: 10px 12px; border-radius: 8px; border: none; background: transparent; font-family: 'Roboto', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all .2s; }
.form-tab:hover { color: var(--green); }
.form-tab.active { background: var(--card); color: var(--green-deep); box-shadow: 0 1px 6px rgba(0,0,0,0.08); }

/* Panels */
.form-wrapper { max-width: 800px; margin: 0 auto 2.5rem; }
.form-panel { display: none; background: var(--card); border: 1px solid var(--card-border); border-radius: 16px; padding: 2.5rem; }
.form-panel.active { display: block; animation: panelIn .25s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.form-panel-header { margin-bottom: 1.75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--divider); }
.form-panel-header h3 { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--text); letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.form-panel-header p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* Fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 1rem; }
.form-field label { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.02em; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--card-border); border-radius: 8px; font-family: 'Roboto', sans-serif; font-size: 0.9rem; font-weight: 400; color: var(--text); background: var(--bg); transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; -webkit-appearance: none; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); font-weight: 300; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.1); }
.form-field input.error,
.form-field select.error,
.form-field textarea.error { border-color: #ef4444; }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b8f6b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px; cursor: pointer; }
.form-field.full { grid-column: 1 / -1; }

/* Privacy + submit */
.form-privacy { display: flex; gap: 10px; align-items: flex-start; margin: 1.25rem 0 1rem; }
.form-privacy input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.form-privacy label { font-size: 0.79rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; font-weight: 300; }
.form-privacy a { color: var(--green); font-weight: 500; }
.form-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.btn-submit { background: var(--green); color: #fff; padding: 12px 26px; border-radius: 8px; border: none; font-family: 'Roboto', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: background .2s, transform .15s; }
.btn-submit:hover { background: var(--green-deep); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-submit-dark { background: var(--text); }
.btn-submit-dark:hover { background: #0a0f0a; }
.form-hint { font-size: 0.79rem; color: var(--text-muted); font-weight: 300; }

/* Feedback */
.form-feedback { margin-top: 1rem; font-size: 0.875rem; font-weight: 500; border-radius: 8px; overflow: hidden; max-height: 0; transition: max-height .3s, padding .3s; }
.form-feedback.success { color: var(--green-deep); background: var(--green-mist); border: 1px solid var(--green-soft); padding: 12px 16px; max-height: 80px; }
.form-feedback.error { color: #991b1b; background: #fef2f2; border: 1px solid #fecaca; padding: 12px 16px; max-height: 80px; }

/* Contact person strip */
.contact-person { max-width: 800px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.5rem 2rem; }
.person-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-mist); border: 2px solid var(--green-soft); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1rem; color: var(--green-deep); flex-shrink: 0; }
.person-info h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--text); }
.person-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.2rem; font-weight: 300; }
.person-info a { font-size: 0.85rem; color: var(--green); font-weight: 500; }
.person-info a:hover { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--green-deep); padding: 2rem 48px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-top { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'Inter', sans-serif; font-weight: 900; color: #fff; font-size: 1.05rem; letter-spacing: -0.02em; }
.footer-logo img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--green-soft); }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; color: var(--emerald); width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   HAMBURGER (Mobile Nav Toggle)
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-wrapper, .season-inner, .investor-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .tech-grid, .benefits-grid, .reg-grid, .contact-grid, .proof-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  nav, nav.scrolled { padding-left: 24px; padding-right: 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(250,252,248,0.97);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--divider);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 24px 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--divider);
    font-size: 0.95rem;
  }
  .nav-links li:last-child a { border-bottom: none; margin-top: 0.5rem; text-align: center; }
  .section, .season-section, .investor-section, .proof-section, .contact-section, .stats-banner, .trust-bar, footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-left: 24px; padding-right: 24px; }
}



@media (max-width: 600px) {
  .tech-grid, .benefits-grid, .reg-grid, .contact-grid, .proof-grid, .problem-grid, .season-cards, .investor-metrics, .hero-stats-strip { grid-template-columns: 1fr; }
  .hero-stats, .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES (impressum.php, datenschutz.php)
   ============================================================ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}

.legal-content h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  line-height: 1.1;
}

.legal-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  margin-top: 40px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
}

.legal-content ul li { margin-bottom: 4px; }

.legal-content a { color: var(--green); }
.legal-content a:hover { color: var(--emerald); text-decoration: underline; }

.legal-stand {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  margin-top: -36px;
}

.legal-note {
  margin-top: 48px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--green-mist);
  border: 1px solid var(--green-soft);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .legal-content { padding: 60px 24px 80px; }
}

/* SOCIAL ICONS */
.footer-social { display: flex; flex-direction: row; gap: 1.25rem; align-items: center; }
.footer-social a { color: #fff; transition: color .2s, transform .2s; display: flex; }
.footer-social a:hover { color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* ============================================================
   JOBS / KARRIERE
   ============================================================ */

/* Hero — Split Layout */
.jobs-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, #1a4731 100%);
  padding: 0 48px;
}
.jobs-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.jobs-hero-text {
  padding: 0;
}
.jobs-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #a7f3c7;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
.jobs-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.jobs-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.jobs-hero-cta {
  display: inline-block;
  background: var(--green-light);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.jobs-hero-cta:hover {
  background: #16a34a;
  transform: translateY(-2px);
}
.jobs-hero-image img {
  width: auto;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2), 0 4px 20px rgba(22,163,74,0.15);
  display: block;
  margin: 0 auto;
}

/* ============================================================
   JOBS / KARRIERE — restliche Stile
   ============================================================ */

/* Stats bar */
.jobs-stats { background: var(--green); }
.jobs-stats-inner { max-width: 1200px; margin: 0 auto; padding: 1.5rem 48px; display: flex; gap: 3rem; align-items: center; }
.jobs-stat { display: flex; flex-direction: column; align-items: center; color: #fff; }
.jobs-stat strong { font-size: 1.4rem; font-weight: 800; font-family: 'Inter', sans-serif; }
.jobs-stat span { font-size: 0.8rem; opacity: 0.85; }

/* Main section */
.jobs-section { padding: 5rem 48px; background: var(--bg); }
.jobs-section-inner { max-width: 900px; margin: 0 auto; }
.jobs-section-title { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 900; color: var(--green-deep); margin-bottom: 0.5rem; }
.jobs-section-title--later { margin-top: 4rem; }
.jobs-section-sub { color: #6b7280; margin-bottom: 2.5rem; font-size: 1rem; }

/* Job Card */
.job-card { background: #fff; border: 1.5px solid #e5e7eb; border-radius: 12px; margin-bottom: 1.25rem; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.job-card:hover { border-color: var(--green-light); box-shadow: 0 4px 20px rgba(22,163,74,0.1); }
.job-card-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 1.5rem 1.75rem; gap: 1rem; cursor: pointer; }
.job-card-header h3 { font-size: 1.15rem; font-weight: 700; color: #111; margin: 0.4rem 0 0.6rem; }
.job-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 0.3rem; }
.job-badge--open   { background: #dcfce7; color: var(--green-deep); }
.job-badge--soon   { background: #fef9c3; color: #854d0e; }
.job-badge--future { background: #f3f4f6; color: #6b7280; }
.job-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.job-tags span { font-size: 0.78rem; color: #4b5563; background: #f3f4f6; padding: 2px 10px; border-radius: 20px; }
.job-toggle { display: flex; align-items: center; gap: 0.4rem; background: none; border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 0.45rem 0.9rem; font-size: 0.85rem; color: var(--green); cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background .2s, border-color .2s; }
.job-toggle:hover { background: #f0fdf4; border-color: var(--green); }
.job-toggle svg { width: 16px; height: 16px; transition: transform .25s; }
.job-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.job-card-body { display: none; padding: 0 1.75rem 1.75rem; border-top: 1px solid #f3f4f6; }
.job-card-body.open { display: block; }
.job-intro { color: #374151; line-height: 1.7; margin: 1.2rem 0 1.5rem; }
.job-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
.job-cols h4 { font-size: 0.9rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: .05em; }
.job-cols ul { padding-left: 1.2rem; margin: 0; }
.job-cols li { font-size: 0.9rem; color: #374151; line-height: 1.65; margin-bottom: 0.4rem; }
.job-apply-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1rem; border-top: 1px solid #f3f4f6; }
.job-preapply-note { color: #6b7280; font-size: 0.85rem; flex: 1; margin: 0; }

/* Series/Future Grid */
.jobs-series-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.job-card--future { opacity: 0.75; padding: 1.5rem 1.75rem; }
.job-card--future h3 { font-size: 1rem; font-weight: 700; color: #374151; margin: 0.5rem 0 0.6rem; }
.job-card--future p { font-size: 0.88rem; color: #6b7280; line-height: 1.65; margin-bottom: 1.2rem; }
.btn-outline-sm { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--green); border: 1.5px solid var(--green); padding: 0.4rem 1rem; border-radius: 6px; text-decoration: none; transition: background .2s, color .2s; }
.btn-outline-sm:hover { background: var(--green); color: #fff; }

/* Apply Modal */
.apply-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.apply-overlay[hidden] { display: none; }
.apply-modal { background: #fff; border-radius: 16px; padding: 2.5rem; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.apply-modal h2 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--green-deep); margin-bottom: 0.5rem; }
.apply-modal > p { color: #6b7280; font-size: 0.9rem; margin-bottom: 1.5rem; }
.apply-close { position: absolute; top: 1rem; right: 1.25rem; background: none; border: none; font-size: 1.6rem; line-height: 1; color: #9ca3af; cursor: pointer; }
.apply-close:hover { color: #374151; }
.apply-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.apply-field { display: flex; flex-direction: column; gap: 0.4rem; }
.apply-field--full { grid-column: 1 / -1; }
.apply-field label { font-size: 0.85rem; font-weight: 600; color: #374151; }
.apply-field input, .apply-field textarea { border: 1.5px solid #d1d5db; border-radius: 8px; padding: 0.65rem 0.9rem; font-size: 0.95rem; font-family: inherit; color: #111; transition: border-color .2s; resize: vertical; }
.apply-field input:focus, .apply-field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,0.12); }
.apply-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: #6b7280; cursor: pointer; }
.apply-check input { flex-shrink: 0; margin-top: 3px; }
.apply-check a { color: var(--green); }
.apply-feedback { margin: 1rem 0; padding: 1rem 1.25rem; border-radius: 8px; font-size: 0.9rem; }
.apply-feedback.success { background: #dcfce7; color: var(--green-deep); border: 1px solid #bbf7d0; }
.apply-feedback.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.apply-submit { margin-top: 1.25rem; width: 100%; }

/* File Drop */
.file-drop { position: relative; border: 2px dashed #d1d5db; border-radius: 8px; padding: 1rem 1.25rem; cursor: pointer; transition: border-color .2s, background .2s; display: flex; align-items: center; gap: 0.75rem; }
.file-drop:hover, .file-drop.drag-over { border-color: var(--green); background: #f0fdf4; }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-drop-label { font-size: 0.88rem; color: #6b7280; }
.file-drop-name { font-size: 0.85rem; color: var(--green-deep); font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .jobs-hero { padding: 0 1.25rem; }
  .jobs-hero-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .jobs-hero-text { padding: 0; }
  .jobs-hero-image { display: flex; justify-content: center; }
  .jobs-hero-image img { width: 100%; max-width: 480px; height: auto; }
  .jobs-stats-inner { padding: 1.25rem; gap: 1.5rem; flex-wrap: wrap; }
  .jobs-section { padding: 3rem 1.25rem; }
  .job-card-header { flex-direction: column; }
  .job-toggle { align-self: flex-start; }
  .job-cols { grid-template-columns: 1fr; gap: 1rem; }
  .jobs-series-grid { grid-template-columns: 1fr; }
  .apply-form-grid { grid-template-columns: 1fr; }
  .apply-modal { padding: 1.5rem; }
}

/* Schema Stack — Technologie-Sektion */
.schema-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 3rem 0;
}
.schema-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--divider);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: block;
  background: #fff;
}
.schema-item p {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.schema-item p strong {
  color: var(--text);
}

/* ════════════════════════════════════════════════════════════
   EN — Investor Landingpage (/en)
════════════════════════════════════════════════════════════ */

/* Hero */
.en-hero { padding: 80px 0 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.en-hero h1 { color: var(--text); }
.en-hero h1 em { color: var(--green); font-style: italic; }
.en-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.en-stat-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; position: relative; overflow: hidden; }
.en-stat-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); }
.en-stat-value { font-family: "Inter", sans-serif; font-weight: 900; font-size: 2rem; color: var(--green-deep); line-height: 1; margin-bottom: 4px; }
.en-stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; line-height: 1.4; }

/* Proof Strip */
.en-proof-strip { padding: 0 0 28px; }
.en-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.en-proof-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.en-proof-kicker { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 6px; }
.en-proof-title { font-weight: 700; color: var(--green-deep); font-size: 0.95rem; line-height: 1.35; }
.en-proof-copy { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-top: 6px; }

/* Stats Band */
.en-band { background: var(--green-deep); padding: 56px 0; }
.en-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.en-band-val { font-family: "Inter", sans-serif; font-weight: 900; font-size: 2.2rem; color: var(--green-light); line-height: 1; margin-bottom: 6px; }
.en-band-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* Technology */
.en-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.en-how-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; }
.en-how-num { font-family: "Inter", sans-serif; font-weight: 900; font-size: 2.5rem; color: var(--green-soft); line-height: 1; margin-bottom: 14px; }
.en-how-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; }
.en-how-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Market & Regulation */
.en-market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.en-market-points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.en-market-points li { display: flex; gap: 12px; font-size: 0.95rem; color: var(--text-mid); line-height: 1.6; }
.en-market-points li::before { content: "\2192"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.en-law-cards { display: flex; flex-direction: column; gap: 14px; }
.en-law-card { background: var(--green-mist); border-left: 4px solid var(--green); border-radius: 0 10px 10px 0; padding: 16px 20px; }
.en-law-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--green-deep); margin-bottom: 4px; }
.en-law-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* Business Model */
.en-model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.en-model-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; }
.en-model-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-deep); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.en-model-icon { width: 32px; height: 32px; background: var(--green-mist); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.en-model-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* Comparison Table */
.en-comp-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.en-comp-table thead { background: var(--green-deep); color: #fff; }
.en-comp-table th { padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.82rem; }
.en-comp-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.en-comp-table tr:last-child td { border-bottom: none; }
.en-comp-table tr.en-gh { background: var(--green-mist); font-weight: 700; }
.en-comp-table tr.en-gh td { color: var(--green-deep); }
.en-check  { color: var(--green); }
.en-partial { color: #f59e0b; }
.en-cross  { color: #d1d5db; }

/* Contact Section */
.en-contact-wrap { background: #0f3d20; padding: 80px 0; border-bottom: 3px solid rgba(255,255,255,0.08); }
.en-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.en-contact-left h2 { font-family: "Inter", sans-serif; font-weight: 900; font-size: clamp(1.8rem,3vw,2.4rem); color: #fff; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.en-contact-left h2 em { color: var(--green-light); font-style: normal; }
.en-contact-left p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.en-contact-person { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.en-avatar { width: 48px; height: 48px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; flex-shrink: 0; }
.en-contact-person h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.en-contact-person p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 0; }

/* Investor Box */
.en-investor-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 18px 20px; margin: 22px 0 0; }
.en-investor-box h3 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.en-investor-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 0; padding: 0; }
.en-investor-box li { color: rgba(255,255,255,0.72); font-size: 0.88rem; line-height: 1.55; display: flex; gap: 10px; }
.en-investor-box li::before { content: "✓"; color: var(--green-light); font-weight: 700; flex-shrink: 0; }

/* Form */
.en-form { display: flex; flex-direction: column; gap: 12px; }
.en-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.en-form input,
.en-form select,
.en-form textarea { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; color: #fff; font-family: "Roboto", sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; box-sizing: border-box; }
.en-form input::placeholder,
.en-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.en-form input:focus,
.en-form select:focus,
.en-form textarea:focus { border-color: var(--green-light); }
.en-form select { color: rgba(255,255,255,0.6); }
.en-form select option { background: var(--green-deep); color: #fff; }
.en-form textarea { min-height: 90px; resize: vertical; }
.en-form-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.55; }
.en-privacy { display: flex; gap: 10px; align-items: flex-start; font-size: 0.8rem; color: rgba(255,255,255,0.5); cursor: pointer; }
.en-privacy input { width: auto; flex-shrink: 0; margin-top: 2px; }
.en-privacy a { color: rgba(255,255,255,0.7); }
.en-submit { background: var(--green); color: #fff; border: none; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer; transition: background 0.2s; font-family: "Roboto", sans-serif; width: 100%; }
.en-submit:hover { background: var(--green-light); }
#en-form-msg { padding: 12px 16px; border-radius: 8px; font-size: 0.88rem; display: none; }
#en-form-msg.success { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.3); }
#en-form-msg.error   { background: rgba(239,68,68,0.15);  color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

/* Responsive — EN */
@media (max-width: 900px) {
  .en-hero, .en-market-grid, .en-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .en-how-grid, .en-model-grid, .en-proof-grid { grid-template-columns: 1fr; }
  .en-band-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .en-form-row { grid-template-columns: 1fr; }
  .en-comp-table { font-size: 0.78rem; }
  .en-comp-table th, .en-comp-table td { padding: 10px 10px; }
}
