/* ========================================
   Hola AI - Claude-inspired Design System
   Clean, warm, minimal
   ======================================== */

:root {
  /* Claude-inspired warm palette */
  --cream-50: #FFFCF7;
  --cream-100: #FAF7F2;
  --cream-200: #F5F0E8;
  --cream-300: #EBE4D8;
  --cream-400: #D4C9B8;
  --cream-500: #B8A990;
  
  /* Accent - warm orange/amber */
  --accent: #D97706;
  --accent-light: #F59E0B;
  --accent-dark: #B45309;
  --accent-muted: rgba(217, 119, 6, 0.1);
  
  /* Semantic colors */
  --success: #059669;
  --success-light: #D1FAE5;
  --warning: #D97706;
  --danger: #DC2626;
  --info: #0284C7;
  
  /* Text - charcoal/dark brown */
  --text-primary: #1C1917;
  --text-secondary: #44403C;
  --text-muted: #78716C;
  --text-light: #A8A29E;
  
  /* Backgrounds */
  --bg-body: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-elevated: #FFFFFF;
  --bg-subtle: #F5F0E8;
  --bg-muted: #EBE4D8;
  
  /* Borders */
  --border-light: #EBE4D8;
  --border-medium: #D4C9B8;
  --border-dark: #B8A990;
  
  /* Shadows - soft and subtle */
  --shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.04);
  --shadow-sm: 0 2px 4px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 8px 24px rgba(28, 25, 23, 0.12);
  --shadow-xl: 0 16px 48px rgba(28, 25, 23, 0.16);
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Typography */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Consolas", monospace;
  
  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 0.875rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Line heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ========================================
   Reset & Base
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--bg-body);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-dark);
}

/* ========================================
   Typography
   ======================================== */

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

h1 {
  font-size: var(--text-4xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-2xl);
}

h3 {
  font-size: var(--text-xl);
}

h4 {
  font-size: var(--text-lg);
}

p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

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

.text-sm {
  font-size: var(--text-sm);
}

.text-xs {
  font-size: var(--text-xs);
}

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

/* ========================================
   Layout
   ======================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--space-6);
  }
}

.container-sm {
  max-width: 720px;
}

.container-xs {
  max-width: 560px;
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-20) 0;
  }
}

/* ========================================
   Navigation - Mobile First
   ======================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-4);
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-8);
}

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

.nav-links a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text-primary);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}

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

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--radius-md);
}

.mobile-nav a:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--text-secondary);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
  background: var(--bg-muted);
  border-color: var(--border-dark);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-dark);
}

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

.btn-lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ========================================
   Cards
   ======================================== */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
}

.card-elevated {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  padding: var(--space-12) 0 var(--space-16);
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-20) 0 var(--space-24);
  }
}

.hero h1 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: var(--text-5xl);
  }
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-8);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

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

/* ========================================
   Pricing Cards - Mobile First
   ======================================== */

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    flex-direction: row;
    max-width: 900px;
    align-items: stretch;
  }
}

.pricing-card {
  flex: 1;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.03) 0%, var(--bg-card) 100%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-light);
}

.pricing-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-2);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.price-currency {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-muted);
}

.price-amount {
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

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

/* Token/Credit info box */
.pricing-tokens {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
}

.token-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
}

