/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--cs-font-body);
  font-weight:400; font-size:0.99rem; line-height:1.59;
  color: var(--cs-text);
  background-color: var(--cs-bg);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
h1,h2,h3,h4,h5,h6 { font-family:var(--cs-font-heading); font-weight:800; letter-spacing:-0.04em; }
a { color:var(--cs-primary); text-decoration:none; transition:color .2s ease; }
a:hover { color:var(--cs-secondary); }
img { max-width:100%; height:auto; display:block; }

/* ===== HERO ===== */
.hero-section {
  position:relative; min-height:98vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding:24px 16px 104px; text-align:center; overflow:hidden;
}
.hero-section::before {
  content:''; position:absolute; inset:0;
  background:var(--hero-bg, none) center/cover no-repeat;
  filter:blur(8px) brightness(0.35); transform:scale(1.1); z-index:0;
}
.hero-section::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.3) 0%, var(--cs-bg) 100%);
  z-index:1;
}
.hero-section > * { position:relative; z-index:2; }

.hero-title {
  font-size:clamp(1.8rem, 5vw, 3.2rem);
  margin-bottom:8px; text-shadow:0 2px 12px rgba(0,0,0,0.5);
  color:var(--cs-text);
}
.hero-subtitle {
  font-size:clamp(0.95rem, 2.5vw, 1.15rem);
  color:var(--cs-text-muted); max-width:520px; margin:0 auto 24px;
  text-shadow:0 1px 6px rgba(0,0,0,0.4);
}

/* ===== DEMO IFRAME ===== */
.demo-container {
  width:100%; max-width:900px; aspect-ratio:16/9;
  border-radius:12px; overflow:hidden; margin:0 auto 28px;
  box-shadow:0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  background:var(--cs-surface); position:relative;
}
.demo-iframe {
  width:100%; height:100%; border:none; display:block;
  position:absolute; top:0; left:0;
}
.hero-bg-blur {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; filter:blur(10px) brightness(0.6);
  transform:scale(1.1); z-index:1; pointer-events:none;
}
.hero-cta-overlay {
  position:absolute; inset:0;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  z-index:5; pointer-events:none;
  background:linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.15) 100%);
  gap:12px; padding:20px;
}
.hero-cta-overlay > * { pointer-events:auto; }

/* Demo controls */
.demo-controls { display:none; justify-content:flex-end; margin:6px 0 0; }
.demo-controls.active { display:flex; }
.demo-fullscreen-btn {
  display:flex; align-items:center; justify-content:center;
  width:36px; height:36px; border:none; border-radius:6px;
  background:rgba(255,255,255,0.08); color:rgba(255,255,255,0.5);
  cursor:pointer; transition:background .2s, color .2s;
}
.demo-fullscreen-btn:hover { background:rgba(255,255,255,0.15); color:#fff; }

/* Fullscreen mode */
.demo-container.fullscreen {
  position:fixed !important; inset:0 !important; z-index:9999 !important;
  width:100vw !important; height:100vh !important; max-width:none !important;
  aspect-ratio:auto !important; border-radius:0 !important; margin:0 !important;
}

/* ===== CTA BUTTONS ===== */
.cta-primary {
  display:inline-block; padding:13px 37px;
  background:linear-gradient(135deg, var(--cs-primary), var(--cs-secondary));
  color:#fff; font-family:var(--cs-font-heading); font-weight:800;
  font-size:1.13rem; letter-spacing:0.37px; border:none; border-radius:9px;
  cursor:pointer; text-transform:uppercase; position:relative; overflow:hidden;
  transition:transform .2s, box-shadow .2s;
  box-shadow:0 4px 20px rgba(0,0,0,0.3), 0 0 30px color-mix(in srgb, var(--cs-primary) 25%, transparent);
  text-shadow:0 1px 3px rgba(0,0,0,0.3);
  animation:cta-pulse 2.5s ease-in-out infinite;
}
.cta-primary:hover {
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 6px 28px rgba(0,0,0,0.4), 0 0 40px color-mix(in srgb, var(--cs-primary) 40%, transparent);
  color:#fff;
}
.cta-primary::after {
  content:''; position:absolute; top:0; left:-100%;
  width:60%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation:shimmer 3s ease-in-out infinite;
}

.cta-secondary {
  display:inline-block; padding:11px 31px;
  background:rgba(255,255,255,0.08); backdrop-filter:blur(10px);
  color:var(--cs-text); font-family:var(--cs-font-heading); font-weight:800;
  font-size:0.98rem; letter-spacing:0.37px;
  border:1px solid rgba(255,255,255,0.15); border-radius:9px;
  cursor:pointer; text-transform:uppercase;
  transition:background .2s, border-color .2s, transform .2s;
}
.cta-secondary:hover {
  background:rgba(255,255,255,0.14); border-color:rgba(255,255,255,0.3);
  transform:translateY(-1px); color:var(--cs-text);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:16px; margin-top:28px; width:100%; max-width:680px;
}
.badge {
  display:inline-flex; align-items:center; gap:6px;
  padding:7px 16px; background:rgba(255,255,255,0.07);
  backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,0.1);
  border-radius:20px; font-size:0.81rem; color:var(--cs-text-muted); white-space:nowrap;
}

