@charset "UTF-8";
:root {
  --navy: #1E293B;
  --blue: #2563EB;
  --emerald: #10B981;
  --amber: #F59E0B;
  --slate-50: #F8FAFC;
  --slate-100: #E2E8F0;
  --slate-200: #E5E7EB;
  --slate-300: #CBD5E1;
  --slate-400: #94A3B8;
  --slate-500: #64748B;
  --slate-600: #475569;
  --slate-900: #111827;
  --radius-lg: 16px;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
  --max-w: 1200px;

  /* Theme colors */
  --bg-primary: #ffffff;
  --bg-secondary: #F8FAFC;
  --bg-alt: #f3f4f6;
  --text-primary: #111827;
  --text-secondary: #64748B;
  --border-color: #E2E8F0;
  --card-bg: #ffffff;
  --navbar-bg: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] {
  --navy: #E2E8F0;
  --slate-50: #1E293B;
  --slate-100: #2D3748;
  --slate-200: #374151;
  --slate-300: #4B5563;
  --slate-400: #9CA3AF;
  --slate-500: #D1D5DB;
  --slate-600: #E5E7EB;
  --slate-900: #F9FAFB;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.5);

  /* Theme colors */
  --bg-primary: #0F172A;
  --bg-secondary: #1E293B;
  --bg-alt: #2D3748;
  --text-primary: #F9FAFB;
  --text-secondary: #D1D5DB;
  --border-color: #374151;
  --card-bg: #1E293B;
  --navbar-bg: rgba(15, 23, 42, 0.8);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background-color 0.3s ease, color 0.3s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { transition: box-shadow 0.15s ease, transform 0.15s ease, background-color 0.2s ease, color 0.2s ease; }
button:focus-visible, a:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.25);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus-visible {
  left: 20px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #fff;
  border: 2px solid var(--emerald);
  border-radius: 12px;
  z-index: 100;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn.primary {
  background: var(--emerald);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn.primary:hover { background: #0ea371; transform: translateY(-1px); }
.btn.secondary { background: var(--amber); color: #fff; }
.btn.secondary:hover { background: #d88609; }
.btn.outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn.outline:hover { background: #e7edff; }
.btn.ghost { color: var(--slate-600); background: transparent; }
.btn.white { background: #fff; color: var(--emerald); box-shadow: var(--shadow-sm); }
.btn.block { width: 100%; }
.btn.small { padding: 10px 14px; font-size: 14px; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--navbar-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, padding 0.2s ease, background-color 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  padding: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 144px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.brand .light-logo {
  display: block;
}
.brand .dark-logo {
  display: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a {
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  position: relative;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-toggle {
  border: none;
  background: transparent;
  color: var(--slate-600);
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
}
.theme-toggle:hover {
  background: var(--slate-50);
}
[data-theme="dark"] .theme-toggle:hover {
  background: var(--slate-100);
}
.theme-icon {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0deg);
}
.theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg);
}
[data-theme="dark"] .theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-90deg);
}
[data-theme="dark"] .theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0deg);
}
.lang-switch { position: relative; }
.lang-toggle {
  border: none;
  background: transparent;
  color: var(--slate-600);
  font-weight: 600;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle:hover { background: var(--slate-50); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 6px;
  display: none;
}
.lang-menu button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
}
.lang-menu button:hover { background: var(--slate-50); }
.lang-menu button.active { background: #ecfdf3; color: #046c4e; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
}
.mobile-menu {
  display: none;
  border-top: 1px solid var(--slate-100);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 10px; padding: 16px 20px 20px; }
.mobile-menu a { font-weight: 600; color: var(--navy); }
.mobile-lang { border-top: 1px solid var(--slate-100); padding-top: 12px; margin-top: 12px; }
.mobile-lang-label { text-transform: uppercase; font-size: 12px; color: var(--slate-500); margin: 0 0 8px; }
.mobile-lang-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mobile-lang-grid button {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

main { min-height: 60vh; }
.section {
  padding: 80px 0;
}
.section.alt { background: var(--slate-50); }
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading h2 { font-size: clamp(28px, 3vw, 36px); margin: 0 0 12px; color: var(--navy); }
.section-heading p { margin: 0; color: var(--slate-600); font-size: 18px; }

.hero {
  padding: 80px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.hero .title { font-size: clamp(32px, 4vw, 52px); margin: 0 0 16px; }
.hero .subtitle { font-size: 20px; color: var(--slate-600); margin-bottom: 28px; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero .hero-actions { margin-top: 12px; }
.companies-hero-cta { margin-top: 20px; }
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.companies-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.badges { display: flex; flex-wrap: wrap; gap: 12px; color: var(--slate-600); font-weight: 600; }
.badge { display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px; background: var(--slate-50); border-radius: 12px; border: 1px solid var(--slate-100); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; margin-top: 40px; }
.stat-box { text-align: center; padding-top: 12px; border-top: 1px solid var(--slate-100); }
.stat-number { font-weight: 800; font-size: 26px; color: var(--navy); }
.stat-label { color: var(--slate-500); }
.mockup {
  background: #fff;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-lg);
  border-radius: 22px;
  padding: 24px;
  min-height: 260px;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--slate-100);
}
.split-col {
  padding: 40px;
}
.split.col-muted { background: var(--slate-50); }
.list {
  display: grid;
  gap: 22px;
}
.list-item { display: grid; grid-template-columns: auto 1fr; gap: 12px; }
.list-item strong { color: var(--navy); }
.list-item p { margin: 4px 0 0; color: var(--slate-600); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-weight: 800;
  background-image: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(16,185,129,0.15));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow-sm);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.team-card { text-align: center; }
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--emerald);
}
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--slate-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 12px;
}
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.tag.green { background: #ecfdf3; color: #0f9c67; }
.tag.amber { background: #fff7ed; color: #d97706; }
.tag.white { background: #fff; color: var(--navy); border: 1px solid var(--slate-200); }

.panels {
  display: grid;
  gap: 30px;
}
.panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
.panels-compare {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.panels-compare .panel {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.panels-compare .panel > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.panels-compare .panel a.btn {
  margin-top: auto;
}
.panel-visual {
  min-height: 260px;
  border-radius: 18px;
  border: 1px solid var(--slate-100);
  background: var(--slate-50);
}
.image-slot {
  border: 2px dashed var(--slate-200);
  background: linear-gradient(135deg, rgba(37,99,235,0.04), rgba(16,185,129,0.06));
  color: var(--slate-500);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta {
  background: linear-gradient(135deg, var(--blue), var(--emerald));
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta h2 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 10px; }
.cta p {
  margin: 8px 0 26px;
  color: rgba(255,255,255,0.98);
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.6;
}

.faq {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { margin: 0 0 8px; }
.faq-item p { margin: 0; color: var(--slate-600); }

.columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.timeline {
  position: relative;
  padding-left: 18px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(#e5e7eb, #e5e7eb);
}
.timeline-item {
  position: relative;
  padding: 14px 0 14px 18px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--emerald);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.price-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--slate-100);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.price-card h3 { margin: 0 0 10px; }
.price-card p { margin: 0 0 18px; color: var(--slate-600); }
.price-list { display: grid; gap: 12px; color: var(--navy); }
.price-list span::before {
  content: "✓";
  color: var(--emerald);
  margin-right: 10px;
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.doc-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.doc-nav {
  position: sticky;
  top: 90px;
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}
.doc-nav button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
}
.doc-nav button.active { background: #ecfdf3; color: #0f9c67; }
.doc-content {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.code {
  background: #0b1221;
  color: #cbd5e1;
  padding: 16px;
  border-radius: 12px;
  font-family: "SFMono-Regular", Consolas, Menlo, monospace;
  overflow-x: auto;
  font-size: 14px;
}

.footer {
  background: var(--navy);
  color: var(--slate-400);
  padding: 50px 0 30px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}
.footer-col h4 {
  color: #fff;
  margin: 0 0 14px;
}
.footer-col a { display: block; padding: 6px 0; color: var(--slate-400); }
.footer-col a:hover { color: var(--emerald); }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social { display: inline-flex; gap: 12px; }
.social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.social a svg {
  width: 18px;
  height: 18px;
  display: block;
}
.social a:hover { background: rgba(16,185,129,0.2); }

.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-logo-section p {
  margin: 0;
  color: var(--slate-400);
}
.footer-contact {
  color: var(--slate-400);
  min-width: 220px;
}
.footer-contact h4 {
  color: #fff;
  margin: 0 0 10px;
}
.footer-contact p {
  margin: 0 0 6px;
}
.footer-contact a {
  color: inherit;
}
.footer-contact a:hover {
  color: var(--emerald);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.form-group { display: grid; gap: 6px; }
.form-group label { font-weight: 600; color: var(--navy); }
.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--slate-300);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.input:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}
.radio-group, .check-group { display: grid; gap: 10px; }
.radio-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  cursor: pointer;
}
.radio-tile input { margin: 0; }
.textarea { resize: vertical; min-height: 120px; }
.muted { color: var(--slate-500); font-size: 14px; }
.success-box {
  text-align: center;
  background: #fff;
  border: 1px solid var(--slate-100);
  padding: 30px;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.status-grid { display: grid; gap: 10px; }
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--slate-100);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.pill.green { background: #ecfdf3; color: #0f9c67; }

.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 320px;
  max-width: calc(100% - 40px);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 50;
}
.chat-widget.hidden { display: none; }
.chat-header {
  background: var(--navy);
  color: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-status { display: inline-flex; align-items: center; gap: 8px; }
.chat-status .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--emerald); display: inline-block; }
.chat-body {
  padding: 12px;
  background: var(--slate-50);
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow-y: auto;
}
.bubble {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  max-width: 80%;
  box-shadow: var(--shadow-sm);
}
.bubble.bot { background: #fff; border: 1px solid var(--slate-200); color: var(--navy); }
.bubble.user { background: var(--blue); color: #fff; margin-left: auto; }
.chat-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--slate-100);
}
.chat-form input {
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  padding: 10px 12px;
  font-size: 14px;
}
.chat-form button {
  border: none;
  background: var(--emerald);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}
.chat-open {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--emerald);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  z-index: 40;
}

.palette {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px 40px;
  z-index: 60;
}
.palette-inner {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: grid;
  gap: 12px;
}
.palette-inner input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  font-size: 16px;
}
.palette-list {
  max-height: 260px;
  overflow-y: auto;
  display: grid;
  gap: 8px;
}
.palette-item {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--slate-200);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.palette-item:hover, .palette-item:focus-visible {
  border-color: var(--emerald);
  outline: none;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-mock {
  position: relative;
  padding: clamp(16px, 2vw, 22px);
  background: linear-gradient(135deg, rgba(11, 18, 33, 0.96), rgba(30, 41, 59, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 46px rgba(7, 12, 24, 0.45);
  overflow: hidden;
}
.hero-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(16, 185, 129, 0.2), transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-mock::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.05), transparent 60%);
  pointer-events: none;
}
.hero-mock .mock-window {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px;
  display: grid;
  gap: 14px;
  box-shadow: 0 18px 32px rgba(2, 6, 23, 0.35);
}
.hero-mock .mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-mock .mock-dots {
  display: inline-flex;
  gap: 6px;
}
.hero-mock .mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.7);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.6);
}
.hero-mock .mock-dots span:nth-child(1) { background: #f87171; }
.hero-mock .mock-dots span:nth-child(2) { background: #fbbf24; }
.hero-mock .mock-dots span:nth-child(3) { background: #34d399; }
.hero-mock .mock-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.9);
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(2, 6, 23, 0.35);
}
.hero-mock .mock-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 14px;
}
.hero-mock .mock-form {
  display: grid;
  gap: 10px;
}
.hero-mock .mock-field {
  display: grid;
  gap: 6px;
}
.hero-mock .mock-label {
  height: 8px;
  width: 70%;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}
.hero-mock .mock-label.short { width: 52%; }
.hero-mock .mock-label.tiny { width: 46%; height: 6px; opacity: 0.8; }
.hero-mock .mock-input {
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.75), rgba(15, 23, 42, 0.9));
  box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.2);
}
.hero-mock .mock-select {
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  gap: 8px;
}
.hero-mock .mock-select span:first-child {
  width: 60%;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
}
.hero-mock .mock-select span:last-child {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(148, 163, 184, 0.8);
  border-bottom: 2px solid rgba(148, 163, 184, 0.8);
  transform: rotate(45deg);
}
.hero-mock .mock-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-mock .mock-checkbox {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  position: relative;
}
.hero-mock .mock-checkbox::after {
  content: "";
  position: absolute;
  inset: 3px 4px 4px 4px;
  border-right: 2px solid rgba(52, 211, 153, 0.95);
  border-bottom: 2px solid rgba(52, 211, 153, 0.95);
  transform: rotate(45deg);
}
.hero-mock .mock-cta {
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #10b981, #2563eb);
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.35);
}
.hero-mock .mock-side {
  display: grid;
  gap: 12px;
  align-content: start;
}
.hero-mock .mini-card {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.7);
  padding: 10px;
  display: grid;
  gap: 8px;
}
.hero-mock .mini-title {
  height: 8px;
  width: 65%;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
}
.hero-mock .mini-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.2);
  overflow: hidden;
}
.hero-mock .mini-progress span {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.85), rgba(16, 185, 129, 0.9));
}
.hero-mock .mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.hero-mock .mini-stats div {
  height: 16px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.25);
}
.hero-mock .mini-chart {
  height: 78px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.9));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 6px;
  padding: 10px;
}
.hero-mock .mini-chart span {
  display: block;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.9), rgba(16, 185, 129, 0.8));
}
.hero-mock .mini-chart span:nth-child(1) { height: 55%; }
.hero-mock .mini-chart span:nth-child(2) { height: 80%; }
.hero-mock .mini-chart span:nth-child(3) { height: 45%; }
.hero-mock .mini-chart span:nth-child(4) { height: 70%; }
.hero-mock .bar { background: rgba(148, 163, 184, 0.25); }
.hero-mock .bar.short { width: 60%; }
.hero-mock .bar.tall { height: 40px; }
.bar { height: 12px; border-radius: 8px; background: var(--slate-100); }
.bar.short { width: 60%; }
.bar.tall { height: 40px; }

