/* ══════════════════════════════════════════════════════════════════
   V4 LANDING PAGE — 2026
   Warm Swiss minimalism. Gold accent on parchment neutrals.
   ══════════════════════════════════════════════════════════════════ */

/* ═══ DESIGN TOKENS ═══ */
:root {
  --bg:          #F8F7F4;
  --bg-warm:     #F3F1EC;
  --bg-card:     #FFFFFF;
  --bg-hover:    #FAFAF7;
  --bg-elevated: #FCFBF9;
  --bg-inset:    #EFEEE9;

  --border:       #E6E3DC;
  --border-light: #EDEBE5;
  --border-hover: #D4D0C7;

  --ink:       #1B1918;
  --ink-2:     #4A4643;
  --ink-3:     #7A756F;
  --ink-4:     #A9A39B;
  --ink-5:     #CBC6BE;

  --gold:      #B8860B;
  --gold-hot:  #D4A03E;
  --gold-soft: rgba(184, 134, 11, 0.08);
  --gold-med:  rgba(184, 134, 11, 0.14);
  --gold-text: #8B6914;
  --gold-dark: #8B6914;

  --teal:      #0D9488;
  --teal-soft: rgba(13, 148, 136, 0.07);
  --teal-med:  rgba(13, 148, 136, 0.14);

  --coral:      #DC4A3A;
  --coral-soft: rgba(220, 74, 58, 0.07);
  --coral-med:  rgba(220, 74, 58, 0.14);

  --amber:      #D97706;
  --amber-soft: rgba(217, 119, 6, 0.07);
  --amber-med:  rgba(217, 119, 6, 0.14);

  --blue:      #2563EB;
  --blue-soft: rgba(37, 99, 235, 0.07);

  --green:     #16a34a;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'Geist Mono', 'SF Mono', monospace;

  --sh-xs:  0 1px 2px rgba(27,25,24,0.04);
  --sh-sm:  0 1px 3px rgba(27,25,24,0.05), 0 1px 2px rgba(27,25,24,0.03);
  --sh-md:  0 4px 12px rgba(27,25,24,0.06), 0 1px 3px rgba(27,25,24,0.04);
  --sh-lg:  0 8px 28px rgba(27,25,24,0.07), 0 2px 6px rgba(27,25,24,0.04);
  --sh-xl:  0 16px 48px rgba(27,25,24,0.1), 0 4px 12px rgba(27,25,24,0.05);
  --sh-glow-gold: 0 0 0 3px var(--gold-soft), 0 0 16px rgba(184,134,11,0.08);

  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px; --s16: 64px;

  --r-xs: 6px; --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 180ms;

  --hero-mesh:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(184,134,11,0.12), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 10%, rgba(212,160,62,0.08), transparent 60%);
}

/* ═══ DARK MODE ═══ */
:root[data-theme="dark"] {
  --bg:          #0F0E0C;
  --bg-warm:     #15130F;
  --bg-card:     #1A1814;
  --bg-hover:    #22201B;
  --bg-elevated: #1F1D18;
  --bg-inset:    #13110E;

  --border:       #2F2A22;
  --border-light: #262118;
  --border-hover: #3D3630;

  --ink:       #F5F2EA;
  --ink-2:     #D4CFC3;
  --ink-3:     #A9A39B;
  --ink-4:     #7A756F;
  --ink-5:     #4A4643;

  --gold:      #D4A03E;
  --gold-hot:  #E8BC5A;
  --gold-soft: rgba(212, 160, 62, 0.1);
  --gold-med:  rgba(212, 160, 62, 0.18);
  --gold-text: #D4A03E;
  --gold-dark: #D4A03E;

  --green:     #22c55e;

  --sh-xs:  0 1px 2px rgba(0,0,0,0.15);
  --sh-sm:  0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.1);
  --sh-md:  0 4px 12px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.1);
  --sh-lg:  0 8px 28px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.12);
  --sh-xl:  0 16px 48px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.15);

  --hero-mesh:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(212,160,62,0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 10%, rgba(212,160,62,0.12), transparent 60%);
}

html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }

