/* ── NabdMS Landing Page ── */
/* RTL Arabic, Medical/Professional Design */

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

:root {
  --primary: #0d9488;
  --primary-dark: #0a5c5e;
  --primary-light: #14b8a6;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --dark: #0f172a;
  --dark-light: #1e293b;
  --surface: #f8fafc;
  --surface-alt: #f0fdfa;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Layout ── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* ── Typography ── */

h1, h2, h3, h4 {
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.text-center { text-align: center; }

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}
.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--surface);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* ── Navigation ── */

.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.navbar-brand img {
  height: 120px;
  width: auto;
  margin: -20px 0;
}

.navbar-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar-links a:hover {
  color: var(--primary);
}

.navbar-cta .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero Section ── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 148, 136, 0.15);
  color: var(--primary-light);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.hero-brand {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.hero h1 {
  color: var(--white);
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span {
  color: var(--primary-light);
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

/* Hero Benefit Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

.hero-badge-pill svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-light);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ── Features Section ── */

.features {
  background: var(--surface);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.feature-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: var(--surface-alt);
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Benefits Section ── */

.benefits {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.benefit-item:hover {
  border-color: var(--primary);
  background: var(--surface-alt);
}

.benefit-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.benefit-text h3 {
  margin-bottom: 0.25rem;
}

.benefit-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── SmartCapture Section ── */

.smart-capture {
  background: linear-gradient(135deg, #0a3d3a 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}

.smart-capture::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.smart-capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.smart-capture-content {
  position: relative;
  z-index: 1;
}

.smart-capture-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.smart-capture-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.smart-capture-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.smart-capture-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}

.smart-capture-benefits li svg {
  flex-shrink: 0;
  color: var(--primary-light);
}

/* Steps Timeline */
.smart-capture-steps {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.smart-capture-step {
  display: grid;
  grid-template-columns: 40px 56px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.2);
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 36px;
  background: linear-gradient(to bottom, var(--primary), rgba(13, 148, 136, 0.2));
  margin-top: 0.5rem;
}

.step-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
}

.step-icon-box.done {
  background: rgba(13, 148, 136, 0.15);
  border-color: var(--primary);
  color: var(--primary-light);
}

.step-text h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.step-text p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ── Security Section ── */

.security {
  background: var(--dark);
  color: var(--white);
}

.security h2 {
  color: var(--white);
}

.security .section-subtitle {
  color: var(--text-light);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.security-card {
  background: var(--dark-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s;
}

.security-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.security-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.security-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.security-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Pricing Section ── */

.pricing {
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.pricing-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ── CTA / Contact Section ── */

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  text-align: center;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */

.footer {
  background: var(--dark);
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Footer styles moved to bottom of file */

/* ── Editions Section ── */

.editions {
  background: var(--surface);
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3rem;
}

.edition-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.edition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.edition-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.edition-badge {
  position: absolute;
  top: -14px;
  right: 50%;
  transform: translateX(50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.edition-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.edition-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.edition-target {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.edition-features {
  list-style: none;
  margin-bottom: 1rem;
  flex: 1;
}

.edition-features li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.edition-features li:last-child {
  border-bottom: none;
}

.edition-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.edition-features li.edition-category {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  margin-top: 0.5rem;
}

.edition-features li.edition-category:first-child {
  margin-top: 0;
  padding-top: 0;
}

.edition-features li.edition-category::before {
  content: none;
}

.edition-support {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.edition-support-premium {
  color: var(--primary);
  font-weight: 600;
}

.edition-positioning {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.edition-price {
  border-top: 2px solid var(--border);
  padding-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.edition-price-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.edition-price-note {
  color: var(--text-light);
  font-size: 0.8rem;
}

.edition-card .btn {
  width: 100%;
  justify-content: center;
}

/* (No-Subscription + Custom-Pricing blocks removed — content deduplicated) */

/* Upgrade Reassurance */
.upgrade-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--surface-alt);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.upgrade-reassurance svg {
  flex-shrink: 0;
  color: var(--primary);
}

/* (Titles for removed blocks cleaned up) */

/* ── Trust Section ── */

.trust {
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.trust-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--surface-alt);
  color: var(--primary);
}

.trust-item h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── FAQ Section ── */

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
  font-family: inherit;
  line-height: 1.5;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .feature-card { flex: 0 0 calc(50% - 1rem); }
  .benefits-grid,
  .security-grid,
  .pricing-grid,
  .editions-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html { font-size: 15px; }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero { padding-top: 7rem; }
  .hero h1 { font-size: 2.5rem; }

  .hero-badge {
    background: rgba(13, 148, 136, 0.35);
    border: 1px solid rgba(13, 148, 136, 0.55);
    font-size: 0.8rem;
    padding: 0.5rem 1.1rem;
    margin-top: 1.5rem;
  }

  section { padding: 3.5rem 0; }

  .feature-card { flex: 0 0 100%; }
  .benefits-grid,
  .security-grid,
  .pricing-grid,
  .editions-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .smart-capture-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .smart-capture-content h2 {
    font-size: 1.75rem;
  }

  .hero-badges { gap: 0.5rem; }
  .faq-question { font-size: 0.9rem; padding: 1rem 1.25rem; }
  .faq-answer p { padding: 0 1.25rem 1rem; font-size: 0.85rem; }

  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .navbar-links { display: none; }
  .navbar-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0.5rem;
  }
  .navbar-cta { display: none; }
  .menu-toggle { display: block; }

  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-badge-pill { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
  .upgrade-reassurance { flex-direction: column; text-align: center; font-size: 0.85rem; padding: 1rem 1.5rem; }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
  }

  .workflow-steps {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .workflow-step { flex: none; max-width: 280px; }
  .workflow-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .showcase-screen { min-height: 250px; }
  .showcase-wireframe { min-height: 250px; }
  .showcase-tab { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .wireframe-stats-row { flex-wrap: wrap; }
  .wireframe-stat-card { flex: 0 0 calc(50% - 0.5rem); }
  .wireframe-body-split { flex-direction: column; }
  .wireframe-two-col { flex-direction: column; }
  .wireframe-tooth-grid { grid-template-columns: repeat(8, 1fr); gap: 2px; }
}

/* ── Product Showcase Section ── */

.product-showcase {
  background: linear-gradient(135deg, var(--dark) 0%, #0a2a3a 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.showcase-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.showcase-tab:hover {
  border-color: var(--primary);
  color: var(--white);
}

.showcase-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.showcase-frame {
  max-width: 900px;
  margin: 0 auto;
}

.showcase-device {
  background: var(--dark-light);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.showcase-screen {
  position: relative;
  min-height: 400px;
}

.showcase-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 1.25rem;
  color: rgba(255, 255, 255, 0.3);
  padding: 3rem;
  text-align: center;
}

.showcase-placeholder svg {
  opacity: 0.4;
}

.showcase-placeholder span {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.showcase-placeholder small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.25);
}

.showcase-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Workflow Section ── */

.workflow {
  background: var(--white);
}

.workflow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
}

.workflow-step {
  text-align: center;
  flex: 0 0 200px;
  max-width: 200px;
}

.workflow-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.workflow-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s;
  margin: 0 auto;
}

.workflow-step:hover .workflow-icon {
  border-color: var(--primary);
  background: var(--surface-alt);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.workflow-icon-done {
  background: var(--surface-alt);
  border-color: var(--primary);
}

.workflow-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.workflow-step h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.workflow-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding: 0 0.5rem;
}

.workflow-connector {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  color: var(--border);
  flex-shrink: 0;
}

/* ── Comparison Table ── */

.comparison-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.comparison-title {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.comparison-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.comparison-table th {
  background: var(--surface);
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--primary);
  font-size: 0.85rem;
  white-space: nowrap;
}

.comparison-table th:first-child {
  text-align: right;
  min-width: 180px;
}

.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.comparison-table td:first-child {
  text-align: right;
  font-weight: 600;
  color: var(--text);
}

.comparison-table tbody tr:hover {
  background: var(--surface-alt);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.check-yes {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.check-no {
  color: var(--text-light);
  font-size: 1rem;
}

.check-opt {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.comparison-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ── CTA Trust Line ── */

.cta-trust {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.02em;
}

/* ── Feature Highlight Card ── */

.feature-card-highlight {
  border-color: var(--primary);
  background: var(--surface-alt);
}

/* ── Footer Improvements ── */

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-copy {
  color: var(--text-light);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ── Product Showcase Wireframes ── */

.showcase-wireframe {
  display: flex;
  flex-direction: column;
  min-height: 400px;
  padding: 0;
  background: #1a2332;
}

.wireframe-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wireframe-topbar-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--primary);
  opacity: 0.6;
}

.wireframe-topbar-nav {
  display: flex;
  gap: 0.5rem;
}

.wireframe-topbar-item {
  width: 48px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.wireframe-topbar-item.active {
  background: var(--primary);
  opacity: 0.5;
}

.wireframe-topbar-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* Stats Row */
.wireframe-stats-row {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
}

.wireframe-stat-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.75rem;
}

.wireframe-stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(13, 148, 136, 0.2);
  flex-shrink: 0;
}

.wireframe-stat-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Generic Lines */
.wireframe-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.wireframe-line.thin {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.wireframe-line.w10 { width: 10%; }
.wireframe-line.w15 { width: 15%; }
.wireframe-line.w20 { width: 20%; }
.wireframe-line.w40 { width: 40%; }
.wireframe-line.w50 { width: 50%; }
.wireframe-line.w60 { width: 60%; }
.wireframe-line.w70 { width: 70%; }
.wireframe-line.w80 { width: 80%; }
.wireframe-line.w90 { width: 90%; }

/* Body Split (Chart + Sidebar) */
.wireframe-body-split {
  display: flex;
  gap: 1rem;
  padding: 0 1.25rem 1.25rem;
  flex: 1;
}

.wireframe-chart {
  flex: 2;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: flex-end;
}

.wireframe-chart-bars {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
  width: 100%;
  height: 120px;
}

.wireframe-bar {
  flex: 1;
  background: linear-gradient(to top, rgba(13, 148, 136, 0.4), rgba(13, 148, 136, 0.15));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.wireframe-sidebar-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wireframe-list-item {
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Search Bar */
.wireframe-search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 1.25rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.wireframe-search-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Table */
.wireframe-table {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.wireframe-table-header {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0.75rem;
  background: rgba(13, 148, 136, 0.08);
  border-radius: 6px 6px 0 0;
}

.wireframe-table-header .wireframe-line {
  background: rgba(13, 148, 136, 0.3);
}

.wireframe-table-row {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Two-Column Layout */
.wireframe-two-col {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  flex: 1;
}

.wireframe-col-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1rem;
}

.wireframe-col-main {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
}

/* Avatar Block */
.wireframe-avatar-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.wireframe-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.2);
  flex-shrink: 0;
}

.wireframe-avatar-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Form Fields */
.wireframe-form-field {
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wireframe-form-field.tall {
  height: 64px;
}

/* Buttons */
.wireframe-btn-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.wireframe-btn {
  height: 28px;
  width: 80px;
  border-radius: 6px;
  background: var(--primary);
  opacity: 0.4;
}

.wireframe-btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Tooth Grid */
.wireframe-tooth-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
}

.wireframe-tooth {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wireframe-tooth.active {
  background: rgba(13, 148, 136, 0.25);
  border-color: var(--primary);
}

/* Filter Bar */
.wireframe-filter-bar {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
}

.wireframe-filter-chip {
  width: 60px;
  height: 24px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wireframe-filter-chip.active {
  background: rgba(13, 148, 136, 0.2);
  border-color: var(--primary);
}

/* Status Badges */
.wireframe-badge {
  width: 10%;
  height: 8px;
  border-radius: 4px;
}

.wireframe-badge.green {
  background: rgba(34, 197, 94, 0.4);
}

.wireframe-badge.yellow {
  background: rgba(245, 158, 11, 0.4);
}

/* Caption */
.wireframe-caption {
  text-align: center;
  padding: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── WhatsApp Floating Button ── */

.whatsapp-float {
  display: none; /* TODO: auf display:flex setzen wenn WhatsApp-Nummer bereit ist */
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
