/* ═══════════════════════════════════════════════════════════════
   REPLIVO SYSTEMS — Premium Enhancement Layer (v3)
   Clean, sober, Linear/Vercel-grade. NO gradient orbs, NO glow blobs.
   Loaded after styles.css → overrides where needed.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #0F2D4A;
  --navy-soft: #16395B;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ─── HEADLINE TYPEFACE (Sora) ────────────────────────────────── */
h1, h2, h3, h4, .logo-text, .navy-panel-claim { font-family: var(--font-head); }
html { scroll-padding-top: 104px; }

/* ─── SCROLL PROGRESS BAR ─────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 2000;
  background: var(--accent);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ─── LOGO ICON CROP ──────────────────────────────────────────── */
.logo-wrapper {
  display: flex !important;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}
.logo-icon-frame {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.logo-icon-img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  transform: scale(1.52);
  transform-origin: center center;
}
.logo-lockup { margin-left: 2px; }
.logo-slogan-accent {
  color: var(--accent);
}
/* Override slogan — Sora italic, mixed case, refined tracking */
.logo-slogan {
  font-family: 'Sora', sans-serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
  font-size: 0.63rem !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  color: var(--text-light) !important;
  margin-top: 2px !important;
}

/* ─── STICKY PILL NAVBAR ──────────────────────────────────────── */
.header {
  position: fixed;
  top: 14px;
  left: 0; right: 0;
  height: auto !important;
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: block !important;
  padding: 0 16px;
}
.header .container {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 12px 9px 22px;
  box-shadow: 0 6px 24px -12px rgba(15, 45, 74, 0.18);
  max-width: 1080px;
  transition: padding 0.3s var(--ease-out-expo), box-shadow 0.3s ease, background 0.3s ease;
}
.header.scrolled .container {
  padding: 6px 10px 6px 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 34px -10px rgba(15, 45, 74, 0.22);
}
.logo-text { transition: transform 0.3s var(--ease-spring); }
.logo-wrapper:hover .logo-text { transform: translateX(2px); }

/* nav underline */
.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { background: transparent !important; }

/* ─── BUTTONS — solid blue, rounded-full pill ─────────────────── */
.btn { border-radius: 999px !important; }
.btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 14px -5px rgba(37, 99, 235, 0.5);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
}
.btn-primary:hover {
  background: var(--accent-dark) !important;
  border-color: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 9px 22px -7px rgba(37, 99, 235, 0.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline { transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important; }
.btn-outline:hover { transform: translateY(-1px); }

/* ─── HERO — clean, dot-grid only (no orbs) ───────────────────── */
.hero {
  position: relative;
  padding-top: 132px !important;
  background: var(--bg) !important;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 45, 74, 0.10) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 65% 22%, #000 18%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 60% at 65% 22%, #000 18%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-aurora { display: none !important; }

.hero h1 { color: var(--text); }
.hero h1 .hl { color: var(--accent); }

.hero-badge {
  background: #EAF1FF !important;
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
  box-shadow: none !important;
}
.hero-trust-single {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding-top: 26px;
}
.hero-trust-single .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
  flex-shrink: 0;
}

/* ─── HERO MOCKUP — depth + 3D tilt (no glow) ─────────────────── */
.hero-mockup-wrap {
  position: relative;
  transition: transform 0.4s var(--ease-out-expo);
  will-change: transform;
}
.ui-mockup-browser {
  box-shadow: 0 34px 70px -32px rgba(15, 45, 74, 0.34), 0 12px 30px -16px rgba(15, 45, 74, 0.14) !important;
}

/* single floating accent card top-right */
.mockup-float {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 18px 44px -16px rgba(15, 45, 74, 0.24);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  will-change: transform;
}
.mockup-float .mf-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #16A34A;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}
.mockup-float.mf-top { top: -16px; right: -10px; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ─── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── CARD HOVER — subtle lift ────────────────────────────────── */
.solution-card,
.ki-item,
.pricing-card,
.audience-card,
.benefit-card,
.scenario-card,
.problem-card {
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo), border-color 0.3s ease !important;
  will-change: transform;
}
.solution-card:hover,
.pricing-card:hover,
.scenario-card:hover,
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px -22px rgba(15, 45, 74, 0.20) !important;
  border-color: rgba(37, 99, 235, 0.28) !important;
}

/* ─── TECH STRIP — flowset.ai style ──────────────────────────── */
.tech-strip {
  padding: 52px 0 48px;
  background: #F7F9FC;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-strip-label {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-light);
  margin-bottom: 32px;
}
.marquee, .tech-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track, .tech-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee:hover .marquee-track,
.tech-marquee:hover .tech-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* tech item — icon above + label below */
.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 52px;
  color: #B0BAC8;
  transition: color 0.3s ease;
  cursor: default;
  flex-shrink: 0;
}
.tech-item:hover { color: #6B7A93; }
.tech-item svg { display: block; flex-shrink: 0; }
.tech-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: inherit;
}