/* ═══ RESET & BASE ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

::selection { background: var(--gold-med); color: var(--ink); }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
:root[data-theme="dark"] body::after { opacity: 0.04; }

a { color: var(--gold); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--gold-hot); }

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

/* ═══ HEADER (loaded via partials.js) ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  height: 62px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
:root[data-theme="dark"] .site-header {
  background: rgba(20, 18, 14, 0.92);
  border-bottom-color: rgba(212,160,62,0.18);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  padding: 0 var(--s6);
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
}
.logo-box {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  box-shadow: var(--sh-sm);
}
:root[data-theme="dark"] .logo-box { box-shadow: 0 2px 12px rgba(212,160,62,0.35); }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.logo-dot, .logo-suffix { color: var(--gold) !important; }

.main-nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: var(--s5);
}
.main-nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  color: #fff !important;
  border-radius: var(--r-xs);
  font-weight: 500;
  font-size: 14px;
  box-shadow: var(--sh-sm);
  transition: all var(--duration) var(--ease);
}
.main-nav .nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 62px;
  left: 0; right: 0; bottom: 0;
  background: var(--bg-card);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s8);
  z-index: 99;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.mobile-nav.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a { font-size: 18px; font-weight: 500; color: var(--ink-2); }
.mobile-nav a:hover { color: var(--gold); }
.mobile-close-btn {
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-3);
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .main-nav.desktop-nav { display: none; }
}

/* ═══ SHARED BUTTON STYLES ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--sh-sm), var(--sh-glow-gold);
  transition: all var(--duration) var(--ease);
}
.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: var(--sh-md), var(--sh-glow-gold);
  color: #fff;
}
.btn-primary.btn-lg { padding: 14px 28px; font-size: 16px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 12px 24px;
  background: var(--bg-card);
  color: var(--ink-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--sh-xs);
  transition: all var(--duration) var(--ease);
}
.btn-outline:hover {
  border-color: var(--border-hover);
  color: var(--ink);
  background: var(--bg-hover);
}
.btn-outline.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ═══ HERO SECTION ═══ */
.hero {
  position: relative;
  padding: var(--s16) 0 var(--s12) 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 500px;
  background: var(--hero-mesh);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}

.hero-text { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 6px 16px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-med);
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s6);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--s5);
}

.hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: var(--s8);
}

.hero-buttons {
  display: flex;
  gap: var(--s3);
  margin-bottom: var(--s4);
  flex-wrap: wrap;
}

.hero-subtext {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  margin-bottom: var(--s5);
}

.hero-trust {
  display: flex;
  gap: var(--s5);
  flex-wrap: wrap;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}

/* Hero Cards Visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-cards {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 440px;
}

.hc-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  padding: 16px;
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.hc-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); z-index: 5 !important; animation-play-state: paused; }

.hc-card-1 {
  top: 0;
  left: 0; right: 0;
  z-index: 2;
  animation: cardEntrance1 0.5s var(--ease) both, cardSwapFront 10s var(--ease) 1.5s infinite;
}
.hc-card-2 {
  bottom: 0;
  right: 0;
  width: 200px;
  z-index: 1;
  animation: cardEntrance2 0.5s var(--ease) both, cardSwapBack 10s var(--ease) 1.5s infinite;
}

/* Card swap animation — alternates which card is in front */
@keyframes cardEntrance1 {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardEntrance2 {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardSwapFront {
  0%, 42%  { z-index: 2; transform: translateY(0); }
  50%, 92% { z-index: 1; transform: translateY(8px); }
  100%     { z-index: 2; transform: translateY(0); }
}
@keyframes cardSwapBack {
  0%, 42%  { z-index: 1; transform: translateY(0); }
  50%, 92% { z-index: 2; transform: translateY(-8px); }
  100%     { z-index: 1; transform: translateY(0); }
}

.hc-cockpit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s3);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border-light);
}
.hc-cockpit-logo {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-3);
}
.hc-cockpit-logo strong { color: var(--ink); font-weight: 600; }
.hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
}
.hc-badge-green {
  background: var(--teal-soft);
  color: var(--teal);
}
.hc-pulse {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hc-cockpit-modules {
  display: flex;
  gap: var(--s4);
  align-items: flex-start;
  margin-bottom: var(--s3);
}
.hc-module { flex: 1; }
.hc-module-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  margin-bottom: 4px;
}
.hc-module-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.hc-module-num span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-3);
  margin-left: 3px;
}
.hc-module-sep {
  width: 1px;
  height: 40px;
  background: var(--border-light);
  flex-shrink: 0;
  margin-top: 14px;
}

.hc-progress-bar {
  height: 4px;
  background: var(--bg-inset);
  border-radius: 2px;
  overflow: hidden;
}
.hc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-hot));
  border-radius: 2px;
  transition: width 0.5s var(--ease);
}
.hc-fill-blue { background: linear-gradient(90deg, var(--blue), #60A5FA); }

.hc-feed { display: flex; flex-direction: column; gap: 6px; }
.hc-feed-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 12px;
  color: var(--ink-3);
  padding: 5px 8px;
  border-radius: var(--r-xs);
  background: var(--bg-hover);
}
.hc-feed-item svg { flex-shrink: 0; }

.hc-card-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

/* ═══ PRICING STRIP ═══ */
.pricing-strip {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-elevated);
  padding: var(--s6) 0;
}
.pricing-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s8);
  flex-wrap: wrap;
}
.pricing-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pricing-strip-item.bundle { position: relative; }
.strip-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-text);
  background: var(--gold-soft);
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.strip-module {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.strip-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.strip-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-3);
}
.strip-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.strip-actions {
  text-align: center;
  margin-top: var(--s4);
}
.strip-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}
.strip-cta:hover { color: var(--gold-hot); }
.strip-note {
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 4px;
}

/* ═══ SECTIONS ═══ */
.section {
  padding: var(--s16) 0;
  position: relative;
  z-index: 1;
}
.section-alt { background: var(--bg-warm); }

