/* ==========================================================================
   ResellView Landing Page Stylesheet
   Design: Premium Light Mode matching the App's Design System
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Manrope:wght@400;500;600;700;800&family=Parisienne&family=Sora:wght@600;700;800&display=swap');

/* --- Custom Variables & Tokens from App --- */
:root {
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Sora', var(--font-sans);

  /* Colors exactly matching the ResellView App */
  --white: #ffffff;
  --bg-light: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-surface: #ffffff;
  --bg-surface-hover: #fcfdfe;
  
  --primary: #1f2a30;            /* Dark Charcoal/Slate Blue */
  --primary-hover: #293840;
  
  --secondary: #5d6b73;          /* Slate Gray */
  --secondary-hover: #4d5961;
  
  --accent: #007782;             /* Login page accent */
  --accent-hover: #007782;
  --accent-glow: rgba(0, 119, 130, 0.08);

  --line: rgba(31, 42, 48, 0.12);
  --line-strong: rgba(31, 42, 48, 0.25);
  
  --text-main: #1f2a30;
  --text-muted: #5d6b73;
  --text-inverse: #ffffff;

  /* Feedback Colors */
  --success: #166b45;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Radius & Shadows matching app style */
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 10px 24px rgba(31, 42, 48, 0.05);
  --shadow-md: 0 15px 35px rgba(31, 42, 48, 0.08);
  --shadow-lg: 0 25px 50px rgba(31, 42, 48, 0.12);

  /* Gold Premium Colors */
  --gold: #d4af37;
  --gold-hover: #b8972e;
  --gold-light: rgba(212, 175, 55, 0.08);
  --gold-glow: rgba(212, 175, 55, 0.2);
  --gold-gradient: linear-gradient(135deg, #aa771c 0%, #bf953f 25%, #fcf6ba 50%, #b38728 75%, #aa771c 100%);
  --header-height: 76px;
}

/* --- Base & Reset Rules --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  padding: 0;
  background-color: #f8f9fb;
  background: #f8f9fb;
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--text-main);
}

p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-hover);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-soft);
}
::-webkit-scrollbar-thumb {
  background: rgba(31, 42, 48, 0.12);
  border-radius: 5px;
  border: 2px solid var(--bg-soft);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(31, 42, 48, 0.25);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.3rem);
  margin-bottom: 12px;
  color: var(--text-main);
}

.section-header p {
  font-size: 1.05rem;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  background: rgba(0, 119, 130, 0.08);
  border: 1px solid rgba(0, 119, 130, 0.18);
  color: var(--accent);
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* --- Account Button for Auth State --- */
.account-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text-main);
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.account-button:hover {
  border-color: var(--line-strong);
  background: var(--bg-soft);
}

.account-icon {
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='hsl(215, 20%25, 40%25)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.account-avatar {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease;
  border: 1px solid var(--line-strong);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 119, 130, 0.15);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(31, 42, 48, 0.05);
}

.btn-sm {
  padding: 7px 15px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.btn-gold {
  background: var(--gold-gradient);
  border: 1px solid rgba(191, 149, 63, 0.4);
  color: #1f2a30 !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  text-shadow: 0 0.5px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(0);
  background-size: 170% 170%;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, border-color 220ms ease, background-position 320ms ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #b38728 0%, #fbf5b7 25%, #bf953f 50%, #fcf6ba 75%, #aa771c 100%);
  border-color: rgba(191, 149, 63, 0.6);
  background-position: 100% 50%;
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.42);
  transform: translateY(-3px);
}

/* --- Hero Section --- */
.hero {
  padding-top: var(--header-height);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  background: #f8f9fb;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Animated Background Effects */
.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(0, 119, 130, 0.3) 0%, transparent 70%);
  animation: heroOrbDrift1 18s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  top: 60%;
  right: -100px;
  background: radial-gradient(circle, rgba(0, 119, 130, 0.2) 0%, transparent 70%);
  animation: heroOrbDrift2 22s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 35%;
  background: radial-gradient(circle, rgba(0, 119, 130, 0.15) 0%, transparent 70%);
  animation: heroOrbDrift3 15s ease-in-out infinite;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 119, 130, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 80%);
}

@keyframes heroOrbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, 30px) scale(1.08); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes heroOrbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-35px, -25px) scale(1.05); }
  66% { transform: translate(25px, -15px) scale(0.92); }
}

@keyframes heroOrbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  align-content: center;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  text-align: left;
}

/* Hero Badge with Dot */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: heroFadeSlideUp 0.6s ease-out both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: badgeDotPulse 2s ease-in-out infinite;
}

@keyframes badgeDotPulse {
  0%, 100% { transform: scale(1); opacity: 0; }
  50% { transform: scale(1.6); opacity: 0.4; }
}

