/* Global Variables and Theme */
:root {
  --bg-color: #0b0f19;
  --card-bg: rgba(17, 24, 39, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  
  /* Modern Accents */
  --accent-primary: #10b981; /* Emerald/Teal */
  --accent-secondary: #f43f5e; /* Rose/Red-Pink */
  --accent-blue: #3b82f6; /* Blue */
  --accent-purple: #8b5cf6; /* Purple */
  --accent-glow: rgba(16, 185, 129, 0.15);
  
  --gradient-main: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
  --gradient-hot: linear-gradient(135deg, #f43f5e 0%, #8b5cf6 100%);
  --gradient-dark: linear-gradient(180deg, #111827 0%, #070a10 100%);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-color);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 1rem 2rem;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.logo-icon {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
}

.accent-text {
  color: var(--accent-primary);
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

.system-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-primary);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  min-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  border: 1px solid var(--card-border);
  padding: 0.5rem;
  z-index: 1000;
  margin-top: 1rem;
}

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1rem;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.dropdown-item {
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  font-weight: 500;
}

.dropdown-item i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1rem;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  transform: translateX(4px);
}

/* Glassmorphism Classes */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  border-radius: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--gradient-main);
  color: #0b0f19;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-section h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
}

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

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Hero CEO Image */
.hero-image-container {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.image-wrapper {
  padding: 1rem;
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

.sad-ceo-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.ceo-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.text-warning {
  color: var(--accent-secondary);
}

.floating-badge {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-primary);
  color: var(--text-main);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  animation: floatBadge 3.5s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.floating-badge:hover {
  background: rgba(16, 185, 129, 0.25);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 1.65rem;
}

.ai-icon {
  color: var(--accent-primary);
  font-size: 1.15rem;
}

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

/* Sections General */
.suite-section, .calculator-section, .about-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

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

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

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Product Cards Grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.product-card {
  position: relative;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-border);
  transition: background 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
}

#card-crm:hover::before { background: var(--accent-primary); }
#card-erp:hover::before { background: var(--accent-blue); }
#card-pto:hover::before { background: var(--accent-purple); }
#card-fr:hover::before { background: var(--accent-secondary); }
#card-it:hover::before { background: #06b6d4; }

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
}

.crm-color { color: var(--accent-primary); background: rgba(16, 185, 129, 0.1); }
.erp-color { color: var(--accent-blue); background: rgba(59, 130, 246, 0.1); }
.pto-color { color: var(--accent-purple); background: rgba(139, 92, 246, 0.1); }
.fr-color { color: var(--accent-secondary); background: rgba(244, 63, 94, 0.1); }
.it-color { color: #06b6d4; background: rgba(6, 182, 212, 0.1); }
.expense-color { color: #6366f1; background: rgba(99, 102, 241, 0.1); }
.socialtrack-color { color: #ec4899; background: rgba(236, 72, 153, 0.1); }

.card-status-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

.card-status-badge.online {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-primary);
}

.card-status-badge.offline {
  background: rgba(244, 63, 94, 0.1);
  color: var(--accent-secondary);
}

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

.online .status-dot { background-color: var(--accent-primary); }
.offline .status-dot { background-color: var(--accent-secondary); }

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

.card-meta code {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--text-muted);
}

.launch-btn {
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.launch-btn:hover {
  color: var(--accent-primary);
}

/* Calculator Section */
.calculator-container {
  padding: 3.5rem;
  border-radius: 24px;
}

.calc-header {
  margin-bottom: 3rem;
  text-align: center;
}

.calc-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

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

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input-group label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.custom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-primary);
  cursor: pointer;
  transition: transform 0.1s ease;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 120px;
  text-align: right;
  color: var(--accent-primary);
}

.calc-outputs {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.text-accent {
  color: var(--accent-primary);
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.25);
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.yacht-toy-equivalent {
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.yacht-toy-equivalent strong {
  color: var(--text-main);
}

/* About Philosophy Section */
.about-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-quote {
  padding: 3rem;
  position: relative;
}

.quote-icon {
  font-size: 2rem;
  color: var(--accent-primary);
  opacity: 0.2;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.about-quote blockquote {
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.about-quote cite {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
}

/* Footer Section */
footer {
  background: var(--gradient-dark);
  border-top: 1px solid var(--card-border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 400px;
}

.footer-links {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.link-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-column h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.link-column a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 968px) {
  .hero-container, .calc-grid, .about-container, .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-image-container {
    order: -1;
  }
}

@media (max-width: 576px) {
  header {
    padding: 1rem;
  }
  
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .calculator-container {
    padding: 1.5rem;
  }
}

/* AI Savings Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 3rem;
  border-radius: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.1rem;
}

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

.modal-header {
  text-align: center;
  margin-bottom: 3rem;
}

.modal-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--text-muted);
}

.comparison-graphic {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.comp-column {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--card-border);
}

.traditional {
  border-color: rgba(244, 63, 94, 0.3);
}

.esrc-system {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.05);
}

.comp-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.comp-header h3 {
  font-size: 1.4rem;
}

.cost-badge {
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cost-badge.bad {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-secondary);
}

.cost-badge.good {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-primary);
}

.comp-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comp-step {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
  align-items: flex-start;
}

.comp-step.failed {
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.comp-step.success {
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
}

.comp-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.comp-step.failed .comp-icon {
  background: rgba(244, 63, 94, 0.2);
  color: var(--accent-secondary);
}

.comp-step.success .comp-icon {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-primary);
}

.comp-step.highlight .comp-icon {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.2);
}

.comp-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.comp-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.comp-arrow {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  margin: 0 1rem;
}

@media (max-width: 768px) {
  .comparison-graphic {
    flex-direction: column;
  }
}

/* Pricing Section Styles */
.pricing-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.pricing-card {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.18);
}

.pricing-card.featured {
  border: 2px solid var(--accent-primary);
  background: rgba(16, 185, 129, 0.08);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.pricing-card.featured:hover {
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.3);
}

.pricing-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.featured-badge {
  color: var(--accent-primary);
  background: rgba(16, 185, 129, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  align-self: flex-start;
}

.tier-name {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tier-limit {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.insane-label-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.insane-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.insane-badge.hot {
  color: var(--accent-secondary);
  background: rgba(244, 63, 94, 0.1);
}

.insane-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
}
