/* ===== APPIE V2 — GLOBAL DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

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

:root {
  --yellow: #F6F111;
  --yellow-dark: #e8e000;
  --blue-dark: #1863DC;
  --blue-darkest: #0D47A1;
  --blue-navy: #1E3A8A;
  --blue-light: #C4EAF2;
  --green-light: #D4EAC8;
  --footer-bg: #0D0D0D;
  --text: #111;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --border: #e5e7eb;
}

html { scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: var(--text); background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container, .content-wrap, main section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* FORCED HAMBURGER VISIBILITY */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px !important;
  height: 25px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 0;
  z-index: 2000 !important;
  position: relative;
}
.hamburger span {
  display: block !important;
  width: 100% !important;
  height: 4px !important;
  background-color: #000000 !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .hamburger { display: flex !important; visibility: visible !important; opacity: 1 !important; }
}

main { width: 100%; display: block; }

/* ===== STICKY HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 40px;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  padding: 8px 40px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
@media (max-width: 1024px) {
  .site-header { padding: 10px 16px; }
  .site-header.scrolled { padding: 8px 16px; }
}
@media (min-width: 1400px) {
  .site-header { padding: 12px calc((100% - 1320px) / 2); }
}
.site-logo img { height: 56px; width: auto; }
.site-nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.site-nav a {
  font-size: 0.78rem; font-weight: 500; color: #333;
  padding: 6px 10px; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover { background: var(--blue-light); color: var(--blue-dark); }
.nav-cta {
  background: var(--yellow) !important; color: #000 !important; font-weight: 700 !important;
  border-radius: 20px !important; padding: 8px 16px !important;
}

/* ===== BUTTONS SYSTEM ===== */
.btn-yellow, .btn-blue, .btn-white, .btn-wa, .btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer; text-align: center; border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn-yellow:hover, .btn-blue:hover, .btn-white:hover, .btn-wa:hover, .btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-yellow { 
  background: var(--yellow); color: #000; border-color: #000;
  box-shadow: 0 6px 18px rgba(246, 241, 17, 0.35);
}
.btn-yellow:hover { box-shadow: 0 10px 25px rgba(246, 241, 17, 0.5); }

.btn-blue { 
  background: var(--blue-dark); color: #fff;
  box-shadow: 0 6px 18px rgba(24, 99, 220, 0.3);
}
.btn-blue:hover { background: var(--blue-darkest); }

.btn-wa { 
  background: #25d366; color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { background: #1daa55; }

.btn-outline {
  background: transparent; color: var(--blue-dark); border-color: var(--blue-dark);
  box-shadow: none;
}
.btn-outline:hover { background: var(--blue-dark); color: #fff; }

.btn-icon { font-size: 1.3rem; line-height: 1; }

/* Specialized compact buttons */
.btn-pkg-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 12px; border-radius: 8px; transition: background 0.2s;
}
.btn-pkg-contract {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--blue-dark); font-weight: 600; font-size: 0.85rem;
  padding: 10px; border-radius: 8px; border: 2px solid var(--blue-dark);
  transition: all 0.2s;
}
.btn-pkg-contract:hover { background: var(--blue-dark); color: #fff; }


/* ===== SECTION DIVIDER ===== */
.section-divider { height: 4px; background: var(--yellow); }

/* ===== HERO ===== */
.hero { padding: 60px 20px 40px; text-align: center; background: #fff; }
.hero h1 {
  font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700;
  max-width: 800px; margin: 0 auto 32px; color: #111;
}
.hero-video-wrapper {
  max-width: 860px; margin: 0 auto 36px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  aspect-ratio: 16/9; background: #000;
}
.hero-video-wrapper iframe { width: 100%; height: 100%; border: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 12px; }

/* ===== PORTFOLIO ===== */
.portfolio { padding: 50px 30px; background: #fff; text-align: center; }
.portfolio h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 32px; color: #333; }
.books-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto 40px;
}
.book-item {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 3/4; background: #f0f0f0;
}
.book-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.book-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--blue-light); padding: 60px 30px; }
.testimonials h3 { text-align: center; font-size: 1.8rem; font-weight: 700; margin-bottom: 40px; }

