:root {
  --primary-color: #ff8c00;
  --primary-gradient: linear-gradient(135deg, #ffeb3b, #ff8c00, #ff5722);
  --secondary-color: #333;
  --accent-color: #f5f5f5;
  --text-primary: #1a1a1a;
  --text-secondary: #000;
  --white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 127, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 140, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

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

.navbar .btn-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(255, 140, 0, 0.3));
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 14px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-primary);
  border: 2px solid #e0e0e0;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

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

.hero-description {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  display: flex;
  gap: 16px;
  max-width: 280px;
  animation: float 6s ease-in-out infinite;
}

.card-1 {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.card-2 {
  top: 150px;
  right: 40px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 40px;
  left: 60px;
  animation-delay: 4s;
}

.card-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 12px;
  flex-shrink: 0;
}

.card-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-content p {
  font-size: 14px;
  color: var(--text-secondary);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--white);
}

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

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-description {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(255, 140, 0, 0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.pricing-comparison {
  max-width: 800px;
  margin: 0 auto;
}

.comparison-table {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-column {
  padding: 24px;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary);
}

.plan-column {
  padding: 24px;
  text-align: center;
  border-left: 1px solid #e0e0e0;
  position: relative;
}

.pro-column {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border-left: 2px solid var(--primary-color);
}

.plan-column h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.coming-soon {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-body {
  border-top: 1px solid #e0e0e0;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}

.table-row:hover {
  background: rgba(255, 140, 0, 0.02);
}

.table-row:last-child {
  border-bottom: none;
}

.feature-name {
  padding: 20px 24px;
  font-weight: 500;
  color: var(--text-primary);
}

.feature-value {
  padding: 20px 24px;
  text-align: center;
  border-left: 1px solid #f0f0f0;
  color: var(--text-secondary);
  font-weight: 500;
}

.table-row:nth-child(4) .feature-value:last-child,
.table-row:nth-child(5) .feature-value:last-child,
.table-row:nth-child(6) .feature-value:last-child,
.table-row:nth-child(7) .feature-value:last-child,
.table-row:nth-child(8) .feature-value:last-child,
.table-row:nth-child(9) .feature-value:last-child,
.table-row:nth-child(10) .feature-value:last-child {
  background: rgba(255, 140, 0, 0.05);
  border-left: 2px solid rgba(255, 140, 0, 0.2);
}

.table-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
}

.action-column {
  padding: 24px;
  text-align: center;
  border-left: 1px solid #e0e0e0;
}

.action-column:first-child {
  border-left: none;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Email Form */
.email-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-group {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 450px;
}

.email-input {
  flex: 1;
  padding: 16px 20px;
  border-radius: var(--border-radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}

.form-note {
  font-size: 14px;
  opacity: 0.7;
}

/* Footer */
.footer {
  padding: 40px 0;
  background: rgba(255, 127, 0, 0.95);
  border-top: 1px solid #e0e0e0;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 40px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: space-around;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .floating-card {
    max-width: 200px;
    padding: 16px;
    font-size: 14px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-comparison {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table {
    min-width: 600px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .form-group {
    flex-direction: column;
    gap: 16px;
  }
  
  .email-input {
    padding: 14px 18px;
    font-size: 15px;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* Demo Modal Styles */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.demo-modal-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.demo-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.demo-wizard-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.demo-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.demo-progress-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.demo-step-counter {
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.demo-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.demo-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.demo-wizard-content {
    padding: 50px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.demo-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.demo-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.demo-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.demo-btn-secondary {
    background: #6c757d;
    color: white;
}

.demo-btn-secondary:hover:not(:disabled) {
    background: #5a6268;
    transform: translateY(-2px);
}

.demo-btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.demo-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Demo Step Styles */
.demo-wizard-step {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.demo-step-icon {
    margin-bottom: 25px;
}

.demo-step-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.demo-wizard-step h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.demo-step-description {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.demo-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.demo-feature-item {
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
    border: 1px solid #e1e8ff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.demo-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.demo-feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.demo-feature-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
}

.demo-feature-item p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Notice Type Demos */
.demo-notice-demos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
    text-align: left;
}

/* Hero Banner spans 2 columns */
.demo-hero-item {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .demo-hero-item {
        grid-column: span 1;
    }
}

.demo-notice-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-notice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.demo-notice-preview {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
}

.demo-notice {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    border-left: 4px solid;
}

.demo-notice.info {
    background: #d1ecf1;
    border-color: #0dcaf0;
    color: #055160;
}

.demo-notice.success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.demo-notice.warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.demo-notice.error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.demo-trigger-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-weight: 600;
}

.demo-trigger-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Interactive Demo Elements */
.demo-live-preview {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.demo-live-preview.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #e3f2fd 100%);
}

.demo-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.demo-stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease;
}

.demo-stat-card:hover {
    transform: translateY(-3px);
}

.demo-stat-number {
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.demo-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Hero Banner Preview Styles */
.demo-hero-banner-preview {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-hero-overlay {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
    width: 100%;
    position: relative;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    }
}

.demo-hero-content-preview {
    text-align: center;
}

.demo-hero-icon-small {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.demo-hero-content-preview h5 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.demo-hero-content-preview p {
    margin: 0 0 15px 0;
    font-size: 14px;
    opacity: 0.95;
    line-height: 1.4;
}

.demo-hero-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-hero-btn-primary,
.demo-hero-btn-secondary {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.demo-hero-btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
}

.demo-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Live Hero Banner Overlay Styles (matching screenshot) */
.demo-live-hero-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.demo-live-hero-banner {
    background: linear-gradient(135deg, #7b68ee 0%, #9370db 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: heroModalSlideIn 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-live-hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.demo-hero-sparkle {
    font-size: 16px;
}

.demo-hero-welcome {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.demo-live-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.demo-live-hero-message {
    font-size: 18px;
    opacity: 0.95;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.demo-live-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-live-hero-btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #7b68ee;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-live-hero-btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.demo-live-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-live-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Banner Animations */
@keyframes heroModalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes heroOverlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroOverlayFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Animation Classes */
.demo-fade-in {
    animation: demoFadeIn 0.6s ease-out;
}

@keyframes demoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.demo-pulse {
    animation: demoPulse 2s infinite;
}

@keyframes demoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Demo Modal Responsive */
@media (max-width: 768px) {
    .demo-modal-container {
        margin: 10px;
        max-height: 95vh;
    }
    
    .demo-modal-header {
        padding: 20px;
    }
    
    .demo-wizard-content {
        padding: 30px 20px;
    }
    
    .demo-modal-footer {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .demo-btn {
        width: 100%;
        justify-content: center;
    }
    
    .demo-feature-grid,
    .demo-notice-demos {
        grid-template-columns: 1fr;
    }
    
    .demo-wizard-step h2 {
        font-size: 24px;
    }
    
    .demo-step-description {
        font-size: 16px;
    }
    
    /* Hero Banner Mobile Responsive */
    .demo-hero-content,
    .demo-live-hero-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .demo-hero-icon,
    .demo-live-hero-icon {
        font-size: 32px;
    }
    
    .demo-hero-text,
    .demo-live-hero-text {
        text-align: center;
    }
    
    .demo-hero-text h4,
    .demo-live-hero-text h4 {
        font-size: 18px;
    }
    
    .demo-hero-text p,
    .demo-live-hero-text p {
        font-size: 14px;
    }
    
    .demo-hero-btn,
    .demo-live-hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}