/* ZapAgenda Global CSS Design System */
/* Designed for Neuromarketing impact, Premium Dark Aesthetics, and Full Colorblind Accessibility */

:root {
  /* Colorblind-safe HSL palette */
  /* Indigo Blue (60% Contrast Ratio with background; signifies Trust, Security, Stability) */
  --color-primary: #1e40af; 
  --color-primary-light: #3b82f6;
  --color-primary-dark: #1e3a8a;
  
  /* Premium Emerald Green (WhatsApp & Logo Accent; High Action Trigger; highly visible & accessible) */
  --color-accent: #10b981;
  --color-accent-hover: #059669;
  
  /* Premium Slate Charcoal Backgrounds */
  --color-bg-base: #0b0f19;
  --color-bg-panel: rgba(17, 24, 39, 0.7);
  --color-bg-panel-solid: #111827;
  
  /* Borders and Grids */
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);
  
  /* Text System with high contrast and size variation */
  --color-text-main: #f9fafb;
  --color-text-muted: #9ca3af;
  --color-text-dark: #4b5563;
  
  /* Glassmorphism Filters */
  --glass-filter: blur(16px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

/* Base Reset & Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Typography & Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #a5b4fc 0%, #3b82f6 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  border-bottom: var(--glass-border);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar .nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-main);
  text-decoration: none;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-text-main);
}

/* Responsive Menu Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #ffffff; /* White text for perfect contrast on green */
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background: var(--color-bg-panel);
  border: var(--glass-border);
  color: var(--color-text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
}

/* Pulse animation for CTA buttons (Neuromarketing action triggers) */
.pulse-animation {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(circle at 80% 20%, rgba(30, 64, 175, 0.15) 0%, rgba(11, 15, 25, 0) 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* WhatsApp Live Simulator (Wow Factor Component) */
.simulator-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 24px;
  background: var(--color-bg-panel-solid);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow), 0 0 30px rgba(59, 130, 246, 0.15);
  overflow: hidden;
  position: relative;
}

.simulator-header {
  background: #075e54;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.simulator-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.simulator-user-info h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 2px;
}

.simulator-user-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.simulator-user-info span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
}

.simulator-body {
  height: 380px;
  padding: 16px;
  overflow-y: auto;
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  background-size: cover;
  background-blend-mode: overlay;
  background-color: rgba(11, 15, 25, 0.95);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sim-message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  animation: pop-message 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
  opacity: 0;
  transform: scale(0.9);
}

