/* =============================================================
   ERLEDIGT — Main Stylesheet
   Structure:
   1. Design Tokens (CSS Variables)
   2. Reset & Base
   3. Typography
   4. Layout Utilities
   5. Navigation
   6. Buttons & CTAs
   7. Section Labels & Badges
   8. Hero
   9. Stats Bar
   10. Cards (Case, Team, Solution, Anchor)
   11. Comparison Table
   12. Steps / How-it-works
   13. Pricing
   14. FAQ
   15. Integrations
   16. Video Placeholder
   17. Footer
   18. Page-specific (About, Blog, Pricing page, etc.)
   19. Animations
   20. Responsive
   ============================================================= */

/* ─────────────────────────────────────────────
   1. DESIGN TOKENS
───────────────────────────────────────────── */
:root {
  /* Brand */
  --yellow:       #FFDE00;
  --yellow-light: #FFFBE0;
  --yellow-mid:   #FFE94D;
  --yellow-dark:  #000000;

  /* Ink / Neutrals */
  --ink:       #0F1C16;
  --ink-soft:  #2E3D35;
  --muted:     #596066;
  --border:    rgba(0,0,0,0.08);
  --border-strong: rgba(0,0,0,0.14);
  --bg:        #ffffff;
  --white:     #ffffff;
  --sand:      #F4F0E8;
  --surface:   #f8f9fb;

  /* Typography */
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  48px;
  --space-2xl: 80px;
  --space-3xl: 128px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows — neutral, multi-layer, humaans-style */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 4px rgba(0,0,0,0.04), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 8px rgba(0,0,0,0.04), 0 24px 64px rgba(0,0,0,0.10);
  --shadow-xl: 0 8px 16px rgba(0,0,0,0.04), 0 40px 96px rgba(0,0,0,0.12);

  /* Transitions */
  --transition: 0.2s ease;

  /* Nav height (used for scroll-padding) */
  --nav-height: 72px;
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
a.btn { cursor: pointer; }
ul, ol { list-style: none; }

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #000;
}
h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: #000;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; }

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  font-weight: 400;
}
.text-muted  { color: var(--muted); }
.text-small  { font-size: 0.875rem; }
.text-center { text-align: center; }

/* ─────────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 5%;
}
.container--narrow  { max-width: 760px;  margin: 0 auto; padding: 0 5%; }
.container--wide    { max-width: 1280px; margin: 0 auto; padding: 0 5%; }

section { padding: var(--space-3xl) 5%; }

/* Subtle top separator for alternating section rhythm */
section + section { border-top: 1px solid var(--border); }

.section-header { margin-bottom: var(--space-2xl); }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: var(--space-md) auto 0; }
.section-header .lead { margin-top: var(--space-md); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr;       gap: var(--space-xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-lg); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }
.gap-xl  { gap: var(--space-xl); }

/* ─────────────────────────────────────────────
   5. NAVIGATION
───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  transition: box-shadow 0.3s ease;
}
.nav__logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav__logo-img {
  height: 2rem;
  width: auto;
  display: block;
}

.nav__links {
  display: flex; align-items: center; gap: 8px;
}
.nav__links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover {
  color: var(--ink);
  background: var(--surface);
}
.nav__links a.active {
  color: var(--ink);
  background: var(--yellow);
}

.nav__actions { display: flex; align-items: center; gap: var(--space-sm); }

.nav__login {
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  padding: 8px 18px; border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.nav__login:hover { color: var(--ink); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: var(--space-sm);
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all var(--transition);
}

/* ─────────────────────────────────────────────
   6. BUTTONS & CTAs
───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none;
  padding: 13px 28px; border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--yellow); color: var(--ink); cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(255,222,0,0.25);
}
.btn--primary:hover {
  background: var(--yellow-mid);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 8px 20px rgba(255,222,0,0.35);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent; color: var(--ink-soft); cursor: pointer;
  border: 1.5px solid var(--border-strong);
}
.btn--secondary:hover { border-color: var(--ink); color: var(--ink); background: var(--surface); }

.btn--ghost {
  background: transparent; color: var(--ink-soft);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: transparent; }

.btn--dark {
  background: var(--ink); color: var(--yellow);
  box-shadow: 0 4px 16px rgba(15,28,22,0.2);
}
.btn--dark:hover { background: var(--ink-soft); transform: translateY(-2px); }

.btn--sm { font-size: 0.875rem; padding: 10px 20px; cursor: pointer; }
.btn--lg { font-size: 1.1rem;   padding: 16px 36px; }
.btn--full { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────
   7. SECTION LABELS & BADGES
───────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  font-family: var(--font-display);
  margin-bottom: var(--space-lg);
}
.label--dark  { color: rgba(255,255,255,0.45); }
.label--light { color: rgba(0,0,0,0.45); }

.badge {
  display: inline-flex; align-items: center; gap: var(--space-xs);
  font-size: 0.75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 999px;
  border: 1px solid;
}
.badge--yellow { color: var(--muted); background: none; border-color: transparent; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-display); padding: 0; }
.badge--orange { color: #E8622A; background: #FFF3E0; border-color: #FFD5B8; }
.badge--grey   { color: var(--muted);       background: var(--border);       border-color: var(--border); }

.trust-badges { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-xl); }
.trust-badge  {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.92rem; color: var(--muted); font-weight: 500;
  font-family: var(--font-display);
}
.trust-badge__icon {
  width: 22px; height: 22px;
  background: url('/assets/icons/check.svg') center/contain no-repeat;
  flex-shrink: 0;
}

.store-badges {
  display: flex; gap: var(--space-md); margin-top: var(--space-lg); align-items: center;
}
.store-badge img {
  height: 44px; width: auto; display: block;
  transition: opacity 0.2s;
}
.store-badge:hover img { opacity: 0.8; }

.certification-badges {
  display: flex; gap: var(--space-md); margin-top: var(--space-md); align-items: center; flex-wrap: wrap;
}
.certification-badges img { height: 40px; width: auto; display: block; }

/* AI Badge */
@keyframes ai-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  vertical-align: middle;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.04em;
  background: linear-gradient(270deg, #a855f7, #3b82f6, #10b981, #eab308, #a855f7);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ai-gradient-shift 4s ease infinite;
}