.section-header {
  text-align: center;
  margin-bottom: var(--s12);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-4);
  margin-bottom: var(--s3);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--s4);
}
.section-header h2 .accent { color: var(--gold); }
.section-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
}

/* ═══ PROBLEM SECTION ═══ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s6);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  transition: height var(--duration) var(--ease);
}
.problem-card:hover::before { height: 4px; }
.problem-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.problem-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--coral-soft);
  border-radius: var(--r-sm);
  font-size: 20px;
  margin-bottom: var(--s4);
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.problem-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: var(--s3);
}
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.problem-list li {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 13px;
  color: var(--ink-3);
}
.problem-list li svg { flex-shrink: 0; color: var(--coral); }

/* ═══ SOLUTION / BEFORE-AFTER ═══ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  margin-bottom: var(--s12);
}
.compare-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  padding: var(--s6);
  border: 1px solid var(--border-light);
  box-shadow: var(--sh-xs);
  position: relative;
  overflow: hidden;
}
.compare-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.compare-card.before::before { background: var(--coral); }
.compare-card.after::before { background: var(--teal); }

.compare-header {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--border-light);
}
.compare-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  font-size: 18px;
}
.compare-card.before .compare-icon { background: var(--coral-soft); }
.compare-card.after .compare-icon { background: var(--teal-soft); }
.compare-header h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
}
.compare-card.before .compare-header h3 { color: var(--coral); }
.compare-card.after .compare-header h3 { color: var(--teal); }

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.compare-list li svg { flex-shrink: 0; margin-top: 2px; }
.compare-card.before .compare-list li svg { color: var(--coral); }
.compare-card.after .compare-list li svg { color: var(--teal); }

/* ═══ MODULES SECTION ═══ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}
.module-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s8);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.module-card:hover {
  box-shadow: var(--sh-sm);
  border-color: var(--border-hover);
}
.module-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}
.module-badge {
  position: absolute;
  top: -11px;
  right: var(--s6);
  padding: 3px 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-full);
}

.module-header {
  display: flex;
  align-items: flex-start;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
.module-icon-wrap {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--r-sm);
  font-size: 22px;
  flex-shrink: 0;
}
.module-title h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.module-subtitle {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.module-desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: var(--s5);
}

.module-features {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--s5);
}
.feature-item {
  display: flex;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--border-light);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon-sm {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-inset);
  border-radius: var(--r-xs);
  font-size: 14px;
  flex-shrink: 0;
}
.feature-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.feature-content p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}

.module-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--duration) var(--ease);
}
.module-link:hover { gap: var(--s3); color: var(--gold-hot); }

/* ═══ BENEFITS SECTION ═══ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s6);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transition: height var(--duration) var(--ease);
}
.benefit-card:hover::before { height: 4px; }
.benefit-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--r-sm);
  font-size: 20px;
  margin-bottom: var(--s4);
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.benefit-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

.section-link {
  text-align: center;
  margin-top: var(--s8);
}
.section-link a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 2px solid var(--gold-med);
  padding-bottom: 2px;
  transition: border-color var(--duration) var(--ease);
}
.section-link a:hover { border-bottom-color: var(--gold); }

/* ═══ PRICING BANNER ═══ */
.pricing-banner {
  position: relative;
  padding: var(--s16) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.pricing-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 30%, var(--gold-soft), transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 70%, var(--gold-soft), transparent 60%);
  pointer-events: none;
}

.pricing-banner .section-header { position: relative; z-index: 1; }
.pricing-banner .section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

.pricing-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: var(--s5);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-cards--2 {
  grid-template-columns: 1fr auto 1fr;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s8) var(--s6);
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.pricing-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--sh-md), var(--sh-glow-gold);
  transform: scale(1.02);
  position: relative;
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: var(--sh-lg), var(--sh-glow-gold);
}

.pricing-save-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pricing-card-icon {
  font-size: 32px;
  margin-bottom: var(--s3);
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.pricing-card-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: var(--s4);
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-amount { font-size: 42px; }
.pricing-period {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: var(--s4);
}
.pricing-discount {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: var(--s3);
}
.pricing-original {
  font-size: 13px;
  color: var(--ink-4);
  margin-bottom: var(--s4);
}

.pricing-features-list {
  list-style: none;
  text-align: left;
  margin-bottom: var(--s5);
}
.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-2);
}
.pricing-features-list li svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }

.pricing-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink-4);
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: var(--s8);
  flex-wrap: wrap;
  margin-top: var(--s8);
  position: relative;
  z-index: 1;
}
.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}
.pricing-trust-item svg { color: var(--teal); }