@keyframes pop-message {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sim-message.sent {
  align-self: flex-end;
  background: #056162;
  color: white;
  border-bottom-right-radius: 2px;
}

.sim-message.received {
  align-self: flex-start;
  background: #262d31;
  color: #e1e9eb;
  border-bottom-left-radius: 2px;
}

.sim-calendar-event {
  background: rgba(30, 64, 175, 0.4);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-event-title {
  font-weight: bold;
  font-size: 0.85rem;
  color: #60a5fa;
}

.sim-event-date {
  font-size: 0.75rem;
  color: #9ca3af;
}

.simulator-footer {
  padding: 10px 16px;
  background: #1e2428;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-input-placeholder {
  flex: 1;
  background: #2a2f32;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #8696a0;
}

.sim-mic-icon {
  color: #8696a0;
  font-size: 1.1rem;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--color-bg-panel);
  backdrop-filter: var(--glass-filter);
  -webkit-backdrop-filter: var(--glass-filter);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: var(--glass-shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(30, 64, 175, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text-main);
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Accessible color tags (For colorblind users to quickly distinguish categories without color cues) */
.access-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.access-tag-calendar {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.access-tag-reminder {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* PRICING SECTION */
.pricing {
  background: radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.05) 0%, rgba(11, 15, 25, 0) 50%);
}

.pricing-title-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.pricing-card-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pricing-card {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
  border: 2px solid var(--color-primary-light);
  box-shadow: 0 25px 60px -15px rgba(59, 130, 246, 0.2);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-accent);
  color: #0b0f19;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin: 24px 0 8px 0;
  line-height: 1;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.pricing-features-list {
  list-style: none;
  margin: 36px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.pricing-features-list li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.1rem;
}

/* FAQ Accordion Section */
.faq-grid {
  max-width: 800px;
  margin: 60px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--color-bg-panel);
  border: var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item.active {
  background: rgba(30, 41, 59, 0.4);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 24px 24px 24px;
}

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

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

/* FLOATING WIDGET ASSISTANT: LANA */
.lana-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.lana-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.lana-bubble:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.6);
}

.lana-bubble svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.lana-window {
  width: 380px;
  height: 520px;
  border-radius: 24px;
  background: var(--color-bg-panel-solid);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow), 0 10px 30px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 16px;
  animation: scale-up 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scale-up {
  from {
    opacity: 0;
    transform: scale(0.85) translate(20px, 20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translate(0, 0);
  }
}

.lana-header {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #1e293b 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--glass-border);
}

.lana-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lana-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #0b0f19;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.lana-info h4 {
  font-size: 0.95rem;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.lana-info span {
  font-size: 0.75rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.lana-info span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.lana-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.lana-close:hover {
  color: var(--color-text-main);
}

.lana-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #0f172a;
}

.lana-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  word-wrap: break-word;
}

.lana-msg.sent {
  align-self: flex-end;
  background: var(--color-primary);
  color: white;
  border-bottom-right-radius: 2px;
}

.lana-msg.received {
  align-self: flex-start;
  background: #1e293b;
  color: var(--color-text-main);
  border-bottom-left-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.lana-msg.received strong {
  color: var(--color-accent);
}

.lana-typing {
  align-self: flex-start;
  background: #1e293b;
  padding: 12px 20px;
  border-radius: 16px;
  display: none;
  align-items: center;
  gap: 4px;
}

.lana-typing span {
  width: 6px;
  height: 6px;
  background: var(--color-text-muted);
  border-radius: 50%;
  animation: typing-bounce 1s infinite ease-in-out;
}

.lana-typing span:nth-child(2) { animation-delay: 0.2s; }
.lana-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.lana-footer {
  padding: 16px;
  background: #1e293b;
  border-top: var(--glass-border);
  display: flex;
  gap: 8px;
}

.lana-input {
  flex: 1;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  color: white;
  font-size: 0.85rem;
  outline: none;
  font-family: inherit;
}

.lana-input:focus {
  border-color: var(--color-primary-light);
}

.lana-send {
  background: var(--color-accent);
  color: #0b0f19;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.lana-send:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.05);
}

/* LGPD Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background: var(--color-bg-panel-solid);
  border: 1px solid var(--color-primary-light);
  border-radius: 20px;
  padding: 24px;
  z-index: 9998;
  box-shadow: var(--glass-shadow);
  display: none;
  animation: slide-in-up 0.4s ease-out forwards;
}

@keyframes slide-in-up {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cookie-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.cookie-content p a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

/* FOOTER */
.footer {
  background: #060910;
  padding: 60px 0 30px 0;
  border-top: var(--glass-border);
}

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

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-main);
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links ul a:hover {
  color: var(--color-text-main);
}

.footer-bottom {
  border-top: var(--glass-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--color-text-dark);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--color-text-main);
}

/* Mobile & Responsiveness */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .nav-links {
    display: none; /* In production a toggle menu is normally created, keeping it clean */
  }
  
  .menu-toggle {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .lana-window {
    width: calc(100vw - 40px);
    right: 20px;
    height: 480px;
  }
}

/* Reviews Section Styles */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.review-card {
  background: var(--color-bg-panel);
  border: var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-hover);
}

.review-stars {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.review-meta h4 {
  font-size: 0.9rem;
  color: var(--color-text-main);
}

.review-meta span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