/* ─────────────────────────────────────────────
   8. HERO
───────────────────────────────────────────── */
.hero {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  background: var(--bg);
  background-image: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255,222,0,0.15) 0%, rgba(255,222,0,0.04) 55%, transparent 75%);
  position: relative; overflow: hidden;
}

/* Two-column layout wrapper */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  gap: 0 var(--space-3xl);
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) clamp(20px, 6%, 6%) var(--space-2xl);
}
.hero__inner {
  grid-column: 1; grid-row: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  padding-bottom: 0;
}
.hero__bottom {
  grid-column: 1; grid-row: 2;
  display: flex; flex-direction: column; align-items: flex-start;
  margin-top: var(--space-md);
}
.hero__visual {
  grid-column: 2; grid-row: 1 / 3;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: var(--space-lg);
}
.hero__title {
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}
.hero__title em {
  font-style: italic;
  color: var(--yellow-dark);
}
.hero__actions {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
  margin-top: 0; align-items: center;
}
.hero__cta-group {
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.hero__cta-note {
  font-size: 0.78rem; color: var(--muted);
  font-family: var(--font-display);
  padding-left: 2px;
}
.trust-badges { justify-content: flex-start; }

/* Hero visual — right column */
.hero__visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding-right: 0;
}
.hero__mockup {
  width: 100%;
  max-width: 560px;
  height: auto; display: block;
  filter: drop-shadow(0 4px 12px rgba(15,28,22,0.1));
  margin-top: 24px;
}

/* Placeholder for when no asset is available yet */
.hero__asset-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 18;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  align-self: flex-end;
}
.mock-card {
  background: var(--white); border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: var(--space-lg); overflow: hidden;
}
.mock-card__header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-lg);
}
.mock-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }

