:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE8;
  --primary: #5B7F6B;
  --primary-dark: #3D5A45;
  --accent: #C4A882;
  --accent-light: #E8DCC8;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --success: #7BA98A;
  --heart: #D4736A;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-btn: 50px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
}

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover {
  color: var(--primary-dark);
  background: rgba(91,127,107,0.08);
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
  margin-left: 8px;
}
.nav-login:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(91,127,107,0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;

  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu .nav-link {
  font-size: 1.1rem;
  padding: 12px 24px;
}
.mobile-menu .nav-login {
  font-size: 1rem;
  padding: 14px 36px;
  margin-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,127,107,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  background: var(--success);
  top: -100px; right: -150px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: var(--accent);
  bottom: -100px; left: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--primary-dark);
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 400px;
  position: relative;
}

.hero-card-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 140px;
  margin-bottom: 20px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary) 0%, var(--success) 100%);
  border-radius: 8px 8px 0 0;
  transition: height 1.5s ease;
  position: relative;
}

.chart-bar:nth-child(1) { height: 0; animation: grow1 1.5s 0.3s forwards; }
.chart-bar:nth-child(2) { height: 0; animation: grow2 1.5s 0.5s forwards; }
.chart-bar:nth-child(3) { height: 0; animation: grow3 1.5s 0.7s forwards; }
.chart-bar:nth-child(4) { height: 0; animation: grow4 1.5s 0.9s forwards; }
.chart-bar:nth-child(5) { height: 0; animation: grow5 1.5s 1.1s forwards; }

@keyframes grow1 { to { height: 40% } }
@keyframes grow2 { to { height: 60% } }
@keyframes grow3 { to { height: 85% } }
@keyframes grow4 { to { height: 100% } }
@keyframes grow5 { to { height: 120% } }

.chart-label {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-light);
  white-space: nowrap;
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card-subtitle {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 500;
}

/* Sections */
.section {
  padding: 100px 0;
}

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

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}

/* Problem */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.problem-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--heart);
  line-height: 1;
  margin-bottom: 8px;
}

.problem-stat-label {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

.problem-stat-source {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 12px;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.problem-card:hover { transform: translateX(6px); }

.problem-card-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.problem-card-icon--1 { background: #FDE8E8; }
.problem-card-icon--2 { background: #FEF3C7; }
.problem-card-icon--3 { background: #E0E7FF; }

.problem-card h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.problem-card p { font-size: 0.88rem; color: var(--text-light); }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--success));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Proof */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.proof-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.proof-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--success);
  line-height: 1;
  margin-bottom: 12px;
}

.proof-stat-label {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

.proof-quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.proof-quote::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--accent-light);
  line-height: 1;
}

.proof-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.proof-quote-author {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Waitlist */
.waitlist-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.waitlist-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.waitlist-card .section-label {
  margin-bottom: 12px;
}

.waitlist-card .section-title {
  margin-bottom: 8px;
}

.waitlist-card .section-text {
  margin: 0 auto 32px;
}

.form-group {
  margin-bottom: 16px;
  text-align: left;
}

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

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E0DA;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  background: var(--white);
}

.form-input::placeholder { color: #B0A89E; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B6B' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  padding: 16px;
  background: #EDF7F0;
  border-radius: var(--radius-sm);
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-success.visible { display: block; }

.form-error {
  display: none;
  padding: 12px;
  background: #FDE8E8;
  border-radius: var(--radius-sm);
  color: var(--heart);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.form-error.visible { display: block; }

/* Footer */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border-color: var(--primary);
  transform: scale(1.04);
}
.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 20px;
  border-radius: var(--radius-btn);
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.pricing-price {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}

.pricing-feature-icon {
  flex-shrink: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-feature-muted {
  opacity: 0.4;
}

.pricing-cta {
  text-align: center;
  margin-top: auto;
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 320px; padding: 24px; }

  .section { padding: 64px 0; }

  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .problem-stat-number { font-size: 3rem; }

  .steps { grid-template-columns: 1fr; gap: 24px; }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }

  .waitlist-card { padding: 40px 24px; }

  .footer-grid { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  .hero-orb--1 { width: 300px; height: 300px; top: -50px; right: -80px; }
  .hero-orb--2 { width: 250px; height: 250px; bottom: -50px; left: -80px; }

  /* Pricing mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card--featured {
    transform: none;
  }
  .pricing-card--featured:hover {
    transform: translateY(-6px);
  }

  /* Nav mobile */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 16px; }
  .header { padding: 12px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
}

/* ── User Menu (authenticated) ── */
.user-menu {
  position: relative;
  display: inline-flex;
}
.user-avatar-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.user-avatar-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}
.user-dropdown {
  display: none;
  position: absolute;
  right: 0; top: 48px;
  min-width: 220px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 200;
  overflow: hidden;
}
.user-dropdown.open { display: block; }
.user-dropdown-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.user-dropdown-name {
  font-weight: 600; font-size: 0.9rem; color: var(--text);
}
.user-dropdown-role {
  font-size: 0.78rem; color: var(--text-light); margin-top: 2px;
  text-transform: capitalize;
}
.user-dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  font-size: 0.9rem; color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.user-dropdown-item:hover { background: var(--bg); }
.user-dropdown-divider {
  border: none; border-top: 1px solid rgba(0,0,0,0.06); margin: 4px 0;
}
.user-dropdown-logout { color: var(--heart); }