/* Headline Styles */
.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  color: var(--text-main);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero-vinted-logo-wrap {
  display: inline-block;
  vertical-align: -0.12em;
  margin: 0 0.1em;
  line-height: 1;
}

.hero-vinted-logo {
  display: block;
  width: clamp(6.9rem, 13.8vw, 10.2rem);
  height: auto;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 50%, var(--accent-hover) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 2px;
  opacity: 0.35;
}

.hero-content p.lead {
  font-size: 1.15rem;
  margin-bottom: 25px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* Staggered Entry Animations */
.hero-animate-in {
  animation: heroFadeSlideUp 0.7s ease-out both;
}

.hero-content h1.hero-animate-in { animation-delay: 0.15s; }
.hero-content p.hero-animate-in { animation-delay: 0.25s; }
.hero-bullets.hero-animate-in { animation-delay: 0.35s; }
.hero-actions.hero-animate-in { animation-delay: 0.45s; }
.hero-social-proof.hero-animate-in { animation-delay: 0.55s; }
.hero-mockup.hero-animate-in { animation-delay: 0.4s; }

@keyframes heroFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(0, 119, 130, 0.25), 0 0 0 0 rgba(0, 119, 130, 0);
  transition: transform 180ms ease, box-shadow 250ms ease, background-color 180ms ease;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 130, 0.3), 0 0 0 4px rgba(0, 119, 130, 0.08);
}

.hero-cta-primary svg {
  transition: transform 200ms ease;
}

.hero-cta-primary:hover svg {
  transform: translateX(3px);
}

.hero-cta-secondary {
  padding: 12px 26px;
  font-size: 0.95rem;
}

/* Hero Signup Form (kept for compatibility) */
.hero-signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin-top: 15px;
}

@media (min-width: 480px) {
  .hero-signup-form {
    flex-direction: row;
  }
}

.input-field {
  flex-grow: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.input-field:focus {
  outline: none;
  border-color: var(--accent);
}

.hero-signup-form .btn {
  white-space: nowrap;
}

/* Success Banner */
.entry-success-banner {
  background: rgba(0, 119, 130, 0.08);
  border: 1px solid rgba(0, 119, 130, 0.18);
  border-radius: 12px;
  padding: 15px 18px;
  max-width: 480px;
  margin-top: 18px;
}

.entry-success-banner h4 {
  color: var(--accent);
  margin-bottom: 4px;
}

.entry-success-banner p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Hero Bullets */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 480px) {
  .hero-bullets {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 119, 130, 0.1);
  color: var(--accent);
  flex-shrink: 0;
}

.hero-bullet-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Social Proof Bar */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-width: fit-content;
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof-number {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-main);
}

.hero-proof-number svg {
  color: #f59e0b;
}

.hero-proof-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.hero-proof-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-social-proof {
    gap: 14px;
    padding: 12px 16px;
  }
  .hero-proof-number {
    font-size: 0.95rem;
  }
  .hero-proof-label {
    font-size: 0.65rem;
  }
}

/* App Mockup UI */
.hero-mockup {
  position: relative;
  width: 100%;
}

/* Glow Behind Mockup */
.hero-mockup-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 130, 0.15) 0%, transparent 65%);
  filter: blur(40px);
  z-index: -1;
  animation: mockupGlowPulse 4s ease-in-out infinite;
}

@keyframes mockupGlowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.mockup-wrapper {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 6px;
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(0, 119, 130, 0.06);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.mockup-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 119, 130, 0.1);
}

