/* Minimal modern styles for HotelPro Manager landing page */
:root{
  --bg:#0f1724; --card:#0b1220; --accent:#06b6d4; --muted:#94a3b8; --glass: rgba(255,255,255,0.04);
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial;color:#e6eef6;background:linear-gradient(180deg,#071024 0%,#081028 60%)}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 36, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #021022;
  font-size: 14px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #e6eef6;
  margin: 2px 0;
  transition: 0.3s;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.nav-menu a {
  color: #e6eef6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

/* Main Content */
.main-content {
  margin-top: 70px;
  min-height: calc(100vh - 70px - 300px); /* Account for header and footer */
}

.container {
  max-width: 1100px;
  margin: 48px auto;
  padding: 24px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f1724 0%, #1e293b 50%, #334155 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title-main {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-title-sub {
  display: block;
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  color: #cbd5e1;
}

.feature-icon {
  font-size: 24px;
  min-width: 24px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
}

.btn-outline {
  background: transparent;
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-visual {
  position: relative;
}

.dashboard-preview {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.preview-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e2e8f0;
}

.preview-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #10b981;
  font-size: 0.9rem;
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
  font-size: 24px;
}

.metric-data {
  flex: 1;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}

.preview-chart {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-placeholder {
  display: flex;
  align-items: end;
  justify-content: space-between;
  height: 80px;
  gap: 4px;
}

.chart-bar {
  background: linear-gradient(180deg, var(--accent), #7c3aed);
  border-radius: 4px 4px 0 0;
  width: 100%;
  min-height: 10px;
  transition: all 0.3s ease;
}

.chart-bar:hover {
  opacity: 0.8;
  transform: scaleY(1.1);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 80px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-section h4 {
  color: #e6eef6;
  margin: 0 0 16px 0;
  font-size: 16px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul a:hover {
  color: var(--accent);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-mark {
  width: 48px;
  height: 48px;
}

.footer-logo .logo-text {
  font-size: 20px;
  font-weight: 600;
}

.footer-section p {
  color: var(--muted);
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social-links a {
  font-size: 20px;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    gap: 60px;
  }

  .hero-title-main {
    font-size: 3rem;
  }
}

@media (max-width: 880px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Pricing Page Styles */
.pricing-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
}

.pricing-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.pricing-plans {
  padding: 80px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.plan-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
  border-color: var(--accent);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.plan-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.amount {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.period {
  font-size: 18px;
  color: var(--muted);
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.plan-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-btn {
  width: 100%;
  text-align: center;
  display: block;
}

.pricing-note {
  text-align: center;
  background: var(--glass);
  padding: 32px;
  border-radius: 16px;
  margin-top: 40px;
}

.pricing-note h3 {
  margin-bottom: 16px;
}

/* About Page Styles */
.about-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #e6eef6;
}

.about-text p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.benefit-item {
  background: var(--glass);
  padding: 24px;
  border-radius: 12px;
}

.benefit-item h4 {
  margin: 0 0 12px 0;
  font-size: 18px;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
}

.team-section {
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #e6eef6;
}

.team-section p {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass);
  padding: 16px;
  border-radius: 8px;
}

.tech-icon {
  font-size: 24px;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }
}

/* Features Page Styles */
.features-hero {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
}

.features-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.features-content {
  padding: 80px 0;
}

.role-based-section {
  margin-bottom: 80px;
}

.role-based-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
  color: #e6eef6;
}

.role-based-section > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.role-card {
  background: var(--card);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.role-card.admin {
  border-color: var(--accent);
}

.role-card.frontdesk {
  border-color: #10b981;
}

.role-card.housekeeping {
  border-color: #f59e0b;
}

.role-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.role-header h3 {
  margin: 0;
  font-size: 20px;
}

.role-badge {
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.role-features h4 {
  margin: 24px 0 12px 0;
  color: #e6eef6;
  font-size: 16px;
}

.role-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-features li {
  padding: 6px 0;
  color: var(--muted);
}

.feature-categories h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #e6eef6;
}

.category-section {
  margin-bottom: 60px;
}

.category-section h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
}

.feature-item {
  background: var(--glass);
  padding: 24px;
  border-radius: 12px;
}

.feature-item h4 {
  margin: 0 0 12px 0;
  color: #e6eef6;
  font-size: 18px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.technical-features {
  margin-top: 80px;
  text-align: center;
}

.technical-features h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #e6eef6;
}

.tech-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.tech-feature {
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.tech-feature h4 {
  margin: 0 0 12px 0;
  color: var(--accent);
  font-size: 18px;
}

.tech-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .category-features {
    grid-template-columns: 1fr;
  }
}

/* Home Page Additional Styles */
.home-benefits {
  padding: 80px 0;
  background: var(--card);
}

.home-benefits h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #e6eef6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #e6eef6;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.home-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent), #7c3aed);
  color: white;
  text-align: center;
}

.home-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.home-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  background: white;
  color: var(--accent);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-buttons .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .category-features {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* FAQ Page Styles - Modernized */
.faq-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #0f1724 0%, #1e293b 50%, #334155 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.faq-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1deg); }
  66% { transform: translateY(5px) rotate(-1deg); }
}

.faq-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.faq-hero p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.faq-content {
  padding: 100px 0;
  background: linear-gradient(180deg, #0f1724 0%, #1e293b 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.faq-category {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #7c3aed, #ec4899);
  border-radius: 24px 24px 0 0;
}

.faq-category:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-category h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.faq-category h2::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent); }
  50% { box-shadow: 0 0 30px var(--accent), 0 0 40px var(--accent); }
}

.accordion {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 32px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e6eef6;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.accordion-header:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.accordion-header:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--accent);
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
}

.accordion-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding: 32px;
}

.accordion-content p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 1rem;
}