/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-dropdown-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.lang-dropdown-btn:hover { background: rgba(0,0,0,0.04); border-color: #ddd; }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: var(--white);
  border: 1px solid #e5e0da;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 150px;
  z-index: 200;
  overflow: hidden;
}
.lang-dropdown-menu.show { display: block; }
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.lang-dropdown-item:hover { background: var(--bg-alt); }
.lang-dropdown-item.active { color: var(--primary); font-weight: 600; background: var(--bg-alt); }

/* Blog Styles */
.blog-page { background: var(--bg); min-height: 100vh; }
.blog-hero { background: linear-gradient(135deg, var(--primary) 0%, #4A6B5A 100%); color: var(--white); padding: 4rem 0 5rem; text-align: center; }
.blog-hero h1 { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 1rem; }
.blog-hero p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.blog-hero .breadcrumbs { margin-bottom: 2rem; font-size: 0.9rem; opacity: 0.85; }
.blog-hero .breadcrumbs a { color: var(--white); text-decoration: underline; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: -2rem auto 4rem; padding: 0 1.5rem; position: relative; z-index: 1; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.blog-card-image-wrap { aspect-ratio: 2 / 1; overflow: hidden; background: var(--primary-light); }
.blog-card-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-category { display: inline-block; background: var(--primary); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.75rem; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.8rem; width: fit-content; white-space: nowrap; }
.blog-card-date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.6rem; }
.blog-card h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; line-height: 1.35; margin-bottom: 0.8rem; color: var(--text-dark); }
.blog-card h2 a { color: var(--text-dark); text-decoration: none; }
.blog-card h2 a:hover { color: var(--primary); }
.blog-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; flex: 1; margin-bottom: 1.2rem; }
.blog-card .btn { align-self: flex-start; }
.blog-article { max-width: 800px; margin: -2rem auto 4rem; padding: 2.5rem 2rem; background: var(--white); border-radius: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); position: relative; z-index: 1; }
.blog-article h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; line-height: 1.2; margin-bottom: 1.2rem; color: var(--text-dark); }
.blog-article h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin: 2rem 0 0.8rem; color: var(--primary-dark); }
.blog-article h3 { font-size: 1.2rem; margin: 1.5rem 0 0.6rem; color: var(--text-dark); }
.blog-article p { font-size: 1.08rem; line-height: 1.8; color: var(--text-dark); margin-bottom: 1.2rem; }
.blog-article ul, .blog-article ol { margin: 1rem 0 1.5rem 1.5rem; }
.blog-article li { font-size: 1.05rem; line-height: 1.7; margin-bottom: 0.5rem; }
.blog-article em { color: var(--primary-dark); }
.blog-article strong { color: var(--primary); }
.article-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.article-meta span { color: var(--text-muted); font-size: 0.9rem; }
.article-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-tag { background: var(--bg); color: var(--primary); font-size: 0.8rem; padding: 0.3rem 0.8rem; border-radius: 100px; font-weight: 500; }
.related-articles { max-width: 800px; margin: 0 auto 4rem; padding: 0 1.5rem; }
.related-articles h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1.5rem; text-align: center; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.related-card { background: var(--white); border-radius: 12px; padding: 1.5rem; box-shadow: 0 1px 6px rgba(0,0,0,0.05); transition: transform 0.2s; text-decoration: none; display: block; }
.related-card:hover { transform: translateY(-2px); }
.related-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.related-card p { color: var(--text-muted); font-size: 0.9rem; }
.article-breadcrumbs { margin-bottom: 2rem; }
.article-breadcrumbs a, .article-breadcrumbs span { color: var(--text-muted); font-size: 0.9rem; text-decoration: none; }
.article-breadcrumbs a:hover { color: var(--primary); }
.empty-blog { text-align: center; padding: 4rem 2rem; }
.empty-blog h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 1rem; }
.empty-blog p { color: var(--text-muted); margin-bottom: 2rem; }
@media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } .related-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } .blog-hero h1 { font-size: 2rem; } .blog-article h1 { font-size: 1.8rem; } .blog-article { padding: 1.5rem; } }