/* ═══ FAQ SECTION ═══ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s5);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease);
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.faq-item p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* ═══ CTA SECTION ═══ */
.section-cta {
  position: relative;
  padding: var(--s16) 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  z-index: 1;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, var(--gold-soft), transparent 70%);
  pointer-events: none;
}
.section-cta .cta-inner { position: relative; z-index: 1; }
.section-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s3);
}
.section-cta p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: var(--s8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--s3);
  margin-bottom: var(--s5);
  flex-wrap: wrap;
}
.cta-trust {
  display: flex;
  justify-content: center;
  gap: var(--s5);
  flex-wrap: wrap;
}
.cta-trust span {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.cta-trust span svg { color: var(--teal); }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--ink);
  color: var(--ink-5);
  padding: var(--s12) 0 var(--s8) 0;
}
:root[data-theme="dark"] .site-footer { background: #0A0908; }

.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 var(--s6); }
.footer-brand { margin-bottom: var(--s8); }
.footer-brand .logo-text { color: #fff !important; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: var(--s3);
  max-width: 380px;
  line-height: 1.6;
}
.footer-features {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-top: var(--s3);
}
.footer-features span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
  margin-bottom: var(--s8);
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--s3);
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--duration) var(--ease);
}
.footer-col a:hover { color: var(--gold-hot); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-keywords {
  font-family: var(--font-mono);
  font-size: 11px !important;
  letter-spacing: 0.04em;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ═══ ANIMATIONS ═══ */
@keyframes entranceUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes entranceFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.animate-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  .animate-up { opacity: 1; transform: none; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--s8); }
  .hero-visual { justify-content: center; }
  .hero-cards { max-width: 380px; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-sep { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: var(--s12) 0 var(--s8) 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-strip-inner { flex-direction: column; gap: var(--s4); }
  .strip-sep { width: 40px; height: 1px; }
  .section { padding: var(--s12) 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--s4); }
  .hero h1 { font-size: 1.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ═══ LEGAL PAGES (Impressum, Datenschutz, AGB) ═══ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(62px + var(--s12)) var(--s6) var(--s16);
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--s4);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: var(--s10) 0 var(--s4);
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: var(--s2);
}
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin: var(--s6) 0 var(--s3);
  color: var(--ink);
}
.legal-content p {
  margin-bottom: var(--s4);
  color: var(--ink-2);
  line-height: 1.8;
}
.legal-content ul, .legal-content ol {
  margin: var(--s4) 0 var(--s5) var(--s6);
  color: var(--ink-2);
}
.legal-content li {
  margin-bottom: var(--s2);
  line-height: 1.7;
}
.legal-content a { color: var(--gold); }
.legal-content a:hover { color: var(--gold-hot); text-decoration: underline; }
.legal-content strong { color: var(--ink); }

.legal-highlight {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: var(--s5);
  margin: var(--s5) 0;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.legal-highlight p { margin: 0; color: var(--ink); }

.contact-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s5);
  margin: var(--s5) 0;
}
.contact-box p { margin: var(--s1) 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: var(--s8);
}
.back-link:hover { color: var(--gold-hot); }

@media (max-width: 768px) {
  .legal-content { padding: calc(62px + var(--s8)) var(--s4) var(--s8); }
  .legal-content h1 { font-size: 1.5rem; }
}

/* ═══ MARKETING PAGES (Features, Onboarding, Recruiting, etc.) ═══ */
.page-hero {
  position: relative;
  padding: calc(var(--s16) + 20px) 0 var(--s12);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  background: var(--hero-mesh);
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
  pointer-events: none;
}
.page-hero .section-header { position: relative; z-index: 1; }

/* Feature grids & cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.feature-grid-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s6);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transition: height var(--duration) var(--ease);
}
.feature-card:hover::before { height: 4px; }
.feature-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.feature-card .card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: var(--r-sm);
  font-size: 20px;
  margin-bottom: var(--s4);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.feature-card ul {
  list-style: none;
  margin-top: var(--s3);
}
.feature-card ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: 13px;
  color: var(--ink-3);
  padding: 4px 0;
}
.feature-card ul li svg { flex-shrink: 0; color: var(--teal); margin-top: 2px; }

/* Accent variants */
.feature-card.accent-teal::before { background: var(--teal); }
.feature-card.accent-teal .card-icon { background: var(--teal-soft); }
.feature-card.accent-coral::before { background: var(--coral); }
.feature-card.accent-coral .card-icon { background: var(--coral-soft); }
.feature-card.accent-blue::before { background: var(--blue); }
.feature-card.accent-blue .card-icon { background: var(--blue-soft); }
.feature-card.accent-amber::before { background: var(--amber); }
.feature-card.accent-amber .card-icon { background: var(--amber-soft); }

/* Role cards (4-col) */
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s6);
  text-align: center;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.role-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.role-card .role-icon {
  font-size: 32px;
  margin-bottom: var(--s3);
}
.role-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.role-card p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
}

/* Flow steps (horizontal process) */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.flow-step {
  text-align: center;
  padding: var(--s5);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: var(--s3);
}
.flow-step .step-icon { font-size: 28px; margin-bottom: var(--s3); }
.flow-step h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.flow-step p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* Pricing page cards */
.pricing-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  max-width: 1000px;
  margin: 0 auto;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.blog-card:hover {
  box-shadow: var(--sh-sm);
  transform: translateY(-2px);
}
.blog-card-body {
  padding: var(--s5);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
}
.blog-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.blog-card .blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  margin-bottom: var(--s2);
}