/* Task list inside mock */
.task-list { display: flex; flex-direction: column; gap: 10px; }
.task-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border-radius: 10px;
  padding: 12px 14px; border: 1px solid var(--border);
  animation: slideUp 0.4s ease both;
}
.task-item:nth-child(2) { animation-delay: 0.1s; }
.task-item:nth-child(3) { animation-delay: 0.2s; }
.task-item:nth-child(4) { animation-delay: 0.3s; }
.task-check {
  width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; flex-shrink: 0;
}
.task-check--done    { background: var(--yellow); color: #000; font-weight: 800; }
.task-check--pending { background: #FFF3E0; color: #E8622A; }
.task-check--open    { background: var(--border); border: 2px solid #c0d0c8; }
.task-text { flex: 1; font-size: 0.9rem; font-weight: 500; }
.task-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow-light); color: var(--yellow-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  border: 1px solid var(--yellow-mid);
  flex-shrink: 0;
}

/* Floating cards */
.float-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 500;
}
.float-card--1 { bottom: -24px; left: -32px; animation: floatY 4s ease-in-out infinite; }
.float-card--2 { top: -20px; right: -24px;   animation: floatY 4s ease-in-out infinite 1.5s; }
.float-card__icon { font-size: 1.2rem; }
.float-card__label { font-weight: 600; font-size: 0.8rem; }
.float-card__sub   { font-size: 0.72rem; color: var(--muted); }

/* ─────────────────────────────────────────────
   9. STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg);
  padding: var(--space-2xl) 5% var(--space-3xl);
  border-bottom: 1px solid var(--border);
}
.stats-bar__inner {
  display: grid; grid-template-columns: repeat(3,1fr);
  max-width: 960px; margin: 0 auto;
  gap: 0;
}
.stat {
  padding: var(--space-xl) calc(var(--space-2xl) + 8px);
  border-left: 3px solid transparent;
  text-align: left;
}
.stat:nth-child(1) { border-left-color: #7DD3FC; }
.stat:nth-child(2) { border-left-color: #6EE7B7; }
.stat:nth-child(3) { border-left-color: var(--yellow); }
.stat__num {
  font-family: var(--font-serif); font-size: 3.4rem; font-weight: 400;
  color: var(--ink); line-height: 1;
}
.stat__prefix {
  display: block; font-size: 0.72rem; font-weight: 700;
  color: var(--muted); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 8px;
  font-family: var(--font-display);
}
.stat__label { font-size: 0.88rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }

.trust-strip {
  background: var(--surface);
  padding: 0 5% var(--space-2xl);
}
.trust-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-xl); flex-wrap: wrap; max-width: 960px; margin: 0 auto;
}
.trust-strip__inner img { height: 256px; width: auto; display: block; }

/* ─────────────────────────────────────────────
   10. CARDS
───────────────────────────────────────────── */

/* Generic card base */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: none;
  padding: var(--space-lg);
  transition: border-color 0.2s ease;
}
.card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(0,0,0,0.18);
}

/* Case / customer card */
.case-card {
  padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
}
.case-card:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(0,0,0,0.18);
}
.case-card__photo {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; flex-shrink: 0;
}
.case-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.case-card:hover .case-card__photo img { transform: scale(1.03); }
.case-card__body {
  padding: 22px 24px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  flex: 1;
}
.case-card__icon   { font-size: 2rem; }
.case-card__title  {
  font-family: var(--font-serif); font-weight: 400;
  font-size: 1.2rem; line-height: 1.25;
  color: var(--ink); margin: 0;
}
.case-card__desc   {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.65; flex: 1; margin: 0;
}
.case-card__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--muted); text-decoration: none;
  margin-top: 6px; padding-top: 14px;
  border-top: 1px solid var(--border);
  align-self: stretch;
  transition: color 0.2s ease, gap 0.2s ease;
  letter-spacing: 0.01em;
}
.case-card__link:hover { color: var(--ink); gap: 8px; text-decoration: none; }
.case-card__link span { display: inline-block; }

/* ─────────────────────────────────────────────
   FEATURES SECTION
───────────────────────────────────────────── */
.features-section {
  background: var(--bg);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border);
}
.feature-row--reverse .feature-row__visual { order: -1; }

.feature-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); font-family: var(--font-display);
  margin-bottom: 14px;
}
.feature-heading {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.15; color: #000;
  margin: 0 0 16px;
}
.feature-desc {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.75; margin: 0 0 28px;
}
.feature-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
}

/* Stacked variant: label + sub-description */
.feature-list--stacked { gap: 16px; }
.feature-list--stacked li { align-items: flex-start; }
.feature-list__body {
  display: flex; flex-direction: column; gap: 2px;
}
.feature-list__label {
  font-size: 0.9rem; font-weight: 700; color: var(--ink);
  line-height: 1.3;
}
.feature-list__sub {
  font-size: 0.82rem; font-weight: 400; color: var(--muted);
  line-height: 1.5;
}

.feature-row__visual {
  display: flex; align-items: center; justify-content: center;
}
.feature-img {
  width: 90%; max-width: 520px; height: auto; display: block;
  filter: drop-shadow(0 20px 48px rgba(15,28,22,0.10));
  border-radius: var(--radius-xl);
}
/* ── Desktop features section ── */
.desktop-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}
.desktop-feature {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
}
.desktop-feature__icon {
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}
.desktop-feature__title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.desktop-feature__desc {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.65; margin: 0;
}
.desktop-screenshots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}
.desktop-screenshot-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: var(--font-display);
}
@media (max-width: 900px) {
  .desktop-features { grid-template-columns: 1fr; }
  .desktop-screenshots { grid-template-columns: 1fr; }
}

