:root {
  --bg: #f3f6fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --surface-strong: #f8faff;
  --dark: #0d1324;
  --dark-2: #131d35;
  --text: #0f1728;
  --muted: #5e6779;
  --line: rgba(15, 23, 40, 0.08);
  --line-strong: rgba(15, 23, 40, 0.14);
  --primary: #5667ff;
  --primary-strong: #4053ff;
  --primary-soft: rgba(86, 103, 255, 0.1);
  --success: #0ea56f;
  --warning: #ffb84d;
  --shadow-sm: 0 10px 30px rgba(11, 18, 32, 0.06);
  --shadow: 0 24px 70px rgba(11, 18, 32, 0.12);
  --shadow-lg: 0 40px 100px rgba(11, 18, 32, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
}

body.menu-open { overflow: hidden; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at top left, rgba(86, 103, 255, 0.16), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(14, 165, 111, 0.10), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(86, 103, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section { padding: 100px 0; }
.section-tight { padding: 50px 0 20px; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.78)); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(243, 246, 251, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 40, 0.05);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dark), #1a2951);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 12px 30px rgba(13, 19, 36, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
}

.nav a:hover,
.nav a:focus-visible:not(.btn) { color: var(--text); }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--primary-strong);
  font-weight: 700;
  font-size: 0.92rem;
}

.section-tag.light {
  background: rgba(255,255,255,0.10);
  color: #dce3ff;
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}

.hero {
  padding-top: 74px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 44px;
  align-items: center;
}

.hero h1,
.split-section h2,
.section-heading h2,
.comparison-copy h2,
.white-label-card h2,
.faq-grid h2,
.cta-card h2 {
  margin: 18px 0;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 { font-size: clamp(2.9rem, 5vw, 5.3rem); max-width: 11.5ch; }
.split-section h2,
.section-heading h2,
.comparison-copy h2,
.white-label-card h2,
.faq-grid h2,
.cta-card h2 { font-size: clamp(2rem, 4vw, 3.4rem); }

.hero-text,
.section-lead,
.feature-card p,
.price-card p,
.white-label-points span,
.faq-item p,
.footer p,
.form-note,
.contact-points span {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.hero-actions,
.contact-points {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions { margin: 30px 0 22px; }
.contact-points { margin-top: 24px; }
.contact-points span,
.trust-inline span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
}

.trust-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.proof-card,
.feature-card,
.price-card,
.faq-item,
.comparison-card,
.white-label-card,
.cta-card,
.hero-panel,
.device-showcase,
.intro-grid,
.security-chip {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.proof-card {
  padding: 18px 18px 16px;
  border-radius: 20px;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.hero-panel {
  border-radius: var(--radius-xl);
}

.panel-main {
  overflow: hidden;
}

.window-dots {
  display: flex;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(15, 23, 40, 0.16);
}

.panel-body {
  display: grid;
  grid-template-columns: 210px 1fr;
}

.app-sidebar {
  min-height: 520px;
  padding: 24px;
  background: linear-gradient(180deg, #0f172a, #16213e);
  color: rgba(255,255,255,0.8);
}

.sidebar-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 26px;
}

.side-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
}

.side-item.active {
  background: linear-gradient(135deg, rgba(86,103,255,0.26), rgba(86,103,255,0.15));
  color: #fff;
}

.app-content {
  padding: 28px;
}

.content-top,
.float-head,
.price-head,
.schedule-head,
.section-heading,
.security-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.content-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-strong);
}

.pill,
.pill-strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
  font-size: 0.86rem;
  font-weight: 700;
}