/* Register / Subscribe page styles */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(62px + var(--s8)) var(--s4) var(--s8);
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: var(--s10);
  width: 100%;
  max-width: 520px;
  box-shadow: var(--sh-md);
}
.auth-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--s2);
  text-align: center;
}
.auth-card .auth-subtitle {
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: var(--s8);
}

/* Form elements v4 */
.v4-form-group { margin-bottom: var(--s5); }
.v4-label {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: var(--s2);
}
.v4-input, .v4-select {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.v4-input:focus, .v4-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--sh-glow-gold);
}
.v4-input::placeholder { color: var(--ink-4); }

/* Additional responsive for new components */
@media (max-width: 1024px) {
  .feature-grid-4, .flow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .feature-grid, .feature-grid-4, .pricing-page-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .feature-grid-2 { grid-template-columns: 1fr; }
}

/* ═══ BUTTON ALIASES (backward compat) ═══ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  color: #fff;
  border: 1px solid var(--gold);
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--sh-sm), var(--sh-glow-gold);
  transition: all var(--duration) var(--ease);
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: var(--sh-md), var(--sh-glow-gold); color: #fff; }
.btn-gold.btn-large { padding: 14px 28px; font-size: 16px; }
.btn-gold.btn-block { display: block; text-align: center; width: 100%; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline-white.btn-large { padding: 14px 28px; font-size: 16px; }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: 12px 24px;
  background: transparent;
  color: var(--ink-2);
  border: 2px solid var(--border);
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.btn-outline-dark:hover { border-color: var(--gold); background: var(--gold-soft); }

/* ═══ HERO BG (compat) ═══ */
.hero-bg { display: none; }

/* ═══ HERO CARD INTERNALS (onboarding / recruiting pages) ═══ */
.hc-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.hc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hc-name { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.hc-role { font-size: 0.75rem; color: var(--ink-3); }

.hc-progress-wrap { margin-bottom: 0.75rem; }
.hc-progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: var(--ink-3); margin-bottom: 0.3rem;
}
.hc-pct { font-weight: 700; color: var(--gold); }

.hc-tasks { display: flex; flex-direction: column; gap: 0.45rem; }
.hc-task {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; color: var(--ink-2);
}
.hc-task svg { width: 17px; height: 17px; flex-shrink: 0; }
.hc-task.done { color: var(--teal); }
.hc-task.pending { color: var(--amber); }
.hc-task.open { color: var(--ink-4); }

.hc-badge-green { background: var(--teal-soft); color: var(--teal); }
.hc-badge-amber { background: var(--amber-soft); color: var(--amber); }

/* ═══ HERO KANBAN (recruiting page) ═══ */
.hc-kanban {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.hc-kanban-col { border-radius: var(--r-xs); padding: 0.45rem; }
.hc-col-slate { background: var(--bg-hover); }
.hc-col-amber { background: var(--amber-soft); }
.hc-col-green { background: var(--teal-soft); }
.hc-kanban-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; font-weight: 700; color: var(--ink-3);
  margin-bottom: 0.4rem; display: flex; justify-content: space-between;
}
.hc-col-amber .hc-kanban-label { color: var(--amber); }
.hc-col-green .hc-kanban-label { color: var(--teal); }
.hc-kanban-label span { font-weight: 800; }
.hc-kcard {
  background: var(--bg-card); border-radius: 5px; padding: 0.4rem 0.45rem;
  box-shadow: var(--sh-xs); margin-bottom: 0.3rem;
}
.hc-kcard:last-child { margin-bottom: 0; }
.hc-kcard-hired { border: 1.5px solid var(--teal); }
.hc-kcard-name { font-size: 0.72rem; font-weight: 700; color: var(--ink); }
.hc-kcard-meta { font-size: 0.65rem; color: var(--ink-3); margin-top: 0.15rem; }
.hc-kcard-time { color: var(--gold) !important; }
.hc-kpill {
  display: inline-block; border-radius: 3px; padding: 0 0.3rem;
  font-size: 0.55rem; font-weight: 600;
}
.hc-kpill-blue { background: var(--blue-soft); color: var(--blue); }
.hc-kpill-slate { background: var(--bg-hover); color: var(--ink-3); }

/* ═══ HERO BUNDLE CARD (pricing page) ═══ */
.hc-card-bundle {
  border: 2px solid var(--gold) !important;
  background: linear-gradient(160deg, var(--gold-soft), var(--bg-card)) !important;
}
.hc-bundle-badge {
  display: inline-block; background: var(--gold); color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.7rem;
  border-radius: var(--r-full); margin-bottom: 0.5rem;
}
.hc-bundle-label {
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 700; color: var(--gold-text);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.4rem;
}
.hc-bundle-price {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 800; color: var(--ink); line-height: 1;
  margin-bottom: 0.2rem;
}
.hc-bundle-price span { font-size: 0.8rem; font-weight: 500; color: var(--ink-3); }
.hc-bundle-saving {
  font-size: 0.65rem; color: var(--ink-3); margin-bottom: 0.25rem;
}
.hc-bundle-saving strong { color: var(--teal); }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}