.feature-placeholder {
  width: 100%; max-width: 580px; height: 340px;
  background: var(--bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .feature-row--reverse .feature-row__visual { order: 0; }
  .feature-row__visual { justify-content: stretch; }
  .feature-img { max-width: 100%; width: 100%; }
}

/* Team card */
.team-card { background: var(--bg); }
.team-card__avatar {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--yellow-light); color: var(--yellow-dark);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-md); border: 1px solid var(--yellow-mid);
}
.team-card__name   { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 2px; }
.team-card__role   { font-size: 0.78rem; color: var(--yellow-dark); font-weight: 600; margin-bottom: var(--space-sm); }
.team-card__desc   { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* Solution card */
.sol-card {
  position: relative; overflow: hidden;
  padding: var(--space-xl);
}
.sol-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.sol-card:hover::after { transform: scaleX(1); }
.sol-card__icon  { font-size: 2rem; margin-bottom: var(--space-md); }
.sol-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; margin-bottom: var(--space-sm); }
.sol-card__desc  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: var(--space-md); }
.sol-card__list  { display: flex; flex-direction: column; gap: 6px; }
.sol-card__list li {
  font-size: 0.85rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px;
}
.sol-card__list li::before { content: '✓'; color: var(--yellow-dark); font-weight: 700; }

/* Anchor / value card (pricing section) */
.anchor-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1); padding: var(--space-lg);
}
.anchor-card__icon  { font-size: 1.5rem; margin-bottom: var(--space-sm); }
.anchor-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: var(--space-xs); color: var(--white); }
.anchor-card__desc  { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────────
   11. COMPARISON TABLE
───────────────────────────────────────────── */
.comp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin-top: var(--space-2xl);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: none;
  background: var(--white);
}
.comp-table th {
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  padding: 20px 24px; text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--white);
}
.comp-table th.col-highlight {
  background: var(--yellow); color: var(--ink);
  text-transform: none; letter-spacing: 0;
  font-size: 1rem; font-weight: 700;
}
.comp-table td {
  padding: 16px 24px; text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
  transition: background 0.15s ease;
}
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table td.row-label {
  text-align: left; color: var(--ink);
  font-size: 0.88rem; font-weight: 450;
}
.comp-table td.col-highlight { background: rgba(255,222,0,0.05); }
.comp-table tbody tr:hover td { background: var(--surface); }
.comp-table tbody tr:hover td.col-highlight { background: rgba(255,222,0,0.12); }

/* Tick — check.svg icon */
.tick {
  display: inline-block;
  width: 22px; height: 22px;
  background: url('/assets/icons/check.svg') center/contain no-repeat;
  vertical-align: middle;
  flex-shrink: 0;
  margin-top: 1px;
}
/* In comparison tables, non-highlighted columns get a round yellow check */
td:not(.col-highlight) .tick {
  background-image: none;
  background-color: var(--yellow);
  border-radius: 50%;
  position: relative;
}
td:not(.col-highlight) .tick::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #555;
}
/* Erledigt column tick 50% bigger */
td.col-highlight .tick {
  width: 33px;
  height: 33px;
}

/* Cross — subtle gray circle */
.cross {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,0.05);
  font-size: 0.6rem; font-weight: 700;
  color: rgba(0,0,0,0.22); vertical-align: middle;
}

.col-note {
  font-size: 0.6rem; font-weight: 700; display: block;
  color: rgba(0,0,0,0.45); margin-top: 3px;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────
   12. STEPS / HOW-IT-WORKS
───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: var(--space-2xl) auto 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: var(--yellow-mid);
  z-index: 0;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-md);
  position: relative; z-index: 1;
  cursor: default;
  transition: transform 0.25s ease;
}
.step:hover { transform: translateY(-5px); }
.step__num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--bg), 0 4px 16px rgba(255,222,0,0.35);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.step:hover .step__num {
  transform: scale(1.1);
  box-shadow: 0 0 0 5px var(--bg), 0 8px 28px rgba(255,222,0,0.55);
}
.step__label {
  font-size: 0.82rem; font-weight: 500; color: var(--ink-soft);
  text-align: center; padding: 0 4px;
  transition: color 0.25s ease, font-weight 0.25s ease;
}
.step:hover .step__label { color: var(--ink); font-weight: 600; }
.step__desc {
  font-size: 0.8rem; color: var(--muted); text-align: center;
  line-height: 1.55; padding: 0 4px; margin-top: -4px;
}

