/* BONAMED Landing Page Styles - WITH VISIBLE STARS */

.bonamed-landing {
  background: radial-gradient(ellipse at center, #2a2a3e 0%, #1e1e2e 30%, #151520 70%, #0a0a0f 100%);
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Main Navigation - Fixed at top */
.main-navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.login-btn {
  background: linear-gradient(135deg, #0ea5e9 0%, #00d4ff 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }

  25% {
    transform: translateY(-30px) translateX(15px) scale(1.1);
  }

  50% {
    transform: translateY(-15px) translateX(-20px) scale(0.9);
  }

  75% {
    transform: translateY(-40px) translateX(10px) scale(1.05);
  }
}

/* Exact orb positioning and colors from reference */
.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(16, 185, 129, 0.3) 50%, transparent 100%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.5) 0%, rgba(0, 212, 255, 0.2) 50%, transparent 100%);
  bottom: 20%;
  left: 15%;
  animation-delay: -2s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, rgba(16, 185, 129, 0.4) 50%, transparent 100%);
  top: 30%;
  right: 10%;
  animation-delay: -4s;
}

.orb-4 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
  bottom: 10%;
  right: 20%;
  animation-delay: -1s;
}

.orb-5 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  top: 60%;
  left: 40%;
  animation-delay: -3s;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Hero Section - Exact Layout Match */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  z-index: 3;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.logo {
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid #00d4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.4),
    inset 0 0 20px rgba(0, 212, 255, 0.1);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  from {
    box-shadow:
      0 0 20px rgba(0, 212, 255, 0.4),
      inset 0 0 20px rgba(0, 212, 255, 0.1);
  }

  to {
    box-shadow:
      0 0 30px rgba(0, 212, 255, 0.6),
      inset 0 0 30px rgba(0, 212, 255, 0.2),
      0 0 40px rgba(16, 185, 129, 0.3);
  }
}

.medical-cross {
  position: relative;
  width: 30px;
  height: 30px;
}