/* ═══ HERO DARK OVERLAY (onboarding / recruiting heroes) ═══ */
.hero.hero-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
}
.hero.hero-dark h1 { color: #fff; }
.hero.hero-dark .hero-lead { color: rgba(255,255,255,0.85); }
.hero.hero-dark .hero-trust span { color: rgba(255,255,255,0.7); }
.hero.hero-dark::before {
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 85% 10%, rgba(212,175,55,0.12), transparent 60%);
}
.hero.hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.hero.hero-dark .container { position: relative; z-index: 1; }

/* ═══ HIGHLIGHT CLASSES (Leuchtstift) ═══ */
.hl-yellow { background: linear-gradient(to bottom, rgba(250,204,21,0.35) 0%, rgba(250,204,21,0.25) 100%); padding: 0.08em 0.25em; border-radius: 2px 6px 3px 5px; }
.hl-pink { background: linear-gradient(to bottom, rgba(236,72,153,0.22) 0%, rgba(236,72,153,0.16) 100%); padding: 0.08em 0.25em; border-radius: 5px 3px 6px 2px; }
.hl-green { background: linear-gradient(to bottom, rgba(34,197,94,0.22) 0%, rgba(34,197,94,0.15) 100%); padding: 0.08em 0.25em; border-radius: 3px 5px 2px 6px; }
.hl-blue { background: linear-gradient(to bottom, rgba(59,130,246,0.18) 0%, rgba(59,130,246,0.12) 100%); padding: 0.08em 0.25em; border-radius: 6px 2px 5px 3px; }
.hl-orange { background: linear-gradient(to bottom, rgba(249,115,22,0.22) 0%, rgba(249,115,22,0.15) 100%); padding: 0.08em 0.25em; border-radius: 2px 5px 6px 3px; }

/* ═══ SECTION FAQ (compat) ═══ */
.section-faq {
  padding: var(--s16) 0;
  position: relative;
  z-index: 1;
}

/* ═══ SEO CONTENT ═══ */
.seo-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--s16) var(--s6);
}
.seo-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  margin: var(--s10) 0 var(--s4);
  padding-bottom: var(--s2);
  border-bottom: 2px solid var(--gold);
}
.seo-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink-2);
  margin: var(--s6) 0 var(--s3);
}
.seo-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-2);
  margin-bottom: 1.25rem;
}
.seo-content ul, .seo-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--ink-2);
}
.seo-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.seo-content strong { color: var(--ink); }
.seo-content .highlight-box {
  background: linear-gradient(135deg, var(--teal-soft), rgba(13,148,136,0.12));
  border-left: 4px solid var(--teal);
  padding: var(--s5);
  border-radius: var(--r-sm);
  margin: var(--s5) 0;
}
.seo-content .highlight-box p { margin-bottom: 0; }
.seo-content .warning-box {
  background: linear-gradient(135deg, var(--amber-soft), rgba(217,119,6,0.12));
  border-left: 4px solid var(--amber);
  padding: var(--s5);
  border-radius: var(--r-sm);
  margin: var(--s5) 0;
}
.seo-content .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s5) 0;
}
.seo-content .comparison-table th {
  background: var(--ink);
  color: #fff;
  padding: var(--s4);
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
}
.seo-content .comparison-table td {
  padding: var(--s4);
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--ink-2);
}
.seo-content .comparison-table tr:hover td { background: var(--bg-hover); }

/* ═══ TABLE OF CONTENTS ═══ */
.toc {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s5) var(--s6);
  margin: var(--s6) 0;
}
.toc h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s4);
}
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li {
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--border-light);
}
.toc li:last-child { border-bottom: none; }
.toc a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.toc a:hover { color: var(--gold-hot); }

/* ═══ STEP GRID (SEO pages) ═══ */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.step-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: var(--s5);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: var(--s3);
}