.mockup-window {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  height: 28px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.mockup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(31, 42, 48, 0.15);
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #007782; }

.mockup-url-bar {
  margin-left: 8px;
  font-size: 0.55rem;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.2px;
  flex-grow: 1;
  max-width: 180px;
}

.mockup-body {
  flex-grow: 1;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Extension Widget Overlay Simulation */
.extension-overlay-sim {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 200px;
  background: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  padding: 12px;
  box-shadow: var(--shadow-md), 0 0 20px rgba(0, 119, 130, 0.08);
  animation: float 4.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ext-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.62rem;
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 5px;
}

.ext-title {
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}

.ext-sync-bar {
  height: 5px;
  background: rgba(31, 42, 48, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.ext-sync-progress {
  height: 100%;
  width: 75%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 3px;
  animation: syncPulse 2.5s ease-in-out infinite;
}

@keyframes syncPulse {
  0%, 100% { width: 75%; }
  50% { width: 85%; }
}

.ext-status {
  font-size: 0.62rem;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

/* Floating Notification Badges */
.hero-float-notification {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  z-index: 2;
}

.hero-float-icon {
  font-size: 1rem;
  line-height: 1;
}

.hero-float-text {
  font-size: 0.72rem;
}

.hero-float-1 {
  top: 20px;
  right: -10px;
  animation: floatNotif1 5s ease-in-out infinite 0.5s;
}

.hero-float-2 {
  bottom: 50px;
  left: -15px;
  animation: floatNotif2 6s ease-in-out infinite 1.5s;
}

@keyframes floatNotif1 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.9; }
  50% { transform: translateY(-8px) rotate(1deg); opacity: 1; }
}

@keyframes floatNotif2 {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.9; }
  50% { transform: translateY(-10px) rotate(-1deg); opacity: 1; }
}

@media (max-width: 991px) {
  .hero-float-notification {
    display: none;
  }
}

/* Mockup elements */
.mock-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-kpi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
  transition: border-color 200ms ease;
}
.mock-kpi-card:hover {
  border-color: rgba(0, 119, 130, 0.25);
}
.mock-kpi-lbl { font-size: 0.55rem; color: var(--text-muted); font-weight: 600; }
.mock-kpi-val { font-size: 0.8rem; font-weight: 800; color: var(--accent); margin-top: 1px; }

.mock-graph {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 8px 8px;
  gap: 6px;
}

.mock-bar {
  flex-grow: 1;
  background: linear-gradient(180deg, rgba(0, 119, 130, 0.25) 0%, rgba(0, 119, 130, 0.08) 100%);
  border: 1px solid var(--accent);
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  height: 20%;
  animation: growBar 1.5s ease-out forwards;
}
.mock-bar:nth-child(2) { height: 45%; animation-delay: 0.15s; }
.mock-bar:nth-child(3) { height: 30%; animation-delay: 0.3s; }
.mock-bar:nth-child(4) { height: 75%; animation-delay: 0.45s; background: linear-gradient(180deg, rgba(31, 42, 48, 0.15) 0%, rgba(31, 42, 48, 0.05) 100%); border-color: var(--primary); }
.mock-bar:nth-child(5) { height: 55%; animation-delay: 0.6s; }
.mock-bar:nth-child(6) { height: 80%; animation-delay: 0.75s; }

@keyframes growBar {
  from { height: 0; }
}


/* --- Early Access Section --- */
.early-access {
  position: relative;
  padding: 118px 0;
  isolation: isolate;
  overflow: hidden;
  background: #f8f9fb;
}

.early-access::before,
.early-access::after {
  content: none;
}

.early-access::before {
  content: none;
}

.early-access::after {
  content: none;
}

.early-access .container {
  max-width: 1220px;
  perspective: 1900px;
  perspective-origin: 50% 45%;
}

.early-access-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  text-align: center;
  border-radius: 30px;
  border: 2px solid rgba(212, 175, 55, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(237, 244, 255, 0.1) 38%, rgba(249, 242, 232, 0.09) 100%),
    radial-gradient(900px 450px at 20% -10%, rgba(255, 255, 255, 0.25), transparent 62%),
    radial-gradient(750px 460px at 85% 118%, rgba(125, 165, 240, 0.2), transparent 62%);
  background-size: 175% 175%, 100% 100%, 100% 100%;
  backdrop-filter: blur(24px) saturate(168%);
  -webkit-backdrop-filter: blur(24px) saturate(168%);
  box-shadow:
    0 34px 70px rgba(28, 39, 53, 0.25),
    0 16px 40px rgba(32, 52, 76, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
  will-change: transform, background-position;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
  animation: earlyAccessLiquid 16s ease-in-out infinite;
}

.early-access-box.is-complete {
  border-color: rgba(199, 153, 72, 0.92);
  box-shadow:
    0 38px 76px rgba(30, 41, 56, 0.28),
    0 16px 42px rgba(34, 51, 76, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14);
}

.early-access-box.is-complete .early-access-signup-area {
  display: none;
}

.early-access-box::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  padding: 3px;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(122deg, #9d7325 0%, #f5dfa2 14%, #c9993d 32%, #f6e8bc 47%, #b5852f 66%, #f1d188 82%, #977025 100%);
  box-shadow:
    0 0 0 1px rgba(255, 234, 179, 0.48),
    0 0 24px rgba(195, 149, 57, 0.32);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.early-access-box::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(112deg,
      rgba(255, 255, 255, 0) 34%,
      rgba(255, 255, 255, 0.45) 44%,
      rgba(255, 233, 180, 0.34) 50%,
      rgba(136, 208, 255, 0.35) 56%,
      rgba(255, 255, 255, 0) 66%);
  transform: translateX(-115%) rotate(5deg);
  animation: earlyAccessPrismSweep 7s cubic-bezier(0.35, 0.06, 0.15, 0.98) infinite;
}

.early-access-box > * {
  position: relative;
  z-index: 4;
}

.early-access-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(209, 165, 72, 0.54);
  background: linear-gradient(130deg, rgba(250, 239, 211, 0.82), rgba(232, 213, 161, 0.7));
  color: #7a5920;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 3px 12px rgba(168, 120, 37, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.early-access-box h2 {
  margin-bottom: 26px;
  font-size: clamp(2.05rem, 4.35vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.028em;
  color: #0e1722;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.early-access-prize-box {
  margin: 0 auto 28px;
  max-width: 800px;
  border-radius: 18px;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(210, 214, 222, 0.88);
  background:
    radial-gradient(130% 160% at 8% 6%, rgba(255, 255, 255, 0.96) 0%, rgba(250, 251, 253, 0.92) 52%, rgba(244, 246, 249, 0.9) 100%),
    repeating-linear-gradient(156deg,
      rgba(199, 204, 214, 0.14) 0px,
      rgba(199, 204, 214, 0.14) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 14px),
    repeating-linear-gradient(22deg,
      rgba(191, 198, 208, 0.09) 0px,
      rgba(191, 198, 208, 0.09) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.62) inset,
    0 12px 24px rgba(45, 52, 66, 0.1);
}

.early-access-prize-box h3 {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #6f521a;
}

.early-access-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  text-align: left;
}