.cross-horizontal,
.cross-vertical {
  position: absolute;
  background: #00d4ff;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cross-horizontal {
  width: 20px;
  height: 4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cross-vertical {
  width: 4px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brand-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00d4ff;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 50px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: none;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.btn-primary,
.btn-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-width: 250px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  color: white;
  box-shadow:
    0 8px 25px rgba(0, 212, 255, 0.4),
    0 0 40px rgba(0, 212, 255, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 15px 40px rgba(0, 212, 255, 0.5),
    0 0 60px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* CRM Interface Display - NO CROPPING */
.tablet-showcase {
  position: relative;
  perspective: 1000px;
}

.tablet-frame {
  width: 600px;
  height: 400px;
  background: linear-gradient(145deg, #2a2a3a, #1a1a2a);
  border-radius: 25px;
  padding: 20px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateY(-15deg) rotateX(5deg);
  position: relative;
}

.tablet-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.tablet-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.crm-interface {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* NO CROPPING! */
  border-radius: 20px;
  filter: brightness(1.1) contrast(1.1);
}

/* CRM Preview */
.crm-preview {
  position: relative;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-dots {
  display: flex;
  gap: 8px;
}

.preview-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.preview-dots span:nth-child(1) {
  background: #ff5f57;
}

.preview-dots span:nth-child(2) {
  background: #ffbd2e;
}

.preview-dots span:nth-child(3) {
  background: #28ca42;
}

.preview-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.preview-content {
  position: relative;
  padding: 20px;
}

.preview-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.preview-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.metric-card {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  min-width: 120px;
}

.metric-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Features Section - Enhanced Selling */
.features-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Compelling Stats Section */
.compelling-stats {
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item.urgent {
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
  }

  50% {
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    border-color: #00d4ff;
  }
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.feature-card {
  padding: 50px 40px;
  background: rgba(0, 212, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.8s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  box-shadow:
    0 25px 60px rgba(0, 212, 255, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Demo Section */
.demo-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.dental-formula-container {
  max-width: 800px;
  margin: 0 auto;
}

.dental-formula {
  padding: 40px;
  text-align: center;
}

.teeth-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tooth {
  width: 35px;
  height: 40px;
  border-radius: 8px 8px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
}

.tooth.healthy {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.tooth.treated {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
}

.tooth.problem {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.tooth:hover {
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.tooth-number {
  font-size: 0.6rem;
}

.formula-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-color.healthy {
  background: linear-gradient(135deg, #10b981, #059669);
}

.legend-color.treated {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.legend-color.problem {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* ============================================
   PRICING SECTION — Premium glassmorphism cards
   ============================================ */
.pricing-section {
  padding: 120px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.15);
}

.pricing-card:hover::before {
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.pricing-card.basic {
  border-color: rgba(16, 185, 129, 0.2);
}

.pricing-card.basic::before {
  background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.pricing-card.basic:hover {
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15), 0 0 40px rgba(16, 185, 129, 0.1);
}

.pricing-card.standard {
  border-color: rgba(0, 212, 255, 0.2);
}

.pricing-card.standard::before {
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.pricing-card.standard:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15), 0 0 40px rgba(0, 212, 255, 0.1);
}

.pricing-card.pro {
  border-color: rgba(168, 85, 247, 0.2);
}

.pricing-card.pro::before {
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
}

.pricing-card.pro:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15), 0 0 40px rgba(168, 85, 247, 0.1);
}

.pricing-card.popular {
  background: rgba(0, 212, 255, 0.08);
  border: 2px solid rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2), 0 0 30px rgba(0, 212, 255, 0.1);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3), 0 0 50px rgba(0, 212, 255, 0.2);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  color: white;
  padding: 6px 24px;
  border-radius: 0 0 12px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  z-index: 2;
}

.pricing-badge {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

.pricing-price {
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.price-period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.pricing-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 28px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 24px;
}

.feature-group {
  margin-bottom: 16px;
}

.feature-group .feature-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-group.included .feature-title {
  color: #10b981;
}

.feature-group.excluded .feature-title {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.pricing-features li:hover {
  color: white;
  padding-left: 4px;
}

.feature-group.excluded li {
  color: rgba(255, 255, 255, 0.35);
}

.pricing-footer {
  margin-top: auto;
}

.pricing-hint {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  font-style: italic;
}

.btn-pricing {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  color: white;
}

.btn-pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-pricing:hover::before {
  left: 100%;
}

.btn-pricing.basic {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-pricing.basic:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-pricing.standard {
  background: linear-gradient(135deg, #00d4ff, #0ea5e9);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-pricing.standard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.btn-pricing.pro {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-pricing.pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.5);
}

.urgency-text {
  color: #fbbf24 !important;
  font-weight: 600;
  font-size: 1.1rem;
}

.selling-subtitle {
  font-size: 1.15rem !important;
  line-height: 1.7 !important;
}

.btn-large {
  padding: 22px 50px !important;
  font-size: 1.2rem !important;
}

.glassmorphism-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 24px;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #0ea5e9;
  background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

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

.footer-logo .brand-name {
  font-size: 1.5rem;
}

.footer-left p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
  color: #0ea5e9;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Demo Section */
.demo-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.dental-formula-container {
  max-width: 800px;
  margin: 0 auto;
}

.dental-formula {
  padding: 40px;
  text-align: center;
}

.teeth-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tooth {
  width: 35px;
  height: 40px;
  border-radius: 8px 8px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
}

.tooth.healthy {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.tooth.treated {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
}

.tooth.problem {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.tooth:hover {
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.tooth-number {
  font-size: 0.6rem;
}

.formula-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-color.healthy {
  background: linear-gradient(135deg, #10b981, #059669);
}

.legend-color.treated {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.legend-color.problem {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Enhanced Glassmorphism Effect */
.glassmorphism-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.glassmorphism-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #0ea5e9;
  background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

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

.footer-logo .brand-name {
  font-size: 1.5rem;
}

.footer-left p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
  color: #0ea5e9;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Features Section - Enhanced Selling */
.features-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.selling-subtitle {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid #FFD700;
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    border-color: #FFA500;
  }
}

/* Compelling Stats Section */
.compelling-stats {
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item.urgent {
  border-color: #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
  animation: urgentPulse 2s ease-in-out infinite;
}

@keyframes urgentPulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.6);
  }

  50% {
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
    border-color: #00d4ff;
  }
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.feature-card {
  padding: 50px 40px;
  background: rgba(0, 212, 255, 0.05);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.8s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(0, 212, 255, 0.1);
  border-color: #00d4ff;
  box-shadow:
    0 25px 60px rgba(0, 212, 255, 0.3),
    0 0 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #00d4ff 0%, #10b981 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Demo Section */
.demo-section {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.02);
}

.dental-formula-container {
  max-width: 800px;
  margin: 0 auto;
}

.dental-formula {
  padding: 40px;
  text-align: center;
}

.teeth-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.tooth {
  width: 35px;
  height: 40px;
  border-radius: 8px 8px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
}

.tooth.healthy {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.tooth.treated {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
}

.tooth.problem {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.tooth:hover {
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.tooth-number {
  font-size: 0.6rem;
}

.formula-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.legend-color.healthy {
  background: linear-gradient(135deg, #10b981, #059669);
}

.legend-color.treated {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.legend-color.problem {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Enhanced Glassmorphism Effect */
.glassmorphism-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.glassmorphism-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* CTA Section - SUPER SELLING */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  border: 3px solid #FFD700;
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    border-color: #FFD700;
  }

  50% {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.6);
    border-color: #FFA500;
  }
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.urgency-text {
  color: #FF6B6B !important;
  font-weight: 700;
  font-size: 1.3rem !important;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #0ea5e9;
  background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

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

.footer-logo .brand-name {
  font-size: 1.5rem;
}

.footer-left p {
  color: rgba(255, 255, 255, 0.6);
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
  color: #0ea5e9;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }

  .bonamed-landing {
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .hero-section {
    padding: 80px 0 60px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
  }

  .logo-section {
    justify-content: center;
    margin-bottom: 24px;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.2;
    word-break: keep-all;
  }

  .gradient-text {
    display: block;
  }

  .hero-buttons {
    align-items: center;
    gap: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    padding: 16px 24px;
    font-size: 1rem;
    min-width: unset;
  }

  .tablet-showcase {
    display: flex;
    justify-content: center;
  }

  .tablet-frame {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 200px;
    transform: none;
    padding: 12px;
    border-radius: 16px;
  }

  .tablet-frame:hover {
    transform: none !important;
  }

  .tablet-screen {
    border-radius: 12px;
  }

  .crm-interface {
    border-radius: 12px;
  }

  /* Features Section Mobile */
  .features-section {
    padding: 60px 0;
  }

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

  .section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 8px;
  }

  .selling-subtitle {
    padding: 16px;
    font-size: 0.95rem;
    margin-top: 16px;
  }

  /* Stats Grid Mobile */
  .compelling-stats {
    margin-bottom: 50px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 8px;
  }

  .stat-item {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .stat-item:hover {
    transform: none;
  }

  .stat-number {
    font-size: 2.5rem;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.95rem;
  }

  /* Features Grid Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .feature-card:hover {
    transform: none;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Demo Section Mobile */
  .demo-section {
    padding: 60px 0;
  }

  .dental-formula-container {
    padding: 0 8px;
  }

  .dental-formula {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .teeth-row {
    gap: 3px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tooth {
    width: 20px;
    height: 26px;
    border-radius: 4px 4px 8px 8px;
  }

  .tooth-number {
    font-size: 0.4rem;
  }

  .formula-legend {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .legend-item {
    justify-content: center;
  }

  .legend-color {
    width: 16px;
    height: 16px;
  }

  .legend-item span {
    font-size: 0.9rem;
  }

  /* Pricing Section Mobile */
  .pricing-section {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 24px;
    padding: 0 8px;
  }

  .pricing-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .pricing-card.popular {
    transform: none;
    order: -1;
  }

  .pricing-card.popular:hover {
    transform: none;
  }

  .pricing-badge {
    font-size: 0.95rem;
    padding: 6px 16px;
  }

  .popular-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }

  .price-amount {
    font-size: 2.2rem;
  }

  .price-currency {
    font-size: 1.2rem;
  }

  .pricing-description {
    font-size: 0.9rem;
  }

  .feature-group .feature-title {
    font-size: 0.85rem;
  }

  .feature-group ul li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .pricing-hint {
    font-size: 0.8rem;
  }

  .btn-pricing {
    padding: 14px 24px;
    font-size: 1rem;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 60px 0;
  }

  .cta-content {
    padding: 40px 20px;
    margin: 0 8px;
    border-radius: 20px;
    border-width: 2px;
  }

  .cta-content h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .urgency-text {
    font-size: 1rem !important;
  }

  .cta-form {
    gap: 14px;
    margin-top: 24px;
  }

  .form-input {
    padding: 14px 16px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .btn-primary.btn-large {
    padding: 16px 24px;
    font-size: 0.95rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo .logo {
    width: 40px;
    height: 40px;
  }

  .footer-logo .brand-name {
    font-size: 1.3rem;
  }

  .footer-left p {
    font-size: 0.9rem;
    max-width: 280px;
  }

  .footer-right {
    justify-content: center;
  }

  .contact-info {
    align-items: center;
    gap: 12px;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  /* Gradient orbs - hide or reduce on mobile for performance */
  .gradient-orb {
    opacity: 0.3;
  }

  .orb-1,
  .orb-2,
  .orb-3 {
    width: 200px;
    height: 200px;
  }

  .orb-4,
  .orb-5 {
    display: none;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .logo {
    width: 44px;
    height: 44px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 20px;
    font-size: 0.9rem;
  }

  .tablet-frame {
    max-width: 280px;
    min-height: 180px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .tooth {
    width: 16px;
    height: 22px;
  }

  .tooth-number {
    font-size: 0.35rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 1.4rem;
  }
}

/* Hover effect for tablet showcase - desktop only */
@media (min-width: 769px) {
  .tablet-frame {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .tablet-frame:hover {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.05) !important;
    box-shadow:
      0 30px 80px rgba(0, 212, 255, 0.3),
      0 0 0 1px rgba(0, 212, 255, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      0 0 60px rgba(0, 212, 255, 0.2) !important;
  }
}