/* ═══ BLOG PAGE ═══ */
.blog-hero {
  position: relative;
  padding: calc(var(--s16) + 20px) 0 var(--s12);
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  text-align: center;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 300px;
  background:
    radial-gradient(ellipse 60% 40% at 30% 0%, rgba(212,175,55,0.18), transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 10%, rgba(212,175,55,0.12), transparent 60%);
  pointer-events: none;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s3);
  position: relative;
  z-index: 1;
}
.blog-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-card-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
}
.blog-card-featured h2, .blog-card-featured h3 { color: #fff !important; }
.blog-card-featured p { color: rgba(255,255,255,0.7) !important; }
.blog-card-featured .blog-meta { color: rgba(255,255,255,0.5) !important; }

.blog-card-image {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-inset));
}
.blog-card-content { padding: var(--s5); }
.blog-card-tag {
  display: inline-block;
  background: var(--gold-soft);
  color: var(--gold-text);
  padding: 0.15rem 0.6rem;
  border-radius: var(--r-xs);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card p {
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.blog-card-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.blog-card-link:hover { color: var(--gold-hot); text-decoration: underline; }

/* ═══ HERO CARD INTERNALS (additional from old CSS) ═══ */
.hc-card-icon { font-size: 1.3rem; margin-bottom: 0.2rem; }
.hc-approval {
  display: flex; align-items: center; gap: 0.5rem;
  justify-content: space-between;
}
.hc-approver {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  flex: 1;
}
.hc-av {
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 0.6rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.hc-av-gold { background: linear-gradient(135deg, var(--gold), var(--gold-hot)); }
.hc-av-navy { background: linear-gradient(135deg, #1e3a5f, #0f172a); }
.hc-av-name { font-size: 0.6rem; color: var(--ink-3); text-align: center; }
.hc-arrow { font-size: 1rem; color: var(--ink-5); flex-shrink: 0; }

.hc-transfer-bar {
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-hot));
  border-radius: 7px; padding: 0.5rem;
  font-size: 0.68rem; font-weight: 700; color: #fff;
}

.hc-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
}
.hc-feat {
  border-radius: 8px; padding: 0.65rem 0.7rem;
  border-left: 3px solid transparent;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.hc-feat span { font-size: 1rem; line-height: 1; margin-bottom: 0.2rem; }
.hc-feat strong { font-size: 0.72rem; color: var(--ink); }
.hc-feat small { font-size: 0.6rem; color: var(--ink-3); }
.hc-feat-green { background: var(--teal-soft); border-color: var(--teal); }
.hc-feat-gold { background: var(--gold-soft); border-color: var(--gold); }
.hc-feat-blue { background: var(--blue-soft); border-color: var(--blue); }
.hc-feat-purple { background: rgba(168,85,247,0.07); border-color: #a855f7; }
.hc-feat-red { background: var(--coral-soft); border-color: var(--coral); }
.hc-feat-teal { background: var(--teal-soft); border-color: var(--teal); }

.hc-workflow { display: flex; align-items: center; gap: 0.3rem; }
.hc-wstep {
  flex: 1; text-align: center; font-size: 0.6rem; font-weight: 700;
  padding: 0.35rem 0.2rem; border-radius: 6px;
}
.hc-wstep-green { background: var(--teal-soft); color: var(--teal); }
.hc-wstep-gold { background: var(--amber-soft); color: var(--amber); }
.hc-wstep-blue { background: var(--blue-soft); color: var(--blue); }
.hc-wline { font-size: 0.75rem; color: var(--ink-5); flex-shrink: 0; }

/* Hero cards container sizing */
.hero-cards.hero-visual {
  min-height: 440px;
  position: relative;
}

/* Glass card override for hero */
.hero.hero-dark .hc-card {
  border-color: rgba(255,255,255,0.75);
  backdrop-filter: blur(2px);
}

/* ═══ INLINE LANDING COMPONENTS ═══ */
.step-circle {
  width: 48px; height: 48px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  margin: 0 auto var(--s4);
}
.step-item { text-align: center; padding: var(--s6); }
.step-item h3 { font-size: 1rem; margin-bottom: var(--s2); }
.step-item p { font-size: 0.875rem; color: var(--ink-2); }

.cl-card {
  background: var(--bg-card);
  border-radius: var(--r-sm);
  padding: var(--s4);
  border: 1px solid var(--border-light);
}
.cl-card h4 { font-size: 0.875rem; margin-bottom: var(--s2); }
.cl-card p { font-size: 0.75rem; color: var(--ink-2); margin-bottom: var(--s3); }
.cl-card ul { list-style: none; font-size: 0.75rem; }
.cl-card li { padding: 0.25rem 0; }

.feat-card {
  background: var(--bg-card);
  padding: var(--s8);
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
}
.feat-card-icon { font-size: 2rem; margin-bottom: var(--s4); }
.feat-card h3 { margin-bottom: var(--s2); }
.feat-card p { color: var(--ink-2); margin-bottom: var(--s4); }
.feat-card ul { list-style: none; }
.feat-card li { padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); }
.feat-card li:last-child { border-bottom: none; }

.role-card {
  background: var(--bg-card);
  padding: var(--s6);
  border-radius: var(--r-sm);
  text-align: center;
  border: 1px solid var(--border-light);
}
.role-card-icon { font-size: 2.5rem; margin-bottom: var(--s4); }
.role-card h4 { margin-bottom: var(--s2); }
.role-card p { font-size: 0.8125rem; color: var(--ink-2); }

.bundle-cta {
  display: inline-block;
  background: white;
  color: var(--gold-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
}
.bundle-cta-dark {
  display: inline-block;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
}

.pricing-inline-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--s8);
  text-align: center;
}
.pricing-inline-badge {
  background: var(--gold);
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: var(--s3);
}
.pricing-inline-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  margin: var(--s3) 0;
}
.pricing-inline-sub {
  font-size: 0.875rem;
  color: var(--ink-2);
  margin-bottom: var(--s6);
}
.pricing-inline-list {
  list-style: none;
  text-align: left;
  font-size: 0.875rem;
  margin-bottom: var(--s6);
}
.pricing-inline-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--border-light); }
.pricing-inline-list li:last-child { border-bottom: none; }