.pill-strong {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border-color: transparent;
  color: #fff;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.kpi-card,
.time-box {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.kpi-card span,
.time-box span { display: block; color: var(--muted); margin-bottom: 8px; }
.kpi-card strong,
.time-box strong { font-size: 1.65rem; letter-spacing: -0.03em; }

.schedule-card {
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(86,103,255,0.05), rgba(255,255,255,0.98));
  border: 1px solid var(--line);
}

.schedule-head {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.schedule-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 16px;
  padding: 11px 0;
}

.schedule-row span { font-weight: 600; }
.bars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.bars i {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  opacity: 0.95;
}
.bars i.soft { opacity: 0.22; }

.panel-float {
  position: absolute;
  padding: 20px;
  width: 280px;
}

.panel-float-right { right: -18px; bottom: 60px; }
.panel-float-left { left: -18px; bottom: 118px; }

.employee-line {
  display: grid;
  gap: 5px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.employee-line:last-child { border-bottom: 0; }
.employee-line span { color: var(--muted); font-size: 0.96rem; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(14,165,111,0.12);
}
.cta-mini {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 700;
}

.intro-grid,
.comparison-card,
.white-label-card,
.cta-card,
.faq-grid {
  border-radius: var(--radius-xl);
  padding: 34px;
}

.intro-grid,
.split-section,
.showcase-grid,
.security-grid,
.faq-grid,
.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.section-heading.center {
  display: block;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 34px;
}

.section-heading.center p { margin: 0 auto; max-width: 680px; }
.section-lead.left { max-width: 56ch; }

.feature-grid,
.pricing-grid,
.white-label-points {
  display: grid;
  gap: 22px;
}

.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.white-label-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-card,
.price-card {
  padding: 28px;
  border-radius: 24px;
  position: relative;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card h3,
.price-card h3,
.white-label-points strong,
.faq-item summary { margin: 0 0 12px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #20c18a);
}

.device-showcase {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(248,250,255,0.94));
}

.device-laptop {
  position: absolute;
  inset: 44px 80px 54px 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, #11192c, #162341);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.device-header,
.phone-notch { border-radius: 999px; }
.device-header { height: 14px; width: 120px; background: rgba(255,255,255,0.16); }
.device-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0; }
.device-kpis span,
.phone-card,
.phone-button,
.device-chart,
.device-table i,
.phone-lines {
  display: block;
  border-radius: 14px;
}
.device-kpis span { height: 80px; background: rgba(255,255,255,0.10); }
.device-chart { height: 140px; background: linear-gradient(135deg, rgba(86,103,255,0.35), rgba(86,103,255,0.15)); }
.device-table { display: grid; gap: 12px; margin-top: 18px; }
.device-table i { height: 46px; background: rgba(255,255,255,0.08); }

.device-phone {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 190px;
  height: 390px;
  border-radius: 34px;
  padding: 16px;
  background: linear-gradient(180deg, #0f172a, #18284a);
  box-shadow: var(--shadow-lg);
}
.phone-notch { width: 80px; height: 8px; background: rgba(255,255,255,0.18); margin: 0 auto 18px; }
.phone-lines { height: 18px; background: rgba(255,255,255,0.12); margin-bottom: 12px; }
.phone-lines.short { width: 70%; }
.phone-card { height: 150px; background: linear-gradient(135deg, rgba(86,103,255,0.36), rgba(255,255,255,0.10)); margin: 20px 0; }
.phone-button { height: 50px; background: rgba(255,255,255,0.14); }

.price-head {
  align-items: center;
  margin-bottom: 18px;
}
.price { text-align: right; }
.price span { display: block; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; letter-spacing: -0.04em; }
.price small { color: var(--muted); }

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 26px;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 800;
}

.featured {
  border-color: rgba(86, 103, 255, 0.24);
  background: linear-gradient(180deg, rgba(86,103,255,0.09), rgba(255,255,255,0.96));
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -14px;
  right: 22px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 14px 30px rgba(64, 83, 255, 0.24);
  border: 1px solid rgba(255,255,255,0.28);
}

.comparison-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 26px;
}

.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
}
.comparison-table th { color: var(--muted); font-size: 0.95rem; }
.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) { text-align: center; }

.white-label-section { position: relative; }
.white-label-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  background:
    radial-gradient(circle at top right, rgba(86,103,255,0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(250,252,255,0.98));
}

.white-label-points div {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
}

.faq-item {
  padding: 20px 22px;
  border-radius: 20px;
}
.faq-item + .faq-item { margin-top: 14px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 1.3rem;
  color: var(--primary-strong);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 12px 0 0; }

.cta-section { padding-top: 30px; }
.cta-card {
  border-radius: 32px;
  padding: 40px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(86,103,255,0.34), transparent 26%),
    radial-gradient(circle at bottom left, rgba(14,165,111,0.18), transparent 22%),
    linear-gradient(135deg, #0d1324, #141f38 48%, #1a2951 100%);
  box-shadow: var(--shadow-lg);
}

.cta-card p,
.cta-card .contact-points span,
.form-note { color: rgba(255,255,255,0.78); }
.cta-card .contact-points span {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.10);
}

.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
.contact-form textarea { min-height: 132px; padding-top: 14px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.42); }
.contact-form select { appearance: none; }
.contact-form select option { color: var(--text); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(255,255,255,0.34);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 16px 30px rgba(64,83,255,0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.84);
  border-color: var(--line);
  color: var(--text);
}
.btn-block { width: 100%; }