.early-access-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #352e24;
  font-size: 1rem;
  line-height: 1.55;
}

.early-access-benefits .benefit-icon {
  flex: 0 0 auto;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a57a29;
}

.early-access-benefits .benefit-icon-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.early-access-benefits .benefit-text {
  flex: 1 1 auto;
}

.early-access-benefits li strong {
  color: #1b1713;
  font-weight: 800;
}

.early-access-prize-box p {
  margin: 0;
  color: #4f463a;
  font-size: 1rem;
  line-height: 1.65;
}

.early-access-form {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.early-access-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.early-access-input-wrap[hidden] {
  display: none;
}

.early-access-input-line-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.early-access-label {
  display: inline-flex;
  align-items: center;
  color: #4b4338;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.early-access-input-wrap .input-field {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  padding: 16px 4px 8px 0;
  border: 0;
  border-radius: 0;
  --early-access-line-color: rgba(126, 98, 49, 0.55);
  background:
    linear-gradient(var(--early-access-line-color), var(--early-access-line-color)) left calc(100% - 6px) / 100% 1.8px no-repeat,
    transparent;
  color: #2b251d;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-style: italic;
  letter-spacing: 0.018em;
  line-height: 1.08;
  box-shadow: none;
  transition: none;
}

.early-access-input-wrap .input-field::placeholder {
  color: rgba(82, 72, 59, 0.62);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-style: normal;
  letter-spacing: 0.01em;
}

.early-access-input-wrap .input-field:hover {
  --early-access-line-color: rgba(126, 98, 49, 0.55);
}

.early-access-input-wrap .input-field:focus {
  outline: none;
  --early-access-line-color: rgba(126, 98, 49, 0.55);
  box-shadow: none;
}

.early-access-input-wrap #signup-email.is-filled {
  color: #b6892f;
  font-family: "Parisienne", "Times New Roman", cursive;
  font-size: 1.58rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.92), 0 5px 14px rgba(128, 92, 28, 0.18);
}

.early-access-input-line-row .btn {
  min-height: 44px;
  border-radius: 10px;
  padding: 0 16px;
  white-space: nowrap;
}

.early-access .btn-step-back {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: flex-end;
  padding: 0 4px 7px;
  color: rgba(79, 70, 58, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.008em;
}

.early-access .btn-step-back:hover {
  background: transparent;
  color: #2d3b4f;
  transform: none;
}

.early-access .btn-step-back:active {
  transform: none;
}

.early-access .btn-gold {
  --shine-x: 50%;
  --shine-y: 50%;
  min-height: 46px;
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  border: 1px solid rgba(176, 130, 49, 0.62);
  padding: 0 18px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.014em;
  white-space: nowrap;
  color: #1d2735 !important;
  background:
    radial-gradient(150% 150% at 88% 10%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0) 45%),
    repeating-linear-gradient(128deg,
      rgba(173, 160, 140, 0.14) 0px,
      rgba(173, 160, 140, 0.14) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 17px),
    linear-gradient(160deg, #fbfaf6 0%, #f3eee4 48%, #ece4d8 100%);
  box-shadow:
    0 10px 20px rgba(24, 30, 40, 0.12),
    0 2px 8px rgba(151, 108, 37, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: transform 160ms ease, box-shadow 200ms ease, filter 180ms ease, border-color 180ms ease;
}

.early-access .btn-gold::after {
  content: "";
  position: absolute;
  inset: -38%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--shine-x) var(--shine-y),
      rgba(255, 255, 255, 0.78) 0%,
      rgba(255, 255, 255, 0.36) 24%,
      rgba(255, 255, 255, 0) 58%);
  mix-blend-mode: screen;
  transition: opacity 220ms ease, transform 220ms ease;
}

