/* ── Variables ── */
:root {
  --bg:        #09090b;
  --bg2:       #111114;
  --bg3:       #18181c;
  --blue:      #1b8fd1;
  --blue-lt:   #4bb3f0;
  --blue-dk:   #0f6fa8;
  --white:     #fafafa;
  --gray1:     #d4d4d8;
  --gray2:     #a1a1aa;
  --gray3:     #52525b;
  --border:    rgba(255,255,255,0.07);
  --border-b:  rgba(27,143,209,0.35);
  --glow:      0 0 30px rgba(27,143,209,0.15);
  --radius:    14px;
  --radius-sm: 8px;
  --max:       1200px;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Utility ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.section-sub {
  font-size: 17px;
  color: var(--gray2);
  max-width: 560px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--border-b);
  color: var(--blue-lt);
}
.btn-outline:hover { background: rgba(27,143,209,0.08); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Header ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  background: rgba(9,9,11,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--border);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}
.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}
.nav-logo-text span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 6px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray3);
  padding: 4px 8px;
  border-radius: 5px;
  transition: var(--transition);
}
.lang-btn.active {
  background: var(--blue);
  color: #fff;
}
.lang-btn:hover:not(.active) { color: var(--white); }
.lang-sep { color: var(--gray3); font-size: 12px; }
.nav-cta { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(27,143,209,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-lt);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--white);
}
.hero-title span { color: var(--blue); }
.hero-subtitle {
  font-size: 17px;
  color: var(--gray2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
}
.badge-blue {
  background: rgba(27,143,209,0.15);
  border: 1px solid var(--border-b);
  color: var(--blue-lt);
}
.badge-white {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--gray1);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(27,143,209,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.hero-stats {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: 400px;
}
.hero-stat {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
}
.hero-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-lt);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--gray2);
}

/* ── For Whom ── */
#forwho { background: var(--bg2); }
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.biz-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  cursor: default;
}
.biz-card:hover {
  border-color: var(--border-b);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.biz-icon {
  font-size: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,143,209,0.1);
  border-radius: 10px;
  flex-shrink: 0;
}
.biz-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

/* ── Services ── */
#services {}
.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}
.services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--gray1);
}
.check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  background: rgba(27,143,209,0.15);
  border: 1px solid var(--border-b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-lt);
  font-size: 12px;
  margin-top: 2px;
}
.services-visual {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.services-visual img { width: 100%; }

/* ── Prices ── */
#prices { background: var(--bg2); }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
.price-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(27,143,209,0.2), inset 0 1px 0 rgba(27,143,209,0.2);
  background: linear-gradient(135deg, #13161b 0%, #0f131a 100%);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.price-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray2);
  margin-bottom: 12px;
}
.price-amount {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.price-period {
  font-size: 14px;
  color: var(--gray2);
  margin-bottom: 24px;
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray1);
}
.price-features li::before {
  content: '✓';
  color: var(--blue-lt);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.price-cta {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}
.price-card.featured .price-cta {
  background: var(--blue);
  color: #fff;
}
.price-card.featured .price-cta:hover { background: var(--blue-lt); }
.price-card:not(.featured) .price-cta {
  border: 1px solid var(--border-b);
  color: var(--blue-lt);
}
.price-card:not(.featured) .price-cta:hover { background: rgba(27,143,209,0.08); }
.prices-note {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--gray3);
}
.prices-note strong { color: var(--gray2); }

/* ── Process ── */
#process {}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-b), transparent);
}
.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg2);
  border: 1px solid var(--border-b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue-lt);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.step-desc {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.6;
}

/* ── Why ── */
#why { background: var(--bg2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.why-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--border-b);
  box-shadow: var(--glow);
}
.why-num {
  font-size: 30px;
  font-weight: 900;
  color: rgba(27,143,209,0.2);
  line-height: 1;
  margin-bottom: 10px;
}
.why-text {
  font-size: 14px;
  color: var(--gray1);
  line-height: 1.55;
}

/* ── No self-management ── */
#noselfmgmt {
  padding: 72px 0;
}
.noselfmgmt-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.noselfmgmt-icon {
  font-size: 48px;
  flex-shrink: 0;
}
.noselfmgmt-text { flex: 1; }
.noselfmgmt-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.noselfmgmt-text p {
  font-size: 16px;
  color: var(--gray2);
}

/* ── FAQ ── */
#faq { background: var(--bg2); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border-b); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  background: none;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border-b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-lt);
  font-size: 14px;
  transition: transform var(--transition);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── Contact ── */