/* ===== CONTENT LAYOUT ===== */
.content-wrap { width:100%; max-width:776px; margin:0 auto; padding:0 16px; }
.section-heading {
  font-size:clamp(1.4rem, 3.5vw, 2rem); margin-bottom:24px;
  text-align:center; color:var(--cs-text);
}

/* ===== YOUTUBE ===== */
.youtube-section { padding:40px 16px; background:var(--cs-bg); }
.youtube-container {
  position:relative; width:100%; max-width:900px; margin:0 auto;
  aspect-ratio:16/9; border-radius:8px; overflow:hidden;
  box-shadow:0 4px 20px rgba(0,0,0,0.3); background:var(--cs-surface);
}
.youtube-container iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; }

/* ===== GAME STATS ===== */
.game-info-section { padding:40px 16px; background:var(--cs-surface); }
.game-info-grid {
  display:grid; grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:12px;
}
.game-info-row {
  display:flex; justify-content:space-between;
  padding:12px 16px; background:var(--cs-bg);
  border-radius:8px; border:1px solid rgba(255,255,255,0.06);
}
.game-info-label { color:var(--cs-text-muted); font-size:0.85rem; }
.game-info-value { color:var(--cs-text); font-weight:600; font-size:0.9rem; }

/* ===== ARTICLE CONTENT ===== */
.article-content { padding:40px 0; background:var(--cs-bg); }
.article-content h2 {
  font-family:var(--cs-font-heading); font-weight:800;
  color:var(--cs-text); font-size:clamp(1.3rem, 3vw, 1.8rem);
  margin:32px 0 16px; letter-spacing:-0.04em;
}
.article-content h3 {
  font-family:var(--cs-font-heading); color:var(--cs-text);
  font-size:clamp(1.1rem, 2.5vw, 1.4rem); margin:24px 0 12px;
}
.article-content p { color:var(--cs-text-muted); margin-bottom:16px; line-height:1.7; }
.article-content ul, .article-content ol { color:var(--cs-text-muted); margin:0 0 16px 24px; line-height:1.8; }
.article-content img { max-width:100%; height:auto; border-radius:8px; margin:20px 0; }
.article-content a { color:var(--cs-primary); text-decoration:underline; }
.article-content a:hover { color:var(--cs-secondary); }
.article-content table { width:100%; border-collapse:collapse; margin:20px 0; }
.article-content th, .article-content td {
  padding:10px 14px; border:1px solid var(--cs-surface);
  text-align:left; color:var(--cs-text-muted);
}
.article-content th { background:var(--cs-surface); color:var(--cs-text); font-weight:600; }
.article-content blockquote {
  border-left:3px solid var(--cs-primary); padding:12px 20px;
  margin:20px 0; background:var(--cs-surface);
  border-radius:0 8px 8px 0; color:var(--cs-text-muted); font-style:italic;
}

