/* NetzwerkHub Leipzig — Main Stylesheet */
/* Базируется на DNA шаблона: тёмная тема, акцент #e39762, Urbanist + Figtree */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;900&family=Figtree:wght@500;700&display=swap');

:root {
  --color-bg: #000;
  --color-page: #2d2d2d;
  --color-accent: #e39762;
  --color-accent-btn: rgb(226, 151, 98);
  --color-accent-btn-hover: rgb(210, 130, 75);
  --color-purple: #814ac8;
  --color-purple-light: #df7afe;
  --color-text: #fff;
  --color-text-muted: #ffffffbf;
  --color-text-bright: #ffffffe6;
  --color-card-bg: rgba(13, 13, 13, 0.8);
  --color-faq-bg: rgba(255, 255, 255, 0.05);
  --color-border: #222;
  --color-border-card: #2d2d2d;
  --color-white-border: rgba(255, 255, 255, 0.1);
  --font-heading: 'Urbanist', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --max-width: 1200px;
  --radius-btn: 12px;
  --radius-card: 8px;
  --radius-badge: 6px;
  --shadow-btn: 0px 0.71px 0.71px -0.625px rgba(0,0,0,.15),
                0px 1.81px 1.81px -1.25px rgba(0,0,0,.14),
                0px 3.62px 3.62px -1.875px rgba(0,0,0,.14),
                0px 6.87px 6.87px -2.5px rgba(0,0,0,.13),
                0px 13.65px 13.65px -3.125px rgba(0,0,0,.1),
                0px 30px 30px -3.75px rgba(0,0,0,.05);
}

*, *::before, *::after { box-sizing: border-box; }
html, body, #main { margin: 0; padding: 0; }
body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.page-root {
  background-color: var(--color-page);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo svg { width: 40px; height: 40px; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.04em;
}
.nav-logo-text span { color: var(--color-accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: -0.04em;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-text); }
.nav-links a.active { color: var(--color-accent); }
.nav-cta {
  background-color: var(--color-accent-btn);
  color: #fff !important;
  border-radius: var(--radius-btn);
  padding: 8px 18px !important;
  box-shadow: var(--shadow-btn);
  border: 1px solid var(--color-white-border);
  font-weight: 600 !important;
  transition: background-color 0.2s !important;
}
.nav-cta:hover { background-color: var(--color-accent-btn-hover) !important; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  gap: 12px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--color-accent); }

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-badge);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: -0.02em;
}
.badge i { color: var(--color-accent); font-size: 13px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  border: none;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background-color: var(--color-accent-btn);
  color: #fff;
  box-shadow: var(--shadow-btn);
  border: 1px solid var(--color-white-border);
}
.btn-primary:hover { background-color: var(--color-accent-btn-hover); }
.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover { color: var(--color-text); border-color: rgba(255,255,255,0.3); }

/* ── HERO SECTION ── */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  gap: 34px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-circle-1 {
  position: absolute;
  width: 406px;
  height: 406px;
  border-radius: 363px;
  background: linear-gradient(229deg, #e39762 13%, #c96ef000 35.0236%, #a45cdb00 64.1724%, #e6e6e6 88%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  opacity: 0.6;
  z-index: 1;
}
.hero-circle-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 363px;
  background: linear-gradient(141deg, #e6e6e6 13%, #2d2d2d00 35.0236% 64.1724%, #e39762 88%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  width: 100%;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 70px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -2.2px;
  color: var(--color-text);
  text-align: center;
  max-width: 900px;
}
.hero h1 span { color: var(--color-accent); }
.hero-sub {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 599.98px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── SECTION BASE ── */
.section {
  width: 100%;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  overflow: hidden;
  position: relative;
}
.section-inner {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  color: var(--color-text);
}
.section-header p {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
  max-width: 600px;
}

/* ── FEATURE ROW ── */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: var(--max-width);
}
.feature-row.reverse { flex-direction: row-reverse; }
.feature-graphic {
  flex-shrink: 0;
  width: 45%;
  aspect-ratio: 1.28571;
  background-color: var(--color-card-bg);
  border-radius: 18px;
  border: 1px solid var(--color-border-card);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 50px 50px 0;
}
.feature-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.feature-content h3 {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: -0.04em;
  color: var(--color-accent);
}
.feature-content p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
}

