/* ============================================================
   LEGIT INVESTMENT GUIDE — Main Stylesheet
   Design System: Refined Trust / Financial Authority
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --white: #FFFFFF;
  --off-white: #F8F9FB;
  --light-gray: #EFF1F5;
  --mid-gray: #D1D5DB;
  --text-muted: #8A92A3;
  --text-body: #3D4451;
  --text-dark: #111827;

  --violet: #6C3FC5;
  --violet-light: #8B5CF6;
  --violet-pale: #EDE9FE;
  --violet-dark: #4C1D95;

  --gold: #C9A84C;
  --gold-light: #F5E2A3;
  --green-trust: #16A34A;
  --green-pale: #DCFCE7;
  --red-danger: #DC2626;
  --red-pale: #FEE2E2;
  --amber: #D97706;
  --amber-pale: #FEF3C7;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-violet: 0 8px 30px rgba(108,63,197,0.20);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --nav-h: 72px;
  --max-w: 1200px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, button, select { font-family: inherit; }

/* ── Utility ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; }
.lead { font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--violet-pale);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: var(--shadow-violet);
}
.btn-primary:hover {
  background: var(--violet-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(108,63,197,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}
.btn-outline:hover {
  background: var(--violet);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--off-white);
  color: var(--text-dark);
}
.btn-ghost:hover { background: var(--light-gray); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E8C24F);
  color: #fff;
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(201,168,76,0.45); }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1rem;
}
.nav-logo span { color: var(--violet); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--violet);
  background: var(--violet-pale);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--light-gray);
  padding: 20px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 6px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
#mobile-nav a:hover { background: var(--violet-pale); color: var(--violet); }
#mobile-nav .mob-cta { margin-top: 12px; }

/* ── Hero ── */
.hero {
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 80px;
  background: linear-gradient(160deg, #FAFBFF 0%, #F3EFFE 50%, #FAFBFF 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,63,197,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green-trust);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
}
.hero-stat span { font-size: 0.82rem; color: var(--text-muted); }
.hero-visual { position: relative; }
.hero-card-stack { position: relative; }
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}
.hero-card-mini {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-card-mini.mini-1 { top: -20px; right: -20px; }
.hero-card-mini.mini-2 { bottom: -20px; left: -20px; }
.mini-row { display: flex; align-items: center; gap: 8px; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--text-dark);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}
.trust-item .ti-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
}

/* ── Section Headings ── */
.section-heading { margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { color: var(--text-muted); font-size: 1.05rem; max-width: 580px; }
.section-heading.text-center p { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--violet-pale);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── Platform Cards ── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.platform-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--violet-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.platform-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.platform-card:hover::before { transform: scaleX(1); }
.platform-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; gap: 12px; }
.platform-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.platform-meta h3 { font-size: 1.1rem; margin-bottom: 2px; }
.platform-meta .platform-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.trust-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.trust-score .score-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-trust);
  line-height: 1;
}
.trust-score .score-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
}
.star-row { display: flex; gap: 2px; margin-bottom: 12px; }
.star-row .star { color: var(--gold); font-size: 0.9rem; }
.star-row .star.empty { color: var(--mid-gray); }
.platform-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.platform-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--off-white);
  color: var(--text-body);
  border: 1px solid var(--light-gray);
}
.tag.green { background: var(--green-pale); color: var(--green-trust); border-color: transparent; }
.tag.violet { background: var(--violet-pale); color: var(--violet); border-color: transparent; }
.tag.amber { background: var(--amber-pale); color: var(--amber); border-color: transparent; }
.platform-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.platform-min { font-size: 0.82rem; color: var(--text-muted); }
.platform-min strong { color: var(--text-dark); }
.verified-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-trust);
  background: var(--green-pale);
  padding: 5px 10px;
  border-radius: var(--radius-full);
}

/* ── Guides Section ── */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.guide-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.guide-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}
.guide-body { padding: 22px; }
.guide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.guide-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--violet);
}
.guide-read-time { font-size: 0.78rem; color: var(--text-muted); }
.guide-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.4; }
.guide-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.guide-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.guide-link:hover { gap: 10px; }