/* ── Vertical steps ── */
.vsteps {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-2xl);
}
.vstep {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  cursor: default;
}
.vstep.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.vstep.is-visible:hover .vstep__num {
  transform: scale(1.12);
  box-shadow: 0 0 0 6px var(--bg), 0 6px 22px rgba(255,222,0,0.55);
}
.vstep.is-visible:hover .vstep__body {
  transform: translateX(4px);
}
.vstep.is-visible:hover .vstep__title {
  color: var(--yellow-dark, #c9a800);
}
.vstep__num {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vstep__body {
  transition: transform 0.25s ease;
}
.vstep__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
}
.vstep__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 5px var(--bg), 0 4px 14px rgba(255,222,0,0.25);
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.vstep__line {
  width: 1px;
  flex: 1;
  min-height: 52px;
  background: var(--border);
  margin: -6px 0;
  position: relative;
  z-index: 0;
}
.vstep__body {
  padding-bottom: var(--space-xl);
  padding-top: 0;
}
.vstep:last-child .vstep__body {
  padding-bottom: 0;
}
.vstep__title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
  padding-top: 0;
}
.vstep__desc {
  font-size: 0.92rem; color: var(--muted);
  line-height: 1.7; margin: 0;
}

/* ─────────────────────────────────────────────
   13. COMPARISON CARDS
───────────────────────────────────────────── */
.comp-cards {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  align-items: start;
}
.comp-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.comp-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(255, 222, 0, 0.25), 0 2px 8px rgba(0,0,0,0.06);
  transform: translateY(-10px);
}
.comp-card__header {
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.comp-card--featured .comp-card__header {
  background: var(--yellow);
  border-bottom-color: rgba(0,0,0,0.08);
}
.comp-card__badge {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}
.comp-card__name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.15rem; color: var(--ink);
}
.comp-card__sub {
  font-size: 0.78rem; color: var(--muted);
}
.comp-card__features {
  list-style: none; margin: 0;
  padding: var(--space-sm) 0;
}
.comp-card__features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px var(--space-lg);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.comp-card__features li:last-child { border-bottom: none; }
.comp-card__features li::before {
  flex-shrink: 0;
  font-size: 0.9rem; font-weight: 700;
  width: 18px; text-align: center;
}
.comp-card__features li.yes { color: var(--ink); }
.comp-card__features li.yes::before { content: '✓'; color: var(--ink); }
.comp-card__features li.no { color: var(--muted); }
.comp-card__features li.no::before { content: '✕'; color: #d1d5db; }

/* ─────────────────────────────────────────────
   14. PRICING
───────────────────────────────────────────── */
.price-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; max-width: 480px; margin: 3rem auto;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--yellow);
}
.price-amount {
  font-family: var(--font-display); font-size: 3.8rem; font-weight: 800;
  color: var(--yellow-dark); line-height: 1;
}
.price-per { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.price-features { margin: var(--space-xl) 0; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
.price-features li:last-child { border-bottom: none; }
.pf-check { color: var(--yellow-dark); font-weight: 700; font-size: 1.1rem; }
.price-example {
  background: var(--yellow-light); border-radius: var(--radius-md);
  padding: var(--space-lg); margin-top: var(--space-lg);
  border: 1px solid var(--yellow-mid);
}
.price-example__label { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.price-example__val   { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--yellow-dark); }
.price-example__sub   { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.season-box {
  background: rgba(255,222,0,0.08);
  border: 1px solid rgba(255,222,0,0.25);
  border-radius: var(--radius-lg); padding: var(--space-xl);
  margin-top: var(--space-xl);
}
.season-box h3 { color: var(--yellow); margin-bottom: var(--space-sm); }
.season-box p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.75; }

/* Pricing FAQ */
.price-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); margin-top: var(--space-xl); }
.price-faq-item h4 { color: var(--white); margin-bottom: var(--space-xs); }
.price-faq-item p  { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ─────────────────────────────────────────────
   14. FAQ
───────────────────────────────────────────── */
.faq-list { margin-top: var(--space-xl); }
.faq-item { border-bottom: 1px solid var(--border); padding: var(--space-lg) 0; cursor: pointer; }
.faq-item__question {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: 1rem; gap: var(--space-md);
}
.faq-item__toggle {
  color: var(--yellow-dark); font-size: 1.4rem; font-weight: 300;
  transition: transform var(--transition); flex-shrink: 0;
}
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 0.9rem; color: var(--muted); line-height: 1.75;
}
.faq-item.is-open .faq-item__toggle { transform: rotate(45deg); }
.faq-item.is-open .faq-item__answer { max-height: 300px; padding-top: var(--space-md); }