.early-access .btn-gold:hover {
  transform: translateY(-1px);
  filter: brightness(1.02) saturate(1.01);
  border-color: rgba(184, 138, 55, 0.8);
  box-shadow:
    0 12px 22px rgba(24, 30, 40, 0.15),
    0 4px 10px rgba(151, 108, 37, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.early-access .btn-gold:hover::after,
.early-access .btn-gold:focus-visible::after {
  opacity: 1;
  transform: scale(1.03);
}

.early-access .btn-gold:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(198, 150, 65, 0.38),
    0 0 0 4px rgba(198, 150, 65, 0.18),
    0 8px 16px rgba(24, 30, 40, 0.16);
}

.early-access-status-text {
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0 2px;
}

.early-access-status-text.is-error {
  color: #9a3f2a;
}

.early-access-status-text.is-success {
  color: #6d5720;
}

.early-access-status-text a {
  color: #8f6a25;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.early-access-status-text a:hover {
  color: #6d4f1b;
}

.early-access-success-card {
  margin: 8px auto 0;
  max-width: 640px;
  border-radius: 18px;
  border: 1px solid rgba(173, 129, 46, 0.35);
  background:
    radial-gradient(circle at top, rgba(255, 253, 247, 0.98), rgba(246, 236, 210, 0.94) 78%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 20px 34px rgba(42, 31, 17, 0.14);
  padding: 24px 20px;
  text-align: center;
}

.success-checkmark {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2dfab 0%, #d0a347 100%);
  box-shadow:
    0 15px 26px rgba(159, 112, 33, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.success-checkmark svg {
  width: 34px;
  height: 34px;
  stroke: #243245;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.early-access-success-card h3 {
  margin: 0 0 6px;
  color: #2c2417;
  font-size: 1.18rem;
}

.early-access-success-card p {
  margin: 0;
  color: #5d4f3c;
  font-size: 0.95rem;
}

@keyframes earlyAccessHueDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, -12px, 0) scale(1.05);
    opacity: 0.95;
  }
}

@keyframes earlyAccessLiquid {
  0%,
  100% {
    background-position: 0% 50%, 50% 50%, 50% 50%;
    box-shadow:
      0 34px 70px rgba(28, 39, 53, 0.25),
      0 16px 40px rgba(32, 52, 76, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    background-position: 100% 44%, 50% 50%, 50% 50%;
    box-shadow:
      0 42px 82px rgba(28, 39, 53, 0.28),
      0 20px 45px rgba(32, 52, 76, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.54),
      inset 0 -1px 0 rgba(255, 255, 255, 0.16);
  }
}

@keyframes earlyAccessPrismSweep {
  0%,
  16% {
    opacity: 0;
    transform: translateX(-115%) rotate(5deg);
  }
  38%,
  54% {
    opacity: 1;
    transform: translateX(112%) rotate(5deg);
  }
  100% {
    opacity: 0;
    transform: translateX(112%) rotate(5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .early-access::before,
  .early-access::after,
  .early-access-box,
  .early-access-box::after {
    animation: none !important;
  }

  .early-access-box {
    transform: none !important;
    transition: none !important;
  }
}

@media (min-width: 780px) {
  .early-access-input-line-row .btn-gold {
    min-width: 190px;
  }
}

@media (max-width: 779px) {
  .early-access {
    padding: 94px 0;
  }

  .early-access-box {
    border-radius: 22px;
    transform: rotateX(0deg) rotateY(0deg);
  }

  .early-access-badge {
    letter-spacing: 0.1em;
    font-size: 0.7rem;
  }

  .early-access-prize-box h3 {
    letter-spacing: 0.03em;
  }

  .early-access-input-line-row {
    gap: 8px;
  }

  .early-access-input-line-row .btn {
    min-height: 42px;
    padding: 0 12px;
  }

  .early-access .btn-step-back {
    min-height: 52px;
    padding: 0 2px 7px;
  }

}
/* --- Features Section (Interactive Slideshow) --- */
.features-slideshow {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.features-embed-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.features-embed-frame {
  display: block;
  width: 100%;
  min-height: 920px;
  height: min(92vh, 1100px);
  border: 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  .features-slideshow {
    padding: 40px;
  }
}

@media (max-width: 1024px) {
  .features-embed-frame {
    min-height: 820px;
    height: min(88vh, 960px);
  }
}

@media (max-width: 768px) {
  .features-embed-frame {
    min-height: 720px;
    height: 78vh;
  }
}

/* Native Feature Section (no iframe) */
.features-native {
  position: relative;
  overflow: clip;
}

.features-native::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 15%, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0) 42%),
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0) 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
}

.features-native-header .section-header {
  margin-bottom: 34px;
}

.features-native-shell {
  width: min(92vw, 1760px);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 28px;
}

.features-text-column {
  width: 28%;
}

.features-text-block {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.26;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.features-text-block.is-active {
  opacity: 1;
  transform: translateY(0);
}

.features-text-block h3 {
  margin: 0 0 12px 0;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.features-text-block p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.6;
}

.features-preview-column {
  width: 72%;
  position: sticky;
  top: calc(var(--header-height) + 22px);
  height: calc(100vh - var(--header-height) - 34px);
  display: flex;
  align-items: center;
}

.features-preview-container {
  width: 100%;
  height: 100%;
  max-height: 860px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 18px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.features-preview-banner {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  background: linear-gradient(90deg, #f0fdf4 0%, #eff6ff 100%);
}

.features-preview-banner-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1f2937;
}

.features-preview-banner-cta {
  border: none;
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  background: #0f766e;
  cursor: pointer;
}

.features-preview-banner-cta:hover {
  background: #115e59;
}

.features-preview-pane {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: #f8fafc;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.features-preview-pane.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.features-preview-host {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #ffffff;
  overflow: auto;
}

@media (max-width: 768px) {
  .features-native-shell {
    width: 100%;
    padding: 0 12px;
    flex-direction: column;
    gap: 18px;
  }

  .features-text-column,
  .features-preview-column {
    width: 100%;
  }

  .features-preview-column {
    position: relative;
    top: 0;
    height: auto;
  }

  .features-text-block {
    min-height: auto;
    margin-bottom: 40px;
    opacity: 1;
    transform: none;
  }

  .features-preview-container {
    min-height: 620px;
  }

  .features-preview-banner {
    height: 56px;
    padding: 8px 10px;
  }

  .features-preview-banner-text {
    font-size: 0.82rem;
  }

  .features-preview-banner-cta {
    padding: 7px 10px;
    font-size: 0.76rem;
  }

  .features-preview-pane {
    top: 56px;
  }
}


.features-mobile-gallery {
  display: none;
}

.mobile-preview-card {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 14px 30px -22px rgba(15, 23, 42, 0.32);
}

.mobile-preview-copy h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.mobile-preview-copy p {
  margin: 8px 0 12px;
  font-size: 0.94rem;
  line-height: 1.52;
}

.mobile-preview-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #f8fafc;
}

@media (max-width: 768px) {
  .features-native-shell {
    display: none;
  }

  .features-mobile-gallery {
    display: grid;
    gap: 14px;
    margin-top: 8px;
    padding: 0 12px;
  }

  .features-mobile-note {
    border: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: 12px;
    padding: 12px 14px;
    background: linear-gradient(120deg, rgba(236, 253, 245, 0.85), rgba(239, 246, 255, 0.88));
    color: #1f2937;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .features-mobile-note strong {
    color: #115e59;
  }
}
/* Timeline Tab Navigation */
.slider-nav {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--line);
  scrollbar-width: none; /* Firefox */
}

.slider-nav::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.slider-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.slider-tab:hover {
  color: var(--text-main);
  background: var(--bg-soft);
}

.slider-tab.is-active {
  color: var(--accent);
  background: var(--accent-glow);
  box-shadow: inset 0 -2px 0 var(--accent);
  border-radius: 8px 8px 0 0;
}

/* Slide Panel Grid Layout */
.slider-stage {
  position: relative;
  min-height: 380px;
}

.slide-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 35px;
  align-items: center;
  animation: slideFade var(--transition-normal) forwards;
}