.faq-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 80px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent);
  animation: rotate 20s linear infinite;
  opacity: 0.1;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.faq-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.faq-cta p {
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.faq-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .category-features {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--card);
}

.testimonials-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  color: #e6eef6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: block;
}

.testimonial-content p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  font-size: 40px;
  min-width: 40px;
}

.author-info h4 {
  margin: 0 0 4px 0;
  color: #e6eef6;
  font-size: 1rem;
}

.author-info .author-title {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Integrations Section */
.integrations-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f1724 0%, #1e293b 100%);
}

.integrations-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
  color: #e6eef6;
}

.integrations-section > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.integration-category h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}

.integration-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-logo {
  font-size: 32px;
  min-width: 32px;
}

.integration-info h4 {
  margin: 0 0 4px 0;
  color: #e6eef6;
  font-size: 1rem;
}

.integration-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.api-showcase {
  background: var(--card);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.api-showcase h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.api-showcase > p {
  color: var(--muted);
  margin-bottom: 32px;
}

.api-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.api-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.api-feature h4 {
  margin: 0 0 12px 0;
  color: #e6eef6;
  font-size: 1.1rem;
}

.api-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Screenshots Section */
.screenshots-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f1724 0%, #1e293b 100%);
}

.screenshots-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #ffffff;
}

.screenshots-section > p {
  text-align: center;
  color: #cbd5e1;
  margin-bottom: 60px;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.screenshot-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.screenshot-image {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.screenshot-item:hover .screenshot-image img {
  transform: scale(1.05);
}

.screenshot-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 32px 24px 24px;
  color: white;
}

.screenshot-overlay h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.screenshot-overlay p {
  margin: 0;
  color: #e2e8f0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.screenshots-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin: 0 auto;
}

.screenshots-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.screenshots-cta p {
  color: #cbd5e1;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* Comparison Table */
.comparison-section {
  margin-top: 80px;
}

.comparison-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 16px;
  color: #e6eef6;
}

.comparison-section > p {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
}

.comparison-table {
  overflow-x: auto;
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: #e6eef6;
  position: sticky;
  top: 0;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #e6eef6;
}

.comparison-table .check {
  color: #10b981;
  font-weight: bold;
}

.comparison-table .cross {
  color: #ef4444;
  font-weight: bold;
}

.comparison-table .partial {
  color: #f59e0b;
  font-weight: bold;
}

/* Contact Page Styles */
.contact-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #0f1724 0%, #1e293b 50%, #334155 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.contact-hero .lead {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

.contact-content {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f1724 0%, #1e293b 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-section {
  order: 2;
}

.contact-info-section {
  order: 1;
}

.contact-form-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-card h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-form-card > p {
  color: #cbd5e1;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.success-message,
.error-message {
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid;
}

.success-message {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
}

.success-icon,
.error-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.success-message h3 {
  color: #10b981;
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.error-message h3 {
  color: #ef4444;
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.success-message p,
.error-message p {
  margin: 0;
  color: #e2e8f0;
}

.error-message ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
}

.error-message li {
  color: #fecaca;
  margin-bottom: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #e6eef6;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #e6eef6;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-large {
  padding: 18px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.btn-icon {
  font-size: 1.2rem;
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-text h4 {
  margin: 0 0 6px 0;
  color: #e6eef6;
  font-size: 1rem;
  font-weight: 600;
}

.benefit-text p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-methods {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-methods h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-method:last-child {
  border-bottom: none;
}

.method-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.method-info h4 {
  margin: 0 0 4px 0;
  color: #e6eef6;
  font-size: 1.1rem;
  font-weight: 600;
}

.method-info p {
  margin: 0 0 4px 0;
  color: #cbd5e1;
  font-size: 1rem;
}

.response-time {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
}

.demo-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.demo-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.demo-cta p {
  color: #cbd5e1;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive Design Updates */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .roles-grid {
    grid-template-columns: 1fr;
  }

  .category-features {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-section,
  .contact-info-section {
    order: unset;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }

  .contact-form-card {
    padding: 32px;
  }

  .benefits-list {
    gap: 16px;
  }

  .benefit-item {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .container {
    padding: 16px;
  }

  .pricing-hero h1,
  .about-hero h1,
  .features-hero h1,
  .faq-hero h1 {
    font-size: 2rem;
  }

  .plans-grid {
    gap: 24px;
  }

  .plan-card {
    padding: 24px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .tech-stack {
    grid-template-columns: 1fr;
  }

  .roles-grid {
    gap: 24px;
  }

  .role-card {
    padding: 24px;
  }

  .tech-features-grid {
    grid-template-columns: 1fr;
  }

  .home-cta h2,
  .faq-cta h2 {
    font-size: 2rem;
  }

  .cta-buttons,
  .faq-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn,
  .faq-cta .cta-buttons .btn {
    width: 200px;
  }

  .accordion-header {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-item.active .accordion-content {
    padding: 16px 20px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .integration-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .api-features {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
  }
}
