/* ════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════ */
.hero{
  padding:160px 0 80px;
  position:relative;overflow:hidden;text-align:center;
}
/* Animated mesh */
.hero-mesh{
  position:absolute;inset:0;z-index:0;pointer-events:none;overflow:hidden;
}
.hero-mesh-orb{
  position:absolute;border-radius:50%;
  filter:blur(90px);
  animation:orb-drift 14s ease-in-out infinite alternate;
}
.hero-mesh-orb:nth-child(1){
  width:600px;height:600px;background:rgba(6,95,70,0.04);
  top:-180px;left:-100px;animation-delay:0s;
}
.hero-mesh-orb:nth-child(2){
  width:500px;height:500px;background:rgba(10,122,90,0.03);
  top:-100px;right:-80px;animation-delay:-5s;animation-duration:18s;
}
.hero-mesh-orb:nth-child(3){
  width:700px;height:400px;background:rgba(6,95,70,0.025);
  bottom:-200px;left:50%;transform:translateX(-50%);
  animation-delay:-9s;animation-duration:22s;
}
@keyframes orb-drift{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(40px,30px) scale(1.06)}
}
.orb3-fix{bottom:-200px;left:50%;transform:translateX(-50%)}
/* dot grid */
.hero-dots{
  position:absolute;inset:0;z-index:0;
  background-image:radial-gradient(circle,rgba(33,37,41,0.06) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:radial-gradient(ellipse 80% 70% at 50% 0,black 20%,transparent 100%);
}
.hero-content{position:relative;z-index:1}

.hero-pill{margin-bottom:30px}
.hero-chip{
  display:inline-block;
  background:#0d1a14;color:#fff;
  border-radius:12px;padding:3px 16px 5px;
  font-style:normal;white-space:nowrap;
  position:relative;top:-3px;
  letter-spacing:-.01em;
}
.hero h1{
  font-family:'Satoshi',sans-serif;
  font-size:clamp(38px,6.2vw,80px);font-weight:800;
  letter-spacing:-.04em;line-height:1.03;
  color:var(--text);max-width:920px;margin:0 auto 28px;
}
.hero-sub{
  max-width:580px;margin:0 auto 44px;
  font-size:clamp(16px,2vw,20px);
  color:var(--text-3);line-height:1.7;font-weight:400;
}
.hero-btns{
  display:flex;align-items:center;justify-content:center;
  gap:12px;flex-wrap:wrap;margin-bottom:20px;
}
.hero-trust{
  display:flex;align-items:center;justify-content:center;
  gap:20px;flex-wrap:wrap;
  font-size:13px;color:var(--text-4);
}
.hero-trust-item{display:flex;align-items:center;gap:5px}
.hero-trust-item svg{width:14px;height:14px;stroke:var(--accent)}

/* Hero screenshot */
.hero-visual{position:relative;z-index:1;max-width:1000px;margin:64px auto 0;overflow:visible}
.browser-chrome{
  background:var(--bg-2);border:1px solid var(--border);
  border-radius:var(--r-2xl) var(--r-2xl) 0 0;
  padding:14px 18px;display:flex;align-items:center;gap:12px;
}
.browser-dots{display:flex;gap:6px}
.browser-dot{width:11px;height:11px;border-radius:50%}
.browser-dot:nth-child(1){background:#FF5F57}
.browser-dot:nth-child(2){background:#FFBD2E}
.browser-dot:nth-child(3){background:#28C840}
.browser-url{
  flex:1;max-width:320px;margin:0 auto;
  background:var(--border);border-radius:7px;
  padding:5px 14px;font-size:12px;color:var(--text-3);text-align:center;
}
.browser-screen{
  border:1px solid var(--border);border-top:none;
  border-radius:0 0 var(--r-2xl) var(--r-2xl);
  overflow:hidden;background:var(--bg-2);
  box-shadow:var(--sh-xl);
}
.browser-screen img,.browser-screen video{width:100%;display:block}

/* Float stats on screenshot */
.hero-floats{position:absolute;inset:0;pointer-events:none;overflow:visible}
.fcard{
  position:absolute;background:rgba(255,255,255,.95);
  border:1px solid var(--border);border-radius:var(--r-lg);
  padding:14px 18px;
  box-shadow:0 8px 32px rgba(33,37,41,.12),0 2px 8px rgba(33,37,41,.06);
  backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  animation:float-y 5s ease-in-out infinite;
  white-space:nowrap;
}
.fcard:nth-child(2){animation-delay:-2.2s;animation-duration:6.5s}
.fcard:nth-child(3){animation-delay:-1s;animation-duration:7.2s}
.fcard:nth-child(4){animation-delay:-3.8s;animation-duration:5.8s}
@keyframes float-y{0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)}}

/* Metric cards (existing) */
.fcard-label{font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;color:var(--text-4);margin-bottom:3px}
.fcard-value{font-family:'Satoshi',sans-serif;font-size:22px;font-weight:800;letter-spacing:-.035em;color:var(--text)}
.fcard-value.green{background:linear-gradient(135deg,#065F46 0%,#0A7A5A 55%,#0DA574 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.fcard-sub{font-size:11px;color:var(--text-3);margin-top:2px}
.fc-l{bottom:26%;left:-52px}
.fc-r{top:32%;right:-52px}

/* AI-generating card */
.fc-tl{top:48px;left:-44px}
.fcard-ai-row{display:flex;align-items:center;gap:6px;margin-bottom:5px}
.fcard-ai-pulse{
  width:8px;height:8px;border-radius:50%;background:var(--accent);
  animation:pulse-dot 1.8s ease-in-out infinite;flex-shrink:0;
}
.fcard-ai-tag{font-size:11px;font-weight:700;color:var(--accent);letter-spacing:.02em}
.fcard-ai-name{font-size:12px;color:var(--text-2);font-weight:500;margin-bottom:7px}
.fcard-typing{display:flex;gap:4px;align-items:center;height:14px}
.fcard-typing span{
  width:6px;height:6px;border-radius:50%;
  background:var(--border-2);
  animation:typing-bounce 1.3s infinite;
}
.fcard-typing span:nth-child(2){animation-delay:.18s}
.fcard-typing span:nth-child(3){animation-delay:.36s}
@keyframes typing-bounce{0%,60%,100%{transform:translateY(0);opacity:.45}30%{transform:translateY(-5px);opacity:1}}

/* Reply notification card */
.fc-br{bottom:52px;right:-44px}
.fcard-notif-head{display:flex;align-items:center;gap:6px;margin-bottom:5px}
.fcard-notif-led{width:8px;height:8px;border-radius:50%;background:#22c55e;flex-shrink:0}
.fcard-notif-title{font-size:12px;font-weight:700;color:var(--text);flex:1}
.fcard-notif-time{font-size:10px;color:var(--text-4)}
.fcard-notif-who{font-size:11px;color:var(--text-3);margin-bottom:4px}
.fcard-notif-msg{font-size:12px;color:var(--text-2);font-style:italic;max-width:180px;white-space:normal;line-height:1.45}

/* Mobile hero stats strip */
.hero-mobile-stats{
  display:none;margin-top:20px;
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-xl);overflow:hidden;
}
.hms-inner{display:flex}
.hms-item{flex:1;padding:14px 10px;text-align:center}
.hms-item+.hms-item{border-left:1px solid var(--border)}
.hms-value{font-family:'Satoshi',sans-serif;font-size:22px;font-weight:800;letter-spacing:-.03em;color:var(--text)}
.hms-value.green{background:linear-gradient(135deg,#065F46 0%,#0A7A5A 55%,#0DA574 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hms-label{font-size:11px;color:var(--text-4);margin-top:2px;line-height:1.3}

/* ════════════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════════════ */
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
}
.benefit-item{
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--r-xl);
  padding:40px 36px;
  display:flex;flex-direction:column;
  grid-column:span 2;
  transition:box-shadow .22s,transform .22s,border-color .22s;
}
.benefit-item:nth-child(4),
.benefit-item:nth-child(5){grid-column:span 3}
.benefit-item:hover{
  box-shadow:0 12px 40px rgba(6,95,70,.08),0 2px 8px rgba(33,37,41,.06);
  transform:translateY(-3px);
  border-color:var(--accent-border);
}
.benefit-icon{
  width:52px;height:52px;border-radius:14px;flex-shrink:0;
  background:var(--accent-soft);border:1px solid var(--accent-border);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:24px;transition:background .22s;
}
.benefit-item:hover .benefit-icon{background:var(--accent-mid)}
.benefit-icon svg{width:22px;height:22px;stroke:var(--accent);stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round}
.benefit-num{
  font-size:10px;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--text-4);margin-bottom:10px;
}
.benefit-title{
  font-family:'Satoshi',sans-serif;font-size:18px;font-weight:800;
  letter-spacing:-.025em;line-height:1.25;color:var(--text);margin-bottom:14px;
}
.benefit-body{font-size:13.5px;color:var(--text-3);line-height:1.72;flex:1}

/* ════════════════════════════════════════════════════
   LOGOS
════════════════════════════════════════════════════ */
.logos{padding:52px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.logos-inner{display:flex;align-items:center;gap:28px;flex-wrap:wrap}
.logos-label{
  font-size:12px;font-weight:500;color:var(--text-4);
  white-space:nowrap;flex-shrink:0;padding-right:28px;
  border-right:1px solid var(--border);
}
.logos-list{display:flex;align-items:center;gap:48px;flex:1;flex-wrap:wrap}
.logos-list img{height:36px;width:auto;max-width:120px;object-fit:contain}
.logo-ph{height:18px;background:var(--border);border-radius:4px;opacity:.55}

/* ════════════════════════════════════════════════════
   PERSONALIZED COMM v2 — numbered feature selector
════════════════════════════════════════════════════ */
.comm-v2{
  display:grid;grid-template-columns:1fr 1fr;
  border:1px solid var(--border);border-radius:var(--r-xl);
  overflow:hidden;background:var(--bg);
}
.comm-v2-left{
  border-right:1px solid var(--border);
  display:flex;flex-direction:column;
}
.comm-v2-head{
  padding:40px 40px 32px;
  border-bottom:1px solid var(--border);
}
.comm-v2-head .eyebrow{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:var(--accent);background:var(--accent-soft);border:1px solid var(--accent-border);
  border-radius:40px;padding:5px 12px;margin-bottom:16px;
}
.comm-v2-head h2{
  font-family:'Satoshi',sans-serif;
  font-size:clamp(20px,2.2vw,26px);font-weight:800;
  letter-spacing:-.03em;line-height:1.25;margin-bottom:10px;color:var(--text);
}
.comm-v2-head p{font-size:13.5px;color:var(--text-3);line-height:1.7;margin:0}
.comm-v2-items{flex:1}
.comm-item{
  display:flex;align-items:flex-start;gap:14px;
  padding:20px 36px;cursor:pointer;
  border-bottom:1px solid var(--border);
  border-left:3px solid transparent;
  transition:background 0.2s, border-left-color 0.2s;
}
.comm-item:last-child{border-bottom:none}
.comm-item:hover:not(.active){background:var(--bg-2)}
.comm-item.active{
  background:var(--accent-soft);
  border-left-color:var(--accent);
}
.comm-step{
  font-family:'Satoshi',sans-serif;font-size:10.5px;font-weight:800;
  letter-spacing:.07em;color:var(--text-4);min-width:18px;
  padding-top:4px;transition:color 0.2s;flex-shrink:0;
}
.comm-item.active .comm-step{color:var(--accent)}
.comm-item-ic{
  width:36px;height:36px;border-radius:9px;flex-shrink:0;
  background:var(--bg-3);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  transition:all 0.2s;
}
.comm-item.active .comm-item-ic{background:var(--accent-mid);border-color:var(--accent-border)}
.comm-item-ic svg{width:16px;height:16px;stroke:var(--text-3);stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke 0.2s}
.comm-item.active .comm-item-ic svg{stroke:var(--accent)}
.comm-item-body{flex:1}
.comm-item h4{font-family:'Satoshi',sans-serif;font-size:13.5px;font-weight:700;margin:0 0 4px;color:var(--text);line-height:1.3}
.comm-item p{font-size:12.5px;color:var(--text-3);line-height:1.65;margin:0}
.comm-inline-img{display:none;overflow:hidden;border-radius:var(--r-lg);border:1px solid var(--border);margin-top:14px}
.comm-inline-img img{width:100%;display:block;object-fit:cover;object-position:top left;max-height:220px}

.comm-v2-right{
  background:linear-gradient(145deg,var(--bg-2) 0%,#eef4f1 100%);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
}
.comm-browser{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.1);
  box-shadow:0 8px 40px rgba(0,0,0,.12);
  overflow:hidden;
}
.comm-browser-bar{
  background:#e8eaed;padding:9px 14px;
  display:flex;align-items:center;gap:8px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.comm-browser-dots{display:flex;gap:5px}
.comm-browser-dot{width:10px;height:10px;border-radius:50%}
.comm-browser-dot:nth-child(1){background:#FF5F57}
.comm-browser-dot:nth-child(2){background:#FFBD2E}
.comm-browser-dot:nth-child(3){background:#28C840}
.comm-browser-url{
  flex:1;background:#fff;border-radius:5px;
  padding:3px 10px;font-size:11px;color:#888;
  border:1px solid rgba(0,0,0,.1);margin-left:6px;
}
.comm-browser-screen{overflow:hidden;height:420px;background:#fff}
.comm-browser-screen img{
  width:100%;height:auto;display:block;
  transform-origin:top center;
  transition:opacity 0.25s ease;
}
.comm-browser-screen img.swapping{opacity:0}

/* ════════════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════════ */
.pricing-section{background:var(--bg)}
.pricing-toggle{
  display:flex;align-items:center;justify-content:center;
  gap:12px;margin-bottom:48px;
}
.pricing-toggle-label{font-size:14px;font-weight:500;color:var(--text-3)}
.pricing-toggle-label.active{color:var(--text);font-weight:600}
.toggle-switch{
  position:relative;width:44px;height:24px;cursor:pointer;
}
.toggle-switch input{opacity:0;width:0;height:0;position:absolute}
.toggle-track{
  position:absolute;inset:0;background:var(--border-2);
  border-radius:40px;transition:background .2s;
}
.toggle-switch input:checked + .toggle-track{background:var(--accent)}
.toggle-knob{
  position:absolute;top:3px;left:3px;width:18px;height:18px;
  background:#fff;border-radius:50%;transition:transform .2s;
  box-shadow:0 1px 4px rgba(0,0,0,.15);
}
.toggle-switch input:checked ~ .toggle-knob{transform:translateX(20px)}
.pricing-badge{
  display:inline-block;background:var(--accent-soft);
  border:1px solid var(--accent-border);color:var(--accent);
  font-size:11px;font-weight:700;letter-spacing:.05em;
  padding:3px 10px;border-radius:40px;margin-left:8px;
}
.pricing-grid{
  display:grid;grid-template-columns:1fr 1.08fr 1fr;
  gap:20px;align-items:center;
}
.price-card{
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-2xl);padding:40px 36px;
  display:flex;flex-direction:column;
  transition:transform 0.25s,box-shadow 0.25s,border-color 0.25s;
}
.price-card:hover{transform:translateY(-5px);box-shadow:var(--sh-lg)}
.price-card.featured{
  background:var(--text);border-color:var(--text);
  color:#fff;padding:52px 36px;
  box-shadow:var(--sh-xl);
  transform:none;
}
.price-card.featured:hover{transform:translateY(-5px);box-shadow:0 28px 80px rgba(33,37,41,.22)}
.price-name{
  font-family:'Satoshi',sans-serif;
  font-size:22px;font-weight:800;letter-spacing:-.025em;margin-bottom:6px;
}
.price-name-sub{font-size:13px;color:var(--text-3);margin-bottom:28px}
.price-card.featured .price-name-sub{color:rgba(255,255,255,.45)}
.price-divider{height:1px;background:var(--border);margin-bottom:28px}
.price-card.featured .price-divider{background:rgba(255,255,255,.12)}
.price-features{list-style:none;display:flex;flex-direction:column;gap:14px;margin-bottom:36px;flex:1}
.price-feature{display:flex;align-items:flex-start;gap:12px;font-size:14px;line-height:1.55}
.price-feature strong{font-weight:600}
.price-check{
  flex-shrink:0;margin-top:2px;
  width:18px;height:18px;border-radius:50%;
  background:var(--accent-soft);border:1px solid var(--accent-border);
  display:flex;align-items:center;justify-content:center;
}
.price-card.featured .price-check{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2)}
.price-check svg{width:10px;height:10px;stroke:var(--accent);stroke-width:2.5}
.price-card.featured .price-check svg{stroke:#fff}
.price-amount{margin-bottom:6px}
.price-amount-number{
  font-family:'Satoshi',sans-serif;
  font-size:52px;font-weight:800;letter-spacing:-.04em;line-height:1;
}
.price-amount-suffix{font-size:15px;font-weight:500;color:var(--text-3);margin-left:4px}
.price-card.featured .price-amount-suffix{color:rgba(255,255,255,.5)}
.price-note{font-size:12px;color:var(--text-4);margin-bottom:32px}
.price-card.featured .price-note{color:rgba(255,255,255,.35)}
.price-footnote{font-size:12px;color:var(--text-4);margin-top:16px;line-height:1.6}
.price-card.featured .price-footnote{color:rgba(255,255,255,.35)}
.price-partner{
  font-family:'Satoshi',sans-serif;
  font-size:14px;font-weight:700;color:var(--text);margin-bottom:8px;
}
.price-amount-prefix{font-size:16px;font-weight:500;margin-right:2px}
.btn-pricing-primary{
  width:100%;justify-content:center;
  background:#fff;color:var(--text);
  font-size:15px;font-weight:700;padding:15px 24px;
  border-radius:var(--r-lg);
  transition:background .2s,transform .15s,box-shadow .2s;
}
.btn-pricing-primary:hover{background:rgba(255,255,255,.9);transform:translateY(-1px);box-shadow:0 6px 20px rgba(0,0,0,.15)}
.btn-pricing-primary:active{transform:translateY(0)}
.btn-pricing-ghost{
  width:100%;justify-content:center;
  background:transparent;border:1.5px solid var(--border-2);
  color:var(--text-2);font-size:15px;font-weight:600;padding:14px 24px;
  border-radius:var(--r-lg);
  transition:border-color .2s,color .2s,transform .15s;
}
.btn-pricing-ghost:hover{border-color:var(--text-3);color:var(--text);transform:translateY(-1px)}
.btn-pricing-ghost:active{transform:translateY(0)}

/* ════════════════════════════════════════════════════
   FEATURES — SHOWCASE TABS
════════════════════════════════════════════════════ */
.feat-section{background:var(--bg-2)}

/* Tab strip */
/* ════════════════════════════════════════════════════
   FEATURES — Vertical Side Tabs
════════════════════════════════════════════════════ */
.fv-wrap{
  display:grid;grid-template-columns:216px 1fr;
  border:1px solid var(--border);border-radius:var(--r-xl);
  overflow:hidden;background:var(--bg);
}
.fv-nav{
  border-right:1px solid var(--border);
  padding:8px;display:flex;flex-direction:column;gap:2px;
}
.fv-btn{
  display:flex;align-items:center;gap:10px;
  width:100%;padding:11px 12px;border-radius:var(--r-md);
  border:none;background:transparent;cursor:pointer;
  text-align:left;transition:background .18s;
}
.fv-btn:hover{background:var(--bg-2)}
.fv-btn.active{background:var(--accent-soft)}
.fv-ic{
  width:28px;height:28px;flex-shrink:0;border-radius:7px;
  background:var(--bg-3);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  transition:background .18s,border-color .18s;
}
.fv-btn.active .fv-ic{background:var(--accent-mid);border-color:var(--accent-border)}
.fv-ic svg{width:13px;height:13px;stroke:var(--text-3);stroke-width:1.85;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke .18s}
.fv-btn.active .fv-ic svg{stroke:var(--accent)}
.fv-lbl{font-size:12.5px;font-weight:600;color:var(--text-2);transition:color .18s;line-height:1.3}
.fv-btn.active .fv-lbl{color:var(--accent)}
.fv-panel{display:none}
.fv-panel.active{display:grid;grid-template-columns:1fr 1fr}
.fv-p-text{
  padding:44px 40px;border-right:1px solid var(--border);
  display:flex;flex-direction:column;justify-content:center;
}
.fv-p-tag{
  font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--accent);margin-bottom:12px;
}
.fv-p-text h3{
  font-family:'Satoshi',sans-serif;
  font-size:22px;font-weight:800;letter-spacing:-.03em;
  line-height:1.2;margin-bottom:12px;color:var(--text);
}
.fv-p-text p{font-size:14px;color:var(--text-3);line-height:1.75;margin-bottom:20px}
.fv-bullets{list-style:none;display:flex;flex-direction:column;gap:8px;margin-bottom:24px}
.fv-bullets li{
  display:flex;align-items:flex-start;gap:9px;
  font-size:13px;color:var(--text-2);line-height:1.5;
}
.fv-bullets li::before{
  content:'';flex-shrink:0;margin-top:5px;
  width:6px;height:6px;border-radius:50%;background:var(--accent);
}
.fv-stats{display:flex;gap:24px;padding-top:20px;border-top:1px solid var(--border)}
.fv-stat strong{
  display:block;font-family:'Satoshi',sans-serif;
  font-size:24px;font-weight:800;letter-spacing:-.04em;
  color:var(--text);line-height:1;margin-bottom:3px;
}
.fv-stat span{font-size:11.5px;color:var(--text-4)}
.fv-p-visual-wrap{
  background:linear-gradient(145deg,var(--bg-2) 0%,#eef4f1 100%);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
}
.fv-browser{
  width:100%;border-radius:12px;
  border:1px solid rgba(0,0,0,.1);
  box-shadow:0 8px 40px rgba(0,0,0,.12);
  overflow:hidden;
}
.fv-p-visual{overflow:hidden;height:380px;background:#fff}
.fv-p-visual img{width:100%;height:auto;display:block;transform-origin:top center;transition:opacity .2s ease}

/* ════════════════════════════════════════════════════
   USE CASES
════════════════════════════════════════════════════ */
.uc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.uc-card{
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-xl);overflow:hidden;
  transition:transform 0.22s,border-color 0.22s,box-shadow 0.22s;
}
.uc-card:hover{transform:translateY(-4px);border-color:var(--accent-border);box-shadow:var(--sh-md)}
.uc-card-img{height:160px;overflow:hidden;border-bottom:1px solid var(--border);background:var(--bg-3)}
.uc-card-img img{width:100%;height:100%;object-fit:cover;object-position:top left;display:block;transition:transform 0.35s}
.uc-card:hover .uc-card-img img{transform:scale(1.04)}
.uc-card-body{padding:28px 28px}
.uc-num{
  font-family:'Satoshi',sans-serif;
  font-size:11px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--accent);margin-bottom:16px;
}
.uc-card h3{font-family:'Satoshi',sans-serif;font-size:19px;font-weight:700;letter-spacing:-.02em;margin-bottom:10px}
.uc-card p{font-size:14px;color:var(--text-3);line-height:1.7}

/* ════════════════════════════════════════════════════
   USE CASES — Pill Tabs + Showcase
════════════════════════════════════════════════════ */
.uc-pill-strip{
  display:flex;gap:8px;overflow-x:auto;flex-wrap:wrap;
  justify-content:center;margin-bottom:28px;
  scrollbar-width:none;-webkit-overflow-scrolling:touch;
}
.uc-pill-strip::-webkit-scrollbar{display:none}
.uc-pill{
  flex:0 0 auto;padding:9px 20px;border-radius:40px;
  border:1.5px solid var(--border);background:transparent;
  font-size:13px;font-weight:600;color:var(--text-3);
  cursor:pointer;transition:all .18s;white-space:nowrap;
}
.uc-pill:hover{border-color:var(--border-2);color:var(--text-2)}
.uc-pill.active{background:var(--text);border-color:var(--text);color:#fff}
.uc-panel{display:none}
.uc-panel.active{
  display:grid;grid-template-columns:1fr 300px;
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-xl);overflow:hidden;min-height:280px;
}
.uc-panel-text{
  padding:48px 44px;
  display:flex;flex-direction:column;justify-content:center;
  border-right:1px solid var(--border);
}
.uc-panel-label{
  font-size:10px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--accent);margin-bottom:12px;
}
.uc-panel-text h3{
  font-family:'Satoshi',sans-serif;
  font-size:24px;font-weight:800;letter-spacing:-.03em;
  line-height:1.2;margin-bottom:12px;color:var(--text);
}
.uc-panel-text p{font-size:15px;color:var(--text-3);line-height:1.72;margin-bottom:24px}
.uc-benefits{list-style:none;display:flex;flex-direction:column;gap:10px}
.uc-benefits li{
  display:flex;align-items:flex-start;gap:11px;
  font-size:14px;color:var(--text-2);line-height:1.5;
}
.uc-chk{
  width:20px;height:20px;flex-shrink:0;border-radius:50%;
  background:var(--accent-soft);border:1px solid var(--accent-border);
  display:flex;align-items:center;justify-content:center;margin-top:1px;
}
.uc-chk svg{width:10px;height:10px;stroke:var(--accent);stroke-width:2.5;fill:none;stroke-linecap:round;stroke-linejoin:round}
.uc-panel-aside{
  background:var(--bg-2);
  display:flex;flex-direction:column;
  align-items:stretch;justify-content:center;padding:36px 28px;gap:12px;
}
.uc-metric{
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-lg);padding:24px 20px;text-align:center;
}
.uc-metric-num{
  font-family:'Satoshi',sans-serif;
  font-size:34px;font-weight:800;letter-spacing:-.05em;
  color:var(--text);line-height:1;margin-bottom:5px;
}
.uc-metric-lbl{font-size:12px;color:var(--text-4);line-height:1.4}

/* ════════════════════════════════════════════════════
   STATS — Zahlen aus der Praxis
════════════════════════════════════════════════════ */
.stats-section{background:var(--bg)}
.stats-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--border);
  border:1px solid var(--border);border-radius:var(--r-xl);
  overflow:hidden;
}
.stat-item{
  background:var(--bg);padding:40px 28px;text-align:center;
}
.stat-num{
  font-family:'Satoshi',sans-serif;
  font-size:clamp(36px,4vw,54px);font-weight:800;
  letter-spacing:-0.04em;color:var(--text);
  margin-bottom:10px;line-height:1;
}
.stat-label{font-size:14px;color:var(--text);font-weight:600;line-height:1.4;margin-bottom:4px}
.stat-sub{font-size:13px;color:var(--text-3);font-weight:400;line-height:1.5}
.stats-source{
  text-align:center;margin-top:20px;
  font-size:12px;color:var(--text-4);letter-spacing:.02em;
}

/* ════════════════════════════════════════════════════
   DIGIRELATION USE CASE STORY
════════════════════════════════════════════════════ */
.dr-story{
  margin-top:52px;
  display:grid;grid-template-columns:1fr 1fr;
  border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;
  background:var(--bg);
}
.dr-story-left{
  padding:52px 48px;
  display:flex;flex-direction:column;justify-content:center;
  border-right:1px solid var(--border);
}
.dr-story-eyebrow{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;
  color:var(--accent);background:var(--accent-soft);border:1px solid var(--accent-border);
  border-radius:40px;padding:5px 12px;margin-bottom:20px;align-self:flex-start;
}
.dr-story-left h2{
  font-family:'Satoshi',sans-serif;
  font-size:clamp(22px,2.5vw,30px);font-weight:800;letter-spacing:-.03em;
  line-height:1.2;margin-bottom:16px;color:var(--text);
}
.dr-story-left p{
  font-size:15px;color:var(--text-3);line-height:1.78;margin-bottom:12px;
}
.dr-story-left p+p{margin-top:0}
.dr-story-cta{
  margin-top:24px;
  display:inline-flex;align-items:center;gap:6px;
  font-size:14px;font-weight:700;color:var(--accent);
  transition:gap .15s;
}
.dr-story-cta:hover{gap:10px}

.dr-story-right{
  background:#0d1a14;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:52px 48px;text-align:center;
  position:relative;overflow:hidden;
}
.dr-story-right::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(6,95,70,.4),transparent 70%);
}
.dr-story-right::after{
  content:'';position:absolute;inset:0;
  background-image:radial-gradient(circle,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:28px 28px;
}
.dr-story-img-wrap{
  position:relative;z-index:1;width:100%;border-radius:var(--r-xl);overflow:hidden;
  margin-bottom:24px;aspect-ratio:16/9;
}
.dr-story-img-wrap img{width:100%;height:100%;object-fit:cover;display:block}
.dr-story-nums{position:relative;z-index:1;display:flex;flex-direction:column;gap:24px;width:100%}
.dr-story-num-item{
  background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-lg);padding:22px 28px;text-align:left;
}
.dr-story-val{
  font-family:'Satoshi',sans-serif;font-size:36px;font-weight:800;
  letter-spacing:-.04em;color:#fff;line-height:1;margin-bottom:5px;
}
.dr-story-val-sub{font-size:13px;color:rgba(255,255,255,.5);line-height:1.4}

/* old case-wrap — kept for layout reference but replaced */
.case-wrap{
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-2xl);overflow:hidden;
  box-shadow:var(--sh-md);
}
.case-header{
  background:var(--text);padding:40px 48px;
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
}
.case-header-left h3{
  font-family:'Satoshi',sans-serif;
  font-size:26px;font-weight:800;color:#fff;letter-spacing:-.025em;margin-bottom:5px;
}
.case-header-left p{font-size:14px;color:rgba(255,255,255,.5)}
.case-badges{display:flex;gap:10px;flex-wrap:wrap}
.case-badge{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.7);font-size:12px;font-weight:600;letter-spacing:.04em;
  padding:5px 12px;border-radius:40px;
}
.case-body{padding:48px;display:grid;grid-template-columns:1fr 2fr;gap:48px;align-items:start}
.case-desc{font-size:15px;color:var(--text-2);line-height:1.75}
.case-kpis{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.kpi{background:var(--bg-2);border:1px solid var(--border);border-radius:var(--r-lg);padding:22px 24px}
.kpi-label{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--text-4);margin-bottom:6px}
.kpi-value{
  font-family:'Satoshi',sans-serif;
  font-size:38px;font-weight:800;letter-spacing:-.04em;
  color:var(--text);line-height:1;margin-bottom:3px;
}
.kpi-sub{font-size:12px;color:var(--text-4)}

