@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --blue: #1A4CC8;
  --blue-dark: #1540A8;
  --blue-darkest: #0A2A6B;
  --red: #E84118;
  --amber: #FFB800;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Newsreader', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--gray-900); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* Utility */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1rem; }
.container-xs { max-width: 768px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== TRICOLOR BAR ===== */
.tricolor { display: flex; flex-direction: column; width: 100%; }
.tricolor > div { width: 100%; }
.tricolor .tc-blue { background: var(--blue); }
.tricolor .tc-red { background: var(--red); }
.tricolor .tc-amber { background: var(--amber); }
.tricolor-v { display: flex; flex-direction: row; flex-shrink: 0; border-radius: 9999px; overflow: hidden; }
.tricolor-v > div { flex: 1; }
.tricolor-v .tc-blue { background: var(--blue); }
.tricolor-v .tc-red { background: var(--red); }
.tricolor-v .tc-amber { background: var(--amber); }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--gray-100); transition: box-shadow .3s; }
.nav.scrolled { box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: none; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-600); transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-ctas { display: none; align-items: center; gap: .75rem; }
.nav-menu-btn { display: flex; padding: .5rem; color: var(--gray-700); }
.nav-menu-btn svg { width: 22px; height: 22px; }
.mobile-menu { display: none; background: #fff; border-bottom: 1px solid var(--gray-100); padding: 0 1rem 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .5rem 0; font-size: 14px; font-weight: 500; color: var(--gray-700); }
.mobile-menu .mobile-ctas { display: flex; flex-direction: column; gap: .5rem; padding-top: .75rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-ctas { display: flex; }
  .nav-menu-btn { display: none; }
}

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-amber { background: var(--amber); color: var(--gray-900); }
.btn-amber:hover { background: #F0A800; }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: rgba(26,76,200,.05); }
.btn-outline-gray { border: 1px solid var(--gray-200); color: var(--gray-700); background: transparent; }
.btn-outline-gray:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: .5rem 1rem; font-size: 13px; }

/* ===== TRUST BAR ===== */
.trust-grid { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin-bottom: 0.25rem; }
.trust-item { display: flex; align-items: center; gap: .375rem; font-size: 11px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.02em; }
.trust-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ===== HERO ===== */
.hero { padding: 1rem 0 3rem; background: #fff; margin-top: 64px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.hero-text { display: flex; flex-direction: column; gap: 0.75rem; }
.hero h1 { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; line-height: 1.12; letter-spacing: -.01em; color: var(--gray-900); }
.hero-sub { font-size: 1.125rem; color: var(--gray-500); line-height: 1.65; max-width: 32rem; margin-top: 1rem; }
.hero-sub p { 
  margin-bottom: .25rem; 
  background: linear-gradient(110deg, var(--gray-500) 45%, var(--gray-900) 50%, var(--gray-500) 55%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: reading-sheen 5s linear infinite;
}
.hero-sub p:nth-child(2) { animation-delay: 0.5s; }
.hero-sub p:nth-child(3) { animation-delay: 1s; }
.hero-sub p:nth-child(4) { animation-delay: 1.5s; }

@keyframes reading-sheen {
  0% { background-position: 150% 0; }
  100% { background-position: -50% 0; }
}
.hero-ctas { display: flex; flex-direction: column; gap: .75rem; margin-top: 0.75rem; }
.hero-note { font-size: 12px; color: var(--gray-400); }
.hero-phone-label { font-size: 14px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; text-align: center; }

@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .hero-ctas { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero h1 { font-size: 3.25rem; }
  .hero { padding: 1rem 0 2rem; }
}

/* ===== WHATSAPP PHONE MOCKUP ===== */
.phone-wrap { overflow: hidden; height: 460px; width: 100%; display: flex; justify-content: center; align-items: flex-start; }
.phone { width: 360px; margin: 0 auto; background: #1C1C1E; border-radius: 54px; padding: 12px 4px; box-shadow: 0 0 0 1px #3a3a3c, 0 32px 80px rgba(0,0,0,.45), inset 0 0 0 2px #2c2c2e; position: relative; user-select: none; flex-shrink: 0; }
.phone-btn { position: absolute; background: #3a3a3c; }
.phone-btn-l1 { left: -3px; top: 105px; width: 3px; height: 34px; border-radius: 3px 0 0 3px; }
.phone-btn-l2 { left: -3px; top: 152px; width: 3px; height: 64px; border-radius: 3px 0 0 3px; }
.phone-btn-l3 { left: -3px; top: 228px; width: 3px; height: 64px; border-radius: 3px 0 0 3px; }
.phone-btn-r { right: -3px; top: 170px; width: 3px; height: 82px; border-radius: 0 3px 3px 0; }
.phone-screen { border-radius: 44px; overflow: hidden; display: flex; flex-direction: column; height: 580px; }
.wa-header { background: #075E54; padding: 13px 18px 4px; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.wa-header-time { color: #fff; font-size: 12px; font-weight: 700; }
.wa-notch { background: #1C1C1E; border-radius: 20px; width: 96px; height: 26px; display: flex; align-items: center; justify-content: center; }
.wa-notch-dot { width: 10px; height: 10px; border-radius: 50%; background: #111; }
.wa-contact { background: #075E54; padding: 8px 14px 12px; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.wa-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wa-avatar img { width: 36px; height: 36px; object-fit: contain; }
.wa-name { color: #fff; font-weight: 700; font-size: 14px; }
.wa-online { color: rgba(255,255,255,.65); font-size: 11px; margin-top: 1px; }
.wa-chat { background: #E5DDD5; flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.wa-date { text-align: center; }
.wa-date span { background: rgba(255,255,255,.7); border-radius: 10px; padding: 3px 10px; font-size: 10px; color: #666; }
.wa-bubble-out { display: flex; justify-content: flex-end; transition: opacity .6s ease; }
.wa-bubble-out-inner { background: #DCF8C6; border-radius: 14px 0 14px 14px; padding: 9px 12px; max-width: 80%; font-size: 13px; color: #1a1a1a; line-height: 1.55; box-shadow: 0 1px 3px rgba(0,0,0,.1); min-height: 38px; }
.wa-bubble-in { display: flex; align-items: flex-end; gap: 7px; transition: opacity .6s ease; }
.wa-bubble-in-avatar { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; background: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.wa-bubble-in-avatar img { width: 22px; height: 22px; object-fit: contain; }
.wa-bubble-in-inner { background: #fff; border-radius: 0 14px 14px 14px; padding: 9px 12px; max-width: 78%; font-size: 13px; color: #1a1a1a; line-height: 1.55; box-shadow: 0 1px 3px rgba(0,0,0,.1); }
.wa-bubble-in-name { color: var(--blue); font-weight: 700; font-size: 11px; margin-bottom: 3px; }
.wa-time-row { display: flex; align-items: center; justify-content: flex-end; gap: 3px; margin-top: 3px; }
.wa-time { font-size: 10px; color: #999; }
.wa-input-bar { background: #F0F0F0; padding: 8px 10px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.wa-input { flex: 1; background: #fff; border-radius: 22px; padding: 8px 14px; font-size: 13px; color: #aaa; border: none; }
.wa-send { width: 38px; height: 38px; border-radius: 50%; background: #075E54; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-home-indicator { background: #F0F0F0; padding-bottom: 8px; padding-top: 4px; display: flex; justify-content: center; flex-shrink: 0; }
.wa-home-indicator div { width: 110px; height: 4px; border-radius: 2px; background: #bbb; }
.typing-dots { display: flex; gap: 4px; align-items: center; }
.typing-dots span { width: 7px; height: 7px; border-radius: 50%; background: #aaa; animation: bounce 1.1s infinite; }
.typing-dots span:nth-child(2) { animation-delay: .22s; }
.typing-dots span:nth-child(3) { animation-delay: .44s; }
.cursor-blink { display: inline-block; width: 2px; height: 13px; background: #555; margin-left: 2px; vertical-align: middle; animation: blink .8s step-end infinite; }

@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ===== PRODUCTS / WHAT WE ADVISE ===== */
.section { padding: 3rem 0; }
.section-gray { background: var(--gray-50); }
.section-white { background: #fff; }
.section-dark { background: #0f172a; color: #fff; position: relative; overflow: hidden; }
.section-blue { background: var(--blue); color: #fff; }

.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; color: var(--blue); }
.section-label-red { color: var(--red); }
.section-label-gray { color: var(--gray-400); }
.section-label-white { color: rgba(255,255,255,.5); }
.section-title { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; margin-bottom: .75rem; }
.section-subtitle { color: var(--gray-500); margin-top: .75rem; max-width: 32rem; margin-left: auto; margin-right: auto; }
.section-subtitle-lg { font-size: 1.125rem; }

@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 48rem; margin: 0 auto; }
.product-card { display: flex; flex-direction: column; align-items: center; gap: .75rem; padding: 1.5rem; background: #fff; border-radius: .75rem; border: 1px solid var(--gray-100); transition: all .2s; cursor: default; }
.product-card:hover { border-color: rgba(26,76,200,.3); box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.product-card .icon { color: var(--blue); transition: color .2s; }
.product-card:hover .icon { color: var(--red); }
.product-card p { font-size: 14px; font-weight: 600; text-align: center; color: var(--gray-800); line-height: 1.3; }

@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== SHIELD ===== */
.shield-cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 56rem; margin: 0 auto 3rem; }
.shield-card { border-radius: .75rem; padding: 1.5rem; }
.shield-card-danger { background: #fef2f2; border: 1px solid #fee2e2; }
.shield-card-safe { background: rgba(26,76,200,.05); border: 1px solid rgba(26,76,200,.2); }
.shield-card .card-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.shield-card-danger h3 { font-weight: 600; color: #991b1b; }
.shield-card-danger p { color: #b91c1c; font-size: 14px; line-height: 1.65; }
.shield-card-safe h3 { font-weight: 600; color: var(--blue); }
.shield-card-safe p { color: rgba(26,76,200,.8); font-size: 14px; line-height: 1.65; }
.optimize-box { max-width: 40rem; margin: 0 auto; background: #fff; border-radius: .75rem; border: 1px solid var(--gray-200); padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.optimize-grid { display: grid; grid-template-columns: 1fr; gap: .75rem; }
.optimize-item { display: flex; align-items: center; gap: .75rem; }
.optimize-check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(26,76,200,.1); display: flex; align-items: center; justify-content: center; }
.optimize-item span { font-size: 14px; font-weight: 500; }

@media (min-width: 768px) {
  .shield-cards { grid-template-columns: 1fr 1fr; }
  .optimize-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== FEAR SECTION (Dark) ===== */
.fear-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .375rem .75rem; border-radius: 9999px; background: rgba(127,29,29,.3); color: #f87171; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1.25rem; }
.fear-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.fear-card { border: 1px solid rgba(127,29,29,.3); border-radius: .75rem; padding: 1.75rem; background: rgba(127,29,29,.1); transition: border-color .2s; }
.fear-card:hover { border-color: rgba(185,28,28,.4); }
.fear-num { width: 32px; height: 32px; border-radius: 50%; background: rgba(127,29,29,.3); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.fear-num span { color: #f87171; font-weight: 700; font-size: 14px; }
.fear-card h3 { color: #fff; font-family: var(--font-serif); font-weight: 600; font-size: 1.125rem; margin-bottom: .75rem; }
.fear-card p { color: var(--gray-400); font-size: 14px; line-height: 1.65; }
.fear-bg { position: absolute; inset: 0; pointer-events: none; opacity: .03; background-repeat: repeat; background-size: 80px; }

@media (min-width: 768px) { .fear-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== BANK TRUTHS ===== */
.bomb-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.bomb-card { background: #fff; border-radius: .75rem; border: 1px solid var(--gray-100); padding: 1.75rem; border-left: 5px solid var(--red); }
.bomb-tag { display: inline-block; background: #FFF2EC; color: #B84500; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .25rem .75rem; border-radius: 9999px; margin-bottom: 1rem; }
.bomb-card h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1.125rem; margin-bottom: .75rem; }
.bomb-card p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

@media (min-width: 768px) { .bomb-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2.5rem; }
.step-card { background: #fff; border-radius: .75rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,.05); }
.step-num { font-size: 12px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.step-card h3 { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; margin-bottom: .75rem; line-height: 1.4; }
.step-card p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }
.commission-note { max-width: 40rem; margin: 0 auto; border: 1px solid var(--gray-200); border-radius: .75rem; padding: 1.25rem; background: #fff; }
.commission-note p { color: var(--gray-500); font-size: 14px; text-align: center; font-style: italic; }

@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonial-box { background: #fff; border-radius: 1rem; border: 1px solid var(--gray-100); padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,.05); min-height: 240px; }
.testimonial-box .big-quote { font-size: 3rem; color: var(--gray-200); font-family: var(--font-serif); line-height: 1; margin-bottom: 1rem; }
.testimonial-box blockquote { font-family: var(--font-serif); font-size: 1.125rem; color: var(--gray-800); line-height: 1.65; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.avatar-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avatar-circle span { color: #fff; font-weight: 700; font-size: 14px; }
.avatar-circle-sm { width: 36px; height: 36px; font-size: 12px; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.testimonial-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; transition: all .2s; background: #fff; }
.testimonial-nav button:hover { border-color: var(--blue); color: var(--blue); }
.dots { display: flex; gap: .5rem; }
.dot { height: 8px; border-radius: 9999px; transition: all .3s; cursor: pointer; border: none; padding: 0; }
.dot-active { width: 24px; background: var(--blue); }
.dot-inactive { width: 8px; background: var(--gray-300); }

@media (min-width: 768px) { .testimonial-box { padding: 3rem; } .testimonial-box blockquote { font-size: 1.25rem; } }

/* ===== COMMUNITY REVIEWS ===== */
.community-tabs { display: flex; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.tab-btn { padding: .5rem 1.25rem; border-radius: 9999px; font-size: 14px; font-weight: 600; border: 1px solid var(--gray-200); background: #fff; color: #555; transition: all .2s; }
.tab-btn.active { border-color: var(--blue); background: var(--blue); color: #fff; }
.community-card { background: var(--gray-50); border-radius: .75rem; padding: 1.5rem; border: 1px solid var(--gray-100); margin-bottom: 1rem; }
.community-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.community-avatar span { color: #fff; font-size: 12px; font-weight: 700; }

/* ===== FOUNDER ===== */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.founder-quote { display: flex; gap: 1rem; align-items: flex-start; }
.founder-quote p { color: var(--gray-500); line-height: 1.65; font-style: italic; font-family: var(--font-serif); font-size: 1.125rem; }
.founder-card { background: #fff; border-radius: 1rem; border: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0,0,0,.05); overflow: hidden; }
.founder-img { position: relative; }
.founder-img img { width: 100%; height: 260px; object-fit: cover; object-position: top; filter: contrast(1.05) saturate(0.85); }
.founder-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, rgba(10,42,107,.55) 0%, transparent 100%); }
.founder-img-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 0 1.25rem 1rem; }
.founder-img-text h3 { font-family: var(--font-serif); font-weight: 700; color: #fff; font-size: 1.125rem; line-height: 1.3; }
.founder-img-text p { color: rgba(255,255,255,.7); font-size: 12px; margin-top: 2px; }
.founder-card-body { padding: 1.25rem; }
.founder-card-body .label { font-size: 12px; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .5rem; }
.founder-card-body .desc { font-size: 12px; color: var(--gray-400); line-height: 1.55; }

@media (min-width: 768px) { .founder-grid { grid-template-columns: 3fr 2fr; } }

/* ===== CTA SECTION ===== */
.cta-section { padding: 5rem 0; }
.cta-section h2 { font-family: var(--font-serif); font-size: 1.875rem; font-weight: 700; margin-bottom: 1.25rem; line-height: 1.2; }
.cta-section p { color: rgba(255,255,255,.75); font-size: 1.125rem; margin-bottom: 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
  .cta-section h2 { font-size: 2.25rem; }
}

/* ===== FOOTER ===== */
.footer { background: #111827; color: var(--gray-400); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { background: #fff; display: inline-flex; border-radius: .5rem; padding: .5rem .75rem; margin-bottom: 1rem; }
.footer-logo img { height: 28px; width: auto; }
.footer-desc { font-size: 14px; line-height: 1.65; color: var(--gray-500); }
.footer h4 { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 1rem; }
.footer ul { display: flex; flex-direction: column; gap: .5rem; }
.footer li a { font-size: 14px; transition: color .2s; }
.footer li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--gray-600); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ===== ABOUT PAGE ===== */
.page-header { padding: 4rem 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); margin-top: 64px; }
.page-header h1 { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; }
.page-header p { color: var(--gray-500); font-size: 1.125rem; max-width: 36rem; margin: 0 auto; }
.about-content { max-width: 56rem; margin: 0 auto; padding: 4rem 1rem; }
.about-content .blockquote { display: flex; gap: 1.25rem; align-items: flex-start; }
.about-content .blockquote p { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--gray-600); line-height: 1.65; }
.about-text p { color: var(--gray-500); line-height: 1.65; margin-bottom: 1.25rem; }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1rem; }
.stat-card { border-radius: .75rem; padding: 1.5rem; }
.stat-card .num { font-size: 1.875rem; font-weight: 700; font-family: var(--font-serif); margin-bottom: .5rem; }
.stat-card p { font-size: 14px; color: var(--gray-500); }
.stat-blue { background: rgba(26,76,200,.05); border: 1px solid rgba(26,76,200,.15); }
.stat-blue .num { color: var(--blue); }
.stat-red { background: rgba(232,65,24,.05); border: 1px solid rgba(232,65,24,.15); }
.stat-red .num { color: var(--red); }
.stat-amber { background: rgba(255,184,0,.1); border: 1px solid rgba(255,184,0,.2); }
.stat-amber .num { color: #d97706; }

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .page-header h1 { font-size: 3rem; }
}

/* ===== REVIEWS PAGE ===== */
.review-card { background: #fff; border: 1px solid var(--gray-100); border-radius: .75rem; padding: 1.75rem; box-shadow: 0 1px 3px rgba(0,0,0,.05); margin-bottom: 1.5rem; }
.review-head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.review-head .flex-1 { flex: 1; }
.review-tag { font-size: 12px; font-weight: 600; color: var(--red); background: #FFF2EC; padding: .25rem .5rem; border-radius: 9999px; display: none; }
.review-card p.review-text { color: var(--gray-600); line-height: 1.65; }
.stars { display: flex; gap: 2px; }
.star { color: var(--amber); }

@media (min-width: 640px) { .review-tag { display: inline-block; } }

/* ===== FAQ PAGE ===== */
.faq-item { border: 1px solid var(--gray-200); border-radius: .75rem; overflow: hidden; margin-bottom: 1rem; }
.faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; text-align: left; transition: background .2s; background: #fff; }
.faq-toggle:hover { background: rgba(0,0,0,.02); }
.faq-toggle span { font-weight: 600; padding-right: 1rem; font-size: 14px; }
.faq-toggle svg { flex-shrink: 0; color: var(--gray-400); transition: transform .2s; }
.faq-toggle.open svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.5rem; background: rgba(0,0,0,.01); }
.faq-answer p { color: var(--gray-500); font-size: 14px; line-height: 1.65; }

@media (min-width: 768px) { .faq-toggle span { font-size: 1rem; } }

/* YouTube embeds */
.yt-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.yt-embed { aspect-ratio: 16/9; border-radius: .5rem; overflow: hidden; border: 1px solid var(--gray-200); }
.yt-embed iframe { width: 100%; height: 100%; border: none; }
@media (min-width: 640px) { .yt-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== 404 ===== */
.not-found { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--gray-50); }
.not-found-card { background: #fff; border-radius: 1rem; border: 1px solid var(--gray-200); padding: 2rem; max-width: 28rem; margin: 0 1rem; box-shadow: 0 1px 3px rgba(0,0,0,.05); }

/* ===== RATING DISPLAY ===== */
.rating-display { display: flex; align-items: center; justify-content: center; gap: .5rem; }
