:root {
  --primary: #00797c;
  --primary-dark: #006264;
  --secondary: #f5f7fa; /* Cooler off-white */
  --dark: #212529;     /* Bootstrap dark gray for text */
  --muted: #6c757d;    /* Bootstrap muted text */
  --border: #dee2e6;   /* Bootstrap border color */
  --white: #ffffff;
  --success: #198754;  /* Bootstrap success green */
}

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

.section-padding {
  padding: 100px 0;
}

/* Section headers */
.section-header {
  max-width: 820px;
  margin: 0 auto 3rem;
}
.section-title {
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark);
  margin-bottom: .5rem;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.btn {
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  padding: 12px 28px;
  border: 1px solid transparent;
}

/* Make small buttons actually small (e.g., navbar "Get Demo") */
.btn.btn-sm {
  padding: 6px 12px; /* override global .btn padding */
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  background: transparent;
}

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

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.4rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.5px;
  transition: all 0.2s ease;
}

.brand-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px;
  padding: 4px;
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.navbar-toggler-animation {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 20px;
  height: 16px;
}

.navbar-toggler-animation span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.navbar-actions .btn {
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.smooth-scroll {
  scroll-behavior: smooth;
}

/* Brand image + name */
.brand-logo {
  height: 28px;
  width: auto;
  display: inline-block;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin: 0 0.15rem;
  position: relative;
}

.nav-link:hover {
  color: var(--primary) !important;
  background: rgba(0, 121, 124, 0.08);
  transform: translateY(-1px);
}

/* Animated underline for active/hover states */
.nav-link::after {
  content: '';
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Toggler improvements */
.navbar .navbar-toggler {
  padding: .25rem .5rem;
  border-radius: .5rem;
}
.navbar .navbar-toggler:focus { box-shadow: 0 0 0 .1rem rgba(0,0,0,.08); }
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (prefers-reduced-motion: reduce) {
  .navbar, .nav-link::after { transition: none; }
}

.hero {
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0, 121, 124, 0.2), transparent 50%),
    radial-gradient(900px 500px at 90% 10%, rgba(0, 121, 124, 0.18), transparent 55%),
    linear-gradient(180deg, #021018 0%, #04222d 100%);
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 121, 124, 0.1) 0%, transparent 50%);
  z-index: 1;
}

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

.hero-badge-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 121, 124, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  animation: fadeInUp 0.8s ease-out 0.4s both;
  opacity: 0.9;
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.trust-indicators {
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Animated blurred blobs for depth */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
}
.hero::before {
  background: var(--primary);
  top: -120px;
  left: -80px;
  animation: blob-move-1 18s ease-in-out infinite;
}
.hero::after {
  background: var(--primary);
  bottom: -140px;
  right: -120px;
  animation: blob-move-2 22s ease-in-out infinite;
}

@keyframes blob-move-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.08); }
}
@keyframes blob-move-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -40px) scale(1.05); }
}

/* Subtle noise overlay for texture */
.hero .noise-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.25"/></svg>');
}

.hero-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero-glass:hover {
  transform: scale(1.02);
}