@media (max-width: 700px) {
  .hero-mock .mock-body { grid-template-columns: 1fr; }
  .hero-mock .mock-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-mock .mini-chart { height: 64px; }
}

@media (max-width: 900px) {
  .panels-compare { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 1024px) {
  .companies-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .companies-grid { grid-template-columns: 1fr; }
  .panels-compare { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.integration-card {
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.integration-card:hover { border-color: var(--emerald); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.legal {
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  white-space: pre-line;
}

.hidden { display: none !important; }
.gradient {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(16,185,129,0.12));
}

/* Dark mode specific styles */
[data-theme="dark"] .mobile-menu,
[data-theme="dark"] .footer,
[data-theme="dark"] .section.alt,
[data-theme="dark"] .tile,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .feature-tile,
[data-theme="dark"] .integration-tile,
[data-theme="dark"] .panel,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .command-palette,
[data-theme="dark"] .doc-sidebar,
[data-theme="dark"] .job-card,
[data-theme="dark"] .download-card,
[data-theme="dark"] .status-row {
  background: var(--card-bg);
}

[data-theme="dark"] .section.alt {
  background: var(--bg-secondary);
}

[data-theme="dark"] .tag.white,
[data-theme="dark"] .btn.white {
  background: var(--slate-100);
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .tag.amber {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
}

[data-theme="dark"] .bubble.bot {
  background: var(--slate-100);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background: var(--slate-100);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
  background: var(--slate-100);
  border-color: var(--emerald);
}

[data-theme="dark"] .btn.outline:hover {
  background: rgba(59, 130, 246, 0.1);
}

[data-theme="dark"] .btn.ghost {
  color: var(--text-secondary);
}

[data-theme="dark"] .btn.ghost:hover {
  background: var(--slate-100);
}

[data-theme="dark"] .tag.green {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

[data-theme="dark"] .pill.green {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

[data-theme="dark"] .lang-menu {
  background: var(--slate-100);
  border-color: var(--border-color);
}

[data-theme="dark"] .lang-menu button {
  color: var(--text-primary);
}

[data-theme="dark"] .lang-menu button:hover {
  background: var(--slate-200);
}

[data-theme="dark"] .lang-menu button.active {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

[data-theme="dark"] .mobile-lang-grid button {
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .mobile-lang-grid button.active {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border-color: #34d399;
}

[data-theme="dark"] .doc-nav button.active {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
}

[data-theme="dark"] .code-block,
[data-theme="dark"] pre,
[data-theme="dark"] code {
  background: var(--slate-100);
  color: var(--text-primary);
  border-color: var(--border-color);
}

[data-theme="dark"] .skip-link:focus-visible {
  background: var(--slate-100);
  color: var(--text-primary);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
  color: var(--text-primary);
}

[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span {
  color: var(--text-primary);
}

[data-theme="dark"] .brand {
  color: var(--text-primary);
}

[data-theme="dark"] .brand .light-logo {
  display: none;
}

[data-theme="dark"] .brand .dark-logo {
  display: block;
}

[data-theme="dark"] .nav-links a {
  color: var(--text-primary);
}

[data-theme="dark"] .footer a {
  color: var(--text-secondary);
}

[data-theme="dark"] .footer a:hover {
  color: var(--text-primary);
}

[data-theme="dark"] .card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .card h3,
[data-theme="dark"] .card h4,
[data-theme="dark"] .card p {
  color: var(--text-primary);
}

[data-theme="dark"] .icon-circle {
  background: var(--slate-100);
  color: var(--emerald);
}

[data-theme="dark"] .step-card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .step-card h3,
[data-theme="dark"] .step-card p {
  color: var(--text-primary);
}

[data-theme="dark"] .circle {
  background: var(--slate-100);
  border-color: var(--border-color);
  color: var(--text-primary);
}

[data-theme="dark"] .panel h2,
[data-theme="dark"] .panel h3,
[data-theme="dark"] .panel p {
  color: var(--text-primary);
}

[data-theme="dark"] .panel-visual {
  background: var(--slate-100);
  border-color: var(--border-color);
}

[data-theme="dark"] .price-card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .price-card h3,
[data-theme="dark"] .price-card p,
[data-theme="dark"] .price-card span {
  color: var(--text-primary);
}

[data-theme="dark"] .price-list {
  color: var(--text-secondary);
}

[data-theme="dark"] .price-list span {
  color: var(--text-secondary);
}

[data-theme="dark"] .integration-card {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .integration-card h3,
[data-theme="dark"] .integration-card p {
  color: var(--text-primary);
}

[data-theme="dark"] .integration-card:hover {
  border-color: var(--emerald);
}

[data-theme="dark"] .doc-nav {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .doc-nav button {
  color: var(--text-primary);
}

[data-theme="dark"] .doc-nav button:hover {
  background: var(--slate-100);
}

[data-theme="dark"] .doc-content {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .doc-content h1,
[data-theme="dark"] .doc-content h2,
[data-theme="dark"] .doc-content h3,
[data-theme="dark"] .doc-content p {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .desktop-only { display: none !important; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: block; }
  .nav-inner { height: 68px; }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: repeat(2, 1fr); }
  .panel { grid-template-columns: repeat(2, 1fr); }
  .doc-layout { grid-template-columns: 260px 1fr; }
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 720px;
  width: calc(100% - 40px);
  background: var(--card-bg, #0f172a);
  color: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.cookie-banner a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-banner.hidden {
  display: none;
}
/* 🚨 NUCLEAR OPTION – wymuszenie paddingu na TEKŚCIE */
#app h1,
#app h2,
#app h3,
#app p,
#app ul,
#app li,
#app span {
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box !important;
}
/* ============================= */
/* 🍪 COOKIE BANNER – LIGHT / DARK */
/* ============================= */

.cookie-banner {
  background: #0f172a;        /* fallback */
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* LIGHT MODE */
html[data-theme="light"] .cookie-banner {
  background: #ffffff;
  color: #0f172a;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -10px 30px rgba(15,23,42,0.08);
}

/* link */
html[data-theme="light"] .cookie-banner a {
  color: #2563eb;
}

html[data-theme="dark"] .cookie-banner a {
  color: #60a5fa;
}
.section-heading .btn {
  margin-top: 16px;
}
.success-box h3 {
  color: var(--text-primary, #000);
  opacity: 1;
}

.success-box p {
  color: var(--text-secondary, #222);
  opacity: 1;
}

[data-theme="dark"] .success-box h3 {
  color: #fff;
}

[data-theme="dark"] .success-box p {
  color: #ddd;
}
.success-box h3 {
  color: #000; /* czarny tekst */
  opacity: 1;
}

.success-box p {
  color: #111;
  opacity: 1;
}
/* ===== CONTACT SUCCESS – ZAWSZE CZARNY TEKST ===== */
.success-box,
.success-box h3,
.success-box p {
  color: #000 !important;
  opacity: 1 !important;
}