:root {
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-soft: #edf4f1;
  --ink: #0a1729;
  --muted: #596b82;
  --soft: #8b9bb0;
  --line: #dce5ee;
  --dark: #081627;
  --dark-deep: #04101d;
  --dark-card: #102238;
  --green: #14a85a;
  --green-bright: #20ce72;
  --green-soft: #dcf7e7;
  --blue: #2e6de6;
  --shadow: 0 24px 70px rgba(8, 22, 39, .12);
  --shadow-soft: 0 16px 44px rgba(8, 22, 39, .08);
  --radius: 26px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 14% 12%, rgba(20, 168, 90, .22), transparent 30%),
    radial-gradient(circle at 88% 70%, rgba(46, 109, 230, .15), transparent 32%),
    linear-gradient(138deg, var(--dark) 0%, #071b28 50%, var(--dark-deep) 100%);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  color: #fff;
  transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}
.site-header.scrolled,
body:has(.legal) .site-header {
  background: rgba(8, 22, 39, .92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -.045em;
  white-space: nowrap;
}
.brand > span:last-child span { color: var(--green-bright); }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 168, 90, .16);
  box-shadow: inset 0 0 0 1px rgba(32, 206, 114, .12);
}
.brand-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--green-bright);
  stroke-linecap: round;
  stroke-width: 5;
}
.brand-mark circle { fill: var(--green-bright); stroke: none; }
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 650;
}
.nav-menu { position: relative; }
.nav-menu > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-menu > a::after { content: "⌄"; font-size: 11px; line-height: 1; }
.nav-submenu {
  position: absolute;
  top: calc(100% + 17px);
  left: 50%;
  width: 250px;
  display: grid;
  gap: 2px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(8, 22, 39, .98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -7px);
  transition: opacity .16s ease, transform .16s ease;
}
.nav-submenu::before { content: ""; position: absolute; inset: -18px 0 auto; height: 18px; }
.nav-submenu a { padding: 10px 12px; border-radius: 10px; color: rgba(255, 255, 255, .78); font-size: 13px; }
.nav-submenu a:hover,
.nav-submenu a:focus-visible { background: rgba(255, 255, 255, .08); color: #fff; }
.nav-menu:hover .nav-submenu,
.nav-menu:focus-within .nav-submenu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.nav a,
.footer-links a { transition: color .16s ease; }
.nav a:hover,
.footer-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.language-switcher { position: relative; flex: 0 0 auto; }
.language-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}
.language-toggle strong { color: #63e9a1; font-size: 12px; letter-spacing: .06em; }
.language-chevron { font-size: 12px; transition: transform .16s ease; }
.language-switcher.open .language-chevron { transform: rotate(180deg); }
.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 60;
  width: 168px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  background: rgba(8, 22, 39, .98);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .34);
}
.language-menu[hidden] { display: none; }
.language-menu a { display: flex; align-items: center; justify-content: space-between; padding: 10px 11px; border-radius: 9px; color: rgba(255, 255, 255, .78); font-size: 13px; font-weight: 750; }
.language-menu a:hover,
.language-menu a:focus-visible,
.language-menu a[aria-current="page"] { background: rgba(32, 206, 114, .13); color: #fff; }
.language-check { opacity: 0; color: #63e9a1; }
.language-menu a[aria-current="page"] .language-check { opacity: 1; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 23px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: linear-gradient(135deg, #18b665, #0b9650);
  box-shadow: 0 13px 28px rgba(20, 168, 90, .26);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(20, 168, 90, .34); }
.button-small { min-height: 42px; padding: 10px 16px; border-radius: 10px; font-size: 14px; }
.button-ghost { background: rgba(255, 255, 255, .055); border-color: rgba(255, 255, 255, .24); box-shadow: none; }
.button-ghost:hover { background: rgba(255, 255, 255, .11); box-shadow: none; }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
}
.menu-button span { display: block; height: 2px; margin: 6px 0; border-radius: 10px; background: #fff; }

/* Shared typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #59e79e; }
.section-heading { max-width: 850px; margin: 0 auto 52px; text-align: center; }
.section-heading.narrow { max-width: 760px; }
.compliance-promise-heading { max-width: 1080px; }
.compliance-promise-heading > p:last-child { max-width: 900px; }
.section-heading h2,
.feature-copy h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.03;
  letter-spacing: -.055em;
}
.section-heading > p:last-child,
.feature-copy > p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.section-dark .section-heading > p:last-child { color: rgba(255, 255, 255, .7); }

/* Hero */
.hero { min-height: 830px; padding: 142px 0 96px; display: flex; align-items: center; }
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(38px, 4vw, 62px);
}
.hero-copy { max-width: 600px; }
.hero .eyebrow { display: flex; align-items: center; gap: 9px; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 6px rgba(32, 206, 114, .12);
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 4.9vw, 68px);
  line-height: .97;
  letter-spacing: -.065em;
}
.hero-lead { margin: 27px 0 0; color: rgba(255, 255, 255, .75); font-size: 19px; line-height: 1.62; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; margin-top: 31px; }
.button-hero-primary { min-width: 280px; min-height: 64px; padding: 18px 34px; border-radius: 15px; font-size: 17px; letter-spacing: .015em; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 35px; color: rgba(255, 255, 255, .58); font-size: 13px; }
.hero-proof span { position: relative; padding-left: 15px; }
.hero-proof span::before { content: ""; position: absolute; top: .48em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--green-bright); }
.hero-proof strong { color: #fff; font-weight: 750; }
.hero-visual { position: relative; min-width: 0; isolation: isolate; }
.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% -10% -9% 8%;
  border-radius: 44px;
  background: radial-gradient(circle at 65% 40%, rgba(32, 206, 114, .2), rgba(46, 109, 230, .08) 45%, transparent 72%);
  filter: blur(30px);
}
.visual-label { display: flex; align-items: center; justify-content: space-between; margin: 0 10px 12px; color: rgba(255, 255, 255, .55); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.visual-label strong { color: #70e8a7; }
.browser-frame {
  overflow: hidden;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 25px;
  background: #0a1b2d;
  box-shadow: 0 48px 120px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .05);
  transform: none;
}
.browser-top { height: 24px; display: flex; align-items: center; gap: 7px; padding: 0 7px; }
.browser-top span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, .24); }
.browser-frame img { width: 100%; height: auto !important; aspect-ratio: 1900 / 1078; object-fit: contain; border-radius: 16px; }
.hero-orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .06); border-radius: 50%; pointer-events: none; }
.hero-orbit-one { width: 520px; height: 520px; top: -230px; left: 22%; }
.hero-orbit-two { width: 780px; height: 780px; right: -390px; bottom: -420px; }