/* WWC callout boxes — dark text on light background */
.article-content .wwc { color:#1a1a1a !important; border-radius:8px; background:rgba(255,255,255,0.92); padding:16px 20px; margin:20px 0; }
.article-content .wwc p, .article-content .wwc li,
.article-content .wwc span, .article-content .wwc strong,
.article-content .wwc div { color:#1a1a1a !important; }
.article-content .wwc a { color:#2563eb !important; }
.article-content .wwc .wwc-title { color:#111 !important; font-weight:700; margin-bottom:8px; font-size:1.05em; }
.article-content .wwc-table th, .article-content .wwc-table td { color:#1a1a1a !important; }
.article-content .wwc.wwc-info { border-left:4px solid #3b82f6; }
.article-content .wwc.wwc-warning { border-left:4px solid #f59e0b; }
.article-content .wwc.wwc-success { border-left:4px solid #22c55e; }

/* ===== STICKY BAR ===== */
.sticky-bar {
  position:fixed; bottom:0; left:0; right:0; z-index:900;
  background:linear-gradient(180deg, color-mix(in srgb, var(--cs-surface) 93%, transparent), var(--cs-bg));
  backdrop-filter:blur(12px); border-top:1px solid rgba(255,255,255,0.08);
  padding:11px 16px; box-shadow:0 -4px 20px rgba(0,0,0,0.4);
}
.sticky-inner {
  max-width:776px; margin:0 auto; display:flex;
  align-items:center; justify-content:space-between; gap:12px;
}
.sticky-online { display:flex; align-items:center; gap:8px; font-size:0.85rem; color:var(--cs-text-muted); }
.pulse-dot {
  width:10px; height:10px; border-radius:50%;
  background:#22c55e; box-shadow:0 0 8px #22c55e88;
  animation:pulse-glow 1.5s ease-in-out infinite;
}
.sticky-cta {
  display:inline-block; padding:10px 24px;
  background:linear-gradient(135deg, var(--cs-primary), var(--cs-secondary));
  color:#fff; font-family:var(--cs-font-heading); font-weight:800;
  font-size:0.9rem; letter-spacing:0.37px; border:none; border-radius:7px;
  text-transform:uppercase; cursor:pointer; position:relative; overflow:hidden;
  transition:transform .2s, box-shadow .2s;
  box-shadow:0 2px 12px rgba(0,0,0,0.3); white-space:nowrap; flex-shrink:0;
}
.sticky-cta::after {
  content:''; position:absolute; top:0; left:-100%; width:60%; height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation:shimmer 3s ease-in-out infinite;
}
.sticky-cta:hover { transform:translateY(-1px); box-shadow:0 4px 16px rgba(0,0,0,0.4); color:#fff; }
.sticky-country { display:flex; align-items:center; gap:6px; font-size:0.82rem; color:var(--cs-text-muted); white-space:nowrap; }
.sticky-accepted { color:#22c55e; font-weight:700; text-transform:uppercase; font-size:0.72rem; letter-spacing:0.05em; }

/* ===== EXIT POPUP ===== */
.popup-overlay {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,0.7); backdrop-filter:blur(4px);
  align-items:center; justify-content:center; padding:16px;
}
.popup-overlay.active { display:flex; }
.popup-content {
  background:var(--cs-surface); border-radius:16px;
  padding:32px 28px; text-align:center; max-width:380px;
  width:100%; position:relative;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.popup-close {
  position:absolute; top:12px; right:16px; background:none;
  border:none; color:var(--cs-text-muted); font-size:1.8rem;
  cursor:pointer; line-height:1;
}
.popup-title { font-size:1.3rem; margin-bottom:12px; color:var(--cs-text); }
.popup-text { color:var(--cs-text-muted); margin-bottom:16px; font-size:0.95rem; }
.popup-bonus {
  font-family:var(--cs-font-heading); font-weight:800;
  font-size:1.6rem; color:var(--cs-primary); margin-bottom:20px;
  text-shadow:0 0 20px color-mix(in srgb, var(--cs-primary) 30%, transparent);
}
.popup-cta-btn { width:100%; text-align:center; display:block; }

/* ===== FOOTER ===== */
.site-footer {
  width:100%; background:var(--cs-surface);
  padding:40px 0; border-top:1px solid rgba(255,255,255,0.08);
  margin-bottom:60px; /* space for sticky bar */
}
.footer-inner { max-width:776px; margin:0 auto; padding:0 16px; text-align:center; }
.footer-logo {
  font-family:var(--cs-font-heading); font-weight:800;
  font-size:1.4rem; color:var(--cs-text); margin-bottom:16px;
}
.footer-disclaimer { color:var(--cs-text-muted); font-size:0.8rem; line-height:1.6; }
.footer-disclaimer p { margin-bottom:8px; }
.footer-links { margin-top:16px; }
.age-warning {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:2px solid var(--cs-primary); color:var(--cs-primary);
  font-weight:800; font-size:0.85rem;
}

/* ===== HERO LOGO ===== */
.hero-logo {
  max-width:340px; height:auto; display:inline-block;
  filter:drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

/* ===== AUTHOR BOX ===== */
.author-section { padding:40px 16px; background:var(--cs-bg); }
.author-box {
  display:flex; gap:20px; align-items:flex-start;
  padding:24px; background:var(--cs-surface);
  border-radius:12px; border:1px solid rgba(255,255,255,0.06);
}
.author-photo {
  width:72px !important; height:72px !important; border-radius:50%;
  object-fit:cover; flex-shrink:0;
  border:2px solid rgba(255,255,255,0.1);
}
.author-info { flex:1; min-width:0; }
.author-name {
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap; margin-bottom:8px;
  font-family:var(--cs-font-heading); font-weight:700;
  font-size:1.05rem; color:var(--cs-text);
}
.author-title-badge {
  display:inline-block; padding:2px 10px;
  background:linear-gradient(135deg, var(--cs-primary), var(--cs-secondary));
  color:#fff; font-size:0.7rem; font-weight:700;
  border-radius:4px; text-transform:uppercase;
  letter-spacing:0.05em;
}
.author-bio { color:var(--cs-text-muted); font-size:0.88rem; line-height:1.6; margin-bottom:10px; }
.author-bio a { color:var(--cs-primary); text-decoration:underline; }
.author-social { display:flex; gap:12px; }
.author-social a {
  color:var(--cs-text-muted); transition:color .2s;
  display:flex; align-items:center;
}
.author-social a:hover { color:var(--cs-primary); }

/* ===== COMPLIANCE ROW ===== */
.compliance-row {
  display:flex; align-items:center; justify-content:center;
  gap:20px; flex-wrap:wrap; margin:20px 0;
}
.compliance-row img { height:30px !important; width:auto !important; max-width:180px; opacity:0.7; transition:opacity .2s; display:inline-block !important; }
.compliance-row a:hover img { opacity:1; }

/* ===== TRUSTPILOT BUTTON ===== */
.trustpilot-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 20px; background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1); border-radius:8px;
  color:var(--cs-text-muted); font-size:0.85rem;
  transition:background .2s, border-color .2s;
  margin-top:16px;
}
.trustpilot-btn:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.2); color:var(--cs-text); }
.trustpilot-btn img { height:20px !important; width:auto !important; display:inline-block !important; }

/* ===== FOOTER RATING ===== */
.footer-rating { margin:12px 0; text-align:center; }
.footer-stars { color:#f59e0b; font-size:1.1rem; letter-spacing:2px; }
.footer-score { font-size:0.85rem; color:var(--cs-text); margin-left:6px; font-weight:600; }
.footer-votes { font-size:0.78rem; color:var(--cs-text-muted); margin-left:4px; }

/* ===== TRUSTPILOT SECTION ===== */
.trustpilot-section { padding:20px 16px; background:var(--cs-surface); border-top:1px solid rgba(255,255,255,0.06); border-bottom:1px solid rgba(255,255,255,0.06); }
.tp-rating-display { margin-bottom:12px; display:flex; align-items:center; justify-content:center; gap:8px; flex-wrap:wrap; }
.tp-label { font-family:var(--cs-font-heading); font-weight:700; font-size:1.1rem; color:var(--cs-text); }
.tp-stars { color:#00b67a; font-size:1.3rem; letter-spacing:2px; }
.tp-score { font-size:0.9rem; color:var(--cs-text); font-weight:600; }
.tp-info { font-size:0.85rem; color:var(--cs-text-muted); }
.tp-info strong { color:var(--cs-text); }

/* ===== ANIMATIONS ===== */
@keyframes cta-pulse {
  0%, 100% { box-shadow:0 4px 20px rgba(0,0,0,0.3), 0 0 30px color-mix(in srgb, var(--cs-primary) 25%, transparent); }
  50% { box-shadow:0 4px 20px rgba(0,0,0,0.3), 0 0 50px color-mix(in srgb, var(--cs-primary) 40%, transparent); }
}
@keyframes shimmer { 0%{left:-100%} 100%{left:200%} }
@keyframes pulse-glow {
  0%, 100% { opacity:1; box-shadow:0 0 8px #22c55e88; }
  50% { opacity:0.6; box-shadow:0 0 4px #22c55e44; }
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px) {
  .hero-section { min-height:auto; padding:20px 12px 30px; }
  .hero-subtitle { margin-bottom:16px; }
  .demo-container { margin-bottom:16px; }
  .hero-cta-overlay { gap:8px; padding:12px; }
  .cta-primary { padding:11px 28px; font-size:1rem; }
  .cta-secondary { padding:9px 24px; font-size:0.88rem; }
  .social-proof { margin-top:12px; gap:6px; }
  .badge { font-size:0.72rem; padding:5px 10px; }
}
@media (max-width:480px) {
  .sticky-country { display:none; }
  .hero-section { padding:16px 12px 24px; }
  .hero-logo { max-width:240px; }
}
@media (max-width:600px) {
  .author-box { flex-direction:column; align-items:center; text-align:center; }
  .author-name { justify-content:center; }
  .author-social { justify-content:center; }
  .compliance-row { gap:12px; }
  .compliance-row img { height:24px; }
}
@media (min-width:768px) {
  .hero-section { padding:40px 24px 120px; }
  .game-info-grid { grid-template-columns:repeat(2, 1fr); }
  .hero-logo { max-width:400px; }
}

/* ===== LEGAL PAGE ===== */
.legal-page {
  max-width:800px; margin:0 auto;
  padding:60px 20px 80px;
  min-height:70vh;
}
.legal-page h1 {
  font-family:var(--cs-font-heading); font-weight:800;
  font-size:clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom:32px; color:var(--cs-text);
  letter-spacing:-0.02em;
}
.legal-content h2 {
  font-family:var(--cs-font-heading); font-weight:700;
  font-size:1.15rem; margin:28px 0 12px;
  color:var(--cs-text); letter-spacing:-0.01em;
}
.legal-content p {
  margin-bottom:14px; line-height:1.7;
  color:var(--cs-text-muted); font-size:0.92rem;
}
.legal-content strong { color:var(--cs-text); }
.legal-content a { color:var(--cs-primary); text-decoration:underline; }
.legal-content a:hover { color:var(--cs-secondary); }
/* ===== WPFORMS DARK THEME ===== */
.legal-page .wpforms-container {
  max-width:600px;
  --wpforms-field-background-color: var(--cs-surface) !important;
  --wpforms-field-border-color: rgba(255,255,255,0.15) !important;
  --wpforms-field-text-color: var(--cs-text) !important;
  --wpforms-label-color: var(--cs-text) !important;
  --wpforms-label-sublabel-color: var(--cs-text-muted) !important;
  --wpforms-label-error-color: #ff4444 !important;
  --wpforms-button-background-color: var(--cs-primary) !important;
  --wpforms-button-text-color: #fff !important;
  --wpforms-button-border-color: var(--cs-primary) !important;
}
.legal-page .wpforms-field-label { color:var(--cs-text) !important; }
.legal-page .wpforms-required-label { color:var(--cs-primary) !important; }
.legal-page .wpforms-field input,
.legal-page .wpforms-field textarea {
  background:var(--cs-surface) !important; color:var(--cs-text) !important;
  border:1px solid rgba(255,255,255,0.15) !important;
}
.legal-page .wpforms-field input:focus,
.legal-page .wpforms-field textarea:focus {
  border-color:var(--cs-primary) !important; outline:none;
}
.legal-page .wpforms-submit-container button {
  background:var(--cs-primary) !important; color:#fff !important; border:none !important;
  padding:12px 32px; border-radius:6px; cursor:pointer; font-size:1rem;
}
.legal-page .wpforms-submit-container button:hover { opacity:0.9; }
.legal-page .wpforms-confirmation-container-full { color:var(--cs-text) !important; }
.legal-updated {
  margin-top:40px; padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.08);
  font-size:0.78rem; color:var(--cs-text-muted); opacity:0.6;
}

/* ===== FOOTER LEGAL LINKS ===== */
.footer-legal-links {
  display:flex; justify-content:center; align-items:center;
  gap:8px; margin:16px 0; flex-wrap:wrap;
}
.footer-legal-links a {
  font-size:0.78rem; color:var(--cs-text-muted);
  text-decoration:none; transition:color .2s;
}
.footer-legal-links a:hover { color:var(--cs-primary); text-decoration:underline; }
.footer-legal-links .legal-sep {
  color:var(--cs-text-muted); opacity:0.35; font-size:0.72rem;
}

/* ===== TRUSTPILOT REVIEWS ===== */
.reviews-section {
  padding:56px 16px;
  background:linear-gradient(165deg, #00251a 0%, #001a12 40%, var(--cs-bg) 100%);
  border-top:3px solid #00b67a;
  border-bottom:1px solid rgba(0,182,122,0.15);
}
.reviews-section .content-wrap { text-align:center; }
.reviews-tp-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:#00b67a; color:#fff;
  padding:6px 16px; border-radius:20px;
  font-size:0.82rem; font-weight:700;
  letter-spacing:0.03em; text-transform:uppercase;
  margin-bottom:16px;
}
.reviews-stars-row {
  display:flex; justify-content:center; gap:4px;
  margin-bottom:8px;
}
.tp-star-box {
  display:inline-flex; align-items:center; justify-content:center;
  width:28px; height:28px;
  background:#00b67a; color:#fff;
  font-size:1rem; line-height:1;
  clip-path:polygon(0 0,100% 0,100% 100%,0 100%);
}
.reviews-rated {
  font-size:0.95rem; color:rgba(255,255,255,0.8);
  margin-bottom:28px;
}
.reviews-rated strong { color:#fff; }
.reviews-grid {
  display:grid; grid-template-columns:repeat(3, 1fr);
  gap:16px; max-width:900px; margin:0 auto 28px;
}
.review-card {
  background:rgba(0,182,122,0.06);
  border:1px solid rgba(0,182,122,0.18);
  border-radius:10px; padding:20px 18px;
  display:flex; flex-direction:column; gap:10px;
  text-align:left;
}
.review-stars { display:flex; gap:2px; }
.review-stars .tp-star {
  color:#00b67a; font-size:1.1rem; line-height:1;
}
.review-text {
  font-size:0.88rem; line-height:1.6;
  color:rgba(255,255,255,0.7); font-style:italic; flex:1;
}
.review-author {
  font-size:0.78rem; font-weight:600; color:#fff; opacity:0.8;
}
.reviews-cta {
  display:inline-flex; align-items:center; gap:6px;
  margin:0 auto; font-size:0.88rem; color:#fff;
  text-decoration:none; padding:10px 24px;
  background:rgba(0,182,122,0.12);
  border:1px solid rgba(0,182,122,0.35); border-radius:8px;
  transition:background .2s, border-color .2s;
}
.reviews-cta:hover {
  background:rgba(0,182,122,0.22);
  border-color:#00b67a; color:#fff;
}
@media (max-width:768px) {
  .reviews-grid { grid-template-columns:1fr; max-width:400px; }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding:48px 16px;
}
.faq-section .section-heading {
  text-align:center; margin-bottom:32px;
}
.faq-list {
  max-width:780px; margin:0 auto;
  display:flex; flex-direction:column; gap:8px;
}
.faq-item {
  background:var(--cs-surface);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:10px; overflow:hidden;
}
.faq-question {
  width:100%; padding:18px 20px;
  background:none; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  font-size:0.95rem; font-weight:600;
  color:var(--cs-text); text-align:left;
  font-family:inherit; line-height:1.4;
  transition:color .2s;
}
.faq-question:hover { color:var(--cs-primary); }
.faq-question .faq-icon {
  flex-shrink:0; width:20px; height:20px;
  transition:transform .3s;
}
.faq-item.active .faq-question .faq-icon {
  transform:rotate(45deg);
}
.faq-answer {
  max-height:0; overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
}
.faq-item.active .faq-answer {
  max-height:400px;
}
.faq-answer-inner {
  padding:0 20px 18px;
  font-size:0.88rem; line-height:1.7;
  color:var(--cs-text-muted);
}