/* ─────────────────────────────────────────────
   15. INTEGRATIONS
───────────────────────────────────────────── */
.int-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: var(--space-xl);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl); align-items: center;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.int-feature-list { display: flex; flex-direction: column; gap: 10px; margin-top: var(--space-lg); }
.int-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; }
.int-check { color: var(--yellow-dark); font-weight: 700; }
.int-visual {
  background: var(--white); border-radius: var(--radius-lg);
  padding: var(--space-lg); border: 1px solid var(--border); text-align: center;
}
.int-visual__logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; letter-spacing: 0.02em; }
.int-visual__sub  { font-size: 0.8rem; color: var(--muted); }
.int-visual__arrow { font-size: 2rem; color: var(--yellow-dark); margin: var(--space-md) 0; }
.int-visual__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--yellow-dark); letter-spacing: 0.02em; }
.int-visual__tag {
  margin-top: var(--space-md); background: var(--yellow-light);
  border-radius: var(--radius-sm); padding: 10px;
  font-size: 0.78rem; color: var(--yellow-dark); font-weight: 600;
  border: 1px solid var(--yellow-mid);
}

/* ─────────────────────────────────────────────
   16. VIDEO PLACEHOLDER
───────────────────────────────────────────── */
.video-placeholder {
  background: var(--ink);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 16/9; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: var(--space-md);
  cursor: pointer; max-width: 800px; margin: 0 auto;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-placeholder:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}
.video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255,222,0,0.06), transparent);
}
.video-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--yellow); color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; z-index: 1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 12px 32px rgba(255,222,0,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-placeholder:hover .video-play {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.25), 0 16px 40px rgba(255,222,0,0.50);
}
.video-label { color: rgba(255,255,255,0.5); font-size: 0.85rem; z-index: 1; font-family: var(--font-display); letter-spacing: 0.02em; }

/* ─────────────────────────────────────────────
   17. FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--ink); color: rgba(255,255,255,0.45);
  padding: 72px 5% 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl); margin-bottom: var(--space-2xl);
}
.footer__logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; color: var(--white); margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}
.footer__logo span { color: var(--yellow); }
.footer__tagline { font-size: 0.84rem; line-height: 1.75; max-width: 260px; }
.footer__social { display: flex; flex-direction: column; gap: 8px; margin-top: var(--space-md); }
.footer__social-link { color: rgba(255,255,255,0.6); font-size: 0.875rem; text-decoration: none; transition: color var(--transition); display: flex; align-items: center; gap: 7px; }
.footer__social-link:hover { color: rgba(255,255,255,0.85); }
.footer__store-badges { display: flex; flex-direction: row; gap: 8px; margin-top: var(--space-lg); flex-wrap: wrap; }
.footer__store-badges a { opacity: 0.7; transition: opacity var(--transition); }
.footer__store-badges a:hover { opacity: 1; }
.footer__certification-badges { display: flex; flex-direction: row; gap: 8px; margin-top: var(--space-lg); flex-wrap: wrap; align-items: center; }
.footer__certification-badges img { height: 32px; width: auto; display: block; opacity: 0.7; }
.footer__col h4 {
  color: rgba(255,255,255,0.7); font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700; margin-bottom: var(--space-md);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.875rem; transition: color var(--transition);
}
.footer__col a:hover { color: rgba(255,255,255,0.85); }
.footer__bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--space-lg);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
  color: var(--white);
}
.footer__bottom a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}
.footer__bottom a:hover { opacity: 0.7; }

/* ─────────────────────────────────────────────
   18. PAGE-SPECIFIC STYLES
───────────────────────────────────────────── */

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 5% 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .lead { margin: var(--space-md) auto 0; max-width: 640px; }

