/* Daet Massage and Spa Website Styles - Refined Maroon Theme */
:root {
  /* Refined Maroon + Spa Color Palette */
  --primary: #9d4855;           /* Lighter, softer maroon - less intense */
  --primary-dark: #800020;      /* Original deep maroon for accents only */
  --primary-light: #c5556b;     /* Light rose maroon for subtle elements */
  --primary-ultra-light: #f7f0f2; /* Ultra light maroon tint */
  --secondary: #f8f6f0;         /* Warm cream - spa-like, clean */
  --accent: #d4af37;            /* Gold - luxury, warmth, complements maroon */
  --accent-light: #e8c368;      /* Light gold for hover states */
  --accent-green: #7c9885;      /* Sage green - wellness, natural, calming */
  --accent-blue: #8b9dc3;       /* Soft blue - trust, calm, professional */
  --success: #7c9885;           /* Use sage green for success */
  --warning: #d4af37;           /* Use gold for warnings */
  --error: #dc2626;             /* Keep red for errors */
  --text-dark: #2d1b1f;         /* Deep brown-maroon for text */
  --text-medium: #6b4c57;       /* Medium maroon-brown for secondary text */
  --text-light: #8a7579;        /* Light maroon-gray for subtle text */
  --text-muted: #a89296;        /* Muted maroon-gray for disabled text */
  --bg-light: #fdfcfb;          /* Warm white background */
  --bg-white: #ffffff;
  --bg-dark: #2d1b1f;           /* Deep maroon-brown for dark sections */
  --bg-cream: #f8f6f0;          /* Warm cream background */
  --border: #e8ddd4;            /* Warm light border */
  --border-light: #f4f0ed;      /* Very light warm border */
  
  /* Warm Professional Shadows */
  --shadow: 0 1px 3px 0 rgba(157, 72, 85, 0.1), 0 1px 2px 0 rgba(157, 72, 85, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(157, 72, 85, 0.1), 0 4px 6px -2px rgba(157, 72, 85, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(157, 72, 85, 0.1), 0 10px 10px -5px rgba(157, 72, 85, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(157, 72, 85, 0.25);
  --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.4);
  --shadow-hover: 0 20px 25px -5px rgba(157, 72, 85, 0.1), 0 10px 10px -5px rgba(157, 72, 85, 0.04);
  
  /* Refined Maroon Gradients with Complementary Colors */
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-light: linear-gradient(135deg, var(--primary-ultra-light) 0%, var(--secondary) 100%);
  --gradient-success: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-light) 100%);
  --gradient-luxury: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
  --gradient-hero: linear-gradient(135deg, var(--bg-cream) 0%, var(--primary-ultra-light) 100%);
  
  /* Animation Variables */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Unified Design Tokens (shared with PWA) */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --elev-1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --elev-2: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --elev-3: 0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
}

/* Bridge aliases so marketing site & PWA share the same palette */
:root {
  /* Map PWA names to website tokens */
  --primary-color: var(--primary);
  --secondary-color: var(--secondary);
  --accent-color: var(--accent);
  --success-color: var(--success);
  --warning-color: var(--warning);
  --danger-color: var(--error);
  --info-color: var(--secondary);
  --dark: var(--text-dark);
  --dark-light: var(--primary-light);
  --gray: var(--text-light);
  --gray-light: #94A3B8;
  --light: var(--bg-light);
  --white: var(--bg-white);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Buttons with Micro-interactions */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  will-change: transform, box-shadow;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  box-shadow: var(--shadow);
}