.fb-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto 40px; }
.fb-post-wrapper {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); padding: 16px 18px 12px;
  display: flex; flex-direction: column; gap: 10px;
}
.fb-header { display: flex; align-items: center; justify-content: space-between; }
.fb-author-info { display: flex; align-items: center; gap: 10px; }
.fb-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.fb-name { font-weight: 700; font-size: 0.93rem; color: #050505; line-height: 1.2; }
.fb-time { font-size: 0.78rem; color: #65676b; }
.fb-icon { color: #1877F2; font-size: 1.4rem; line-height: 1; }
.fb-text { font-size: 0.9rem; color: #050505; line-height: 1.55; flex: 1; }
.fb-reactions {
  display: flex; align-items: center; gap: 20px;
  padding-top: 8px; border-top: 1px solid #e4e6eb;
  font-size: 0.82rem; color: #65676b;
}
.fb-reactions .fb-like::before { content: "👍 "; }
.fb-reactions .fb-comment::before { content: "💬 "; }
.fb-reactions .fb-share::before { content: "↗️ "; }

.audio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto 40px; }
.audio-item { background: rgba(255,255,255,0.7); border-radius: 10px; padding: 16px 20px; text-align: center; }
.audio-item p { font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; color: #222; }
.audio-item audio { width: 100%; }

.google-reviews { max-width: 1000px; margin: 0 auto; background: rgba(255,255,255,0.7); border-radius: 12px; padding: 28px 30px; }
.google-reviews-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: #fff; border-radius: 10px; padding: 18px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-dark); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-time { font-size: 0.75rem; color: #888; }
.review-stars { color: #FBBC04; font-size: 1rem; margin-bottom: 8px; }
.review-google { width: 18px; margin-left: auto; }
.review-text { font-size: 0.85rem; color: #333; line-height: 1.5; }

/* ===== EJEMPLOS IMPRESOS ===== */
.ejemplos { background: var(--green-light); padding: 60px 30px; }
.ejemplos h3 { text-align: center; font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; }
.ejemplos .subtitle { text-align: center; color: #555; margin-bottom: 36px; font-size: 1rem; }
.videos-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto 16px; }
.videos-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto 16px; }
.yt-embed { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.15); aspect-ratio: 16/9; background: #000; border: 2px solid rgba(255,255,255,0.5); }
.yt-embed iframe { width: 100%; height: 100%; border: none; }
.cta-section { padding: 36px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }

/* ===== PLATFORMS ===== */
.platforms { padding: 40px 30px; text-align: center; background: #fff; }
.platforms p { font-weight: 600; font-size: 1rem; margin-bottom: 24px; color: #333; }
.platform-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.platform-logos img { height: 80px; width: auto; object-fit: contain; border-radius: 8px; transition: transform 0.2s; }
.platform-logos img:hover { transform: scale(1.08); }

/* ===== FIL GUADALAJARA ===== */
.fil { padding: 60px 30px; background: #fff; }
.fil h3 { text-align: center; font-size: 1.8rem; font-weight: 700; margin-bottom: 14px; }
.fil .fil-intro { text-align: center; max-width: 800px; margin: 0 auto 44px; font-size: 1rem; color: #444; line-height: 1.7; }
.fil-entry { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; max-width: 1100px; margin: 0 auto 48px; align-items: start; }
.fil-entry.reverse { direction: rtl; }
.fil-entry.reverse > * { direction: ltr; }
.fil-text h4 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--blue-dark); }
.fil-text p { font-size: 0.95rem; color: #444; line-height: 1.7; }
.fil-text .fil-wa {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; background: #25d366; color: #fff;
  padding: 10px 20px; border-radius: 24px; font-weight: 600; font-size: 0.9rem;
}
.fil-authors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.fil-author { text-align: center; }
.fil-author h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.fil-author p { font-size: 0.85rem; color: #555; margin-bottom: 14px; line-height: 1.5; }

/* ===== PRICING ===== */
.pricing { background: var(--blue-navy); padding: 70px 30px; }
.pricing h1 { text-align: center; color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 10px; }
.pricing .pricing-sub { text-align: center; color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 50px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1100px; margin: 0 auto; }
.pkg-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.25); display: flex; flex-direction: column; transition: transform 0.3s; }
.pkg-card:hover { transform: translateY(-6px); }
.pkg-header { background: linear-gradient(135deg, var(--blue-dark), var(--blue-darkest)); padding: 24px 22px; color: #fff; }
.pkg-header h2 { font-size: 1.15rem; font-weight: 900; margin-bottom: 6px; }
.pkg-header .pkg-tagline { font-size: 0.82rem; opacity: 0.85; margin-bottom: 14px; }
.pkg-price { font-size: 2.2rem; font-weight: 900; color: var(--yellow); line-height: 1; }
.pkg-price small { font-size: 0.7rem; color: rgba(255,255,255,0.7); display: block; margin-top: 4px; }
.pkg-badge { display: inline-block; background: var(--yellow); color: #000; font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-top: 10px; }
.pkg-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.pkg-section-title { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; color: var(--blue-dark); letter-spacing: 0.5px; border-bottom: 2px solid var(--blue-light); padding-bottom: 6px; margin-bottom: 4px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.pkg-list li { font-size: 0.88rem; color: #333; display: flex; gap: 8px; align-items: flex-start; }
.pkg-list li::before { content: "✅"; flex-shrink: 0; font-size: 0.85rem; }
.pkg-platforms { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.pkg-platform-tag { background: #f0f4ff; color: var(--blue-dark); border: 1px solid #c7d8ff; border-radius: 20px; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; }
.pkg-footer { padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid #eee; }

/* ===== FAQ ===== */
.faq { padding: 70px 30px; background: #f7f9fc; }
.faq h2 { text-align: center; font-size: 1.8rem; font-weight: 700; margin-bottom: 40px; }
.faq-container { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.06); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-size: 0.98rem; font-weight: 600; color: #111; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q:hover { background: #f0f4ff; }
.faq-q .arrow { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--blue-dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: transform 0.3s; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 0.92rem; color: #444; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== BOOKING CTA ===== */
.booking { padding: 70px 30px; text-align: center; background: var(--blue-navy); }
.booking h4 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: #fff; margin-bottom: 24px; }
.booking-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.7); padding: 50px 40px 30px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { font-size: 1.4rem; font-weight: 900; color: var(--yellow); margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; max-width: 300px; }
.footer-col h5 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-services { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-service-card { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 20px; flex: 1; min-width: 180px; text-align: center; }
.footer-service-card h6 { font-size: 0.9rem; color: #fff; margin-bottom: 6px; }
.footer-service-card p { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 30px; }

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 9999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  font-size: 1.8rem;
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.8); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hamburger { display: flex !important; visibility: visible !important; opacity: 1 !important; }
  .site-logo img { height: 45px !important; width: auto !important; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 0; /* Remove gap for cleaner mobile list */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
    z-index: 1000;
  }
  .site-nav.active { display: flex; }
  .site-nav a { 
    width: 100%; 
    text-align: left; 
    font-size: 1.1rem; 
    padding: 15px 20px; 
    border-bottom: 1px solid #f5f5f5;
    border-radius: 0;
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-cta { margin: 10px 20px; text-align: center !important; }
  
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .fb-grid { grid-template-columns: 1fr; }
  .audio-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid-3 { grid-template-columns: 1fr 1fr; }
  .videos-grid-2 { grid-template-columns: 1fr; }
  .fil-entry { grid-template-columns: 1fr; }
  .fil-entry.reverse { direction: ltr; }
  .fil-authors { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .site-header { padding: 10px 16px; }
  .books-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .audio-grid { grid-template-columns: 1fr; }
  .videos-grid-3 { grid-template-columns: 1fr; }
  .fil-authors { grid-template-columns: 1fr; }
  .platform-logos img { height: 55px; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: -100px; left: 20px; right: 20px;
  background: #fff; border-radius: 16px; padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border);
  max-width: 800px; margin: 0 auto;
}
#cookie-banner.cookie-visible { bottom: 20px; }
#cookie-inner { display: flex; align-items: center; gap: 20px; width: 100%; flex-wrap: wrap; }
#cookie-text { flex: 1; display: flex; align-items: center; gap: 12px; min-width: 280px; }
#cookie-icon { font-size: 2rem; }
#cookie-text p { font-size: 0.85rem; color: #555; line-height: 1.4; }
#cookie-privacy-link { color: var(--blue-dark); font-weight: 700; text-decoration: underline; }
#cookie-actions { display: flex; gap: 10px; }
#cookie-accept { background: var(--blue-dark); color: #fff; border: none; padding: 10px 20px; border-radius: 30px; font-weight: 700; cursor: pointer; font-size: 0.85rem; transition: background 0.2s; }
#cookie-accept:hover { background: var(--blue-darkest); }
#cookie-decline { background: #f3f4f6; color: #666; border: none; padding: 10px 20px; border-radius: 30px; font-weight: 600; cursor: pointer; font-size: 0.85rem; }
#cookie-decline:hover { background: #e5e7eb; }

@media (max-width: 768px) {
  #cookie-banner { bottom: -200px; padding: 16px; border-radius: 12px; }
  #cookie-inner { flex-direction: column; text-align: center; }
  #cookie-text { min-width: 100%; }
  #cookie-actions { width: 100%; justify-content: center; }
}

/* ===== REVIEWS & BLOG CARDS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.review-card { background: #fff; border-radius: 15px; padding: 30px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid #eee; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-dark); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.review-name { font-size: 0.95rem; font-weight: 700; color: #111; }
.review-time { font-size: 0.75rem; color: #777; }
.review-stars { color: #f1c40f; font-size: 0.85rem; margin-bottom: 12px; }
.review-text { font-size: 0.9rem; line-height: 1.6; color: #444; font-style: italic; }

.blog-tag { background: #f0f4ff; color: var(--blue-dark); border-radius: 20px; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; display: inline-block; margin-bottom: 12px; }