/* About: vision grid */
.vision-item {
  border-top: 3px solid var(--yellow);
}
.vision-item h3 { margin-bottom: var(--space-sm); }
.vision-item p  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* Pain / solution grid (legacy, kept for subpages) */
.pain-list     { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-xl); }
.pain-item     { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border-radius: 10px; border: 1px solid var(--border); }
.pain-item__x  { color: #E53935; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.sol-list      { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-xl); }
.sol-item      { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border-radius: 12px; background: var(--yellow-light); border: 1px solid var(--yellow-mid); }
.sol-item__check { color: var(--yellow-dark); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; font-weight: 700; }

/* Compare section (Problem / Solution redesign) */
.compare-section {
  padding: var(--space-3xl) 5%;
}
.compare-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.compare-header h2 { margin-bottom: var(--space-md); }
.compare-header .lead { margin: 0 auto; }

/* Compare grid — two-column card layout */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.compare-col {
  border-radius: var(--radius-xl);
  padding: 32px 28px;
}
.compare-col--bad {
  background: var(--white);
  border: 1px solid var(--border);
}
.compare-col--good {
  background: var(--white);
  border: 2px solid var(--yellow);
  box-shadow: 0 8px 32px rgba(255,222,0,0.12);
}

/* Column header */
.compare-col__head {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 24px;
  padding-bottom: 20px;
}
.compare-col--bad .compare-col__head {
  color: var(--muted);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.compare-col--good .compare-col__head {
  color: var(--muted);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* Header icon */
.compare-head-icon {
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0; position: relative;
}
.compare-head-icon--bad {
  background: rgba(0,0,0,0.07);
}
.compare-head-icon--bad::after {
  content: '✕';
  font-size: 0.6rem; font-weight: 800;
  color: var(--muted);
}
.compare-head-icon--good {
  background: url('/assets/icons/check.svg') center/contain no-repeat;
}

/* List items */
.compare-col__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.compare-col__list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 0;
  font-size: 0.9rem; line-height: 1.55;
  min-height: 72px;
}
.compare-col--bad .compare-col__list li {
  color: var(--muted);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-col--good .compare-col__list li {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.compare-col__list li:last-child { border-bottom: none; }

/* Row bullets */
.compare-bullet {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 0; position: relative;
}
.compare-bullet--bad {
  background: rgba(0,0,0,0.06);
}
.compare-bullet--bad::after {
  content: '✕';
  font-size: 0.55rem; font-weight: 800;
  color: rgba(0,0,0,0.3);
}
.compare-bullet--good {
  background: url('/assets/icons/check.svg') center/contain no-repeat;
}

/* Testimonials */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
  margin-top: var(--space-2xl);
}
.testimonial-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 var(--space-lg);
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.testimonial-name {
  font-size: 1.1rem; font-weight: 700;
  font-family: var(--font-display);
  color: var(--ink);
  margin-bottom: 4px;
}
.testimonial-role {
  font-size: 0.88rem; color: var(--muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}
.testimonial-quote {
  font-size: 1rem; color: var(--ink);
  line-height: 1.7;
  max-width: 340px;
}
.testimonial-nav {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}
.testimonial-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  color: var(--ink);
}
.testimonial-btn:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--border);
  cursor: pointer; padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testimonial-dot.active { background: var(--ink); transform: scale(1.3); }

@media (max-width: 1024px) {
  .testimonial-card { flex: 0 0 50%; }
}
@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 100%; }
}

/* Nav dropdown */
.nav__dropdown-item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  min-width: 200px;
  padding: 6px 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
/* bridge the gap so diagonal mouse movement doesn't close it */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0; right: 0;
  height: 14px;
}
.nav__dropdown-item:hover .nav__dropdown,
.nav__dropdown-item:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.12s;
  white-space: nowrap;
}
.nav__dropdown-link:hover { color: var(--ink); }

/* Role cards */
.role-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: var(--space-xl);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.role-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.role-card__icon { font-size: 2rem; margin-bottom: var(--space-md); }
.role-card__title { font-size: 1.2rem; font-weight: 700; font-family: var(--font-display); margin: 0 0 var(--space-sm); }
.role-card__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; flex: 1; margin: 0 0 var(--space-lg); }
.role-card__link { font-size: 0.88rem; font-weight: 600; color: var(--ink); }

/* CTA banner */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 0;
}
.cta-banner__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  margin: var(--space-3xl) 0;
}
.cta-banner__testimonial {
  padding: var(--space-3xl) var(--space-3xl) var(--space-3xl) clamp(var(--space-xl), 6vw, var(--space-3xl));
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}
.cta-banner__quote-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
}
.cta-banner__quote-item:first-child { padding-top: 0; }
.cta-banner__quote-item:last-child { padding-bottom: 0; }
.cta-banner__quote-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.cta-banner__quote-mark {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--yellow);
  margin: 0;
}
.cta-banner__quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
  margin: 0;
}
.cta-banner__testimonial-footer {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-sm);
}
.cta-banner__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.cta-banner__name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}
.cta-banner__role {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}
.cta-banner__text {
  padding: var(--space-3xl) clamp(var(--space-xl), 6vw, var(--space-3xl)) var(--space-3xl) var(--space-3xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.cta-banner h2 { color: var(--ink); margin-bottom: var(--space-md); }
.cta-banner .lead { color: var(--muted); margin: 0 0 var(--space-xl); max-width: 420px; }
.cta-banner .label { color: var(--muted); }
.cta-sub { font-size: 0.82rem; color: var(--muted); margin-top: var(--space-md); letter-spacing: 0.01em; }
@media (max-width: 900px) {
  .cta-banner__inner { grid-template-columns: 1fr; }
  .cta-banner__divider { display: none; }
  .cta-banner__testimonial { padding: var(--space-2xl) var(--space-lg) var(--space-lg); border-bottom: 1px solid var(--border); }
  .cta-banner__text { padding: var(--space-lg) var(--space-lg) var(--space-2xl); }
}

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-xl); margin-top: var(--space-xl); }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__thumb { background: var(--yellow-light); height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card__body  { padding: var(--space-lg); }
.blog-card__meta  { font-size: 0.78rem; color: var(--muted); margin-bottom: var(--space-sm); }
.blog-card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: var(--space-sm); line-height: 1.2; }
.blog-card__excerpt { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.blog-card__link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--yellow-dark); text-decoration: none; margin-top: var(--space-md); }