.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 var(--transition-slow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

.btn-primary:active {
  transform: translateY(-1px);
  transition: transform var(--transition-fast);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

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

.btn-secondary:active {
  transform: translateY(-1px);
  transition: transform var(--transition-fast);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 0.75rem;
}

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

/* Floating Action Button Style */
.btn-floating {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.btn-floating:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-2xl);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--elev-1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-brand i {
  font-size: 1.5rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-auth {
  display: flex;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: radial-gradient(1200px 400px at right -100px top -150px, rgba(34,211,238,0.08), transparent 60%),
              radial-gradient(1000px 380px at left -200px bottom -120px, rgba(59,130,246,0.08), transparent 60%),
              var(--gradient-light);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.feature-badge i {
  color: var(--primary);
}

/* Laptop Device Mockup */
.hero-demo {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.laptop-device {
  width: 600px;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.3s;
}

.laptop-device:hover {
  transform: rotateY(-5deg) rotateX(2deg);
}

.laptop-screen {
  background: #1f2937;
  border-radius: 12px 12px 0 0;
  padding: 8px;
  box-shadow: var(--shadow-xl);
}

.browser-bar {
  background: #374151;
  border-radius: 8px 8px 0 0;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.browser-url {
  background: #1f2937;
  padding: 5px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3af;
  font-size: 0.85rem;
  flex: 1;
  max-width: 300px;
  margin: 0 20px;
}

.browser-url i {
  color: #10b981;
  font-size: 0.75rem;
}

.browser-actions {
  color: #9ca3af;
}

.laptop-base {
  background: linear-gradient(to bottom, #e5e7eb 0%, #d1d5db 100%);
  height: 20px;
  border-radius: 0 0 12px 12px;
  position: relative;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.laptop-notch {
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 8px;
  background: #9ca3af;
  border-radius: 0 0 4px 4px;
}

.app-preview {
  padding: 20px;
  height: 100%;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.app-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
}

.status-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.stat-card {
  background: var(--gradient-light);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 20px 10px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

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

.action-btn i {
  font-size: 1.5rem;
  color: var(--primary);
}

.action-btn span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--elev-1);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--elev-3);
  border-color: var(--primary-light);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon i {
  color: var(--accent);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.feature-list i {
  color: var(--success);
  font-size: 0.9rem;
}

/* Pricing */
.pricing-teaser, .pricing-plans {
  padding: 80px 0;
}

.pricing-header {
  background: var(--gradient);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  display: inline-flex;
}

.billing-label {
  font-weight: 500;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  transition: 0.4s;
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.discount-badge {
  background: var(--success);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
}

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

.pricing-cards, .plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.plan-price .period {
  font-size: 1rem;
  color: var(--text-light);
}

.plan-description {
  color: var(--text-light);
  font-size: 0.9rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.plan-features .fa-check {
  color: var(--success);
}

.plan-features .fa-times {
  color: var(--error);
}

.plan-button {
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}

.plan-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}

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

.pricing-note, .cta-note {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Feature Comparison Table */
.feature-comparison {
  background: var(--bg-light);
  padding: 80px 0;
}

.comparison-table {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table table {
  width: 100%;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.comparison-table th {
  background: var(--gradient);
  color: white;
  font-weight: 600;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: var(--bg-light);
}

.comparison-table .fa-check {
  color: var(--success);
}

.comparison-table .fa-times {
  color: var(--error);
}

/* FAQ */
.faq {
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Contact */
.contact {
  background: var(--bg-light);
  padding: 80px 0;
}

.contact-content {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-light);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

/* CTA */
.cta, .pricing-cta {
  background: var(--gradient);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand i {
  font-size: 1.5rem;
  color: var(--primary);
}

.footer-brand p {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* Auth Pages */
.auth-section {
  padding: 120px 0 80px;
  background: var(--bg-light);
  min-height: 100vh;
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-light);
  margin: 0;
}

.auth-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: -2px;
  left: 2px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.auth-links {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.auth-links p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.auth-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.auth-links a:hover {
  text-decoration: underline;
}

.trial-info {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--gradient-light);
  border-radius: 0.5rem;
}

.trial-features h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

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

.trial-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.trial-features i {
  color: var(--success);
  font-size: 0.9rem;
}

.error-message, .success-message {
  padding: 0.75rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.error-message {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.success-message {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Download Page Styles */
.download-header {
  background: var(--gradient);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

.download-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.download-hero p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.download-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.download-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-card.featured {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

.download-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.download-icon i {
  font-size: 2rem;
  color: white;
}

.download-card h3 {
  margin-bottom: 1rem;
  color: white;
}

.download-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.download-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.installation-guide, .system-requirements, .features-preview {
  padding: 80px 0;
}

.guide-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

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

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.guide-steps {
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.step-content p {
  margin: 0;
  color: var(--text-light);
}

.requirements-grid, .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.requirement-card, .feature-item {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.req-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.req-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.download-support {
  background: var(--gradient);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.support-content h2 {
  margin-bottom: 1rem;
}

.support-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.support-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.support-options .btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.support-options .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* Contact Page Styles */
.contact-header {
  background: var(--gradient);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.social-links {
  margin-top: 2rem;
}

.social-links h4 {
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.2s;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

/* Features Page */
.features-header {
  background: var(--gradient);
  padding: 120px 0 60px;
  color: white;
  text-align: center;
}

.features-detail {
  padding: 80px 0;
}

.feature-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.feature-detail-item:nth-child(even) {
  direction: rtl;
}

.feature-detail-item:nth-child(even) .feature-detail-content {
  direction: ltr;
}

.feature-detail-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-detail-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.feature-detail-image {
  background: var(--gradient-light);
  padding: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.feature-detail-image i {
  font-size: 6rem;
  color: var(--primary);
}

/* Integrations */
.integrations {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.integrations h2 {
  margin-bottom: 1rem;
}

.integrations p {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.integration-item {
  background: white;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.2s;
}

.integration-item:hover {
  transform: translateY(-5px);
}

.integration-item i {
  font-size: 2rem;
  color: var(--primary);
}

.integration-item span {
  font-weight: 500;
  color: var(--text-dark);
}

/* Apple-Inspired Homepage Styles */
.apple-hero {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--primary-ultra-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.apple-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-accent-shape {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero-main-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.title-light {
  font-weight: 300;
  color: var(--text-medium);
}

.title-bold {
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-cta-section {
  margin-bottom: 4rem;
}

.btn-apple-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-apple-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: var(--primary-dark);
}

.btn-apple-primary .btn-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition-normal);
}

.btn-apple-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.cta-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.float-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.float-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  animation-delay: -2s;
}

.float-2 {
  width: 150px;
  height: 150px;
  bottom: 30%;
  right: 15%;
  animation-delay: -4s;
}

.float-line {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  top: 40%;
  left: 20%;
  opacity: 0.3;
  animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Social Login Buttons */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  padding: 0 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn-google, .btn-facebook {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-google:hover {
  border-color: #4285f4;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
  transform: translateY(-2px);
}

.btn-facebook {
  border-color: #1877f2;
  background: #1877f2;
  color: white;
}

.btn-facebook:hover {
  background: #166fe5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.google-logo {
  flex-shrink: 0;
}

.btn-facebook i {
  font-size: 1.1rem;
}

/* Enhanced About Page Styles */
.hero-section {
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.about-section {
  padding: 80px 0;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-story, .about-mission {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-story h2, .about-mission h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-story p, .about-mission p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--elev-1);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--elev-3);
}

.value-item:hover::before {
  transform: scaleX(1);
}

.value-item i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.value-item:hover i {
  color: var(--accent);
  transform: scale(1.1);
}

.value-item h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  text-align: center;
}

.stat-item {
  background: var(--gradient-light);
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--elev-2);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-medium);
  font-weight: 500;
  margin: 0;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--elev-1);
  transition: all var(--transition-normal);
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--elev-2);
}

.info-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item div h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-item div p {
  color: var(--text-light);
  margin: 0;
}

.cta-section {
  text-align: center;
  background: var(--gradient-light);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  margin-top: 4rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); 
  font-weight: 700;
}

h2 { 
  font-size: clamp(2rem, 4vw, 3rem); 
  font-weight: 600;
}

h3 { 
  font-size: clamp(1.5rem, 3vw, 2rem); 
  font-weight: 600;
}

/* Improved Spacing */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

/* Modern Card Styles */
.feature-card, .pricing-card, .contact-item, .faq-item {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--elev-1);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.feature-card:hover, .pricing-card:hover, .contact-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--elev-3);
  border-color: var(--primary-light);
}

/* Enhanced Navigation */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-brand img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  transition: all var(--transition-normal);
}

.nav-brand:hover img {
  transform: scale(1.05);
}

.nav-brand span {
  display: none;
}

@media (min-width: 768px) {
  .nav-brand span {
    display: inline;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .apple-hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .btn-apple-primary {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .location-info {
    grid-template-columns: 1fr;
  }
  
  .hero-accent-shape {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
  }
  
  .float-1 {
    width: 120px;
    height: 120px;
  }
  
  .float-2 {
    width: 100px;
    height: 100px;
  }
  
  .about-story h2, .about-mission h2 {
    font-size: 2rem;
  }
  
  .cta-section {
    padding: 3rem 1.5rem;
  }
}

/* AI Business Assistant - Enhanced Pricing Styles */
.plans-grid.simplified-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* AI-focused styling for Pro plan */
.pricing-card.featured .plan-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Enhanced feature icons for AI features */
.plan-features li i.fa-robot,
.plan-features li i.fa-brain,
.plan-features li i.fa-warehouse,
.plan-features li i.fa-users,
.plan-features li i.fa-chart-line,
.plan-features li i.fa-cloud,
.plan-features li i.fa-shield-alt,
.plan-features li i.fa-bullhorn {
  color: var(--accent);
  font-weight: 900;
  margin-right: 0.5rem;
}

.plan-features li strong {
  color: var(--primary);
  font-weight: 600;
}

/* Pro plan highlight */
.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--accent);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .plans-grid.simplified-plans {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
}