@media (min-width: 992px) {
  .slide-panel {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.slide-panel.is-active {
  display: grid;
}

@keyframes slideFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide Left Content */
.slide-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.slide-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.slide-info h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 14px;
  color: var(--text-main);
}

.slide-info p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.slide-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-benefits li {
  font-size: 0.92rem;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slide-benefits li::before {
  content: 'Ã¢Å“â€œ';
  color: var(--accent);
  font-weight: 800;
}

/* Slide Right Visual (Image and Fallback Placeholder Card) */
.slide-visual {
  width: 100%;
}

.feature-image-wrapper {
  position: relative;
  background: var(--bg-soft);
  border: 1.5px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none; /* Controlled by onload/onerror scripts */
}

/* Fallback Card Styling */
.placeholder-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-soft) 100%);
  color: var(--text-muted);
}

.fallback-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.placeholder-fallback h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.placeholder-fallback p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 250px;
  margin: 0;
  line-height: 1.5;
}

.placeholder-fallback code {
  background: rgba(31, 42, 48, 0.05);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--primary);
  font-size: 0.72rem;
  word-break: break-all;
}

/* --- Steps Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-card {
  position: relative;
  text-align: center;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 119, 130, 0.2);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
}

/* Connect line between steps in desktop */
@media (min-width: 992px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(50% + 45px);
    width: calc(100% - 90px);
    height: 1.5px;
    background: var(--line);
    z-index: -1;
  }
}

/* ==========================================================================
   NEUES SAAS-PREMIUM PRICING STYLESHEET
   ========================================================================== */

