/*
Theme Name: Broadcast Wealth
Theme URI: https://broadcastwealth.com
Author: Broadcast Wealth
Author URI: https://broadcastwealth.com
Description: Investment platform theme for radio-media investments
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: broadcast-wealth
*/

/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */
:root {
  /* Colors - Dark Theme */
  --background: hsl(160, 30%, 8%);
  --foreground: hsl(160, 10%, 95%);
  --card: hsl(160, 25%, 12%);
  --card-foreground: hsl(160, 10%, 95%);
  --primary: hsl(145, 70%, 45%);
  --primary-foreground: hsl(160, 30%, 8%);
  --secondary: hsl(160, 20%, 18%);
  --secondary-foreground: hsl(160, 10%, 90%);
  --muted: hsl(160, 20%, 18%);
  --muted-foreground: hsl(160, 10%, 60%);
  --accent: hsl(145, 65%, 50%);
  --accent-foreground: hsl(160, 30%, 8%);
  --border: hsl(160, 20%, 20%);
  --ring: hsl(145, 70%, 45%);
  --radius: 0.75rem;
  
  /* Brand Colors */
  --brand-green: hsl(145, 70%, 45%);
  --brand-green-light: hsl(145, 80%, 55%);
  --brand-gold: hsl(45, 90%, 55%);
  --yellow-500: hsl(45, 100%, 51%);
  --green-500: hsl(142, 71%, 45%);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: linear-gradient(180deg, var(--background) 0%, hsl(160, 25%, 12%) 100%);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.gradient-primary {
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
}

.gradient-dark {
  background: linear-gradient(180deg, hsl(160, 30%, 8%) 0%, hsl(160, 25%, 12%) 100%);
}

.text-gradient {
  background: linear-gradient(135deg, hsl(145, 70%, 45%) 0%, hsl(145, 80%, 65%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-extrabold { font-weight: 800; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

/* ==========================================================================
   Layout Components
   ========================================================================== */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

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

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex { display: flex; }
  .md\:col-span-2 { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
  color: var(--primary-foreground);
  box-shadow: 0 10px 25px -5px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background: hsl(160, 20%, 22%);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full { width: 100%; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.card-highlight {
  border-color: var(--primary);
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.25);
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 26, 24, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
}

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

.nav a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

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

/* Mobile Navigation */
.mobile-nav-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
}

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

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: 5rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding: 8rem 0; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-glow-2 {
  position: absolute;
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  filter: blur(80px);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
}

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

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

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

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */
.trust-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
  height: 100%;
}

.trust-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.trust-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.trust-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

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

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

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

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

/* ==========================================================================
   Investment Plans
   ========================================================================== */
.plan-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -12px rgba(34, 197, 94, 0.25);
}

.plan-card.popular {
  border-color: var(--primary);
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.25);
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.plan-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.875rem;
  font-weight: 800;
}

.plan-price-label {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 400;
}

.plan-stats {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1.5rem 0;
}

.plan-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}

.plan-stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.plan-stat-value {
  font-weight: 600;
  color: var(--primary);
}

.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.plan-feature svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calculator {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .calculator { padding: 2rem; }
}

.calculator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.calculator-input {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.calculator-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

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

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

.calc-stat {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
}

.calc-stat.highlight {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

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

.calc-stat-header svg {
  width: 1rem;
  height: 1rem;
}

.calc-stat-value {
  font-size: 1.25rem;
  font-weight: 700;
}

.calc-stat.highlight .calc-stat-header,
.calc-stat.highlight .calc-stat-value {
  color: var(--primary);
}

/* Timeline */
.timeline {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-top: 2rem;
}

.timeline h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.timeline h3 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.timeline-items {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.timeline-item {
  flex-shrink: 0;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
  min-width: 70px;
}

.timeline-item.waiting {
  background: rgba(255, 255, 255, 0.05);
}

.timeline-item-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.timeline-item-value {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
}

.timeline-item.waiting .timeline-item-value {
  color: var(--muted-foreground);
}

.timeline-arrow {
  color: var(--muted-foreground);
  flex-shrink: 0;
}

/* ==========================================================================
   Stats Grid
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.stat-card svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
  margin: 0 auto 0.75rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

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

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-name {
  font-weight: 600;
}

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

.testimonial-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.2s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Disclaimer Section
   ========================================================================== */
.disclaimer {
  background: rgba(234, 179, 8, 0.05);
  border-top: 1px solid rgba(234, 179, 8, 0.2);
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
  padding: 3rem 0;
  text-align: center;
}

.disclaimer-icon {
  width: 2rem;
  height: 2rem;
  color: var(--yellow-500);
  margin: 0 auto 1rem;
}

.disclaimer h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.contact-icon.whatsapp {
  background: rgba(34, 197, 94, 0.1);
}

.contact-icon.whatsapp svg {
  color: var(--green-500);
}

.contact-label {
  font-weight: 600;
}

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

/* Contact Form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

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

.form-input,
.form-textarea {
  width: 100%;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  font-size: 1rem;
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 20rem;
  margin: 1rem 0;
}

.footer-brand .rc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--foreground);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ==========================================================================
   Floating CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: linear-gradient(135deg, hsl(145, 70%, 40%) 0%, hsl(145, 80%, 55%) 100%);
  color: var(--primary-foreground);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.4);
  display: none;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.visible {
  display: flex;
}

.floating-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ==========================================================================
   Warning Badge
   ========================================================================== */
.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: hsl(48, 96%, 89%);
}

.warning-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--yellow-500);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==========================================================================
   Responsive Helpers
   ========================================================================== */
.hidden { display: none; }

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

@media (min-width: 1024px) {
  .lg\:block { display: block; }
}
