/* ==========================================================================
   CLAUDE ACTIVATION CONCIERGE — OFFICIAL BRAND DESIGN SYSTEM
   Warm Ivory / Sand Parchment / Terracotta Accent / Editorial Serif
   ========================================================================== */

:root {
  /* Official Claude / Anthropic Brand Palette */
  --bg-primary: #faf8f5;
  --bg-secondary: #f3efe9;
  --bg-card: #ffffff;
  --bg-card-hover: #fcfbfa;
  --bg-highlight: #f7f3ec;

  --border-subtle: #e8e3dc;
  --border-card: #e2ddd5;
  --border-focus: #cc785c;

  /* Official Typography Colors */
  --text-primary: #1e1b18;
  --text-secondary: #59534c;
  --text-muted: #8c847b;
  --text-light: #ffffff;

  /* Official Signature Terracotta / Clay */
  --accent-terracotta: #cc785c;
  --accent-terracotta-hover: #b86448;
  --accent-terracotta-subtle: rgba(204, 120, 92, 0.12);
  --accent-terracotta-tint: #fbeee8;

  --accent-success: #15803d;
  --accent-success-bg: #f0fdf4;
  --accent-success-border: #bbf7d0;

  --accent-blue: #2563eb;
  --accent-warning: #b45309;

  /* Editorial Shadows */
  --shadow-sm: 0 1px 3px rgba(30, 27, 24, 0.04);
  --shadow-md: 0 4px 16px -2px rgba(30, 27, 24, 0.06), 0 2px 6px -1px rgba(30, 27, 24, 0.03);
  --shadow-lg: 0 16px 36px -6px rgba(30, 27, 24, 0.09), 0 4px 12px -2px rgba(30, 27, 24, 0.04);
  --shadow-card-featured: 0 16px 40px -8px rgba(204, 120, 92, 0.22), 0 0 0 1px #cc785c;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-smooth: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Editorial Serif Headings matching Claude / Anthropic Style */
h1, h2, h3, .serif-font {
  font-family: 'Newsreader', 'Lora', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

h4, h5, h6, .sans-font {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

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

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background-color: #2b2622;
  color: #f7f3ed;
  padding: 10px 16px;
  font-size: 0.825rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-badge {
  background: var(--accent-terracotta);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SITE HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(204, 120, 92, 0.25);
  overflow: hidden;
}

.logo-symbol img,
.logo-symbol svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

.logo-text-title {
  font-family: 'Newsreader', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.logo-text-subtitle {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

@media (max-width: 860px) {
  .nav-menu {
    display: none;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-terracotta);
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(204, 120, 92, 0.28);
}

.btn-primary:hover {
  background-color: var(--accent-terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(204, 120, 92, 0.35);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--accent-terracotta);
  color: var(--accent-terracotta);
  background-color: #fff;
}

.btn-sm {
  padding: 8px 15px;
  font-size: 0.825rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 76px 0 64px;
  text-align: center;
}

.hero-glow-bg {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(circle, rgba(204, 120, 92, 0.12) 0%, rgba(243, 239, 233, 0.4) 60%, transparent 80%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-terracotta-tint);
  color: var(--accent-terracotta);
  border: 1px solid rgba(204, 120, 92, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-highlight {
  color: var(--accent-terracotta);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-icon {
  color: var(--accent-terracotta);
  font-weight: bold;
}

/* ==========================================================================
   MONTHLY / YEARLY BILLING TOGGLE SWITCH
   ========================================================================== */
.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.toggle-option {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
}

.toggle-option.active {
  background: var(--accent-terracotta);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(204, 120, 92, 0.3);
}

.discount-tag {
  background: var(--accent-success-bg);
  color: var(--accent-success);
  border: 1px solid var(--accent-success-border);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
}

.discount-tag.save-48 {
  background: #15803d;
  color: #ffffff;
  border: none;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 9999px;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 6px rgba(21, 128, 61, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.toggle-option.active .discount-tag.save-48 {
  background: #ffffff;
  color: var(--accent-terracotta);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   PRICING CARDS (3 TIERS: PRO, MAX 5X, MAX 20X)
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-smooth);
}

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

.pricing-card.featured {
  border: 2px solid var(--accent-terracotta);
  box-shadow: var(--shadow-card-featured);
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf9 100%);
}

.card-badge-top {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-terracotta);
  color: #ffffff;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.5rem;
  font-family: 'Newsreader', serif;
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  min-height: 48px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Newsreader', serif;
}

.plan-price {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Newsreader', serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.plan-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-frequency-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  background: var(--accent-terracotta-tint);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
}

.plan-features-list {
  list-style: none;
  margin: 22px 0;
  flex-grow: 1;
  border-top: 1px solid var(--border-subtle);
  padding-top: 22px;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.plan-features-list li:last-child {
  margin-bottom: 0;
}

.feature-check {
  color: var(--accent-terracotta);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   API & HIGH-THROUGHPUT SECTION
   ========================================================================== */
.api-banner-card {
  background: #201c18;
  color: #f7f3ed;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}

@media (max-width: 860px) {
  .api-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

.api-banner-content h3 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.api-banner-content p {
  color: #d1cbc4;
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.6;
}

/* ==========================================================================
   SECTIONS & GRIDS
   ========================================================================== */
.section-wrapper {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-terracotta);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.capability-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-terracotta);
}

.card-num {
  font-family: 'Newsreader', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-terracotta);
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.card-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Comparison Table */
.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

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

.comparison-table th {
  background: var(--bg-secondary);
  font-family: 'Newsreader', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.table-highlight-col {
  background: rgba(204, 120, 92, 0.04);
  font-weight: 600;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--accent-terracotta);
  color: #ffffff;
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.trust-card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

/* FAQ */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Newsreader', serif;
  font-size: 1.15rem;
  font-weight: 600;
  user-select: none;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-terracotta);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 22px 18px;
}

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

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 27, 24, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex !important;
}

.modal-box {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 520px;
  padding: 36px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  margin: auto;
  animation: modalScaleUp 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-secondary);
  border: none;
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--text-primary);
  background: var(--border-subtle);
}

/* Razorpay Realistic Simulation Dialog */
.rzp-modal-box {
  max-width: 440px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid #e0e0e0;
  background: #ffffff;
}

.rzp-header {
  background: #0c2340;
  color: #ffffff;
  padding: 20px 24px;
  position: relative;
}

.rzp-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.rzp-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.rzp-brand-badge {
  background: #2b84ea;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.rzp-amount-wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.rzp-amount-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.rzp-amount-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.rzp-body {
  padding: 24px;
}

.rzp-methods-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.rzp-method-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  background: #fafafa;
}

.rzp-method-option:hover, .rzp-method-option.selected {
  border-color: #2563eb;
  background: #eff6ff;
}

.rzp-method-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
}

.rzp-method-icon {
  font-size: 1.25rem;
}

.rzp-sim-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-rzp-pay {
  background: #2563eb;
  color: #ffffff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s ease;
  width: 100%;
}

.btn-rzp-pay:hover {
  background: #1d4ed8;
}

.rzp-security-tag {
  text-align: center;
  font-size: 0.72rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.form-input, .form-select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  background: #ffffff;
  color: var(--text-primary);
  font-size: 0.925rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 3px var(--accent-terracotta-tint);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: #ffffff;
}

.radio-card:hover {
  border-color: var(--accent-terracotta);
}

.radio-card input[type="radio"] {
  accent-color: var(--accent-terracotta);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #201c18;
  color: #f7f3ed;
  border-top: 1px solid #332d27;
  padding: 60px 0 32px;
  margin-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand p {
  font-size: 0.88rem;
  color: #bbb4aa;
  max-width: 380px;
  margin-top: 12px;
}

.footer-heading {
  font-family: 'Newsreader', serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 14px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #bbb4aa;
  transition: var(--transition-smooth);
}

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

.legal-disclaimer-box {
  background: #2b2621;
  border: 1px solid #3d352e;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 0.78rem;
  color: #9c9489;
  line-height: 1.6;
  margin-bottom: 28px;
}

.copyright-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: #8c847b;
  border-top: 1px solid #332d27;
  padding-top: 24px;
}

/* Sticky mobile CTA */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-subtle);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 80;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

@media (min-width: 769px) {
  .sticky-mobile-bar {
    display: none;
  }
}

/* ==========================================================================
   SOCIAL PROOF BANNER
   ========================================================================== */
.social-proof-banner {
  background: linear-gradient(135deg, #2b2621 0%, #1e1b18 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.social-proof-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(204, 120, 92, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.proof-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  position: relative;
  z-index: 1;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 130px;
}
.proof-number {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #cc785c;
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(204, 120, 92, 0.5), transparent);
  flex-shrink: 0;
}
.proof-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.proof-highlight {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e8956f;
  letter-spacing: 0.01em;
}
.proof-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}
.proof-cta {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .proof-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px 0;
  }
  .proof-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(204, 120, 92, 0.5), transparent);
  }
  .proof-number {
    font-size: 2.2rem;
  }
}
