:root {
  --primary: #6B8AF7;
  --accent: #F2A7A0;
  --bg: #F8F7F5;
  --surface: #FAFAFA;
  --text-main: #1F2933;
  --text-secondary: #5B6570;
  --success: #3FB68B;
  --error: #D9534F;
  --radius-card: 12px;
  --radius-input: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--text-secondary); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.py-section { padding: 80px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-input);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 1rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}
.btn-primary {
  background-color: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background-color: #5572e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107,138,247,0.4);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background-color: rgba(107, 138, 247, 0.05);
}
.btn-white {
  background-color: #fff;
  color: var(--primary);
}
.btn-white:hover {
  background-color: #f0f0f0;
}

/* Navbar */
.navbar {
  background-color: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.nav-actions {
  display: flex;
  gap: 12px;
  justify-self: end;
}
/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  background-color: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.active {
  display: flex;
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  background: radial-gradient(ellipse at 60% 0%, rgba(107,138,247,0.12) 0%, transparent 60%);
  background-color: var(--bg);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.trust-line {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.trust-line i {
  color: var(--success);
}
.hero-mockup {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #eee;
}
.hero-mockup-ui {
  width: 100%;
  height: 100%;
  background-color: var(--surface);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}
.mockup-header {
  height: 48px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background-color: #fcfcfc;
}
.mockup-dots {
  display: flex;
  gap: 6px;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }
.mockup-title {
  margin-left: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}
.mockup-body {
  display: flex;
  flex: 1;
}
.mockup-sidebar {
  width: 64px;
  border-right: 1px solid #eaeaea;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
}
.m-sidebar-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background-color: #e0e6ed;
}
.m-sidebar-icon.active { background-color: var(--primary); }
.mockup-content {
  flex: 1;
  padding: 24px;
  background-color: #ffffff;
}
.m-stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.m-stat-card {
  flex: 1;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 16px;
}
.m-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.m-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}
.m-progress-section {
  margin-bottom: 32px;
}
.m-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.m-progress-bar {
  height: 8px;
  background-color: #eaeaea;
  border-radius: 4px;
  overflow: hidden;
}
.m-progress-fill {
  width: 70%;
  height: 100%;
  background-color: var(--primary);
  border-radius: 4px;
}
.m-data-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-data-row {
  height: 48px;
  border: 1px solid #eaeaea;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}
.m-data-avatar { width: 24px; height: 24px; border-radius: 50%; background-color: #f0f0f0; }
.m-data-line { height: 8px; background-color: #eaeaea; border-radius: 4px; width: 40%; }
.m-data-line.short { width: 20%; margin-left: auto; }

@media (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
  .hero p { font-size: 1.125rem; }
  .hero-ctas { flex-direction: column; }
  .trust-line { flex-direction: column; gap: 8px; align-items: center; }
}

/* Stats Section */
.stats-section {
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-item {
  border-right: 1px solid #eaeaea;
}
.stats-item:last-child {
  border-right: none;
}
.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.stats-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .stats-item:nth-child(2) { border-right: none; }
  .stats-item { border-right: 1px solid #eaeaea; }
}

/* Propuesta de valor */
.value-props {
  background-color: var(--surface);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(107,138,247,0.15);
}
.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(107, 138, 247, 0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.card p {
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* Features */
.features {
  background-color: var(--bg);
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-bottom: 80px;
}
.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}
.feature-content {
  flex: 1;
}
.feature-icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.feature-icon-title i {
  color: var(--primary);
  font-size: 1.5rem;
  background-color: rgba(107, 138, 247, 0.1);
  padding: 12px;
  border-radius: 8px;
}
.feature-content h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
.feature-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}
.feature-image {
  flex: 1;
  background-color: transparent;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mini Mockups inside Feature Images */
/* 1. Chart Mockup */
.mockup-chart {
  width: 100%;
  height: 100%;
  background-color: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  border: 1px solid #eaeaea;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.chart-title { width: 40%; height: 12px; background: #eaeaea; border-radius: 6px; margin-bottom: 24px; }
.chart-area { flex: 1; position: relative; border-bottom: 2px solid #f0f0f0; border-left: 2px solid #f0f0f0; margin-bottom: 8px; }
.chart-svg { width: 100%; height: 100%; overflow: visible; }
.chart-line { fill: none; stroke: var(--primary); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chart-point { fill: #fff; stroke: var(--primary); stroke-width: 2; r: 5; }
.chart-labels { display: flex; justify-content: space-between; padding-left: 2px; }
.chart-label { font-size: 0.7rem; color: var(--text-secondary); }

/* 2. Calendar Mockup */
.mockup-calendar { width: 100%; height: 100%; background: var(--surface); border-radius: var(--radius-card); box-shadow: var(--shadow-md); border: 1px solid #eaeaea; padding: 16px; display: flex; flex-direction: column; }
.cal-header { display: flex; justify-content: space-between; margin-bottom: 16px; }
.cal-title { width: 30%; height: 12px; background: #eaeaea; border-radius: 6px; }
.cal-nav { width: 20%; height: 12px; background: #f0f0f0; border-radius: 6px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); grid-template-rows: repeat(3, 1fr); gap: 4px; flex: 1; }
.cal-cell { border: 1px solid #f5f5f5; border-radius: 4px; padding: 4px; position: relative; }
.cal-apt { background: rgba(107,138,247,0.15); border-left: 2px solid var(--primary); border-radius: 2px; padding: 2px 4px; margin-bottom: 4px; font-size: 0.5rem; color: var(--primary); font-weight: 600; }
.cal-apt.accent { background: rgba(242,167,160,0.15); border-left-color: var(--accent); color: #d94a3e; }

/* 3. Document Mockup */
.mockup-doc { width: 80%; margin: 0 auto; aspect-ratio: 1/1.3; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid #eaeaea; padding: 24px; border-radius: 4px; display: flex; flex-direction: column; position: relative; }
.doc-title { text-align: center; height: 16px; width: 50%; background: #e0e6ed; margin: 0 auto 24px; border-radius: 4px; }
.doc-lines { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.doc-line { height: 6px; background: #f0f0f0; border-radius: 3px; }
.doc-line.short { width: 60%; }
.doc-sign-area { margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end; }
.doc-sign-box { border-bottom: 1px dashed #ccc; width: 40%; height: 32px; position: relative; display: flex; align-items: flex-end; justify-content: center; }
.doc-sign-svg { position: absolute; bottom: 4px; width: 60px; height: 24px; stroke: #1a1a1a; stroke-width: 2; fill: none; }
.doc-stamp { color: var(--success); font-weight: bold; font-size: 0.7rem; border: 1px solid var(--success); padding: 2px 6px; border-radius: 4px; transform: rotate(-10deg); }

/* 4. Phone Mockup */
.mockup-phone { width: 220px; height: 440px; margin: 0 auto; background: #fff; border: 12px solid #333; border-radius: 40px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40%; height: 20px; background: #333; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; z-index: 10; }
.phone-header { background: var(--primary); padding: 40px 16px 16px; color: #fff; }
.phone-title { font-size: 1rem; font-weight: 600; }
.phone-body { padding: 16px; flex: 1; background: #f8f9fa; }
.phone-card { background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 12px; }
.pc-top { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.75rem; color: var(--text-secondary); }
.pc-title { font-weight: 600; font-size: 0.875rem; color: var(--text-main); margin-bottom: 4px;}
.pc-badge { display: inline-block; padding: 2px 6px; background: rgba(63,182,139,0.1); color: var(--success); border-radius: 4px; font-size: 0.65rem; font-weight: 600; }

@media (max-width: 768px) {
  .feature-row, .feature-row:nth-child(even) {
    flex-direction: column;
    gap: 32px;
  }
}

/* Precios */
.pricing {
  background-color: var(--surface);
}
.pricing-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-card);
  border: 1px solid #eaeaea;
  text-align: center;
  position: relative;
  background-color: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(107,138,247,0.2);
}
.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular:hover {
  transform: translateY(-12px);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.plan-sub {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.plan-features li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.plan-features li:last-child {
  border-bottom: none;
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
}

/* Testimonios */
.testimonials {
  background-color: var(--bg);
}
.testimonial-card {
  background-color: var(--surface);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eaeaea;
  font-style: italic;
  color: var(--text-secondary);
}
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.author-info h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 0;
}
.author-info span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Final CTA */
.final-cta {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 80px 24px;
}
.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 32px;
  font-weight: 700;
}

/* Footer */
.footer {
  background-color: var(--surface);
  padding: 64px 24px 32px;
  border-top: 1px solid #eaeaea;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.footer-disclaimer {
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer-col a:hover {
  color: var(--primary);
}
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #eaeaea;
  color: var(--text-secondary);
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .footer-content { flex-direction: column; gap: 48px; }
  .footer-links { flex-direction: column; width: 100%; gap: 24px; }
}

/* --- LOGIN PAGE STYLES --- */
.login-layout { display: flex; min-height: 100vh; }
.login-left { flex: 1; background-color: var(--primary); color: white; padding: 64px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.login-left::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 40%); pointer-events: none; }
.login-brand { display: flex; align-items: center; gap: 8px; font-size: 1.5rem; font-weight: 700; text-decoration: none; color: white; z-index: 1; }
.login-text { z-index: 1; max-width: 400px; }
.login-text h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.2; }
.login-text p { font-size: 1.25rem; opacity: 0.9; }
.login-right { flex: 1; background-color: var(--surface); display: flex; align-items: center; justify-content: center; padding: 32px; }
.login-box { width: 100%; max-width: 400px; }
.mobile-login-header { display: none; text-align: center; margin-bottom: 32px; }
.mobile-login-header .nav-brand { justify-content: center; }
.login-box h2 { font-size: 1.75rem; margin-bottom: 32px; color: var(--text-main); }
.form-group { margin-bottom: 24px; position: relative; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; color: var(--text-main); font-size: 0.875rem; }
.form-group input { width: 100%; padding: 12px 16px; border: 1px solid #d1d5db; border-radius: var(--radius-input); font-family: inherit; font-size: 1rem; transition: border-color 0.2s; }
.form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(107, 138, 247, 0.1); }
.forgot-password { position: absolute; top: 0; right: 0; font-size: 0.875rem; color: var(--primary); text-decoration: none; }
.forgot-password:hover { text-decoration: underline; }
.login-box .btn { width: 100%; margin-bottom: 24px; }
.login-divider { border-top: 1px solid #eaeaea; margin: 24px 0; }
.signup-link { display: block; text-align: center; color: var(--text-secondary); text-decoration: none; font-size: 0.95rem; }
.signup-link strong { color: var(--primary); }
.signup-link:hover strong { text-decoration: underline; }

@media (max-width: 768px) {
  .login-left { display: none; }
  .mobile-login-header { display: block; }
}

/* ── Inner pages (Características / Precios) ── */

.inner-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #f8f7ff 0%, #f0f4ff 100%);
  border-bottom: 1px solid #eaeaea;
}

.inner-hero h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.inner-hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.inner-hero-badge {
  display: inline-block;
  background: rgba(107, 138, 247, 0.1);
  color: var(--primary);
  border: 1px solid rgba(107, 138, 247, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.nav-link-active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* ── App Teaser section ── */

.app-teaser {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f7ff 100%);
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.app-teaser-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.app-teaser-content {
  flex: 1;
}

.app-teaser-badge {
  display: inline-block;
  background: rgba(107, 138, 247, 0.1);
  color: var(--primary);
  border: 1px solid rgba(107, 138, 247, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.app-teaser-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.app-teaser-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.app-teaser-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-teaser-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.app-teaser-list li .icon { color: var(--primary); }

.app-teaser-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.app-teaser-phone {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .app-teaser-inner { flex-direction: column; gap: 40px; }
  .app-teaser-title { font-size: 1.6rem; }
}

/* ── Early Access section ── */

.early-access {
  background: linear-gradient(135deg, var(--primary) 0%, #3D5CE8 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.early-access-inner {
  max-width: 640px;
  margin: 0 auto;
}

.early-access-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.early-access-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.early-access-desc {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 32px;
}

.early-access-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

.early-access-note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}

/* ── FAQ block ── */

.faq-block {
  max-width: 680px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--text-main);
  text-align: center;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #eaeaea;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ── Mockup: QR placeholder ── */

.doc-qr-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 32px;
  height: 32px;
}

.qr-cell {
  background: #333;
  border-radius: 1px;
}

.qr-cell:nth-child(even) { background: white; }

/* ── Nina Pax phone mockup ── */

.pax-phone-mockup {
  width: 220px;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(107,138,247,0.18), 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px 14px 24px;
  position: relative;
  border: 6px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pax-phone-notch {
  width: 60px;
  height: 10px;
  background: #1a1a1a;
  border-radius: 8px;
  margin: 0 auto 8px;
}

.pax-week-bar {
  background: linear-gradient(135deg, rgba(107,138,247,0.08), rgba(61,92,232,0.06));
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(107,138,247,0.15);
}

.pax-week-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6B8AF7;
  margin-bottom: 6px;
}

.pax-week-track {
  height: 5px;
  background: rgba(107,138,247,0.15);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 4px;
}

.pax-week-fill {
  height: 100%;
  background: linear-gradient(90deg, #6B8AF7, #3D5CE8);
  border-radius: 99px;
}

.pax-week-sub {
  font-size: 0.65rem;
  color: #9ca3af;
}

.pax-card {
  background: #f9f9fb;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid #efefef;
}

.pax-card--mood {
  background: #fff8f0;
  border-color: #fde8cc;
}

.pax-card--question {
  background: #f0f4ff;
  border-color: rgba(107,138,247,0.2);
}

.pax-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.pax-mood-row {
  display: flex;
  gap: 8px;
  justify-content: space-around;
}

.pax-mood-opt {
  font-size: 1.25rem;
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
}

.pax-mood-opt--active {
  opacity: 1;
  transform: scale(1.2);
}

.pax-tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pax-tag {
  font-size: 0.65rem;
  background: rgba(107,138,247,0.12);
  color: #6B8AF7;
  border-radius: 99px;
  padding: 2px 8px;
  font-weight: 500;
}

.pax-tag--soft {
  background: transparent;
  border: 1px dashed #d1d5db;
  color: #9ca3af;
}

.pax-question-text {
  font-size: 0.72rem;
  color: #374151;
  line-height: 1.5;
  font-style: italic;
}

/* ── Under Construction ── */
.uc-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.uc-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 56px 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(107, 138, 247, 0.10), 0 1px 0 rgba(255,255,255,0.8) inset;
  position: relative;
  z-index: 1;
}

.uc-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.uc-badge {
  display: inline-block;
  background: rgba(107, 138, 247, 0.10);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.uc-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 16px;
}

.uc-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

.uc-features {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.uc-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.uc-feature svg {
  width: 15px;
  height: 15px;
  color: var(--primary);
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.uc-contact {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.uc-contact a {
  color: var(--primary);
  font-weight: 500;
}

.uc-contact a:hover {
  text-decoration: underline;
}

.uc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.uc-orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(107, 138, 247, 0.14);
  top: -120px;
  right: -100px;
}

.uc-orb--2 {
  width: 320px;
  height: 320px;
  background: rgba(61, 92, 232, 0.10);
  bottom: -80px;
  left: -80px;
}

@media (max-width: 540px) {
  .uc-card {
    padding: 40px 24px;
  }
  .uc-title {
    font-size: 1.4rem;
  }
  .uc-features {
    gap: 14px;
  }
}