/* ════════════════════════════════════════════════════
   COMPARISON TABLE
════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════
   COMPARISON — feature diff cards
════════════════════════════════════════════════════ */
/* shared icon badge — used in diff-cards and uc cards */
.card-icon{
  width:42px;height:42px;
  background:var(--accent-soft);border:1px solid var(--accent-border);
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;flex-shrink:0;
}
.card-icon svg{
  width:20px;height:20px;
  stroke:var(--accent);stroke-width:1.75;
  fill:none;stroke-linecap:round;stroke-linejoin:round;
}

/* ════════════════════════════════════════════════════
   COMPARISON — Premium Table
════════════════════════════════════════════════════ */
.cmp-v2{
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--sh-md);
}
.cmp-v2 table{width:100%;border-collapse:collapse;table-layout:fixed}
.cmp-v2 thead th{
  padding:20px 24px;border-bottom:1px solid var(--border);
  font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  vertical-align:middle;
}
.cmp-v2 thead th:first-child{text-align:left;color:var(--text-4);width:34%}
.cmp-v2 thead th:nth-child(2){text-align:center;color:var(--text-4);width:33%}
.cmp-v2 thead th:nth-child(3){
  text-align:center;width:33%;
  background:var(--accent-soft);
  border-left:2px solid var(--accent-border);
  border-top:3px solid var(--accent);
  border-bottom:2px solid var(--accent-border);
}
.cmp-th-gp{display:flex;flex-direction:column;align-items:center;gap:7px}
.cmp-th-gp .cmp-badge{
  display:inline-block;font-size:9px;font-weight:800;letter-spacing:.1em;text-transform:uppercase;
  color:#fff;background:var(--accent);border-radius:20px;padding:3px 10px;
}
.cmp-th-gp .cmp-name{color:var(--accent);font-size:12px;font-weight:700;letter-spacing:.04em}
.cmp-v2 tbody tr:hover td{background:rgba(0,0,0,.015)}
.cmp-v2 tbody tr:hover td:last-child{background:rgba(6,95,70,.06)}
.cmp-v2 tbody td{
  padding:16px 24px;border-bottom:1px solid var(--border);
  font-size:13px;vertical-align:middle;line-height:1.5;
}
.cmp-v2 tbody td:first-child{font-weight:600;color:var(--text);text-align:left;font-size:13px}
.cmp-v2 tbody td:nth-child(2){color:var(--text-4);text-align:center;font-size:13px}
.cmp-v2 tbody td:nth-child(3){
  background:var(--accent-soft);
  border-left:2px solid var(--accent-border);
  font-weight:500;text-align:center;font-size:13px;color:var(--text);
}
.cmp-v2 tbody tr:last-child td{border-bottom:none}
.cmp-yes{display:inline-flex;align-items:center;justify-content:center;gap:6px;color:var(--accent);font-weight:600}
.cmp-yes::before{content:'';display:inline-block;width:18px;height:18px;border-radius:50%;background:var(--accent);flex-shrink:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}
.cmp-no{display:inline-flex;align-items:center;justify-content:center;gap:6px;color:var(--text-4)}
.cmp-no::before{content:'';display:inline-block;width:18px;height:18px;border-radius:50%;background:var(--bg-3);flex-shrink:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M6 6l6 6M12 6l-6 6' stroke='%2394A3B8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}
.cmp-tag{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--accent);background:var(--accent-mid);border:1px solid var(--accent-border);border-radius:20px;padding:2px 9px;margin-left:6px;vertical-align:middle}

