:root {
  --container: 1200px;
  --text: #0f172a;
  --muted: #475569;
  --bg: #f6f8fa;
  --white: #ffffff;
  --line: #e2e8f0;
  --primary: #0a8f7a;
  --primary-dark: #087465;
  --nav: #0b2a3a;
  --footer: #0b2a3a;
  --status-green: #22c55e;
  --status-yellow: #f59e0b;
  --status-red: #ef4444;
  --shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

.no-scroll {
  overflow: hidden;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 5rem 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav);
  border-bottom: 1px solid #15384b;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}


.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;

  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
}

.brand small {
  font-size: 0.72rem;
  font-weight: 500;
  color: #a8c4d1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #c7d6df;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ffffff;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.cta:hover {
  background: var(--primary-dark);
}

.cta.secondary {
  background: #dcefeb;
  color: #0b2a3a;
}

.cta-inline {
  border: 1px solid #78baa8;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.subheadline {
  color: var(--muted);
  font-size: 1.08rem;
}

.trust-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.trust-list li::before {
  content: '✓';
  color: var(--primary-dark);
  margin-right: 0.5rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-trust-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.trial-note {
  margin: 1rem 0 1.3rem;
  background: #eef7f5;
  border: 1px solid #d5e8e3;
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: #184153;
}

.image-frame {
  min-height: 320px;
  border-radius: 1rem;
  border: 1px solid #cbd5e1;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-shot img,
.scan-shot img {
  object-fit: contain;
  background: #eef4f7;
}

.zoomable-image {
  cursor: zoom-in;
}

.dashboard-shot {
  min-height: 360px;
}

.problem {
  background: #fff8f8;
}

.problem-list {
  font-size: 1.1rem;
  color: #7f1d1d;
}

.audiences {
  background: #ffffff;
}

.audience-list {
  max-width: 760px;
  margin-top: 1.25rem;
  columns: 2;
}

.audience-grid,
.simplicity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.audience-card,
.simplicity-card,
.onboarding-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.audience-card h3,
.simplicity-card h3 {
  margin-bottom: 0.45rem;
}

.audience-card p,
.simplicity-card p {
  margin: 0;
  color: var(--muted);
}

.outcomes {
  background: #f1f7fb;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.outcome-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.outcome-value {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0b2a3a;
}

.outcome-label {
  margin: 0;
  color: var(--muted);
}

.outcome-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.card,
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.proof-card {
  display: grid;
  gap: 0.8rem;
}

.proof-shot {
  min-height: 240px;
  padding: 0.75rem;
}

.proof-thumb {
  height: auto !important;
  max-height: 100%;
  border-radius: 0.75rem;
  object-fit: contain;
  background: #eef4f7;
}

.caption-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow);
}

.caption-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0b2a3a;
}

.caption-card p {
  margin: 0;
  color: var(--muted);
}

.simplicity {
  background: #f9fcfb;
}

.roi {
  background: #eef9f6;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.roi-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  gap: 0.4rem;
}

.roi-form label {
  margin-top: 0.6rem;
  font-weight: 700;
  color: #0b2a3a;
}

.roi-form input[type="range"] {
  width: 100%;
}

.roi-input-value {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-weight: 600;
}

.roi-result {
  background: #0b2a3a;
  color: #e8f2f7;
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.roi-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  color: #9edfd3;
}