.section-pricing {
  padding: 100px 20px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(245, 247, 251, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Bereich */
.pricing-header-block {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.pricing-badge-top {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(31, 42, 48, 0.05);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 99px;
  margin-bottom: 16px;
  border: 1px solid rgba(31, 42, 48, 0.08);
}

.pricing-main-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.pricing-subtitle {
  font-size: 1.1rem;
  color: var(--secondary);
  line-height: 1.5;
}

/* Intervall-Switcher */
.pricing-switcher-area {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pricing-switcher-notice {
  font-size: 0.88rem;
  color: var(--secondary);
  margin: 0;
}

.pricing-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid rgba(31, 42, 48, 0.08);
  box-shadow: 0 4px 20px rgba(31, 42, 48, 0.03);
}

.pricing-toggle-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  transition: color 0.25s ease;
}

.pricing-toggle-label.is-active {
  color: var(--primary);
  font-weight: 700;
}

.discount-pill {
  font-size: 0.75rem;
  padding: 2px 8px;
  background: #e6f7f4;
  color: #00776a;
  border-radius: 99px;
  font-weight: 700;
  margin-left: 4px;
}

/* Switcher Button Custom Integration */
.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(31, 42, 48, 0.1);
  border: none;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.25s ease;
  padding: 0;
}

.toggle-switch-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.toggle-switch.is-active {
  background: var(--primary);
}

.toggle-switch.is-active .toggle-switch-dot {
  transform: translateX(24px);
}

/* Premium Layout Grid */
.pricing-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  padding-top: 15px;
}

/* Die Premium-Karten */
.premium-card {
  background: var(--white);
  border: 1px solid rgba(31, 42, 48, 0.08);
  border-radius: 20px;
  padding: 40px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(31, 42, 48, 0.05);
}

/* Besondere Highlight-Karte (Starter/Empfohlen) */
.premium-card.recommended {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 45px rgba(31, 42, 48, 0.08);
  transform: scale(1.03);
}

.premium-card.recommended:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 25px 50px rgba(31, 42, 48, 0.12);
}

.recommended-ribbon {
  position: absolute;
  top: 16px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Karten Top Content */
.card-plan-meta {
  margin-bottom: 12px;
}

.card-tier-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.card-tier-name.highlight-tag {
  color: #00776a;
}

.premium-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.card-description {
  font-size: 0.92rem;
  color: var(--secondary);
  line-height: 1.45;
  margin: 8px 0 0 0;
  min-height: 44px;
}

/* Preisgestaltung */
.card-price-display {
  margin: 30px 0;
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-amount-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.card-price-display .currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.card-price-display .amount {
  font-size: 3.4rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--primary);
  line-height: 1;
}

.card-price-display .period {
  font-size: 0.95rem;
  color: var(--secondary);
  margin-left: 4px;
}

/* Spezielles Early-Access Layout */
.price-row-original {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  font-size: 0.85rem;
  color: var(--secondary);
}

.old-price {
  text-decoration: line-through;
  opacity: 0.7;
  font-weight: 600;
}

.period-badge {
  font-size: 0.8rem;
  background: #fff3cd;
  color: #856404;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: 8px;
  align-self: center;
}

.pricing-early-access-highlight {
  margin-top: 10px;
  background: rgba(0, 119, 130, 0.05);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--primary);
  border: 1px dashed rgba(0, 119, 130, 0.2);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #00776a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(0, 119, 130, 0.4);
  animation: pulseTrigger 2s infinite;
}

@keyframes pulseTrigger {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 119, 130, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 119, 130, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 119, 130, 0); }
}

.card-divider {
  height: 1px;
  background: rgba(31, 42, 48, 0.08);
  margin-bottom: 25px;
}

/* Feature Listen */
.card-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.card-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--primary);
  line-height: 1.4;
}

.card-feature-list li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

.icon-check {
  width: 18px;
  height: 18px;
  color: #00776a;
  flex-shrink: 0;
  margin-top: 1px;
}

.icon-cross {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Psychologischer Trick: Das wichtigste Feature leuchtet dezent */
.feature-highlighted {
  font-weight: 600;
  background: linear-gradient(90deg, rgba(0, 119, 130, 0.04) 0%, rgba(255,255,255,0) 100%);
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: -8px;
}

/* Call to Actions (Buttons) */
.card-actions {
  margin-top: auto;
}

.btn-pricing-action {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  font-family: var(--font-sans);
}

.btn-pricing-action.secondary {
  background: rgba(31, 42, 48, 0.05);
  color: var(--primary);
  border: 1px solid rgba(31, 42, 48, 0.08);
}

.btn-pricing-action.secondary:hover {
  background: rgba(31, 42, 48, 0.09);
  transform: translateY(-1px);
}

.btn-pricing-action.primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(31, 42, 48, 0.15);
}