.form-note.success { color: #b1ffd9; }
.form-note.error { color: #ffd6d6; }

.footer {
  padding: 26px 0 50px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .intro-grid,
  .split-section,
  .showcase-grid,
  .faq-grid,
  .cta-card,
  .white-label-card,
  .comparison-card {
    grid-template-columns: 1fr;
  }

  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; }
  .white-label-points { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 620px; }
  .panel-float-left { left: 0; }
  .panel-float-right { right: 0; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-cta { width: 100%; }

  .hero,
  .section { padding: 76px 0; }

  .hero-visual {
    min-height: auto;
    padding-bottom: 230px;
  }

  .panel-body { grid-template-columns: 1fr; }
  .app-sidebar { min-height: auto; }
  .panel-float {
    position: relative;
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 16px;
  }

  .feature-grid,
  .mini-proof-grid,
  .white-label-points { grid-template-columns: 1fr; }

  .device-laptop {
    inset: 26px 20px 110px 20px;
  }
  .device-phone {
    right: 16px;
    bottom: 16px;
    width: 160px;
    height: 330px;
  }

  .kpi-grid { grid-template-columns: 1fr; }
  .schedule-row { grid-template-columns: 1fr; gap: 10px; }
  .bars { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .hero h1 { max-width: 100%; }
  .intro-grid,
  .comparison-card,
  .white-label-card,
  .cta-card,
  .faq-grid,
  .feature-card,
  .price-card { padding: 22px; }
  .app-content,
  .app-sidebar { padding: 18px; }
  .device-showcase { min-height: 420px; }
  .device-laptop { inset: 20px 12px 96px 12px; }
  .device-phone {
    width: 136px;
    height: 280px;
  }
  .btn { width: 100%; }
  .hero-actions { flex-direction: column; }
}


/* V6 Asset Placeholder Styles */
.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo-img,
.footer-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 180px;
}

.footer-logo {
  height: 42px;
  margin-bottom: 16px;
}

.hero-media {
  position: relative;
  min-height: 620px;
}

.screenshot-card,
.showcase-image-card {
  background: rgba(255,255,255,0.86);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screenshot-main {
  max-width: 680px;
}

.screenshot-float {
  position: absolute;
  width: 230px;
}

.screenshot-float-right {
  right: -10px;
  top: 54px;
}

.screenshot-float-left {
  left: -18px;
  bottom: 20px;
}

.screenshot-img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-image-card {
  max-width: 720px;
}

.device-showcase {
  position: relative;
  min-height: 540px;
}

.showcase-desktop {
  width: min(100%, 680px);
}

.showcase-mobile {
  position: absolute;
  width: 240px;
  right: -8px;
  bottom: -16px;
}

@media (max-width: 1100px) {
  .hero-media {
    min-height: 520px;
  }

  .screenshot-float {
    width: 200px;
  }

  .showcase-mobile {
    width: 200px;
    right: 0;
  }
}

@media (max-width: 900px) {
  .brand-logo-img,
  .footer-logo {
    height: 40px;
    max-width: 160px;
  }

  .hero-media {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .screenshot-main,
  .showcase-desktop,
  .showcase-mobile,
  .screenshot-float {
    position: static;
    width: 100%;
    max-width: none;
  }

  .device-showcase {
    min-height: auto;
    display: grid;
    gap: 16px;
  }
}


.brand-logo-img { width: 124px; height: auto; display: block; }
.footer-links-main, .footer-links-legal { display:flex; gap:14px; flex-wrap:wrap; }
.checkbox-row { display:flex; gap:12px; align-items:flex-start; }
.checkbox-row input { margin-top: 4px; width: 18px; height: 18px; }
.checkbox-row span { color: rgba(255,255,255,0.84); line-height: 1.6; font-size: 0.95rem; }
.checkbox-row a { text-decoration: underline; }
.legal-page { min-height: 100vh; padding: 72px 0 120px; }
.legal-wrap { max-width: 900px; }
.legal-wrap h1 { margin: 18px 0 24px; line-height: 1.04; letter-spacing: -0.04em; font-size: clamp(2.3rem, 5vw, 4.2rem); }
.legal-wrap h2 { margin: 28px 0 10px; font-size: 1.2rem; }
.legal-card { background: rgba(255,255,255,0.86); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 34px; }
.legal-card-spaced p { margin-bottom: 16px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.78; }
.back-link { display:inline-block; margin-bottom: 18px; color: var(--primary-strong); font-weight: 700; }
@media (max-width: 720px) {
  .brand-logo-img { width: 104px; }
  .legal-card { padding: 24px; }
}


/* Consent */
.cookie-settings-link { cursor: pointer; }
.cm-btn, .cn-button { font-family: "Inter", system-ui, sans-serif; }
.klaro .cookie-notice:not(.cookie-modal-notice),
.klaro .cookie-modal { font-family: "Inter", system-ui, sans-serif; }
.klaro .cookie-notice { box-shadow: 0 24px 70px rgba(11, 18, 32, 0.22); }
.klaro .cm-btn-success { background: var(--primary) !important; }
.klaro .cm-btn-info { color: var(--text) !important; }


@media (max-width: 900px) {
  .price-card.featured {
    transform: none;
  }

  .badge {
    top: 18px;
    right: 18px;
  }

  .price-head {
    padding-top: 52px;
  }
}


picture {
  display: block;
  line-height: 0;
}


/* V12 Header + Mockup Refinements */
.topbar {
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.topbar.scrolled {
  background: rgba(248, 251, 255, 0.92);
  border-bottom-color: rgba(15, 23, 40, 0.08);
  box-shadow: 0 14px 40px rgba(11, 18, 32, 0.08);
}
.nav-wrap {
  transition: min-height 220ms ease;
}
.topbar.scrolled .nav-wrap {
  min-height: 76px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248,251,255,0.92), rgba(243,246,251,0.88));
  border: 1px solid rgba(15, 23, 40, 0.06);
  box-shadow: 0 8px 26px rgba(11, 18, 32, 0.06);
}
.brand-logo-img {
  display: block;
  width: auto;
  height: 54px;
  max-width: none;
}
.footer-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: none;
}

.nav a:not(.btn) {
  position: relative;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}
.nav a:hover:not(.btn)::after,
.nav a:focus-visible:not(.btn)::after {
  transform: scaleX(1);
}

.hero-media,
.device-showcase {
  isolation: isolate;
}

.hero-media::before,
.device-showcase::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: -1;
  border-radius: 34px;
  background: radial-gradient(circle at top right, rgba(86,103,255,0.12), transparent 34%),
              radial-gradient(circle at bottom left, rgba(14,165,111,0.08), transparent 28%);
  filter: blur(8px);
}

.screenshot-card,
.showcase-image-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,249,255,0.92));
}