.hero h1 {
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: -1px;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.hero-buttons .btn {
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-buttons .btn-primary {
  background: white;
  color: #00797c;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  animation: subtle-pulse 2.5s infinite;
}

.hero-buttons .btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.hero-image-container {
  perspective: 1000px;
}

.hero-image {
  transform: rotateY(-5deg) rotateX(5deg);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: rotateY(0) rotateX(0);
}

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

/* Particle background */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
  opacity: 0.1;
  z-index: 1;
  animation: particle-move 20s linear infinite;
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.badge-soft:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.trust-indicators {
  margin-top: 2rem;
}

.trust-avatars .avatar {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  font-size: 0.875rem;
}

.bg-gradient-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.bg-gradient-success { background: linear-gradient(135deg, #10b981, #059669); }
.bg-gradient-info { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.bg-gradient-warning { background: linear-gradient(135deg, #f59e0b, #d97706); }

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.trust-stat {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.trust-divider {
  opacity: 0.5;
}

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

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.95);
}
.hero-bullets li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.hero-bullets i {
  color: var(--primary);
  background: #fff;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.trust-bar .avatar-stack { display: flex; }
.avatar-stack .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  margin-right: -10px;
}

.preview-scene { min-height: 380px; }
.preview-card {
  position: absolute;
  right: 10%;
  left: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: 320px;
  transform: rotateY(-8deg) rotateX(6deg);
  animation: float 7s ease-in-out infinite;
}
.preview-card.second {
  top: 140px;
  right: 0;
  width: 260px;
  animation-duration: 8.5s;
}
.preview-card.third {
  top: 240px;
  right: 18%;
  width: 280px;
  animation-duration: 7.5s;
}

.availability-bars { display: flex; flex-direction: column; gap: 8px; }
.availability-bars .bar {
  display: block;
  height: 8px;
  background: #eef2f7;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.availability-bars .bar.filled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--primary) 0%, #66b2ff 100%);
  border-radius: 8px;
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(245, 247, 250, 0.8) 100%);
}

.testimonials-stats {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.stat-item {
  padding: 1rem;
}

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

.stat-label {
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.stat-stars {
  color: #f59e0b;
  font-size: 1.25rem;
}

.testimonial-card.modern-testimonial {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card.modern-testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-card.modern-testimonial .quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.8;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1.125rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  opacity: 0.3;
}

.testimonial-quote {
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.author-company {
  color: var(--muted);
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  background: var(--white);
}

.contact-info {
  padding-right: 2rem;
}

.contact-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.contact-description {
  color: var(--muted);
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-method:last-child {
  border-bottom: none;
}

.method-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #009688 100%);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.method-label {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.method-value {
  color: var(--dark);
  font-weight: 600;
}

.contact-form-wrapper {
  background: var(--secondary);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-title {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--muted);
}

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

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

.form-control {
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.2s ease;
  background: var(--white);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 121, 124, 0.1);
}

.form-privacy {
  text-align: center;
}

/* CTA Section Enhancements */
.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-buttons {
  margin-bottom: 2rem;
}

.btn-cta {
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 12px;
  margin: 0.5rem;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.feature-item i {
  color: white;
  font-size: 1.1rem;
}

/* Subtle utility fallbacks if Bootstrap subtle utilities are missing */
.bg-success-subtle { background: #e9f7ef !important; }
.bg-primary-subtle { background: #e7f1ff !important; }
.text-success { color: #198754 !important; }
.text-primary { color: #00797c !important; }
.border { border: 1px solid var(--border) !important; }
.section-title {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* Modern Section Styling */
.section-badge .badge {
  background: rgba(0, 121, 124, 0.1);
  color: var(--primary);
  border: 1px solid rgba(0, 121, 124, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
}

.badge-primary {
  background: rgba(0, 121, 124, 0.1) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(0, 121, 124, 0.2) !important;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, rgba(245, 247, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
}

.feature-card.modern-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;

.feature-card.modern-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 121, 124, 0.15);
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(0, 121, 124, 0.02));
}

.feature-icon-modern {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 24px rgba(0, 121, 124, 0.2);
  transition: all 0.3s ease;
}

.feature-icon-modern i {
  font-size: 2.5rem;
}

.feature-title {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--primary);
  background: rgba(0, 121, 124, 0.08);
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Pricing Section */
.pricing-section {
  background: var(--secondary);
}

.pricing-toggle {
  margin-bottom: 3rem;
}

.pricing-switch {
  position: relative;
  display: inline-flex;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 4px;
}

.pricing-switch input {
  display: none;
}

.switch-label {
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.save-badge {
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.pricing-card.modern-pricing {
  background: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.modern-pricing.featured {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 121, 124, 0.15);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 121, 124, 0.1);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.plan-icon.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.plan-name {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--muted);
  margin-bottom: 2rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
}

.period {
  font-size: 1rem;
  color: var(--muted);
}

.billing-info {
  color: var(--muted);
  margin-bottom: 2rem;
}

.btn-pricing {
  padding: 14px 24px;
  font-weight: 600;
  border-radius: 12px;
}
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(var(--bs-primary-rgb), 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured .badge-top {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: .35rem .6rem;
  font-size: .75rem;
  font-weight: 700;
}

.price {
  display: flex;
  align-items: baseline;
  gap: .35rem;
}
.price .amount { font-size: 2.75rem; font-weight: 800; color: var(--dark); }
.price .period { color: var(--muted); }

.feature-list { list-style: none; padding: 0; margin: 1rem 0 0 0; }
.feature-list li { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.feature-list i { color: var(--success); }

.testimonial-card {
  background: var(--secondary);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid transparent;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), .15), rgba(var(--bs-primary-rgb), .35));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
}
.rating { color: #f7b733; }

.cta-section {
  background:
    radial-gradient(800px 400px at 10% 10%, rgba(var(--bs-primary-rgb), .2), transparent 55%),
    radial-gradient(600px 300px at 90% 20%, rgba(var(--bs-primary-rgb), .15), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--brand-primary) 10%, #0b245b) 0%, #0a1d49 100%);
}
.cta-section .btn { box-shadow: 0 10px 30px rgba(0,0,0,.2); }

.footer {
  background: var(--secondary);
  color: var(--dark);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer .social { display: inline-flex; gap: .5rem; }
.footer .social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); color: var(--muted);
}
.footer .social a:hover { color: var(--primary); border-color: var(--primary); }

/* Feature Card v2 */
.feature-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 121, 124, 0.1);
  border-color: transparent;
}

.feature-icon-v2 {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 121, 124, 0.2);
}

.feature-icon-v2 i {
  font-size: 2rem;
}

.feature-content .feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.feature-content .feature-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Floating animation for glass card */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Pulse animation for primary button */
@keyframes subtle-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Particle animation */
@keyframes particle-move {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(100vh) translateX(20px); }
}

.material-icons {
  vertical-align: middle;
  font-size: 24px;
  margin-right: 8px;
}

/* Fix: Prevent wrapper from inverting/sizing the logo */
.navbar-brand .brand-logo {
  filter: none !important;
  width: auto;
  height: auto;
}

/* Navbar logo adjustments */
.navbar-brand .brand-logo img {
  height: auto !important; 
}

@media (min-width: 576px) {
  .navbar-brand .brand-logo img {
    height: 40px;
  }
}

/* Tighten brand spacing slightly and keep name aligned */
.navbar-brand {
  gap: 0.5rem;
}
.navbar-brand .brand-name {
  font-weight: 700;
  color: var(--dark);
}

/* Floating WhatsApp button */
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 1060;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-fab:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 14px 28px rgba(0,0,0,0.25);
  background: #20bf5a;
}
.whatsapp-fab i { font-size: 26px; line-height: 1; }

@media (max-width: 576px) {
  .whatsapp-fab { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}