/* ── STEPS GRID ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(50px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 900px;
}
.step-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius-card);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--color-accent-btn);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.step-card h4 {
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.step-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
}

/* ── BENEFITS GRID ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: var(--max-width);
}
.benefit-card {
  background: radial-gradient(50% 50% at 50% 100%, rgba(227,151,98,0.72) 0%, rgba(0,0,0,0) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-card-bg);
  border-radius: 4px;
}
.benefit-card-icon i { color: var(--color-accent); font-size: 18px; }
.benefit-card h4 {
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.benefit-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: -0.02em;
  color: var(--color-text-muted);
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: var(--max-width);
}
.price-card {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border-card);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.price-card.featured {
  border-color: var(--color-accent);
  background: radial-gradient(50% 30% at 50% 0%, rgba(227,151,98,0.15) 0%, rgba(0,0,0,0) 100%), var(--color-card-bg);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent-btn);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-amount .amount {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}
.price-amount .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-accent);
}
.price-amount .period {
  font-size: 16px;
  color: var(--color-text-muted);
}
.price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.price-features li i { color: var(--color-accent); margin-top: 3px; font-size: 14px; }
.price-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ── FAQ ── */
.faq-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.faq-blur {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,151,98,0.3) 0%, transparent 70%);
  filter: blur(50px);
  -webkit-filter: blur(50px);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.faq-item {
  background-color: var(--color-faq-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-badge);
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.2); }
.faq-item.open { border-color: rgba(227,151,98,0.4); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-question p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4em;
}
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-top: 14px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6em;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA SECTION ── */
.cta-section {
  background: radial-gradient(50% 50% at 50% 0%, rgba(227,151,98,0.2) 0%, rgba(0,0,0,0) 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: -0.04em;
}

/* ── CONTACT FORM ── */
.form-section { background-color: var(--color-bg); }
.contact-form {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: -0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 12px 16px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--color-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.form-success {
  display: none;
  background-color: rgba(227,151,98,0.15);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  color: var(--color-accent);
  font-size: 15px;
}

/* ── FOOTER ── */
.site-footer {
  width: 100%;
  background: radial-gradient(50% 50% at 50% 3.4000000000000004%, rgba(227,151,98,0.3) 0%, rgba(171,171,171,0) 100%);
  border-top: 2px solid var(--color-border);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 40px;
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 2;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo svg { width: 36px; height: 36px; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.footer-logo-text span { color: var(--color-accent); }
.footer-tagline {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 260px;
}
.footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 3;
}
.footer-col { min-width: 130px; display: flex; flex-direction: column; gap: 7px; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-col a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--color-text); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.footer-contact-item i { color: var(--color-accent); margin-top: 2px; font-size: 13px; }
.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.footer-social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social-links a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-copyright {
  border-top: 1px solid var(--color-border);
  padding: 25px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copyright p {
  font-size: 14px;
  color: rgb(205, 204, 204);
  letter-spacing: -0.02em;
}

/* ── COOKIES BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 720px;
  background-color: rgba(13,13,13,0.96);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#cookie-banner p {
  flex: 1;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  min-width: 200px;
}
#cookie-banner p a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions button {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-actions button:hover { opacity: 0.85; }
#cookie-accept { background-color: var(--color-accent-btn); color: #fff; }
#cookie-decline { background-color: transparent; color: var(--color-text-muted); border: 1px solid var(--color-border); }
#cookie-banner.hidden { display: none; }

/* ── PAGE HERO (служебные страницы) ── */
.page-hero {
  width: 100%;
  padding: 80px 40px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: radial-gradient(50% 60% at 50% 0%, rgba(227,151,98,0.12) 0%, transparent 70%);
  border-bottom: 1px solid var(--color-border);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -2.2px;
  color: var(--color-text);
}
.page-hero p {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ── TEXT CONTENT PAGE ── */
.text-content {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
.text-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  margin-top: 40px;
}
.text-content h2:first-child { margin-top: 0; }
.text-content p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.text-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
}
.text-content ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
  margin-top: 8px;
  flex-shrink: 0;
}
.text-content a { color: var(--color-accent); text-decoration: underline; }
.text-highlight {
  background-color: rgba(227,151,98,0.1);
  border-left: 3px solid var(--color-accent);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin: 20px 0;
}
.text-highlight p { margin: 0; color: var(--color-text-bright); }

/* ── TEAM / ABOUT ── */
.about-row {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: var(--max-width);
}
.about-image {
  flex-shrink: 0;
  width: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text { flex: 1; display: flex; flex-direction: column; gap: 20px; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: -0.04em;
}
.about-text p { font-size: 17px; color: var(--color-text-muted); line-height: 1.7; }

/* ── STATS ROW ── */
.stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.stat-item .label { font-size: 15px; color: var(--color-text-muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1199.98px) {
  :root { --max-width: 810px; }
  .hero h1 { font-size: 56px; }
  .section-header h2 { font-size: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 809.98px) {
  :root { --max-width: 390px; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 10px 24px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .hero { padding: 40px 0; min-height: unset; gap: 22px; }
  .hero h1 { font-size: 45px; letter-spacing: -1.5px; width: 343px; }
  .hero-sub { max-width: unset; width: 343px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 64px 24px; }
  .section-header h2 { font-size: 28px; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 20px; }
  .feature-graphic { width: 100%; min-height: 280px; padding: 10px 10px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { padding: 40px 24px 35px; flex-direction: column; gap: 32px; }
  .footer-copyright { padding: 20px 24px; }
  .footer-cols { gap: 24px; }
  .page-hero { padding: 60px 24px 40px; }
  .page-hero h1 { font-size: 38px; }
  .about-row { flex-direction: column; }
  .about-image { width: 100%; }
  .about-text h2 { font-size: 30px; }
  #cookie-banner { bottom: 16px; padding: 16px; }
  .cta-section h2 { font-size: 32px; }
}

/* ── UTILITIES ── */
.accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