.roi-euro {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.roi-hours {
  margin: 0.2rem 0 0.9rem;
  font-weight: 700;
  color: #c7d6df;
}

.roi-disclaimer {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #c7d6df;
}

.roi-result .cta {
  width: 100%;
}

.quote {
  font-size: 1.05rem;
  font-weight: 600;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.testimonial-meta {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta,
.logos {
  color: var(--muted);
}

.trust-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.trust-facts .meta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
  padding: 0.75rem 0.9rem;
  margin: 0;
}

.offer-stack {
  background: #fffdf6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.offer-card h3 {
  margin-bottom: 0.45rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

.risk-box {
  margin-top: 1rem;
  background: #0b2a3a;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  color: #dceaf1;
}

.risk-box p {
  margin: 0;
}

.risk-box p + p {
  margin-top: 0.45rem;
}

.onboarding-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 1rem;
}

.onboarding-price-box {
  background: #f2f7fa;
}

.onboarding-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.onboarding-price {
  margin: 0.4rem 0 0.5rem;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
  color: #0b2a3a;
}

.onboarding-note {
  margin: 0 0 1rem;
  color: var(--muted);
}

.onboarding-actions {
  margin-top: auto;
}

.pricing-pairs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
  margin-top: 1.4rem;
}

.pricing-pair {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pricing-simple {
  margin-top: 1.4rem;
}

.pricing-simple-card {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-guarantee {
  margin: 0 0 0.7rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--nav);
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing .subheadline {
  max-width: 760px;
  margin-top: 0;
}

.pricing-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.pricing-tax-note {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured {
  border: 2px solid var(--nav);
  background: #f2f7fa;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #e8fffb;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.plan-head h3 {
  margin-bottom: 0.35rem;
}

.plan-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 2rem;
}

.plan-title-row h3 {
  margin: 0;
}

.plan-audience {
  color: #111827;
  min-height: 4.2rem;
  margin-bottom: 0.2rem;
}

.plan-price-wrap {
  min-height: 6.2rem;
  margin-bottom: 0.9rem;
}

.billing-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.billing-note + .billing-note {
  margin-top: 0.3rem;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
}

.plan-details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

.plan-list-intro {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: #111827;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--status-green);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.lead-form input,
.lead-form select {
  padding: 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5e1;
  font: inherit;
}

.lead-form select {
  background: #ffffff;
}

.lead-form .cta:disabled {
  opacity: 0.75;
  cursor: wait;
}

.lead-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.lead-cta-row .cta {
  flex: 1 1 220px;
}

.form-status {
  margin: 0;
  font-weight: 600;
}

.form-status.is-pending {
  color: #1d4ed8;
}

.form-status.is-success {
  color: #166534;
}

.form-status.is-error {
  color: #b91c1c;
}

.privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-subline,
.microcopy {
  color: var(--muted);
  margin-top: 0;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
}

.faq details + details {
  margin-top: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.pricing-terms {
  margin-top: 1.25rem;
  background: #eef4f7;
  border: 1px solid #d0dde5;
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
}

.pricing-terms summary {
  cursor: pointer;
  font-weight: 700;
  color: #0b2a3a;
}

.objections {
  background: #f3f7fa;
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.objection-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  padding: 0.95rem 1rem;
}

.objection-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.06rem;
}

.objection-card p {
  margin: 0;
  color: var(--muted);
}

.footer {
  background: var(--footer);
  color: #cbd5e1;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 0.6rem;
}

.footer a {
  color: #9edfd3;
  text-decoration: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 42, 58, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  flex-direction: column;
  gap: 0.8rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  width: auto;
  max-width: min(1200px, 94vw);
  max-height: 82vh;
  border-radius: 0.75rem;
  border: 1px solid #9fb8c5;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox-close {
  align-self: flex-end;
  background: #ffffff;
  color: #0b2a3a;
  border: none;
  border-radius: 0.55rem;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}

.lightbox-caption {
  margin: 0;
  color: #d9e5ea;
  font-size: 0.95rem;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .roi-grid,
  .outcome-grid,
  .offer-grid,
  .audience-grid,
  .proof-gallery,
  .simplicity-grid,
  .pricing-pairs,
  .feature-grid,
  .testimonial-grid,
  .trust-facts,
  .objection-grid,
  .onboarding-layout {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .lightbox img {
    max-height: 76vh;
  }

  .mobile-sticky-cta {
    position: fixed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.24);
  }

  body {
    padding-bottom: 5rem;
  }
}

.nav-logo {
  height: 42px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 8px;
}

/* Modernize buttons */
.cta {
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Better typography for headings */
h1, h2, h3 {
  letter-spacing: -0.025em;
  color: #0f172a;
}

.hero h1 {
  color: #0f172a;
}

/* Enhance cards */
.card, .price-card, .outcome-card, .testimonial-card, .offer-card, .objection-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover, .price-card:hover, .outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Better Navbar */
.navbar {
  backdrop-filter: blur(8px);
  background: rgba(11, 42, 58, 0.95);
}


/* Main product and legal page layout */
.brand-row {
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}

.brand-row span {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-value {
  margin: 1rem 0 1.35rem;
  font-weight: 800;
  color: #0b2a3a;
  font-size: 1.08rem;
}

.split-section,
.solution-grid,
.package-grid,
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.check-list li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.7rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-dark);
  font-weight: 800;
}

.problem .check-list {
  background: #ffffff;
  border: 1px solid #f0caca;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  margin: 0;
}

.highlight-box {
  display: grid;
  gap: 0.2rem;
  margin-top: 1.2rem;
  background: #eef7f5;
  border: 1px solid #d5e8e3;
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  color: #184153;
}

.product-panel {
  display: grid;
  gap: 0.8rem;
}

.package-price {
  min-height: 100%;
}

.features-section {
  background: #ffffff;
}

.subscription-grid .price-card {
  min-height: 230px;
}

.contact-box {
  margin-top: 1.3rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.contact-box p {
  margin: 0.25rem 0;
  color: var(--muted);
}

.contact-box a,
.legal-main a {
  color: var(--primary-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.footer-grid p {
  margin: 0.35rem 0 0;
}

.footer nav {
  display: grid;
  gap: 0.35rem;
}

.legal-main {
  padding: 3rem 0 4rem;
}

.legal-container {
  max-width: 980px;
}

.legal-main h1 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.legal-main section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.legal-main h2 {
  margin-bottom: 0.6rem;
  font-size: 1.12rem;
}

.legal-main h3 {
  margin: 0.8rem 0 0.35rem;
  font-size: 1rem;
}

.legal-main p {
  margin: 0;
}

.legal-main p + p,
.legal-main .block + .block {
  margin-top: 0.45rem;
}

.legal-main ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

@media (max-width: 980px) {
  .split-section,
  .solution-grid,
  .package-grid,
  .lead-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .problem .check-list {
    margin-top: 0.5rem;
  }

  .nav-inner > .cta {
    display: none;
  }

  .legal-page .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-page .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.9rem;
  }

  .legal-page .nav-links a {
    font-size: 0.94rem;
  }

  .legal-page .nav-inner > .cta {
    display: inline-flex;
  }
}

.social-proof {
  background: #f3f7fa;
}

.social-proof .testimonial-grid {
  margin-top: 1.4rem;
}

.social-proof .quote {
  margin: 0;
  color: #0b2a3a;
}

.about-content {
  max-width: 720px;
}

.about-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}
