/* GoldenEA Static Site Styles - Refined Dark Corporate Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* Dark Theme Colors */
  --background: hsl(220, 20%, 6%);
  --foreground: hsl(40, 20%, 95%);
  --card: hsl(220, 18%, 10%);
  --card-foreground: hsl(40, 20%, 95%);
  --primary: hsl(38, 85%, 55%);
  --primary-foreground: hsl(220, 20%, 6%);
  --secondary: hsl(220, 15%, 14%);
  --secondary-foreground: hsl(40, 20%, 95%);
  --muted: hsl(220, 15%, 14%);
  --muted-foreground: hsl(40, 10%, 55%);
  --border: hsl(220, 15%, 18%);
  --input: hsl(220, 15%, 18%);
  --ring: hsl(38, 85%, 55%);
  --radius: 0.5rem;
  
  /* Brand Colors */
  --gold: hsl(38, 85%, 55%);
  --gold-light: hsl(38, 90%, 70%);
  --gold-dark: hsl(38, 80%, 45%);
  --success: hsl(142, 70%, 45%);
  --warning: hsl(38, 92%, 50%);
  --destructive: hsl(0, 62%, 50%);
  
  /* Shadows */
  --shadow-card: 0 2px 12px -2px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 12px 40px -8px hsla(38, 85%, 55%, 0.2);
  --shadow-glow: 0 0 60px hsla(38, 85%, 55%, 0.15);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Divider */
.divider {
  width: 4rem;
  height: 1px;
  margin: 0 auto 1rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsla(220, 20%, 6%, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(220, 15%, 18%, 0.5);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.navbar-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo .logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-logo .highlight {
  color: var(--gold);
}

.navbar-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
  }
}