.mockup-browser,
.mockup-tablet,
.mockup-phone {
  overflow: hidden;
}

.mockup-browser::before,
.mockup-tablet::before,
.mockup-phone::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(13, 19, 36, 0.08), rgba(13, 19, 36, 0.04));
  z-index: 2;
}

.mockup-browser::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 23px;
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 19, 36, 0.14);
  z-index: 3;
  box-shadow: 18px 0 0 rgba(13,19,36,0.12), 36px 0 0 rgba(13,19,36,0.10);
}

.mockup-tablet::before {
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  right: auto;
  background: rgba(13,19,36,0.12);
}

.mockup-phone {
  border-radius: 34px;
  border: 8px solid #0f1728;
  box-shadow: 0 28px 70px rgba(15, 23, 40, 0.18);
}
.mockup-phone::before {
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  right: auto;
  top: 12px;
  height: 18px;
  background: rgba(255,255,255,0.08);
}

.mockup-browser .screenshot-img,
.mockup-tablet .screenshot-img {
  padding-top: 52px;
}

.mockup-phone .screenshot-img {
  padding-top: 42px;
}

.screenshot-main {
  max-width: 700px;
  transform: rotate(-2deg);
}
.screenshot-float-right {
  top: 42px;
  right: 0;
}
.screenshot-float-left {
  left: 4px;
  bottom: 6px;
}

.showcase-desktop {
  transform: rotate(-1.2deg);
}
.showcase-mobile {
  bottom: -8px;
  right: 6px;
}

@media (max-width: 900px) {
  .brand-logo {
    padding: 8px;
    border-radius: 16px;
  }
  .brand-logo-img {
    height: 46px;
  }
  .footer-logo {
    height: 54px;
  }
  .nav a:not(.btn)::after {
    display: none;
  }
  .mockup-browser .screenshot-img,
  .mockup-tablet .screenshot-img {
    padding-top: 44px;
  }
  .mockup-phone .screenshot-img {
    padding-top: 36px;
  }
}

@media (max-width: 720px) {
  .brand-logo-img {
    height: 42px;
  }
}