/* legacy branche-label (still used in some views) */
.branche-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.branche-label svg { color: var(--accent); opacity: 0.7; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .tech-track {
    animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 24px; padding: 16px;
  }
}

/* ─── PROBLEMS — "Kennen Sie das?" 4-card grid ────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(15, 45, 74, 0.05);
}
.problem-card-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: #EAF1FF;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.problem-card h3 { font-size: 1.0625rem; color: var(--text); margin-bottom: 9px; }
.problem-card p { font-size: 0.9375rem; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ─── SOLUTION — navy claim panel ─────────────────────────────── */
.navy-panel {
  background: var(--navy);
  border-radius: 24px;
  padding: 46px 44px;
  margin-top: 28px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.navy-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 85% 20%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 80% at 85% 20%, #000, transparent 70%);
  pointer-events: none;
}
.navy-panel > * { position: relative; z-index: 1; }
.navy-panel-claim {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.08;
}
.navy-panel-claim span { color: #7FB0FF; }
.navy-points { display: flex; flex-direction: column; gap: 14px; }
.navy-point {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.975rem;
  font-weight: 500;
  color: #CFE0F5;
}
.navy-point svg { color: #34D17E; flex-shrink: 0; }

/* ─── ABLAUF — vertical alternating timeline ──────────────────── */
.timeline {
  position: relative;
  max-width: 840px;
  margin: 52px auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 4px; bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--border), var(--accent) 30%, var(--accent) 70%, var(--border));
  transform: translateX(-50%);
}
.tl-item {
  position: relative;
  width: 50%;
  padding: 0 42px 34px;
}
.tl-item:nth-child(odd) { left: 0; text-align: right; }
.tl-item:nth-child(even) { left: 50%; }
.tl-node {
  position: absolute;
  top: 6px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.tl-item:nth-child(odd) .tl-node { right: -7.5px; }
.tl-item:nth-child(even) .tl-node { left: -7.5px; }
.tl-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 8px 30px rgba(15, 45, 74, 0.05);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}
.tl-card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px -18px rgba(15, 45, 74, 0.18); }
.tl-step {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 7px;
}
.tl-card h3 { font-size: 1.0625rem; color: var(--text); margin-bottom: 7px; }
.tl-card p { font-size: 0.9rem; line-height: 1.6; color: var(--text-muted); margin: 0; }
@media (max-width: 760px) {
  .timeline::before { left: 7px; }
  .tl-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 30px 36px; }
  .tl-item .tl-node { left: 0 !important; right: auto !important; }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-item { transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq-item.active { box-shadow: 0 12px 30px -18px rgba(15, 45, 74, 0.2); }
.faq-question { transition: color 0.25s ease; }
.faq-item:hover .faq-question { color: var(--accent); }

/* ─── FINAL CTA — navy panel ──────────────────────────────────── */
.final-cta-section {
  background: var(--navy) !important;
  border: none !important;
  padding: 88px 0 !important;
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000, transparent 70%);
  mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, #000, transparent 70%);
  pointer-events: none;
}
.final-cta-section .container { position: relative; z-index: 1; }
.final-cta-content h2 { color: #fff; }
.final-cta-content p { color: #CFE0F5; }
.final-cta-trust { color: #9DB6D4 !important; }
.final-cta-checks {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.final-cta-check {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #CFE0F5;
  font-size: 0.95rem;
  font-weight: 500;
}
.final-cta-check svg { color: #34D17E; flex-shrink: 0; }

/* ─── FOOTER — navy ───────────────────────────────────────────── */
.footer { background: var(--navy) !important; }
.footer-brand .logo-text span { color: #7FB0FF; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-social:hover { color: #fff; }
.footer-col a { transition: color 0.2s ease, transform 0.2s ease; }
.footer-col a:hover { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════════════════
   BLOG HERO — preserved (blog is untouched in this redesign)
   ═══════════════════════════════════════════════════════════════ */
.blog-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f8ff 0%, #f8fafc 100%) !important;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 70% at 30% 0%, #000 0%, transparent 75%);
  pointer-events: none;
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero h1 { color: var(--text); letter-spacing: -0.02em; }

/* ─── FOOTER SOCIALS — side by side ──────────────────────────── */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.footer-socials .footer-social { margin-top: 0; }

/* ─── SCREENSHOTS — animation & depth ────────────────────────── */
.screenshots-section { background: #f6f8ff; }
.screenshots-section .section-header { text-align: center; margin-bottom: 52px; }

.screenshot-item {
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}
.screenshot-item:hover { transform: translateY(-5px); }

/* browser mockup: gentle continuous float */
.screenshots-grid > .screenshot-item .ui-mockup-browser {
  animation: ss-float 8s ease-in-out infinite;
  box-shadow: 0 40px 80px -34px rgba(15, 45, 74, 0.30), 0 14px 34px -18px rgba(15, 45, 74, 0.14) !important;
}
@keyframes ss-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(-0.2deg); }
  66%       { transform: translateY(-4px) rotate(0.15deg); }
}

/* phone: opposite phase, slight tilt */
.ui-mockup-phone-wrap {
  animation: ss-phone-float 9s ease-in-out 1.5s infinite;
  filter: drop-shadow(0 24px 40px rgba(15, 45, 74, 0.22));
}
@keyframes ss-phone-float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-10px) rotate(-0.5deg); }
}

/* plan calendar: subtle tilt the other way */
.ui-mockup-plan {
  animation: ss-plan-float 10s ease-in-out 3s infinite;
  box-shadow: 0 20px 46px -22px rgba(15, 45, 74, 0.22);
}
@keyframes ss-plan-float {
  0%, 100% { transform: translateY(0) rotate(0.8deg); }
  50%       { transform: translateY(-7px) rotate(0.2deg); }
}

/* pause all mockup animations on hover of the section */
.screenshots-section:hover .screenshots-grid > .screenshot-item .ui-mockup-browser,
.screenshots-section:hover .ui-mockup-phone-wrap,
.screenshots-section:hover .ui-mockup-plan,
.screenshots-section:hover .ui-mockup-stats {
  animation-play-state: paused;
}

/* ─── 2×2 GRID OVERRIDE ──────────────────────────────────────── */
.screenshots-grid {
  grid-template-columns: 1fr 1fr !important;
  align-items: start;
}

/* ─── STATS MOCKUP (light theme) ────────────────────────────── */
.ui-mockup-stats {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.72rem;
  color: #64748b;
  animation: ss-stats-float 11s ease-in-out 2s infinite;
  box-shadow: 0 20px 60px -20px rgba(75,139,255,0.18), 0 8px 24px -8px rgba(0,0,0,0.10);
}
@keyframes ss-stats-float {
  0%, 100% { transform: translateY(0) rotate(-0.3deg); }
  50%       { transform: translateY(-8px) rotate(0.2deg); }
}

.stats-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.68rem;
  font-weight: 600;
  color: #334155;
  letter-spacing: 0.01em;
}
.stats-chrome-left {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
}
.stats-export-btn {
  font-size: 0.63rem;
  font-weight: 600;
  color: #4b8bff;
  background: rgba(75,139,255,0.08);
  border: 1px solid rgba(75,139,255,0.25);
  border-radius: 5px;
  padding: 2px 7px;
  cursor: default;
}

.stats-kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 14px 14px 10px;
}
.stats-kpi {
  padding: 8px 10px;
  border-radius: 8px;
}
.stats-kpi:nth-child(odd) { background: #f8fafc; }
.stats-kpi-top {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 3px;
}
.stats-kpi-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats-kpi-unit {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
}
.stats-kpi-delta {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
}
.stats-kpi-delta.up     { background: rgba(20,184,166,0.1); color: #0d9488; }
.stats-kpi-delta.neutral { background: #f1f5f9; color: #64748b; }
.stats-kpi-label {
  display: block;
  font-size: 0.62rem;
  color: #94a3b8;
  letter-spacing: 0.01em;
}

.stats-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 0 14px;
}

.stats-bars {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stats-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stats-bar-label {
  width: 56px;
  flex-shrink: 0;
  font-size: 0.62rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stats-bar-track {
  flex: 1;
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  overflow: hidden;
}
.stats-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #4b8bff, #2dd4bf);
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats-bar-fill.animated {
  width: var(--bar-w);
}
.stats-bar-val {
  width: 28px;
  text-align: right;
  font-size: 0.62rem;
  font-weight: 600;
  color: #334155;
}

@media (prefers-reduced-motion: reduce) {
  .ui-mockup-browser, .ui-mockup-phone-wrap, .ui-mockup-plan {
    animation: none !important;
  }
}

/* ─── FOUNDER PHOTO ───────────────────────────────────────────── */
.founder-photo-wrap { position: relative; display: inline-block; }
.founder-photo {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  box-shadow: 0 24px 54px -18px rgba(15, 45, 74, 0.30), 0 8px 20px rgba(15, 23, 42, 0.08);
  display: block;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .navy-panel { flex-direction: column; align-items: flex-start; text-align: left; }
  /* Hide the long CTA button in the navbar pill — it's in the mobile overlay */
  .header-right .btn-primary { display: none; }
}
@media (max-width: 768px) {
  .hero { padding-top: 110px !important; }
  .hero::before { display: none; }
  .mockup-float { display: none; }
  .problems-grid { grid-template-columns: 1fr; }
  .header .container { padding: 8px 10px 8px 18px; }
}