/* ════════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════════ */
.team-section{background:var(--bg-2)}
.team-header{max-width:560px;margin-bottom:52px}
.team-person-grid{
  display:grid;grid-template-columns:0.78fr 0.78fr 1.44fr;
  gap:20px;align-items:stretch;
}
.team-person-card{
  background:var(--bg);border:1px solid var(--border);
  border-radius:var(--r-xl);overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform 0.25s,box-shadow 0.25s,border-color 0.25s;
}
.team-person-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--sh-lg);border-color:var(--border-2);
}
.team-person-photo{
  aspect-ratio:3/4;overflow:hidden;
  background:var(--bg-3);flex-shrink:0;
}
.team-person-photo img{
  width:100%;height:100%;object-fit:cover;
  object-position:center top;display:block;
  transition:transform 0.4s ease, filter 0.4s ease;
  filter:grayscale(100%);
}
.team-person-card:hover .team-person-photo img{filter:grayscale(80%)}
.team-person-card:hover .team-person-photo img{transform:scale(1.04)}
.team-person-info{
  padding:22px 24px 26px;
  border-top:1px solid var(--border);flex:1;
}
.team-person-name{
  font-family:'Satoshi',sans-serif;
  font-size:18px;font-weight:700;letter-spacing:-.02em;margin-bottom:5px;
}
.team-person-role{font-size:13px;color:var(--text-3)}
.team-desk-card .team-person-photo{aspect-ratio:unset;height:100%;min-height:320px}
.team-link{
  display:inline-flex;align-items:center;gap:5px;
  font-size:14px;font-weight:600;
  color:var(--text-2);transition:gap 0.15s,color 0.2s;
}
.team-link:hover{gap:9px;color:var(--text)}