#contact {
  padding: 96px 0;
}
.contact-wrap {
  background: linear-gradient(135deg, #0f131c 0%, #0b0e15 100%);
  border: 1px solid var(--border-b);
  border-radius: 20px;
  padding: 72px 56px;
  text-align: center;
  box-shadow: 0 0 60px rgba(27,143,209,0.08);
}
.contact-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-desc {
  font-size: 17px;
  color: var(--gray2);
  margin-bottom: 40px;
}
.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}
.contact-btn.whatsapp { background: #25D366; color: #fff; }
.contact-btn.whatsapp:hover { background: #1db954; transform: translateY(-2px); }
.contact-btn.phone {
  background: var(--blue);
  color: #fff;
}
.contact-btn.phone:hover { background: var(--blue-lt); transform: translateY(-2px); }
.contact-btn.email {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--gray1);
}
.contact-btn.email:hover { border-color: var(--border-b); color: var(--white); transform: translateY(-2px); }
.contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 5px; object-fit: cover; }
.footer-logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.footer-logo-text span { color: var(--blue); }
.footer-tagline {
  font-size: 13px;
  color: var(--gray3);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray3);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gray2); }
.footer-copy {
  font-size: 13px;
  color: var(--gray3);
}

/* ── Tubes Canvas ── */
#tubes-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}
#hero .hero-bg {
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(9,9,11,0.15) 0%,
    rgba(9,9,11,0.45) 70%,
    rgba(9,9,11,0.95) 100%
  );
}
#hero .container { position: relative; z-index: 2; }

/* ── Neon Button ── */
.btn-neon {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #0d1a0d;
  background: linear-gradient(135deg, #a3e635 0%, #bef264 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 200px;
  box-shadow:
    0 8px 28px rgba(163,230,53,0.45),
    0 3px 10px rgba(163,230,53,0.3),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: neonBounceIn 0.9s cubic-bezier(0.68,-0.55,0.265,1.55) both;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-neon:hover {
  background: linear-gradient(135deg, #bef264 0%, #d9f99d 100%);
  transform: translateY(-5px) scale(1.04) perspective(200px) rotateX(2deg);
  box-shadow:
    0 16px 36px rgba(163,230,53,0.55),
    0 6px 16px rgba(163,230,53,0.4),
    inset 0 1px 0 rgba(255,255,255,0.4);
  color: #081008;
}
.btn-neon:active {
  transform: translateY(2px) scale(0.97);
  box-shadow: 0 3px 10px rgba(163,230,53,0.3);
}
.btn-neon .shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.btn-neon:hover .shimmer { left: 160%; }

.neon-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transform: scale(0);
  animation: neonRipple 0.65s linear forwards;
  pointer-events: none;
}

@keyframes neonBounceIn {
  0%   { transform: perspective(200px) scale(0.72) rotateX(-15deg); opacity: 0; }
  55%  { transform: perspective(200px) scale(1.07) rotateX(4deg);   opacity: 1; }
  100% { transform: perspective(200px) scale(1)    rotateX(0deg);   opacity: 1; }
}

@keyframes neonRipple {
  to { transform: scale(5); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 32px; }
  /* hero-text kommt zuerst (HTML-Reihenfolge), visual danach */
  .hero-visual { order: 1; max-width: 300px; margin: 0 auto; }
  .hero-logo-wrap { max-width: 100%; }
  .services-inner { grid-template-columns: 1fr; }
  .services-visual { display: none; }
  .prices-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .forwho-grid { grid-template-columns: repeat(2, 1fr); }
  .noselfmgmt-card { flex-direction: column; text-align: center; padding: 40px 32px; }
  .noselfmgmt-icon { font-size: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  /* Hero Stats auf Mobile ausblenden – werden separat neu designt */
  .hero-stats { display: none; }
  #hero { padding: 100px 0 60px; }
  .hero-title { letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 15px; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(9,9,11,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    padding: 100px 32px 40px;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 18px; }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 200;
  }
  .nav-cta { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { padding: 48px 28px; }
  .contact-btns { flex-direction: column; align-items: center; }
  .contact-btn { width: 100%; max-width: 320px; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .forwho-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-badges { gap: 8px; }
  .biz-card { padding: 14px 12px; gap: 10px; }
  .biz-icon { width: 34px; height: 34px; font-size: 18px; flex-shrink: 0; }
  .biz-name { font-size: 13px; line-height: 1.3; word-break: break-word; }
}

@media (max-width: 380px) {
  .forwho-grid { grid-template-columns: 1fr; }
  .biz-card { padding: 14px 16px; }
}
