/* Premium typography and enhancements */
:root {
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
}

/* Update typography */
body {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Enhanced shadows for cards */
.card {
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.surface {
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.surface:hover {
  box-shadow: var(--shadow-md);
}

/* Enhanced pricing cards */
.pricing-card {
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.pricing-card.featured {
  box-shadow: 0 0 0 3px rgba(58, 124, 107, 0.1), var(--shadow-lg);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 0 3px rgba(58, 124, 107, 0.15), var(--shadow-xl);
}

/* Section separators */
.section {
  position: relative;
}

.section:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--border) 20%, 
    var(--border) 80%, 
    transparent 100%);
}

/* Enhanced buttons */
.button {
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.button:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.button:active {
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
}

/* Premium hero section */
.hero {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(248, 250, 252, 0.95) 100%);
}

/* Enhanced mini-cards */
.mini-card {
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mini-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(58, 124, 107, 0.2);
}

/* Better spacing and rhythm */
.section-header {
  margin-bottom: 3rem;
}

.container {
  max-width: 1200px;
}

/* Premium focus states */
.button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
