:root {
  --web-primary: #0d9488;
  --web-primary-hover: #0f766e;
  --web-secondary: #6366f1;
  --web-secondary-hover: #4f46e5;
  --web-dark: #0f172a;
  --web-light: #f8fafc;
  --web-border: #e2e8f0;
  --web-muted: #64748b;
  --web-white: #ffffff;
  
  --web-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 8px 16px -6px rgba(15, 23, 42, 0.02);
  --web-shadow-lg: 0 20px 40px -4px rgba(15, 23, 42, 0.08), 0 8px 20px -6px rgba(15, 23, 42, 0.04);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--web-dark);
  background-color: var(--web-light);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Glassmorphism Sticky Navbar */
.website-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.website-navbar .nav-link {
  transition: color 0.2s ease;
  font-size: 0.95rem;
  padding: 6px 12px;
}

.website-navbar .nav-link:hover {
  color: var(--web-primary) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: 
    radial-gradient(at 0% 0%, rgba(13, 148, 136, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(99, 102, 241, 0.05) 0px, transparent 50%),
    #ffffff;
  padding: 80px 0;
  border-bottom: 1px solid var(--web-border);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--web-primary);
  border: 1px solid rgba(13, 148, 136, 0.15);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 6px 16px;
  border-radius: 50rem;
  margin-bottom: 20px;
}

/* Interactive CSS Mockup Dashboard Panel */
.dashboard-mockup-wrapper {
  perspective: 1000px;
}

.dashboard-mockup {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.18);
  overflow: hidden;
  font-size: 0.8rem;
  transition: transform 0.5s ease;
  transform: rotateY(-8deg) rotateX(4deg);
}

.dashboard-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

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

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

.mockup-addressbar {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.65rem;
  color: var(--web-muted);
  padding: 3px 20px;
  width: 50%;
  text-align: center;
}

.mockup-body {
  display: grid;
  grid-template-columns: 80px 1fr;
  height: 320px;
}

.mockup-sidebar {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-sidebar-item {
  height: 6px;
  background: #cbd5e1;
  border-radius: 3px;
  width: 80%;
}
.mockup-sidebar-item.short { width: 50%; }

.mockup-main {
  padding: 16px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  background: #ffffff;
}

.mockup-card-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--web-dark);
}

.mockup-card-label {
  font-size: 0.6rem;
  color: var(--web-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.mockup-chart-box {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 100px;
  padding-top: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.mockup-chart-bar {
  width: 14px;
  background: linear-gradient(to top, var(--web-primary), rgba(13,148,136,0.6));
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  transition: height 0.6s ease;
}

/* Features Grid Cards */
.feature-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--web-shadow);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--web-shadow-lg);
  border-color: rgba(13, 148, 136, 0.3);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

/* Workflow Steps */
.workflow-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--web-primary);
  color: var(--web-white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
}

/* Interactive Pricing Switcher */
.pricing-switch-wrapper {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 50rem;
  border: 1px solid var(--web-border);
}

.pricing-switch-btn {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: 50rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--web-muted);
  transition: all 0.2s ease;
}

.pricing-switch-btn.active {
  background: var(--web-white);
  color: var(--web-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Pricing Cards */
.pricing-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: var(--web-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border: 2px solid var(--web-primary);
  box-shadow: var(--web-shadow-lg);
}

.pricing-popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--web-primary);
  color: var(--web-white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 30px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--web-dark);
  line-height: 1;
}

.pricing-features-list {
  list-style: none;
  padding-left: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.88rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features-list li i.bi-check-circle-fill {
  color: var(--web-primary);
}

.pricing-features-list li i.bi-x-circle-fill {
  color: #94a3b8;
}

/* FAQs Accordion */
.faq-accordion .accordion-item {
  border: 1px solid var(--web-border);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--web-shadow);
  background: var(--web-white);
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: 1rem;
  color: var(--web-dark);
  padding: 20px 24px;
  background: var(--web-white);
  box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--web-primary);
  background: rgba(13, 148, 136, 0.02);
}

.faq-accordion .accordion-body {
  padding: 24px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  background: rgba(13, 148, 136, 0.02);
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--web-white);
  border: 1px solid var(--web-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--web-shadow);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--web-shadow-lg);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--web-dark) 0%, #1e1b4b 100%);
  border-radius: 30px;
  padding: 60px;
  box-shadow: var(--web-shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.25) 0%, transparent 70%);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }
  .dashboard-mockup {
    margin-top: 40px;
    transform: none !important;
  }
  .cta-banner {
    padding: 40px 24px;
    text-align: center;
  }
  .btn-sm-nav {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
  }
}