/* Overview */
.intro-section { padding: 96px 0 108px; background: #fff; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #f8fbfa);
  box-shadow: var(--shadow-soft);
}
.outcome-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 168, 90, .11), transparent 68%);
  pointer-events: none;
}
.outcome-number { display: inline-flex; margin-bottom: 34px; color: var(--green); font-size: 13px; font-weight: 850; letter-spacing: .1em; }
.outcome-card h3 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.outcome-card p { margin: 12px 0 0; color: var(--muted); line-height: 1.65; }

/* Product screens */
.dashboard-section { padding: 112px 0; background: #fff; }
.analysis-section { padding: 108px 0; background: linear-gradient(180deg, #eef5f2 0%, #f6f9fb 100%); }
.feature-showcase { display: grid; grid-template-columns: .36fr .64fr; gap: clamp(42px, 5vw, 70px); align-items: center; }
.feature-copy { padding: 18px 6px; }
.feature-copy h2 { font-size: clamp(36px, 4.1vw, 54px); }
.check-list { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: #34475e; line-height: 1.52; }
.check-list li::before {
  content: "";
  position: absolute;
  top: .2em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-soft);
}
.check-list li::after {
  content: "";
  position: absolute;
  top: .57em;
  left: 6px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: rotate(-45deg);
}
.shot-card {
  position: relative;
  overflow: hidden;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.shot-card img { width: 100%; height: auto; border-radius: 15px; }
.showcase-shot { transform: translateZ(0); }
.dashboard-detail-shot { aspect-ratio: 16 / 8.15; }
.dashboard-detail-shot img {
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
  transform: scale(1.09);
}
.analysis-intro { max-width: 820px; margin: 0 auto; padding: 0; text-align: center; }
.analysis-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.analysis-screen-item { position: relative; min-width: 0; padding-top: 28px; }
.analysis-screen-item .shot-card { height: 100%; }
.secondary-screen-label {
  position: absolute;
  top: 0;
  left: 10px;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.feature-section { padding: 112px 0 120px; background: var(--bg); }
.feature-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 24px; }
.story-group-heading {
  position: relative;
  grid-column: 1 / -1;
  max-width: 790px;
  margin: 98px auto 12px;
  padding-top: 30px;
  scroll-margin-top: 104px;
  text-align: center;
}
.story-group-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: translateX(-50%);
}
.story-group-heading:first-child { margin-top: 0; padding-top: 0; }
.story-group-heading:first-child::before { display: none; }
.story-group-heading h2 { margin: 0; font-size: clamp(36px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -.055em; }
.story-group-heading > p:not(.eyebrow) { margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.story-group-heading .section-note { margin-top: 9px; color: var(--soft); font-size: 14px; }
.feature-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 44px rgba(8, 22, 39, .065);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.feature-tile:hover { transform: translateY(-4px); border-color: #c7ddd2; box-shadow: 0 25px 65px rgba(8, 22, 39, .11); }
.tile-copy { padding: 3px 3px 23px; }
.feature-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #0c9250;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tile-copy h3 { margin: 0; font-size: clamp(25px, 2.6vw, 34px); line-height: 1.08; letter-spacing: -.045em; }
.tile-copy p { margin: 13px 0 0; color: var(--muted); line-height: 1.62; }
.tile-shot { margin-top: auto; padding: 7px; border-radius: 18px; box-shadow: 0 18px 46px rgba(8, 22, 39, .1); }
.tile-shot img { border-radius: 12px; }
.vehicle-overview-tile .tile-shot,
.vehicle-timeline-tile .tile-shot { background: #f5f8fb; }
.report-builder-tile { background: linear-gradient(145deg, #fff, #f4faf7); }
.report-preview-tile { min-width: 0; }
.report-preview-shot { display: grid; min-height: 0; place-items: center; background: #eef3f1; }
.report-preview-shot img { width: auto; max-width: 100%; max-height: 620px; object-fit: contain; }

.value-stack { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 100px; }
.compact-story-card {
  min-width: 0;
  padding: 40px clamp(30px, 3.8vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.compact-story-card h2 { max-width: 760px; margin: 0; font-size: clamp(32px, 3.3vw, 44px); line-height: 1.04; letter-spacing: -.05em; }
.compact-story-card > p:not(.eyebrow) { max-width: 850px; margin: 18px 0 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.business-value-card { border-color: #17463b; background: linear-gradient(135deg, #071c2b, #0c332f); color: #fff; }
.business-value-card .eyebrow { color: #65e6a0; }
.business-value-card > p:not(.eyebrow) { color: rgba(255, 255, 255, .72); }
.data-card .business-note { padding-top: 17px; border-top: 1px solid var(--line); font-size: 16px; }
.business-note strong { color: var(--ink); }

/* Themes */
.themes-section { padding: 62px 0 68px; }
.themes-section .section-heading { margin-bottom: 28px; }
.themes-section .section-heading h2 { font-size: clamp(32px, 3.5vw, 44px); }
.theme-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.theme-card { min-width: 0; padding: 15px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 24px; background: rgba(255, 255, 255, .055); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.theme-card:hover { transform: translateY(-4px); border-color: rgba(89, 231, 158, .34); background: rgba(255, 255, 255, .075); }
.theme-card-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px 6px 15px; color: rgba(255, 255, 255, .48); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.theme-card-head > div { display: flex; align-items: center; gap: 9px; }
.theme-card-head h3 { margin: 0; color: #fff; font-size: 18px; letter-spacing: -.02em; text-transform: none; }
.theme-swatch { width: 11px; height: 11px; border-radius: 50%; box-shadow: 0 0 0 4px rgba(255, 255, 255, .07); }
.default-swatch { background: var(--green-bright); }
.light-swatch { background: #fff; }
.dark-swatch { background: #40658e; }
.theme-shot { padding: 5px; border-color: rgba(255, 255, 255, .08); border-radius: 15px; background: #0a1929; box-shadow: 0 26px 60px rgba(0, 0, 0, .3); }
.theme-shot img { border-radius: 10px; }

/* Pricing */
.pricing-section { padding: 106px 0 112px; background: #fff; }
.pricing-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: stretch; gap: 22px; max-width: 970px; margin: 0 auto; }
.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.pricing-card-featured { border-color: #163a34; background: var(--dark); color: #fff; box-shadow: 0 30px 75px rgba(8, 22, 39, .23); }
.pricing-card-featured::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 260px; height: 260px; border-radius: 50%; background: rgba(20, 168, 90, .2); filter: blur(25px); pointer-events: none; }
.popular-badge { position: absolute; top: 18px; right: 18px; z-index: 1; padding: 7px 10px; border-radius: 999px; background: rgba(32, 206, 114, .14); color: #6eeba8; font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.pricing-head { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.plan-label { color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pricing-card-featured .plan-label { color: #63e9a1; }
.pricing-head h3 { margin: 8px 0 0; font-size: 25px; letter-spacing: -.04em; }
.price { flex: 0 0 auto; margin: 0; text-align: right; }
.price strong { display: block; font-size: 38px; letter-spacing: -.055em; }
.price span { display: block; max-width: 130px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.pricing-card-featured .price span { color: rgba(255, 255, 255, .58); }
.pln-conversion {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(20, 168, 90, .32);
  border-radius: 14px;
  background: #eaf9f1;
  color: #075c38;
}
.pln-conversion strong { font-size: 21px; line-height: 1.15; letter-spacing: -.025em; }
.pln-conversion span { color: #296d51; font-size: 12px; font-weight: 750; line-height: 1.4; }
.pricing-card-featured .pln-conversion { border-color: rgba(99, 233, 161, .38); background: rgba(32, 206, 114, .13); color: #8af0b9; }
.pricing-card-featured .pln-conversion span { color: rgba(255, 255, 255, .75); }
.pln-conversion-inline {
  display: inline-block;
  margin: .2em 0 .2em .4em;
  padding: 3px 8px;
  border: 1px solid rgba(20, 168, 90, .25);
  border-radius: 999px;
  background: #eaf9f1;
  color: #087443;
  font-size: .82em;
  font-weight: 800;
  line-height: 1.35;
}
.vat-note { position: relative; z-index: 1; margin: 12px 0 0; color: var(--soft); font-size: 13px; }
.pricing-list { position: relative; z-index: 1; margin-top: 28px; }
.pricing-card-featured .pricing-list li { color: rgba(255, 255, 255, .76); }
.full-button { position: relative; z-index: 1; width: 100%; margin-top: 29px; }
.pricing-detail-link { position: relative; z-index: 1; display: block; margin-top: 16px; color: var(--green); font-size: 14px; font-weight: 800; text-align: center; }
.pricing-card-featured .pricing-detail-link { color: #70e8a7; }
.trial-note { margin: 24px 0 0; color: var(--muted); text-align: center; }
.trial-note strong { color: var(--ink); }
.compliance-note {
  max-width: 970px;
  display: grid;
  grid-template-columns: .28fr .72fr;
  gap: 20px;
  margin: 22px auto 0;
  padding: 20px 22px;
  border: 1px solid #cfe0d7;
  border-radius: 18px;
  background: #f2f8f5;
}
.compliance-note strong { color: #16643d; }
.compliance-note p { margin: 0; color: var(--muted); line-height: 1.55; }

/* FAQ and footer */
.faq-section { padding: 94px 0 100px; border-top: 1px solid var(--line); background: #f7fafc; }
.faq-wrap { max-width: 980px; }
.faq-section .section-heading { margin-bottom: 30px; }
.faq-list { display: grid; gap: 11px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: #fff; box-shadow: 0 9px 25px rgba(8, 22, 39, .04); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; cursor: pointer; font-weight: 800; letter-spacing: -.015em; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green); font-size: 21px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.65; }
.resource-links { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 30px; }
.resource-links a { min-width: 0; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease; }
.resource-links a:hover { border-color: #afd8c2; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.resource-links strong, .resource-links span { display: block; }
.resource-links strong { margin-bottom: 6px; font-size: 14px; }
.resource-links span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.final-cta { padding: 102px 0; }
.cta-box { max-width: 900px; text-align: center; }
.cta-box p:not(.eyebrow) { max-width: 650px; margin: 20px auto 0; color: rgba(255, 255, 255, .7); font-size: 18px; line-height: 1.62; }
.center-actions { justify-content: center; }
.site-footer { padding: 36px 0; background: #030f1b; color: rgba(255, 255, 255, .63); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-brand { color: #fff; font-size: 19px; }
.footer-grid > p { margin: 0; font-size: 13px; text-align: center; }
.footer-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 16px; font-size: 13px; }

/* Search-focused product guides */
.seo-page { background: #fff; }
.seo-hero { padding: 142px 0 82px; }
.seo-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(38px, 6vw, 90px); }
.seo-hero-grid-solo { grid-template-columns: 1fr; }
.seo-hero-grid-solo .seo-hero-copy { max-width: 900px; }
.seo-hero-copy h1 { max-width: 760px; margin: 16px 0 22px; font-size: clamp(44px, 6vw, 76px); line-height: .99; letter-spacing: -.065em; }
.seo-hero-copy > p:not(.eyebrow) { max-width: 660px; color: rgba(255, 255, 255, .72); font-size: 18px; line-height: 1.68; }
.seo-hero .shot-card { padding: 8px; background: rgba(255, 255, 255, .95); }
.seo-hero .shot-card img { width: 100%; height: auto; border-radius: 14px; }
.hero-panel { min-height: 420px; padding: clamp(24px, 3vw, 34px); border: 1px solid rgba(255, 255, 255, .72); border-radius: 24px; background: linear-gradient(145deg, #fff, #edf5f2); box-shadow: 0 30px 70px rgba(0, 0, 0, .24); color: var(--ink); }
.activity-gap-panel { min-height: 0; }
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.hero-panel-kicker { color: #157044; font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.hero-panel-status { display: inline-flex; align-items: center; gap: 7px; color: #476055; font-size: 12px; font-weight: 800; white-space: nowrap; }
.hero-panel-status > span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(24, 181, 106, .12); }
.hero-panel-title { max-width: 500px; margin: 25px 0 22px; font-size: clamp(25px, 3vw, 36px); font-weight: 900; line-height: 1.08; letter-spacing: -.045em; }
.hero-panel-copy { max-width: 600px; margin: -7px 0 22px; color: var(--muted); font-size: 14px; line-height: 1.58; }
.hero-metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.hero-metric { min-width: 0; padding: 15px; border: 1px solid #d8e3df; border-radius: 14px; background: rgba(255, 255, 255, .78); }
.hero-metric strong, .hero-metric span { display: block; }
.hero-metric strong { font-size: 15px; letter-spacing: -.02em; }
.hero-metric span { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.hero-flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 16px; }
.hero-flow-spacious { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 24px; }
.hero-flow-item { display: flex; min-width: 0; align-items: flex-start; gap: 11px; padding: 14px; border: 1px solid #d8e3df; border-radius: 14px; background: #fff; }
.hero-step { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 50%; background: #dff6e9; color: #0d7545; font-size: 11px; font-weight: 900; }
.hero-flow-item strong, .hero-flow-item div > span { display: block; }
.hero-flow-item strong { font-size: 13px; }
.hero-flow-item div > span { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 17px; color: rgba(255, 255, 255, .62); font-size: 13px; }
.breadcrumbs a:hover { color: #fff; }
.seo-intro { padding: 86px 0 50px; }
.seo-intro-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(32px, 7vw, 100px); }
.seo-intro h2, .seo-section h2 { margin: 0; font-size: clamp(34px, 4.3vw, 55px); line-height: 1.06; letter-spacing: -.05em; }
.seo-prose { color: var(--muted); font-size: 17px; line-height: 1.75; }
.seo-prose > *:first-child { margin-top: 0; }
.seo-prose strong { color: var(--ink); }
.seo-section { padding: 76px 0; }
.seo-section-soft { border-block: 1px solid var(--line); background: #f5f8fb; }
.seo-section-heading { max-width: 820px; margin-bottom: 36px; }
.seo-section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.seo-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 12px 34px rgba(8, 22, 39, .05); }
.seo-card h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.025em; }
.seo-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.seo-split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(36px, 7vw, 92px); }
.seo-split .shot-card img { width: 100%; height: auto; }
.seo-list { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.seo-list li { position: relative; padding-left: 28px; color: var(--muted); line-height: 1.55; }
.seo-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.seo-note { margin-top: 24px; padding: 18px 20px; border: 1px solid #cfe0d7; border-radius: 15px; background: #f2f8f5; color: var(--muted); line-height: 1.6; }
.seo-note strong { color: #16643d; }
.inline-link { color: #0e824d; font-weight: 800; text-decoration: underline; text-decoration-color: rgba(14, 130, 77, .28); text-underline-offset: 3px; }
.inline-link:hover { text-decoration-color: currentColor; }
.audience-section { padding: 94px 0; border-top: 1px solid var(--line); background: #f7fafc; }
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.audience-card { display: flex; min-height: 270px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 14px 38px rgba(8, 22, 39, .055); }
.audience-card .eyebrow { margin-bottom: 18px; }
.audience-card h2 { margin: 0; font-size: 30px; line-height: 1.08; letter-spacing: -.045em; }
.audience-card p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); line-height: 1.65; }
.audience-card .inline-link { margin-top: auto; padding-top: 24px; }
.audience-card-featured { border-color: #17463b; background: linear-gradient(140deg, #071c2b, #0c332f); color: #fff; }
.audience-card-featured p:not(.eyebrow) { color: rgba(255, 255, 255, .7); }
.audience-card-featured .inline-link { color: #6eeba8; }
.plan-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.plan-fact { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.plan-fact strong, .plan-fact span { display: block; }
.plan-fact strong { color: var(--ink); font-size: 14px; }
.plan-fact span { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.pricing-page-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 22px; }
.pricing-page-grid .pricing-card { display: flex; flex-direction: column; }
.pricing-page-grid .pricing-list { flex: 1; }
.billing-highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 22px; }
.billing-highlight { padding: 25px 27px; border: 1px solid #16463c; border-radius: 19px; background: linear-gradient(145deg, #071c2b, #0c3934); color: #fff; box-shadow: 0 15px 34px rgba(8, 22, 39, .12); }
.billing-highlight:nth-child(2) { border-color: #23945c; background: linear-gradient(145deg, #0c663f, #118851); }
.billing-highlight strong { display: block; max-width: 520px; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.13; letter-spacing: -.035em; }
.billing-highlight p { margin: 12px 0 0; color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.55; }
.billing-accordion { max-width: none; }
.release-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(89, 231, 158, .24); border-radius: 999px; background: rgba(32, 206, 114, .1); color: #7aebb0; font-size: 12px; font-weight: 850; letter-spacing: .04em; }
.release-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 5px rgba(32, 206, 114, .1); }
.seo-related { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.seo-related a { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; font-weight: 800; transition: transform .16s ease, border-color .16s ease; }
.seo-related a:hover { transform: translateY(-2px); border-color: #afd8c2; }
.seo-related span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.45; }
.source-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.source-list a { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.source-list a:hover { transform: translateY(-2px); border-color: #afd8c2; box-shadow: 0 12px 28px rgba(8, 22, 39, .06); }
.source-list strong { display: block; color: var(--ink); }
.source-list span { display: block; margin-top: 7px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.seo-faq { padding: 78px 0 90px; background: #f7fafc; }
.seo-faq .faq-wrap { width: min(980px, calc(100% - 48px)); margin: 0 auto; }

/* Screenshot lightbox */
.image-zoomable { position: relative; cursor: zoom-in; }
.image-zoomable::after {
  content: "Kliknij, aby powiększyć";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(8, 22, 39, .86);
  color: #fff;
  font-size: 11px;
  font-weight: 750;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition: opacity .16s ease, transform .16s ease;
}
.image-zoomable:hover::after,
.image-zoomable:focus-visible::after { opacity: 1; transform: none; }
.image-zoomable:focus-visible,
.faq-item summary:focus-visible,
.button:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible,
.menu-button:focus-visible,
.language-toggle:focus-visible { outline: 3px solid #41dc8a; outline-offset: 4px; }
.lightbox[hidden] { display: none !important; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 28px; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(3, 15, 27, .86); backdrop-filter: blur(12px); }
.lightbox-dialog { position: relative; width: min(95vw, 1180px); max-height: 93vh; overflow: auto; padding: 14px; border-radius: 24px; background: #fff; box-shadow: 0 45px 140px rgba(0, 0, 0, .55); }
.lightbox-bar { position: sticky; top: 0; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 9px 9px 14px; background: linear-gradient(180deg, #fff 72%, rgba(255, 255, 255, .94)); }
.lightbox-bar .eyebrow { margin-bottom: 5px; }
.lightbox-bar h2 { margin: 0; font-size: 24px; letter-spacing: -.04em; }
.lightbox-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 13px; background: #f7fafc; color: var(--ink); cursor: pointer; font-size: 27px; line-height: 1; }
.lightbox-pages { display: grid; gap: 18px; }
.lightbox-pages img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 15px; background: #fff; }

/* Motion */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1180px) {
  html { scroll-behavior: auto; }
  .nav, .nav-actions { display: none; }
  .menu-button { display: block; }
  .site-header.open { min-height: 100dvh; height: auto; align-items: flex-start; padding-top: 18px; background: rgba(8, 22, 39, .98); backdrop-filter: blur(18px); }
  .site-header.open .menu-button { position: absolute; top: 17px; right: 24px; }
  .site-header.open .nav,
  .site-header.open .nav-actions { position: absolute; right: 24px; left: 24px; display: flex; }
  .site-header.open .nav { top: 102px; flex-direction: column; align-items: flex-start; gap: 22px; color: #fff; font-size: 26px; }
  .site-header.open .nav { max-height: calc(100dvh - 245px); overflow-y: auto; padding-bottom: 20px; }
  .site-header.open .nav-actions { top: auto; bottom: 24px; flex-direction: column; align-items: stretch; }
  .site-header.open .language-switcher { width: 100%; }
  .site-header.open .language-toggle { width: 100%; justify-content: space-between; }
  .site-header.open .language-menu { top: auto; right: 0; bottom: calc(100% + 8px); left: 0; width: 100%; }
  .site-header.open .nav-menu { width: 100%; }
  .site-header.open .nav-menu > a::after { display: none; }
  .site-header.open .nav-submenu { position: static; width: 100%; margin-top: 12px; padding: 8px; opacity: 1; pointer-events: auto; transform: none; }
  .site-header.open .nav-submenu a { padding: 9px 11px; font-size: 14px; }
  .site-header.open .nav-actions .button { width: 100%; }
  .hero { min-height: auto; padding-top: 124px; }
  .hero-layout,
  .feature-showcase { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { margin-top: 18px; }
  .browser-frame { transform: none; }
  .feature-copy { max-width: 760px; padding: 0; }
  .footer-grid { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .resource-links { grid-template-columns: repeat(2, 1fr); }
  .seo-hero-grid { grid-template-columns: 1fr; }
  .seo-hero-copy { max-width: 820px; }
  .seo-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .seo-related { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card-featured { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 74px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { height: 70px; padding: 0 14px; }
  .site-header.open .menu-button { top: 13px; right: 14px; }
  .site-header.open .nav,
  .site-header.open .nav-actions { right: 14px; left: 14px; }
  .site-header.open .nav { top: 92px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding: 108px 0 64px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-direction: column; gap: 10px; }
  .visual-label { margin-top: 9px; }
  .browser-frame { padding: 6px; border-radius: 17px; }
  .browser-top { display: none; }
  .browser-frame img { border-radius: 11px; }
  .intro-section,
  .dashboard-section,
  .analysis-section,
  .feature-section,
  .themes-section,
  .pricing-section,
  .faq-section,
  .audience-section { padding: 70px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .feature-copy h2,
  .cta-box h2 { font-size: 36px; }
  .section-heading > p:last-child,
  .feature-copy > p:not(.eyebrow) { font-size: 16px; }
  .outcome-grid,
  .feature-gallery,
  .pricing-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 0; padding: 25px; }
  .outcome-number { margin-bottom: 22px; }
  .shot-card { padding: 6px; border-radius: 16px; }
  .shot-card img { border-radius: 11px; }
  .feature-tile { grid-column: auto; display: flex; padding: 20px; border-radius: 21px; }
  .feature-tile:hover,
  .theme-card:hover { transform: none; }
  .tile-copy { padding: 2px 2px 20px; }
  .tile-copy h3 { font-size: 28px; }
  .story-group-heading { grid-column: auto; margin-top: 58px; }
  .story-group-heading:first-child { margin-top: 0; }
  .story-group-heading h2 { font-size: 36px; }
  .story-group-heading > p:not(.eyebrow) { font-size: 16px; }
  .analysis-screen-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 34px; }
  .dashboard-detail-shot { aspect-ratio: auto; }
  .dashboard-detail-shot img { height: auto; object-fit: contain; transform: none; }
  .value-stack { grid-template-columns: 1fr; margin-top: 70px; }
  .compact-story-card { padding: 29px 24px; border-radius: 22px; }
  .compact-story-card h2 { font-size: 34px; }
  .compact-story-card > p:not(.eyebrow) { font-size: 16px; }
  .report-preview-shot img { max-height: 500px; }
  .theme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .theme-card { padding: 6px; border-radius: 14px; }
  .theme-card-head { padding: 4px 2px 9px; }
  .theme-card-head h3 { font-size: 13px; }
  .theme-card-head > span { display: none; }
  .theme-card-head > div { gap: 6px; }
  .theme-swatch { width: 7px; height: 7px; box-shadow: 0 0 0 3px rgba(255, 255, 255, .07); }
  .theme-shot { padding: 2px; border-radius: 8px; }
  .theme-shot img { border-radius: 6px; }
  .theme-shot.image-zoomable::after { display: none; }
  .pricing-card { padding: 25px; border-radius: 23px; }
  .pricing-head { flex-direction: column; }
  .price { text-align: left; }
  .price span { max-width: none; }
  .compliance-note { grid-template-columns: 1fr; gap: 8px; }
  .popular-badge { top: 17px; right: 17px; }
  .faq-item summary { padding: 18px; font-size: 15px; }
  .faq-item p { padding: 0 18px 18px; font-size: 15px; }
  .final-cta { padding: 76px 0; }
  .cta-box p:not(.eyebrow) { font-size: 16px; }
  .footer-links { gap: 13px 17px; }
  .resource-links, .seo-card-grid, .seo-related, .seo-split, .source-list { grid-template-columns: 1fr; }
  .audience-grid,
  .pricing-page-grid,
  .billing-highlights,
  .plan-facts { grid-template-columns: 1fr; }
  .audience-card-featured { grid-column: auto; }
  .audience-card { min-height: 0; padding: 25px; }
  .seo-hero { padding: 108px 0 62px; }
  .seo-hero-copy h1 { font-size: clamp(43px, 13vw, 60px); }
  .seo-hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-panel { min-height: 0; padding: 22px; }
  .hero-panel-head { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-metric-grid, .hero-flow, .hero-flow-spacious { grid-template-columns: 1fr; }
  .hero-panel-title { font-size: 29px; }
  .seo-intro, .seo-section, .seo-faq { padding: 64px 0; }
  .seo-faq .faq-wrap { width: min(100% - 28px, 980px); }
  .seo-card { padding: 23px; }
  .lightbox { padding: 10px; }
  .lightbox-dialog { width: 100%; max-height: 95vh; padding: 9px; border-radius: 17px; }
  .lightbox-bar h2 { font-size: 19px; }
  .lightbox-close { width: 38px; height: 38px; }
  .image-zoomable::after { content: "Dotknij, aby powiększyć"; right: 9px; bottom: 9px; padding: 6px 9px; opacity: 1; transform: none; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
