@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #14532d;
  --bg-secondary: #0f3d21;
  --bg-cream: #1a6b3a;
  --green-primary: #14532d;
  --green-dark: #0f3d21;
  --green-light: #1a6b3a;
  --gold-primary: #C5A055;
  --gold-light: #D4B068;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.65);
  --text-light: #ffffff;
  --border-light: rgba(255, 255, 255, 0.15);
  --border-gold: rgba(197, 160, 85, 0.4);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, .font-serif {
  font-family: 'Playfair Display', serif;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--green-primary);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  padding: 0 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Stacked Logo */
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-top {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.logo-bottom {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold-primary);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-dark);
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  min-width: 220px;
  padding: 0.5rem 0;
  margin-top: 0.75rem;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.875rem 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.dropdown-link:hover {
  background: rgba(197, 160, 85, 0.15);
  color: var(--gold-primary);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-primary);
  padding: 2rem;
  z-index: 99;
  overflow-y: auto;
}

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

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-sub {
  padding-left: 1.5rem;
}

.mobile-nav-sub a {
  font-size: 1rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold-primary);
  color: white;
  border: 2px solid var(--gold-primary);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--green-dark);
}

.btn-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border-color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: var(--green-primary);
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: white;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 550px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cards */
.card {
  background: var(--green-dark);
  border: 2px solid var(--border-gold);
  padding: 2.5rem;
  transition: all 0.3s;
}

.card:hover {
  box-shadow: 0 15px 50px rgba(197, 160, 85, 0.15);
  transform: translateY(-4px);
  border-color: var(--gold-primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(197, 160, 85, 0.1);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 7rem 0;
}

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

.section-cream {
  background: var(--bg-cream);
}

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

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

@media (max-width: 480px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Page Header */
.page-header {
  padding: 12rem 0 5rem;
  background: var(--green-primary);
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Block */
.content-block {
  max-width: 750px;
  margin: 0 auto;
}

.content-block p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.content-block h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
  color: var(--gold-primary);
}

/* Form Placeholder */
.form-embed {
  max-width: 550px;
  margin: 0 auto;
  background: var(--green-dark);
  border: 2px solid var(--border-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 3rem;
  text-align: center;
}

.form-embed h3 {
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.form-embed p {
  color: var(--text-muted);
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--green-primary);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: var(--gold-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.footer-bottom span {
  color: var(--gold-primary);
}

/* Feature List */
.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-list li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: bold;
  flex-shrink: 0;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Process Steps */
.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--gold-primary);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold-primary);
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 480px) {
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
}

/* CTA Section */
.cta-section {
  background: var(--green-dark);
  text-align: center;
  padding: 6rem 0;
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.cta-section p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

/* Text Colors */
.text-gold {
  color: var(--gold-primary);
}

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

/* Divider */
.divider {
  width: 80px;
  height: 3px;
  background: var(--gold-primary);
  margin: 2rem auto;
}

/* ========================================
   ACCESSIBILITY FEATURES (WCAG 2.2 AA)
   ======================================== */

/* Skip to Main Content Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold-primary);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* Focus Indicators (WCAG 2.4.7) */
*:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 3px;
}

/* High Contrast Mode */
.high-contrast {
  --bg-primary: #000000;
  --bg-secondary: #1a1a1a;
  --bg-cream: #0d0d0d;
  --green-primary: #00ff00;
  --green-dark: #00cc00;
  --gold-primary: #ffff00;
  --gold-light: #ffff66;
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #cccccc;
  --text-light: #ffffff;
  --border-light: #666666;
}

.high-contrast .nav,
.high-contrast .footer,
.high-contrast .section-green,
.high-contrast .cta-section,
.high-contrast .page-header {
  background: #000000;
  border: 2px solid var(--gold-primary);
}

.high-contrast .card {
  background: #000000;
  border: 2px solid var(--gold-primary);
}

.high-contrast .btn-primary {
  background: var(--gold-primary);
  color: #000000;
}

/* Large Text Mode */
.large-text {
  font-size: 1.25rem;
}

.large-text h1 {
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.large-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.large-text h3 {
  font-size: 2rem;
}

.large-text p,
.large-text li {
  font-size: 1.25rem;
  line-height: 2;
}

/* Reduce Motion */
.reduce-motion,
.reduce-motion * {
  animation: none !important;
  transition: none !important;
}

/* Accessibility Controls Widget */
.accessibility-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}

.accessibility-toggle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-primary);
  color: var(--text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
}

.accessibility-toggle-btn:hover {
  transform: scale(1.05);
  background: var(--green-dark);
}

.accessibility-panel {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--green-dark);
  border: 2px solid var(--gold-primary);
  border-radius: 8px;
  padding: 1.5rem;
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.accessibility-panel.active {
  display: block;
}

.accessibility-panel h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.accessibility-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.accessibility-option:last-child {
  border-bottom: none;
}

.accessibility-option label {
  font-size: 0.9375rem;
  color: var(--text-primary);
  cursor: pointer;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-light);
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--green-primary);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(22px);
}

.toggle-switch input:focus-visible + .toggle-slider {
  outline: 3px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-primary);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 1001;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--gold-primary);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.cookie-accept {
  background: var(--gold-primary);
  color: var(--text-primary);
}

.cookie-decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Legal Page Styles */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.placeholder-text {
  background: rgba(197, 160, 85, 0.2);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  color: var(--gold-primary);
}

.legal-notice {
  background: var(--green-dark);
  border-left: 4px solid var(--gold-primary);
  padding: 1.5rem;
  margin: 2rem 0;
}

.legal-notice p {
  margin: 0;
  font-style: italic;
}

/* Compliance Checklist */
.compliance-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.compliance-table th,
.compliance-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.compliance-table th {
  background: var(--green-primary);
  color: var(--text-light);
  font-weight: 600;
}

.compliance-table tr:nth-child(even) {
  background: var(--bg-secondary);
}

.status-implemented {
  color: #16a34a;
  font-weight: 600;
}

.status-manual {
  color: #ca8a04;
  font-weight: 600;
}

.status-required {
  color: #dc2626;
  font-weight: 600;
}

/* ========================================
   PRICING PAGE
   ======================================== */

.pricing-hero {
  padding: 10rem 0 4rem;
  background: var(--green-primary);
  text-align: center;
  color: var(--text-light);
}

.pricing-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.pricing-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}

.pricing-cards-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-light);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 30px rgba(197, 160, 85, 0.15);
}

.pricing-card--featured:hover {
  box-shadow: 0 16px 50px rgba(197, 160, 85, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 1.25rem;
}

.pricing-card-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold-primary);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-term {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-subtitle {
  font-size: 0.95rem;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "✓";
  color: var(--gold-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-bundle {
  background: rgba(197, 160, 85, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-bundle-label {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-bundle-line {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-bundle-line strong {
  color: white;
}

.pricing-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing-trust {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg-primary);
}

.pricing-trust h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

.pricing-trust p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .pricing-hero {
    padding: 8rem 0 3rem;
  }
}