/* ════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════ */
.faq-list{display:flex;flex-direction:column;gap:4px}
.faq-item{
  border:1px solid var(--border);border-radius:var(--r-lg);
  background:var(--bg);overflow:hidden;
  transition:border-color 0.2s,box-shadow 0.2s;
}
.faq-item.open{border-color:var(--accent-border);box-shadow:0 0 0 3px var(--accent-soft)}
.faq-q{
  padding:20px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  cursor:pointer;user-select:none;
}
.faq-q-text{font-family:'Satoshi',sans-serif;font-size:16px;font-weight:700;letter-spacing:-.01em}
.faq-icon{
  width:28px;height:28px;border-radius:50%;
  background:var(--bg-2);border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
  transition:all 0.22s;
}
.faq-item.open .faq-icon{background:var(--accent);border-color:var(--accent);transform:rotate(45deg)}
.faq-icon svg{width:12px;height:12px;stroke:var(--text-3);stroke-width:2.5;transition:stroke 0.22s}
.faq-item.open .faq-icon svg{stroke:#fff}
.faq-a{
  max-height:0;overflow:hidden;transition:max-height 0.35s cubic-bezier(0,1,.5,1);
}
.faq-a-inner{
  padding:0 24px 22px;font-size:14px;color:var(--text-3);line-height:1.75;
  border-top:1px solid var(--border);padding-top:16px;margin-top:0;
}
.faq-item.open .faq-a{max-height:300px}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.hero-scroll-cue{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  color:var(--text-4);font-size:11px;font-weight:500;letter-spacing:.06em;
  animation:fade-in-cue 0.8s 1.4s both;
  transition:opacity 0.3s;
}
.hero-scroll-cue-icon{
  width:32px;height:32px;border-radius:50%;
  border:1.5px solid var(--border);background:rgba(255,255,255,.85);
  display:flex;align-items:center;justify-content:center;
  animation:bounce-cue 2.2s 1.4s ease-in-out infinite;
}
.hero-scroll-cue-icon svg{width:14px;height:14px;stroke:var(--text-4);stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
@keyframes bounce-cue{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}
@keyframes fade-in-cue{from{opacity:0}to{opacity:1}}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Tablet
════════════════════════════════════════════════════ */
@media(max-width:1020px){
  .feat-grid{grid-template-columns:repeat(2,1fr)}
  .blog-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr 1fr}
  .pricing-grid{grid-template-columns:1fr}
  .price-card.featured{padding:40px 36px}
  .blog-section-head{flex-direction:column;align-items:flex-start;gap:14px}
  .benefits-grid{grid-template-columns:repeat(4,1fr)}
  .benefit-item{grid-column:span 2}
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5){grid-column:span 2}
  .dr-story{grid-template-columns:1fr}
  .dr-story-left{border-right:none;border-bottom:1px solid var(--border)}
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — 900px
════════════════════════════════════════════════════ */
@media(max-width:900px){
  .fv-wrap{grid-template-columns:1fr}
  .fv-nav{
    flex-direction:row;overflow-x:auto;
    border-right:none;border-bottom:1px solid var(--border);
    padding:6px;scrollbar-width:none;
  }
  .fv-nav::-webkit-scrollbar{display:none}
  .fv-btn{flex:0 0 auto;white-space:nowrap}
  .fv-panel.active{grid-template-columns:1fr}
  .fv-p-text{border-right:none;border-bottom:1px solid var(--border)}
  .fv-p-visual-wrap{padding:16px}
  .fv-p-visual{height:200px}
  .uc-panel.active{grid-template-columns:1fr}
  .uc-panel-aside{
    flex-direction:row;border-top:1px solid var(--border);
    padding:20px 24px;flex-wrap:wrap;
  }
  .uc-metric{flex:1;min-width:120px}
  .cmp-v2{overflow-x:auto}
  .cmp-v2 tbody td{padding:12px 16px;font-size:12.5px}
  .cmp-v2 thead th{padding:12px 16px;font-size:10px}
  .cmp-v2 thead th:first-child{width:34%}
  .cmp-v2 tbody td:nth-child(2){font-size:12px}
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Mobile (≤768px)
════════════════════════════════════════════════════ */
@media(max-width:768px){
  /* Nav */
  .nav-links,.nav-lang,.nav-cta .btn-ghost{display:none}
  .nav-hamburger{display:flex}
  .nav-inner{padding:0 20px}

  /* Global spacing */
  .wrap,.wrap-sm{padding:0 20px}
  .section{padding:72px 0}
  .section-sm{padding:56px 0}
  .section-head{margin-bottom:44px}

  /* Hero */
  .hero{padding:108px 0 52px}
  .hero-pill{margin-bottom:22px}
  .hero h1{margin-bottom:18px;line-height:1.16}
  .hero-sub{
    font-size:18px;font-weight:500;
    color:var(--text-2);
    line-height:1.58;
    max-width:100%;
    margin:0 auto 30px;
  }
  .hero-btns{flex-direction:column;align-items:stretch;gap:10px;max-width:360px;margin:0 auto 22px}
  .hero-btns .btn{justify-content:center;padding:15px 20px;font-size:15px}
  .hero-trust{gap:10px;flex-wrap:wrap;justify-content:center;font-size:12px}
  .hero-visual{margin-top:36px;max-width:100%}
  .fc-l,.fc-r,.fc-tl,.fc-br{display:none}
  .hero-mobile-stats{display:block;margin-top:12px}
  .hms-item{padding:16px 12px}
  .hms-value{font-size:24px}
  .hms-label{font-size:11.5px}

  /* Hero visual cap */
  .browser-screen{max-height:52vw;overflow:hidden}
  .browser-screen video{object-fit:cover;object-position:top center}

  /* Comm v2 — accordion */
  .comm-v2{grid-template-columns:1fr}
  .comm-v2-left{border-right:none}
  .comm-v2-right{display:none}
  .comm-v2-head{padding:28px 24px 22px}
  .comm-item{padding:18px 24px;flex-wrap:wrap}
  .comm-item.active .comm-inline-img{display:block;width:100%}

  /* Benefits */
  .benefits-grid{grid-template-columns:1fr 1fr}
  .benefit-item,.benefit-item:nth-child(4),.benefit-item:nth-child(5){grid-column:span 1}
  /* Stats */
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .stat-item{padding:28px 20px}
  /* dr-story */
  .dr-story-left,.dr-story-right{padding:36px 28px}
  .dr-story-nums{gap:16px}

  /* Use cases */
  .uc-pills{gap:6px}
  .uc-pill{padding:8px 14px;font-size:12px}
  .uc-grid{grid-template-columns:1fr}
  .case-body{grid-template-columns:1fr}
  .case-kpis{grid-template-columns:repeat(2,1fr)}
  .case-header{flex-direction:column;gap:12px}

  /* Team */
  .team-person-grid{grid-template-columns:1fr 1fr}
  .team-desk-card{grid-column:1/-1}
  .team-desk-card .team-person-photo{aspect-ratio:unset;height:200px;min-height:200px}

  /* Blog */
  .blog-grid{grid-template-columns:1fr 1fr}
  .blog-card-thumb{height:130px}

  /* CTA Final */
  .cta-final{padding:80px 0}
  .cta-final-btns{flex-direction:column;align-items:stretch;max-width:320px;margin:0 auto}
  .cta-final-btns .btn-white,
  .cta-final-btns .btn-outline-white{text-align:center;justify-content:center;padding:15px 20px}

  /* Footer */
  .footer-top{grid-template-columns:1fr 1fr}
  footer{padding:48px 0 0}

  /* Pricing */
  .pricing-grid{grid-template-columns:1fr}
  .price-card.featured{padding:32px 24px}

  /* Logos */
  .logos-inner{flex-direction:column;align-items:center;gap:16px;text-align:center}
  .logos-label{border-right:none;padding-right:0}
  .logos-list{
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:20px 24px;justify-items:center;width:100%;
  }
  .logos-list img{height:30px}
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Small Mobile (≤480px)
════════════════════════════════════════════════════ */
@media(max-width:480px){
  /* Tighter wrap */
  .wrap,.wrap-sm{padding:0 16px}
  .section{padding:60px 0}

  /* Hero */
  .hero{padding:90px 0 40px}
  .hero-pill{margin-bottom:18px}
  .hero h1{font-size:32px;letter-spacing:-.028em;line-height:1.2;margin-bottom:14px}
  .hero h1 br{display:none}
  .hero-sub{
    font-size:16px;font-weight:500;
    color:var(--text-2);
    line-height:1.65;
    margin:0 auto 22px;
  }
  .hero-btns{max-width:100%;gap:9px}
  .hero-btns .btn{padding:14px 18px;font-size:14.5px}
  .hero-trust{display:none}
  .hero-visual{margin-top:28px}

  /* Benefits */
  .benefits-grid{grid-template-columns:1fr}
  .benefit-item,.benefit-item:nth-child(4),.benefit-item:nth-child(5){grid-column:span 1}

  /* Stats: single column on very small */
  .stats-grid{grid-template-columns:1fr 1fr}

  /* Blog */
  .blog-grid{grid-template-columns:1fr}

  /* Team */
  .team-person-grid{grid-template-columns:1fr 1fr}

  /* Features tabs: icon-only compact pill buttons */
  .fv-btn{padding:8px 10px;flex-direction:column;align-items:center;gap:5px;min-width:56px;max-width:72px}
  .fv-btn .fv-lbl{font-size:10px;text-align:center;line-height:1.2;white-space:normal}
  .fv-ic{width:26px;height:26px}
  .fv-p-text{padding:24px 20px}

  /* Comm items tighter */
  .comm-v2-head{padding:24px 20px 18px}
  .comm-item{padding:16px 20px;gap:12px}
  .comm-step{font-size:10px}

  /* Comparison: stacked layout on mobile */
  .cmp-v2 table{display:flex;flex-direction:column;width:100%}
  .cmp-v2 thead{display:none}
  .cmp-v2 tbody{display:flex;flex-direction:column;width:100%}
  .cmp-v2 tbody tr{
    display:flex;flex-direction:column;width:100%;
    border-bottom:1px solid var(--border);
  }
  .cmp-v2 tbody tr:last-child{border-bottom:none}
  .cmp-v2 tbody td{
    display:block;width:100%;box-sizing:border-box;
    border:none !important;background:transparent !important;
    text-align:left !important;
  }
  .cmp-v2 tbody td:nth-child(2){display:none}
  .cmp-v2 tbody td:first-child{
    padding:14px 16px 5px;
    font-size:10px;font-weight:700;letter-spacing:.09em;
    text-transform:uppercase;color:var(--text-4);
  }
  .cmp-v2 tbody td:nth-child(3){
    padding:0 16px 14px;
    font-size:13.5px;font-weight:500;
    line-height:1.45;
  }
  .cmp-yes,.cmp-no{justify-content:flex-start}

  /* UC panels */
  .uc-panel-text{padding:24px 20px}
  .uc-panel-aside{padding:16px 20px}
  .uc-metric-num{font-size:26px}

  /* CTA */
  .cta-final{padding:64px 0}
  .cta-final-btns{max-width:100%}

  /* Footer */
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:8px}
  .footer-legal{flex-wrap:wrap;gap:12px}

  /* Case studies */
  .case-kpis{grid-template-columns:1fr}
  .uc-panel-aside{flex-direction:column}
}

/* ════════════════════════════════════════════════════
   HVCO — GUIDE LEAD-MAGNET SECTION
════════════════════════════════════════════════════ */
/* ════════════════════════════════════
   HVCO — Playbook-Block
════════════════════════════════════ */
.hvco-section{background:var(--bg-2)}

.hvco-card{
  display:grid;
  grid-template-columns:300px 1fr;
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:var(--sh-md);
  border:1px solid var(--border);
}

/* — Linke Panel (Akzent) — */
.hvco-panel{
  background:linear-gradient(160deg,#065F46 0%,#047857 60%,#059669 100%);
  padding:48px 36px;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:28px;
  position:relative;
  overflow:hidden;
}
.hvco-panel::after{
  content:'';position:absolute;
  bottom:-60px;right:-60px;
  width:200px;height:200px;
  border-radius:50%;
  background:rgba(255,255,255,0.06);
  pointer-events:none;
}
.hvco-panel-tag{
  font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(255,255,255,0.8);
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:20px;padding:4px 12px;
  align-self:flex-start;
}

/* Buch-Mockup */
.hvco-book-wrap{perspective:900px}
.hvco-book-3d{
  position:relative;
  width:130px;height:180px;
  transform-style:preserve-3d;
  transform:rotateY(-16deg) rotateX(2deg);
  filter:drop-shadow(8px 16px 28px rgba(0,0,0,0.30));
}
.hvco-book-front{
  position:absolute;inset:0;
  background:linear-gradient(155deg,#fff 0%,#F1F5F9 100%);
  border-radius:2px 6px 6px 2px;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:8px;padding:18px 14px;
  text-align:center;z-index:2;
}
.hvco-book-icon svg{opacity:.85}
.hvco-book-title{
  font-size:13px;font-weight:700;line-height:1.25;
  color:#065F46;
}
.hvco-book-sub{
  font-size:9px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;
  color:#6C757D;margin-top:auto;
}
.hvco-book-spine{
  position:absolute;top:0;bottom:0;left:-14px;width:14px;
  background:linear-gradient(to right,#034d38,#065f46);
  border-radius:6px 0 0 6px;
  transform:rotateY(-90deg) translateZ(0);
  transform-origin:right center;z-index:1;
}
.hvco-book-pages{
  position:absolute;top:3px;bottom:3px;right:-8px;width:8px;
  background:repeating-linear-gradient(to bottom,#e2e8f0 0px,#e2e8f0 1px,#f8fafc 1px,#f8fafc 3px);
  border-radius:0 2px 2px 0;z-index:1;
}

/* Facts-Liste */
.hvco-panel-facts{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:8px;
  align-self:stretch;
}
.hvco-panel-facts li{
  display:flex;align-items:center;gap:8px;
  font-size:13px;font-weight:500;color:rgba(255,255,255,0.9);
  line-height:1.4;
}
.hvco-panel-facts svg{flex-shrink:0}

/* — Rechte Panel (Form) — */
.hvco-body{
  background:var(--bg);
  padding:48px 52px;
  display:flex;flex-direction:column;gap:16px;
}
.hvco-h2{
  font-size:clamp(22px,2.2vw,28px);font-weight:700;
  line-height:1.2;margin:0;color:var(--text);
}
.hvco-lead{
  font-size:15px;color:var(--text-3);line-height:1.65;margin:0;
}
.hvco-err{
  font-size:13px;color:#dc2626;
  background:#fef2f2;border:1px solid #fecaca;
  border-radius:var(--r-md);padding:10px 14px;margin:0;
}
.hvco-form{display:flex;flex-direction:column;gap:10px;margin-top:4px}
.hvco-fields{display:flex;gap:10px;flex-wrap:wrap}
.hvco-input{
  flex:1;min-width:150px;
  height:44px;padding:0 14px;
  border:1.5px solid var(--border);border-radius:var(--r-md);
  background:var(--bg);color:var(--text);font-size:14px;
  font-family:inherit;outline:none;transition:border-color .15s;
}
.hvco-input:focus{border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}
.hvco-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  height:44px;font-size:15px;width:100%;
}
.hvco-privacy{font-size:12px;color:var(--text-4);margin:0;line-height:1.5}
.hvco-privacy a{color:var(--text-4);text-decoration:underline}
.hvco-privacy a:hover{color:var(--text-3)}

/* — Responsive — */
@media(max-width:960px){
  .hvco-card{grid-template-columns:240px 1fr}
  .hvco-panel{padding:40px 28px}
  .hvco-body{padding:40px 36px}
}
@media(max-width:720px){
  .hvco-card{grid-template-columns:1fr}
  .hvco-panel{
    flex-direction:row;flex-wrap:wrap;
    padding:28px 28px;gap:16px;
    justify-content:flex-start;
  }
  .hvco-panel::after{display:none}
  .hvco-book-wrap{display:none}
  .hvco-panel-tag{order:-1;width:100%}
  .hvco-panel-facts{flex-direction:row;flex-wrap:wrap;gap:10px 20px}
  .hvco-panel-facts li{font-size:12px}
  .hvco-body{padding:32px 28px;gap:14px}
  .hvco-h2{font-size:22px}
}
@media(max-width:480px){
  .hvco-fields{flex-direction:column}
  .hvco-panel{padding:24px 20px}
  .hvco-body{padding:28px 20px}
}