.token-row:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.token-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.token-value {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.token-value.highlight {
  color: var(--accent);
  font-size: var(--text-base);
}

.pricing-model {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
}

.pricing-model strong {
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-6);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ========================================
   Section Titles
   ======================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  margin-bottom: var(--space-3);
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ========================================
   Features Grid
   ======================================== */

.features-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  padding: var(--space-6);
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  font-size: var(--text-2xl);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

/* ========================================
   Forms
   ======================================== */

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.form-input::placeholder {
  color: var(--text-light);
}

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

/* ========================================
   Alerts
   ======================================== */

.alert {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

.alert-warning {
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid var(--accent);
  color: var(--text-primary);
}

.alert-info {
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid var(--info);
  color: var(--text-primary);
}

.alert-danger {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid var(--danger);
  color: var(--text-primary);
}

.alert-success {
  background: var(--success-light);
  border: 1px solid var(--success);
  color: var(--text-primary);
}

/* ========================================
   Legal Content - Mobile First
   ======================================== */

.legal-content {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .legal-content {
    padding: var(--space-8);
  }
}

.legal-content h2 {
  font-size: var(--text-lg);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .legal-content h2 {
    font-size: var(--text-xl);
  }
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: var(--text-base);
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal-content p {
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
  .legal-content p {
    font-size: var(--text-base);
  }
}

.legal-content ul,
.legal-content ol {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
  padding-left: var(--space-5);
}

@media (min-width: 640px) {
  .legal-content ul,
  .legal-content ol {
    font-size: var(--text-base);
  }
}

.legal-content li {
  margin-bottom: var(--space-2);
}

/* Responsive tables for mobile */
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-4) 0;
  font-size: var(--text-sm);
}

.legal-content th,
.legal-content td {
  padding: var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.legal-content th {
  background: var(--bg-subtle);
  font-weight: 600;
  color: var(--text-primary);
}

/* Stack tables on mobile */
@media (max-width: 639px) {
  .legal-content table,
  .legal-content thead,
  .legal-content tbody,
  .legal-content th,
  .legal-content td,
  .legal-content tr {
    display: block;
  }
  
  .legal-content thead {
    display: none;
  }
  
  .legal-content tr {
    margin-bottom: var(--space-4);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  
  .legal-content td {
    display: flex;
    justify-content: space-between;
    padding: var(--space-3);
    border-bottom: 1px solid var(--border-light);
  }
  
  .legal-content td:last-child {
    border-bottom: none;
  }
  
  .legal-content td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text-primary);
  }
}

/* ========================================
   Footer
   ======================================== */

.footer {
  background: var(--text-primary);
  color: var(--cream-300);
  padding: var(--space-12) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

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

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

.footer-brand p {
  color: var(--cream-400);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
}

.footer-title {
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: var(--cream-400);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--cream-500);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom a {
  color: var(--cream-400);
}

.footer-bottom a:hover {
  color: white;
}

/* ========================================
   Utilities
   ======================================== */

.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.hidden {
  display: none !important;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ========================================
   Checkout Steps
   ======================================== */

.checkout-step {
  animation: fadeIn 0.3s ease;
}

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

.order-summary {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
}

.order-summary h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

/* ========================================
   FAQ
   ======================================== */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: var(--text-xl);
  color: var(--accent);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-5);
}

.faq-answer p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

/* ========================================
   Mobile Title Fixes
   ======================================== */

/* Prevent title overflow on mobile */
.section-header h1,
.legal-content h1,
h1 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

@media (max-width: 480px) {
  h1 {
    font-size: var(--text-2xl) !important;
  }
  
  .section-header h1 {
    font-size: var(--text-2xl) !important;
  }
  
  .hero h1 {
    font-size: var(--text-3xl) !important;
  }
}

/* Legal page specific fix */
.legal-content {
  overflow-x: hidden;
}

/* Skip link - only visible on focus for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--text-primary);
  color: white;
  border-radius: var(--radius-md);
  z-index: 1000;
  text-decoration: none;
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

/* ========================================
   How It Works Steps - Added 2026-02-12
   ======================================== */

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-8);
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .step {
    flex-direction: row;
    text-align: left;
    gap: var(--space-6);
  }
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.step-content p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* Center on mobile */
@media (max-width: 639px) {
  .step-content h3,
  .step-content p {
    text-align: center;
  }
}

/* ========================================
   How It Works - TEXT CENTRERING FIX
   ======================================== */

#how-it-works .section-title {
  text-align: center;
}

#how-it-works .section-title h2,
#how-it-works .section-title p {
  text-align: center;
}

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

.steps .step-content {
  text-align: center;
}

.steps .step-content h3 {
  text-align: center;
}

.steps .step-content p {
  text-align: center;
}

/* Override desktop media query */
@media (min-width: 640px) {
  .steps .step {
    text-align: center;
  }
  
  .steps .step-content h3,
  .steps .step-content p {
    text-align: center;
  }
}