/* ── Scam Checker ── */
.scam-checker-section {
  background: linear-gradient(135deg, var(--violet-dark) 0%, var(--violet) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.scam-checker-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.checker-box {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.checker-box h2 { color: white; margin-bottom: 12px; }
.checker-box p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.checker-form {
  display: flex;
  gap: 10px;
  background: white;
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.checker-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
}
.checker-form input::placeholder { color: var(--text-muted); }
#checker-result {
  margin-top: 24px;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.95rem;
  display: none;
}
#checker-result.show { display: block; }
#checker-result.legit { background: rgba(22,163,74,0.2); color: #BBFAC0; border: 1px solid rgba(22,163,74,0.3); }
#checker-result.warning { background: rgba(217,119,6,0.2); color: #FDE68A; border: 1px solid rgba(217,119,6,0.3); }
#checker-result.unknown { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); }

/* ── Forum / Reviews ── */
.forum-section { background: var(--off-white); }
.forum-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.review-form-box {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 36px;
}
.review-form-box h3 { margin-bottom: 20px; font-size: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: white;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(108,63,197,0.12);
}
.star-picker { display: flex; gap: 6px; }
.star-picker .star-btn {
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--mid-gray);
  background: none;
  border: none;
  transition: var(--transition);
  line-height: 1;
}
.star-picker .star-btn.active,
.star-picker .star-btn:hover { color: var(--gold); }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-item {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: var(--transition);
}
.review-item:hover { box-shadow: var(--shadow-sm); }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; gap: 12px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); }
.reviewer-meta { font-size: 0.78rem; color: var(--text-muted); }
.review-platform-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--violet-pale);
  color: var(--violet);
}
.review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
.review-stars .star { font-size: 0.85rem; color: var(--gold); }
.review-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; }
.review-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--light-gray);
}
.helpful-btn {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.helpful-btn:hover { border-color: var(--violet); color: var(--violet); background: var(--violet-pale); }

/* ── Newsletter ── */
.newsletter-section {
  background: linear-gradient(135deg, #F3EFFE 0%, #EDE9FE 100%);
  padding: 72px 0;
}
.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { margin-bottom: 12px; }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 32px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  background: white;
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; }
#newsletter-success {
  display: none;
  background: var(--green-pale);
  color: var(--green-trust);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  margin-top: 16px;
}
#newsletter-success.show { display: block; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--violet-pale);
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars .star { color: var(--gold); font-size: 0.9rem; }
.testimonial-text { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.t-location { font-size: 0.78rem; color: var(--text-muted); }

/* ── About / Team ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.af-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--violet-pale);
}
.af-icon.gold { background: var(--gold-light); }
.af-icon.green { background: var(--green-pale); }
.af-body h4 { margin-bottom: 4px; font-size: 0.98rem; }
.af-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Stats Strip ── */
.stats-strip {
  background: var(--off-white);
  padding: 52px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-box strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--violet);
  display: block;
  margin-bottom: 4px;
}
.stat-box span { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* ── Risk Disclaimer Banner ── */
.risk-banner {
  background: var(--amber-pale);
  border-top: 2px solid var(--amber);
  padding: 14px 0;
}
.risk-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: #78350F;
}
.risk-banner strong { font-weight: 700; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-btn {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: white;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-tooltip {
  background: var(--text-dark);
  color: white;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── Footer ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}
.social-icon:hover { background: var(--violet); color: white; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: white; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.modal-close:hover { background: var(--light-gray); color: var(--text-dark); }

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--text-dark);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  z-index: 3000;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  max-width: 280px;
}
#toast.show { transform: translateY(0); opacity: 1; }

/* ── Page-specific ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: 52px;
  background: linear-gradient(160deg, #FAFBFF 0%, #F3EFFE 100%);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  justify-content: center;
}
.breadcrumb a { color: var(--violet); }
.breadcrumb span { color: var(--mid-gray); }

/* ── Pros/Cons ── */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pros, .cons {
  border-radius: var(--radius-md);
  padding: 20px;
}
.pros { background: var(--green-pale); }
.cons { background: var(--red-pale); }
.pros h4 { color: var(--green-trust); margin-bottom: 12px; }
.cons h4 { color: var(--red-danger); margin-bottom: 12px; }
.pros li, .cons li {
  font-size: 0.88rem;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
  list-style: none;
  line-height: 1.5;
}
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--green-trust); font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: var(--red-danger); font-weight: 700; }

/* ── Article ── */
.article-content { max-width: 740px; }
.article-content h2 { font-size: 1.7rem; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.article-content p { margin-bottom: 18px; line-height: 1.8; }
.article-content ul, .article-content ol {
  padding-left: 22px;
  margin-bottom: 18px;
}
.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content blockquote {
  border-left: 4px solid var(--violet);
  padding: 16px 20px;
  background: var(--violet-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--violet-dark);
}
.info-box {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 24px 0;
}
.info-box.warning { background: var(--amber-pale); border-color: rgba(217,119,6,0.3); }
.info-box.success { background: var(--green-pale); border-color: rgba(22,163,74,0.3); }

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 56px 0; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 52px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .platforms-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .checker-form { flex-direction: column; padding: 12px; border-radius: var(--radius-md); }
  .newsletter-form { flex-direction: column; padding: 12px; border-radius: var(--radius-md); }
  .checker-form input, .newsletter-form input { padding: 10px 4px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .trust-bar-inner { justify-content: flex-start; gap: 20px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr; }
}