.nav-link {
  position: relative;
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background: hsla(220, 20%, 6%, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  transition: all 0.2s;
}

.mobile-menu a:hover {
  background: var(--muted);
  color: var(--foreground);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-foreground);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 4px 16px hsla(38, 85%, 55%, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsla(38, 85%, 55%, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: hsla(220, 18%, 10%, 0.5);
  border: 1px solid hsla(38, 85%, 55%, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: hsla(38, 85%, 55%, 0.1);
  border-color: hsla(38, 85%, 55%, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: transparent;
  border: 1px solid hsla(38, 85%, 55%, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

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

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex !important;
  }
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(220, 20%, 8%) 0%, hsl(220, 25%, 12%) 50%, hsl(220, 20%, 8%) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, hsla(38, 85%, 55%, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsla(38, 85%, 55%, 0.1);
  border: 1px solid hsla(38, 85%, 55%, 0.25);
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Hero Compact */
.hero.compact {
  padding: 8rem 0 4rem;
}

.hero.compact .hero-title {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .hero.compact .hero-title {
    font-size: 2.5rem;
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 1rem auto 0;
}

.bg-muted {
  background: var(--muted);
}

/* Icon Box */
.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsla(38, 85%, 55%, 0.15) 0%, hsla(38, 85%, 55%, 0.05) 100%);
  border: 1px solid hsla(38, 85%, 55%, 0.2);
}

.icon-box svg {
  color: var(--gold);
}

/* Cards */
.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
}

.feature-card:hover {
  border-color: hsla(38, 85%, 55%, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.feature-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.feature-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsla(38, 85%, 55%, 0.15) 0%, hsla(38, 85%, 55%, 0.05) 100%);
  border: 1px solid hsla(38, 85%, 55%, 0.2);
  margin-bottom: 1rem;
}

.feature-card-icon svg {
  color: var(--gold);
}

/* Product Cards */
.product-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  border-color: hsla(38, 85%, 55%, 0.3);
  box-shadow: var(--shadow-card-hover);
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.product-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsla(38, 85%, 55%, 0.15) 0%, hsla(38, 85%, 55%, 0.05) 100%);
  border: 1px solid hsla(38, 85%, 55%, 0.2);
}

.product-card-icon svg {
  color: var(--gold);
}

.product-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-card .tagline {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.product-card .description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.product-card .price {
  margin-bottom: 1.25rem;
}

.product-card .price-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.product-card .price-period {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.product-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.product-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Pricing Cards */
.pricing-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: all 0.5s;
}

.pricing-card:hover {
  border-color: hsla(38, 85%, 55%, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card.featured {
  border-color: hsla(38, 85%, 55%, 0.6);
  box-shadow: var(--shadow-glow);
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--foreground);
}

.comparison-table td {
  color: var(--muted-foreground);
}

.comparison-table td:not(:first-child) {
  text-align: center;
  color: var(--foreground);
}

.comparison-table tr:last-child td {
  border-bottom: none;
  font-weight: 600;
  color: var(--gold);
}

.overflow-x-auto {
  overflow-x: auto;
}

/* Risk Badges */
.risk-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.risk-badge.low {
  background: hsla(142, 70%, 45%, 0.1);
  color: var(--success);
  border: 1px solid hsla(142, 70%, 45%, 0.2);
}

.risk-badge.medium {
  background: hsla(38, 92%, 50%, 0.1);
  color: var(--warning);
  border: 1px solid hsla(38, 92%, 50%, 0.2);
}

.risk-badge.high {
  background: hsla(0, 62%, 50%, 0.1);
  color: var(--destructive);
  border: 1px solid hsla(0, 62%, 50%, 0.2);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: hsla(38, 85%, 55%, 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-align: left;
  color: var(--foreground);
  font-size: 1rem;
}

.faq-question svg {
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 3rem;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(38, 85%, 55%, 0.05) 0%, transparent 50%, hsla(38, 85%, 55%, 0.05) 100%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: hsla(38, 85%, 55%, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

.cta-section p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

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

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 24rem;
}

.footer-links h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-md {
  max-width: 28rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.w-full {
  width: 100%;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-2 {
  gap: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-muted {
  color: var(--muted-foreground);
}

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

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* Trust Badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsla(38, 85%, 55%, 0.1);
  border: 1px solid hsla(38, 85%, 55%, 0.25);
  color: var(--gold);
}

/* Demo Box */
.demo-box {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.demo-box h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-account {
  padding: 1rem;
  background: var(--muted);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.demo-account:last-of-type {
  margin-bottom: 0;
}

.demo-account h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.demo-account p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.demo-account code {
  background: var(--background);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.813rem;
}

.demo-box .instructions {
  margin-top: 1rem;
  padding: 0.75rem;
  background: hsla(38, 85%, 55%, 0.05);
  border: 1px solid hsla(38, 85%, 55%, 0.2);
  border-radius: 0.5rem;
  font-size: 0.813rem;
  color: var(--muted-foreground);
}

/* Warning Box */
.warning-box {
  padding: 1rem;
  background: hsla(0, 62%, 50%, 0.05);
  border: 1px solid hsla(0, 62%, 50%, 0.2);
  border-radius: 0.75rem;
}

.warning-box h4 {
  color: var(--destructive);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.warning-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Info Box */
.info-box {
  padding: 1rem;
  background: hsla(38, 85%, 55%, 0.05);
  border: 1px solid hsla(38, 85%, 55%, 0.2);
  border-radius: 0.75rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--primary-foreground);
  white-space: nowrap;
}

.pricing-card.featured {
  position: relative;
}

/* Documentation Steps */
.doc-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-steps li {
  margin-bottom: 1rem;
}

.doc-steps li:last-child {
  margin-bottom: 0;
}

.doc-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.doc-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-foreground);
  flex-shrink: 0;
}

.doc-step-content strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Hero Gradient Background */
.gradient-hero {
  background: linear-gradient(135deg, hsl(220, 20%, 8%) 0%, hsl(220, 25%, 12%) 50%, hsl(220, 20%, 8%) 100%);
  position: relative;
}

.gradient-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, hsla(38, 85%, 55%, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero Background Orbs */
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-bg-orb-1 {
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: hsla(38, 85%, 55%, 0.08);
}

.hero-bg-orb-2 {
  bottom: 10%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: hsla(38, 85%, 55%, 0.05);
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsla(38, 85%, 55%, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Product Icon Colors */
.product-card-icon.purple {
  background: linear-gradient(135deg, hsla(280, 70%, 50%, 0.15) 0%, hsla(280, 70%, 50%, 0.05) 100%);
  border-color: hsla(280, 70%, 50%, 0.2);
}

.product-card-icon.purple svg {
  color: hsl(280, 70%, 60%);
}

.product-card-icon.green {
  background: linear-gradient(135deg, hsla(142, 70%, 45%, 0.15) 0%, hsla(142, 70%, 45%, 0.05) 100%);
  border-color: hsla(142, 70%, 45%, 0.2);
}

.product-card-icon.green svg {
  color: var(--success);
}

.product-card-icon.orange {
  background: linear-gradient(135deg, hsla(25, 90%, 50%, 0.15) 0%, hsla(25, 90%, 50%, 0.05) 100%);
  border-color: hsla(25, 90%, 50%, 0.2);
}

.product-card-icon.orange svg {
  color: hsl(25, 90%, 55%);
}

/* Grid 2 column */
@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Code Blocks */
code {
  background: var(--muted);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.875rem;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: hsla(38, 85%, 55%, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(38, 85%, 55%, 0.4);
}

/* Selection */
::selection {
  background: hsla(38, 85%, 55%, 0.3);
  color: var(--foreground);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}