.btn-pricing-action.primary:hover {
  background: #2a3a42;
  box-shadow: 0 6px 20px rgba(31, 42, 48, 0.25);
  transform: translateY(-2px);
}

/* Responsive Anpassungen fuer mobile Bildschirme */
@media (max-width: 992px) {
  .pricing-premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 450px;
    margin: 0 auto;
  }
  .premium-card.recommended {
    transform: scale(1);
  }
  .premium-card.recommended:hover {
    transform: translateY(-4px);
  }
  .pricing-main-title {
    font-size: 2rem;
  }
}
/* --- Testimonials Section --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
  color: #f59e0b;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-muted);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent);
  font-size: 0.85rem;
}

.author-info h4 {
  font-size: 0.9rem;
  margin-bottom: 1px;
}

.author-info p {
  font-size: 0.78rem;
  margin: 0;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--line-strong);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.faq-icon::before {
  content: '+';
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 700;
}

.faq-item.is-open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item.is-open .faq-icon::before {
  content: 'Ã¢Ë†â€™';
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* --- Call to Action (CTA) Section --- */
.cta {
  text-align: center;
  position: relative;
}

.cta-box {
  background: var(--white);
  border: 1.5px solid var(--accent);
  border-radius: 20px;
  padding: 60px 30px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-md);
}

.cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 15px;
  color: var(--text-main);
}

.cta p {
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 30px;
}

/* --- Footer --- */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 70px 0 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  font-size: 0.88rem;
  margin: 15px 0;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  color: var(--primary);
  border-color: var(--line-strong);
  background: rgba(31, 42, 48, 0.05);
}

.footer-col h4 {
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-newsletter p {
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 6px;
}

.newsletter-form .input-field {
  padding: 8px 12px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.newsletter-form .btn {
  padding: 8px 12px;
  font-size: 0.82rem;
  border-radius: 8px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--text-main);
}




/* --- Global Mobile Layout Refresh --- */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header h2 {
    font-size: clamp(1.68rem, 6.4vw, 2rem);
    line-height: 1.2;
  }

  .section-header p {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .nav-container {
    height: 68px;
    gap: 10px;
  }

  .logo span {
    font-size: 1.1rem;
  }

  .nav-actions {
    gap: 8px;
  }

  .btn-sm {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    min-height: unset;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 28px;
  }

  .hero-grid {
    min-height: auto;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8.2vw, 2.62rem);
    margin-bottom: 14px;
  }

  .hero-content p.lead {
    font-size: 1rem;
    line-height: 1.58;
    margin-bottom: 20px;
  }

  .hero-bullets {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-bullet-item {
    font-size: 0.9rem;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-mockup {
    max-width: 580px;
    margin: 0 auto;
  }

  .hero-gradient-orb,
  .hero-grid-pattern {
    display: none;
  }

  .mockup-url-bar {
    max-width: 135px;
  }

  .extension-overlay-sim {
    right: 10px;
    bottom: 10px;
    width: 170px;
  }

  .early-access {
    padding: 76px 0;
  }

  .early-access-box {
    border-radius: 20px;
    padding: 24px 18px;
  }

  .early-access-box h2 {
    margin-bottom: 20px;
    font-size: clamp(1.85rem, 8vw, 2.25rem);
  }

  .early-access-input-line-row {
    flex-wrap: wrap;
  }

  .early-access-input-line-row .btn,
  .early-access .btn-step-back {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 10px 14px;
  }

  .early-access .btn-step-back {
    align-items: center;
    border: 1px solid rgba(79, 70, 58, 0.22);
    border-radius: 10px;
    margin-top: -2px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card {
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
  }

  .step-number {
    margin: 0 0 12px;
    width: 44px;
    height: 44px;
    font-size: 1.06rem;
  }

  .section-pricing {
    padding: 76px 16px;
  }

  .pricing-main-title {
    font-size: 1.92rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .pricing-switcher-area {
    margin-bottom: 32px;
  }

  .pricing-toggle-wrapper {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px;
  }

  .pricing-premium-grid {
    gap: 18px;
    max-width: 100%;
  }

  .premium-card {
    border-radius: 16px;
    padding: 30px 20px 24px;
  }

  .recommended-ribbon {
    top: 12px;
    right: 14px;
  }

  .card-price-display {
    margin: 22px 0;
  }

  .card-price-display .amount {
    font-size: 2.8rem;
  }

  .testimonial-card {
    border-radius: 14px;
    padding: 22px 18px;
  }

  .faq-question {
    padding: 16px;
    font-size: 0.94rem;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
  }

  .cta-box {
    border-radius: 16px;
    padding: 38px 18px;
  }

  .cta p {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }

  .cta .btn {
    width: 100%;
  }

  .footer {
    padding: 54px 0 30px;
  }

  .footer-grid {
    gap: 24px;
    margin-bottom: 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom-links {
    width: 100%;
    justify-content: flex-start;
  }
}
