/* =============================================
   ChiFlow™ Website - Global Styles
   Design: Cream White (#FFF8F0) + Deep Purple (#3D2352) + Gold (#C9A84C)
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@400;700&display=swap');

/* ========== CSS Variables ========== */
:root {
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;
  --cream-border: #E8DCCF;
  --purple: #3D2352;
  --purple-light: #5B3A73;
  --purple-mid: #7B4FA2;
  --purple-pale: #EDE0F5;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #FFF4D6;
  --white: #FFFFFF;
  --text-dark: #2A1A3E;
  --text-mid: #5A4A6B;
  --text-light: #8A7A9B;
  --green: #4A7C59;
  --red: #B85C5C;

  --font-heading: 'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(61, 35, 82, 0.08);
  --shadow-md: 0 4px 20px rgba(61, 35, 82, 0.12);
  --shadow-lg: 0 8px 40px rgba(61, 35, 82, 0.16);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);

  --nav-height: 72px;
  --max-width: 1200px;
  --section-padding: 80px 0;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--purple);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--purple);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  color: var(--purple);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-mid);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ========== Layout ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-padding);
}

.section-dark {
  background-color: var(--purple);
  color: var(--cream);
}

.section-dark h2,
.section-dark h3 {
  color: var(--cream);
}

.section-dark .section-subtitle {
  color: rgba(255,248,240,0.7);
}

.section-dark .section-label {
  color: var(--gold-light);
}

.section-cream {
  background-color: var(--cream-dark);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ========== Navigation ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--purple);
  background: var(--purple-pale);
}

.nav__cta {
  margin-left: 12px;
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  margin: 5px 0;
  border-radius: 2px;
}

/* Mobile Nav */
@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--cream-border);
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { display: flex; }
  .nav__links a { width: 100%; padding: 12px 16px; }
  .nav__cta { display: none; }
  .nav__mobile-toggle { display: block; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--purple);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(61, 35, 82, 0.3);
}

.btn-primary:hover {
  background: var(--purple-light);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(61, 35, 82, 0.4);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--cream);
}

.btn-white {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--purple);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* ========== Cards ========== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-border);
  transition: all 0.3s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--purple);
  margin-bottom: 12px;
}

.card__desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ========== Hero Section ========== */
.hero {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 79, 162, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--purple);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__visual {
  position: relative;
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cream-border);
  position: relative;
}

.hero__card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero__score {
  text-align: center;
  margin-bottom: 24px;
}

.hero__score-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.hero__score-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 4px;
}

.hero__score-bar {
  height: 8px;
  background: var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
}

.hero__score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 4px;
  width: 72%;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero__tag {
  background: var(--purple-pale);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}

.hero__tag.tag-gold {
  background: var(--gold-pale);
  color: #8B6914;
}

.hero__cta {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__visual {
    order: -1;
  }
}

/* ========== Services Grid ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--cream-border);
  transition: all 0.3s;
  text-align: center;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--purple-pale), var(--gold-pale));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--purple);
  margin-bottom: 8px;
}

.service-card__price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ========== Reports Grid ========== */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.report-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-border);
  transition: all 0.3s;
}

.report-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.report-card__header {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  padding: 28px;
  color: var(--cream);
}

.report-card__header h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.report-card__header .price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.report-card__body {
  padding: 28px;
}

.report-card__features {
  margin-bottom: 24px;
}

.report-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-border);
}

.report-card__features li:last-child {
  border-bottom: none;
}

.report-card__features .check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== Books Section ========== */
.books-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream-dark);
}

.books-scroll::-webkit-scrollbar {
  height: 4px;
}

.books-scroll::-webkit-scrollbar-track {
  background: var(--cream-dark);
}

.books-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

.book-item {
  flex-shrink: 0;
  width: 160px;
  text-align: center;
}

.book-item__cover {
  width: 160px;
  height: 240px;
  background: var(--purple);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-align: center;
  padding: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}

.book-item:hover .book-item__cover {
  transform: scale(1.03);
}

.book-item__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 4px;
  line-height: 1.3;
}

.book-item__price {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

/* ========== Testimonials ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--cream-border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  font-style: italic;
  padding-top: 24px;
  line-height: 1.6;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple);
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== Subscribe Section ========== */
.subscribe-section {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  padding: 60px 0;
}

.subscribe-section h2 {
  color: var(--cream);
}

.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
}

.subscribe-form input::placeholder {
  color: rgba(255,248,240,0.5);
}

.subscribe-form input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

@media (max-width: 500px) {
  .subscribe-form { flex-direction: column; }
}

/* ========== Blog ========== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-border);
  transition: all 0.3s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 3rem;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--purple);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== Page Hero (inner pages) ========== */
.page-hero {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  background: var(--cream-dark);
  text-align: center;
  border-bottom: 1px solid var(--cream-border);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple);
  margin-bottom: 12px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== Pricing Card ========== */
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 2px solid var(--cream-border);
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-border);
}

.pricing-card__features li:last-child { border-bottom: none; }

/* ========== Tabs ========== */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 40px;
  max-width: 600px;
}

.tab-btn {
  flex: 1;
  padding: 12px 24px;
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-md) - 4px);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active {
  background: var(--white);
  color: var(--purple);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover:not(.active) {
  color: var(--purple);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== Features List ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
}

.feature-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--purple-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-item h4 {
  font-family: var(--font-heading);
  color: var(--purple);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ========== Stats ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-size: 0.85rem;
  color: rgba(255,248,240,0.6);
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Footer ========== */
.footer {
  background: var(--purple);
  color: rgba(255,248,240,0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  color: var(--cream);
}

.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 1rem;
  transition: all 0.2s;
}

.footer__social a:hover {
  background: var(--gold);
  color: white;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 0.875rem;
  color: rgba(255,248,240,0.6);
  transition: color 0.2s;
}

.footer__col ul li a:hover {
  color: var(--gold);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,248,240,0.4);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ========== Badge ========== */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-free {
  background: var(--green);
  color: white;
}

.badge-new {
  background: var(--gold);
  color: white;
}

.badge-popular {
  background: var(--purple);
  color: white;
}

/* ========== Divider ========== */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 2px;
  margin: 0 auto 24px;
}

.divider-left {
  margin: 0 0 24px;
}

/* ========== Utility ========== */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