/* ═══ SUBSCRIBE / PLAN SELECTOR ═══ */
.plans-section {
  padding: var(--s16) 0 var(--s24);
  min-height: calc(100vh - 200px);
}
.plans-section .container {
  padding-top: var(--s8);
  padding-bottom: var(--s8);
}
.plans-header {
  text-align: center;
  margin-bottom: var(--s12);
}
.plans-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--s3);
}
.plans-header p {
  font-size: 1.125rem;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0 auto;
}

.trial-notice {
  background: linear-gradient(135deg, var(--amber-soft) 0%, var(--amber-soft) 100%);
  border: 2px solid var(--amber);
  border-radius: var(--r-md);
  padding: var(--s6);
  margin-bottom: var(--s8);
  display: flex;
  align-items: center;
  gap: var(--s4);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.trial-notice.trial-active {
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-soft) 100%);
  border-color: var(--blue);
}
.trial-notice.trial-active .trial-notice-content h3 { color: var(--blue); }
.trial-notice.trial-active .trial-notice-content p { color: var(--ink-2); }
.trial-notice.trial-upsell {
  background: linear-gradient(135deg, var(--amber-soft) 0%, var(--amber-soft) 100%);
  border-color: var(--gold);
}
.trial-notice.trial-upsell .trial-notice-content h3 { color: var(--gold-dark); }
.trial-notice-icon { font-size: 2.5rem; }
.trial-notice-content h3 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}
.trial-notice-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  max-width: 1100px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  padding: var(--s8);
  border: 2px solid var(--border-light);
  transition: all var(--duration) var(--ease);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}
.plan-card.selected {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--blue-soft) 100%);
}
.plan-card.bundle {
  border-color: var(--teal);
  transform: scale(1.02);
}
.plan-card.bundle.selected {
  border-color: var(--teal);
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--teal-soft) 100%);
}
.plan-card.current {
  border-color: var(--green, #16a34a);
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  cursor: default;
}
.plan-card.current:hover {
  transform: none;
  box-shadow: none;
}
.plan-card.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  padding: 0.4rem 1.25rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.8125rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}
.plan-icon { font-size: 2.5rem; text-align: center; margin-bottom: var(--s3); }
.plan-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.25rem;
}
.plan-desc {
  color: var(--ink-2);
  text-align: center;
  font-size: 0.9375rem;
  margin-bottom: var(--s4);
}
.plan-price {
  text-align: center;
  padding: var(--s4);
  background: var(--bg);
  border-radius: var(--r-sm);
  margin-bottom: var(--s5);
}
.plan-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
}
.plan-period {
  color: var(--ink-2);
  font-size: 0.9375rem;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s6) 0;
  flex-grow: 1;
}
.plan-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--ink-3);
  font-size: 0.9375rem;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before {
  content: '✓ ';
  color: var(--teal);
  font-weight: 700;
}
.plan-note {
  color: var(--ink-2);
  font-size: 0.875rem;
  text-decoration: line-through;
}

.actions {
  display: flex;
  gap: var(--s4);
  justify-content: center;
  margin-top: var(--s10);
  flex-wrap: wrap;
}

.btn-subscribe {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hot) 100%);
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  display: inline-block;
}
.btn-subscribe:hover {
  background: linear-gradient(135deg, var(--gold-hot) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}
.btn-subscribe:disabled {
  background: var(--ink-3);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-cancel {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--border-light);
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  display: inline-block;
}
.btn-cancel:hover {
  background: var(--bg-hover);
  border-color: var(--border);
}

.loading-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(248,247,244,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.loading-spinner {
  width: 50px; height: 50px;
  border: 3px solid var(--border-light);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loading-text {
  margin-top: var(--s4);
  color: var(--ink-2);
}
@keyframes spin { to { transform: rotate(360deg); } }

.data-safe-notice {
  background: var(--teal-soft);
  border: 1px solid var(--teal);
  border-radius: var(--r-sm);
  padding: var(--s4) var(--s5);
  margin: var(--s8) auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-align: left;
}
.data-safe-notice-icon { font-size: 1.5rem; }
.data-safe-notice-text {
  font-size: 0.9375rem;
  color: var(--teal);
}
.data-safe-notice-text strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

/* ═══ RESPONSIVE FOR NEW COMPONENTS ═══ */
@media (max-width: 768px) {
  .seo-content { padding: var(--s8) var(--s4); }
  .seo-content h2 { font-size: 1.5rem; }
  .step-grid { grid-template-columns: 1fr !important; }
  .feat-card { grid-column: 1 / -1; }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.hidden { display: none !important; }