/* ─────────────────────────────────────────────
   19. ANIMATIONS
───────────────────────────────────────────── */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scroll-reveal base class (JS adds .is-visible) */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

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

/* ─────────────────────────────────────────────
   20. RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__layout            { grid-template-columns: 1fr; grid-template-rows: auto; gap: var(--space-xl); padding-bottom: 0; }
  .hero__inner             { grid-column: 1; grid-row: 1; align-items: center; text-align: center; }
  .hero__visual            { grid-column: 1; grid-row: 2; justify-content: center; }
  .hero__bottom            { grid-column: 1; grid-row: 3; align-items: center; text-align: center; width: 100%; }
  .hero__asset-placeholder { max-width: 280px; }
  .hero__mockup            { max-width: 90%; margin-top: 0; }
  .trust-badges            { flex-direction: column; align-items: flex-start; width: fit-content; margin-inline: auto; }
  .store-badges            { justify-content: center; }
  .certification-badges    { justify-content: center; }
  .grid-4           { grid-template-columns: repeat(2,1fr); }
  .int-card         { grid-template-columns: 1fr; }
  .steps            { grid-template-columns: repeat(2,1fr); gap: var(--space-xl); }
  .steps::before    { display: none; }
  .footer__inner    { grid-template-columns: 1fr 1fr; }
  .price-anchors    { grid-template-columns: 1fr; }
  .price-faq-grid   { grid-template-columns: 1fr; }
  .comp-cards       { grid-template-columns: 1fr; }
  .comp-card--featured { transform: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }

  .nav__links, .nav__actions .nav__login { display: none; }
  .nav__toggle { display: flex; }
  .nav.menu-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: var(--space-xl) 6%; gap: 4px;
  }
  /* Kill pill/hover backgrounds in mobile menu */
  .nav.menu-open .nav__links a,
  .nav.menu-open .nav__links a:hover,
  .nav.menu-open .nav__links a.active {
    background: none;
    padding: 10px 0;
    font-size: 1rem;
    width: 100%;
  }
  .nav.menu-open .nav__links a.active { color: var(--ink); font-weight: 600; }
  /* Mobile dropdown: inline, always visible */
  .nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    border-radius: 0;
    padding: 4px 0 4px 16px;
    margin-top: 0;
    min-width: 0;
    background: transparent;
    width: 100%;
  }
  .nav__dropdown::before { display: none; }
  .nav__dropdown-link {
    padding: 1px 0;
    font-size: 0.9rem;
    color: var(--muted);
  }

  .hero__layout            { padding: calc(var(--nav-height) + 48px) 5% 0; }
  .hero__visual            { min-height: 240px; }
  .hero__asset-placeholder { max-width: 220px; }
  .hero__mockup            { max-width: 85%; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col--bad { order: 2; }
  .compare-col--good { order: 1; }
  .stats-bar__inner { grid-template-columns: 1fr; }
  .stat { border-left-width: 3px; padding-left: var(--space-lg); }
  .steps  { grid-template-columns: repeat(2,1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .comp-table { font-size: 0.8rem; }
  .comp-table th, .comp-table td { padding: 10px 8px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__cta-group { width: 100%; }
  .btn--lg { width: 100%; justify-content: center; }
  .nav .btn--lg { width: auto; }
}

/* ─────────────────────────────────────────────
   COOKIE BANNER
───────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--ink, #1a1a1a); color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.85rem; line-height: 1.5;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}
.cookie-banner__text { margin: 0; flex: 1; }
.cookie-banner__text a { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__text a:hover { color: #fff; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 8px 18px; border-radius: 8px; border: none; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; font-family: var(--font-display);
  transition: opacity 0.15s;
}
.cookie-banner__btn:hover { opacity: 0.85; }
.cookie-banner__btn--reject { background: rgba(255,255,255,0.12); color: #fff; }
.cookie-banner__btn--accept { background: var(--yellow); color: var(--ink, #1a1a1a); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; padding: 20px 16px; }
  .cookie-banner__actions { justify-content: center; }
}
