/* ═══════════════════════════════════════════════════════════════
   EKLESIA — Landing Page CSS
═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-card: #1a2235;
  --gold: #c9a84c;
  --gold-light: #e2c476;
  --white: #ffffff;
  --text: #e2e8f0;
  --text-muted: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.08);
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

.landing-body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
}

.land-container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── HEADER ───────────────────────────────────────────────── */
.landing-header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.land-header-inner {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 1rem; padding-bottom: 1rem;
}

.land-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; flex-shrink: 0; }
.land-cross { font-size: 1.4rem; color: var(--gold); }
.land-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #fff; }

.land-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.land-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color .2s; }
.land-nav a:hover, .land-nav a.active { color: var(--gold); }

.land-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.btn-lang { color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none; transition: color .2s; }
.btn-lang:hover { color: var(--gold); }
.btn-reg {
  background: var(--gold); color: #0a0f1e;
  padding: 0.5rem 1.1rem; border-radius: 8px; font-size: 0.82rem;
  font-weight: 700; text-decoration: none; transition: background .2s;
}
.btn-reg:hover { background: var(--gold-light); }

.land-menu-btn { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
.land-mobile-nav { display: none; flex-direction: column; padding: 1rem 1.5rem; gap: 0.75rem; border-top: 1px solid var(--border); }
.land-mobile-nav.open { display: flex; }
.land-mobile-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; }

/* ─── HERO ──────────────────────────────────────────────────── */
.land-hero {
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
              linear-gradient(180deg, #0d1525 0%, #0a0f1e 100%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}

.land-hero-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center;
}

.land-hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 1.5rem;
}

.land-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 1.2rem;
}
.land-h1 span { color: var(--gold); }

.land-hero-sub { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 2rem; max-width: 540px; }

.land-hero-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.land-hero-stat { text-align: center; }
.land-hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); }
.land-hero-stat span { font-size: 0.75rem; color: var(--text-muted); }

/* Login Card */
.land-login-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.land-login-header {
  background: linear-gradient(135deg, #1e1b4b 0%, #1a2235 100%);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.land-login-cross {
  font-size: 2.5rem; color: var(--gold);
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}

.land-login-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: #fff; margin-bottom: 0.25rem;
}
.land-login-header p { color: var(--text-muted); font-size: 0.85rem; }

.land-login-form { padding: 1.5rem; }
.land-login-form .form-group { margin-bottom: 1rem; }
.land-login-form label { font-size: 0.82rem; color: rgba(255,255,255,0.7); display: block; margin-bottom: 0.4rem; font-weight: 500; }
.land-login-form .form-control {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 0.65rem 0.9rem; color: #fff; font-size: 0.9rem;
  transition: border-color .2s;
}
.land-login-form .form-control:focus { outline: none; border-color: var(--gold); }
.land-login-form .form-control::placeholder { color: rgba(255,255,255,0.3); }

.pass-wrap { position: relative; }
.pass-eye {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; font-size: 1rem; opacity: 0.5;
}

.land-login-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex; flex-direction: column; gap: 0.5rem;
}
.land-login-footer a { color: var(--gold); text-decoration: none; }

/* ─── SECTIONS ──────────────────────────────────────────────── */
.land-section { padding: 5rem 0; }

.land-section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  padding: 0.3rem 0.8rem; border-radius: 50px; margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.land-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.2;
}

.land-section-sub {
  color: var(--text-muted); font-size: 1rem; max-width: 600px; margin-bottom: 3rem;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
.land-about { background: rgba(255,255,255,0.02); }
.land-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 2rem; }
.land-about-text p { color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; }
.land-about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.land-about-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
}
.land-about-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.land-about-card h3 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; }
.land-about-card p { color: var(--text-muted); font-size: 0.82rem; }

/* ─── MISSION ────────────────────────────────────────────────── */
.land-mission {
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.land-mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.land-mission-item { text-align: center; padding: 2rem; }
.land-mission-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.land-mission-item h3 { color: var(--gold); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.land-mission-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ─── FEATURES ──────────────────────────────────────────────── */
.land-features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2rem;
}
.land-feature {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.5rem;
  transition: border-color .3s, transform .3s;
}
.land-feature:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.land-feat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.land-feature h3 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.land-feature p { color: var(--text-muted); font-size: 0.82rem; }

/* ─── FOR WHOM ───────────────────────────────────────────────── */
.land-forwhom { background: rgba(255,255,255,0.02); }
.land-roles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.land-role {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; text-align: center;
}
.land-role-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1rem;
}
.land-role h3 { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.land-role ul { list-style: none; text-align: left; }
.land-role ul li { color: var(--text-muted); font-size: 0.83rem; padding: 0.3rem 0; }

/* ─── TUTORIAL ──────────────────────────────────────────────── */
.land-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.land-step {
  display: flex; gap: 2rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.land-step:last-child { border-bottom: none; }
.land-step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0f1e; font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.land-step-content h3 { color: #fff; font-weight: 700; margin-bottom: 0.5rem; }
.land-step-content p { color: var(--text-muted); font-size: 0.9rem; }

.land-advanced-tips { margin-top: 3rem; }
.land-advanced-tips h3 { color: var(--gold); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.5rem; }
.land-tips-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.land-tip {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
}
.land-tip strong { display: block; color: #fff; margin-bottom: 0.5rem; font-size: 0.9rem; }
.land-tip p { color: var(--text-muted); font-size: 0.82rem; }

/* ─── AFRICA ─────────────────────────────────────────────────── */
.land-africa {
  background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
  border-top: 1px solid var(--border);
}
.land-africa-text p { color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; max-width: 820px; }

/* ─── PRICING ────────────────────────────────────────────────── */
.land-pricing-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 2rem;
}
.land-price-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; position: relative;
}
.land-price-featured {
  border-color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), var(--navy-card));
}
.land-price-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0f1e;
  font-size: 0.72rem; font-weight: 800; padding: 0.2rem 0.8rem; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.land-price-header { text-align: center; margin-bottom: 1.5rem; }
.land-price-badge { color: var(--gold); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; }
.land-price-value { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
.land-price-period { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.25rem; }
.land-price-features { list-style: none; margin-bottom: 1.5rem; }
.land-price-features li { color: rgba(255,255,255,0.65); font-size: 0.83rem; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.land-price-note { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 2rem; }
.land-price-note a { color: var(--gold); }

/* ─── CONTACT ────────────────────────────────────────────────── */
.land-contact { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.land-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2rem; }
.land-contact-item { text-align: center; padding: 2rem; background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.land-contact-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.land-contact-item h3 { color: var(--gold); margin-bottom: 0.5rem; font-size: 0.9rem; font-weight: 700; }
.land-contact-item a, .land-contact-item span { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.land-footer {
  background: #07090f;
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}
.land-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.land-footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; }
.land-footer-links h4 { color: rgba(255,255,255,0.4); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.land-footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.land-footer-links a { color: rgba(255,255,255,0.5); font-size: 0.85rem; text-decoration: none; transition: color .2s; }
.land-footer-links a:hover { color: var(--gold); }
.land-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.25);
}

/* ─── COOKIE NOTICE ──────────────────────────────────────────── */
.cookie-notice {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  width: min(560px, 95vw);
  background: #1a2235; border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  z-index: 9999; box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  align-items: center; gap: 1rem;
}
.cookie-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-inner p { color: rgba(255,255,255,0.65); font-size: 0.83rem; flex: 1; min-width: 200px; }
.cookie-inner p a { color: var(--gold); }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ─── AUTH PAGE (existente, melhorado) ───────────────────────── */
.auth-page { min-height: 100vh; display: flex; }
.auth-brand {
  width: 380px; flex-shrink: 0;
  background: linear-gradient(160deg,#1e1b4b 0%,#0f172a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem 2rem; position: relative; overflow: hidden;
}
.auth-brand::before {
  content: '✝'; font-size: 28rem; color: rgba(255,255,255,0.018);
  position: absolute; top: -60px; left: -60px; pointer-events: none;
}
.brand-cross {
  width: 60px; height: 60px; position: relative; z-index: 1;
  background: rgba(201,168,76,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.brand-cross::before { content: '✝'; font-size: 2rem; color: #c9a84c; }
.brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700; color: #fff;
  margin-top: 1rem; position: relative; z-index: 1;
}
.brand-tagline { color: rgba(255,255,255,0.45); font-size: 0.85rem; text-align: center; margin-top: 0.5rem; position: relative; z-index: 1; }
.brand-trial-badge {
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80; font-size: 0.78rem; padding: 0.4rem 0.8rem; border-radius: 50px;
  margin-top: 1.5rem; position: relative; z-index: 1;
  display: flex; align-items: center; gap: 0.4rem; text-align: center;
}
.brand-lang-switch { position: relative; z-index: 1; margin-top: 1rem; }
.auth-form-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem; background: #0f172a; }
.auth-card {
  width: 100%; max-width: 480px; background: #1a2235;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2.5rem;
}
.auth-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: #fff; margin-bottom: 0.3rem;
}
.auth-card .subtitle { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin-bottom: 1.5rem; }
.req { color: #ef4444; }

/* ─── BUTTONS (landing) ──────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.6rem 1.2rem; border-radius: 8px; font-size: 0.88rem; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: all .2s; }
.btn-full { width: 100%; }
.btn-lg { padding: 0.85rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.78rem; }
.btn-primary { background: var(--gold); color: #0a0f1e; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-danger { background: #ef4444; color: #fff; }

/* ─── ALERTS ─────────────────────────────────────────────────── */
.alert { padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 1rem; }
.alert-danger { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.alert-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }
.alert-info { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.3); color: #93c5fd; }
.alert-warning { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.3); color: #fcd34d; }

/* ─── FORMS ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; font-weight: 500; }
.form-control {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 0.65rem 0.9rem; color: #fff; font-size: 0.9rem;
}
.form-control:focus { outline: none; border-color: var(--gold); }
.form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .land-features-grid { grid-template-columns: repeat(2,1fr); }
  .land-pricing-grid { grid-template-columns: repeat(2,1fr); }
  .land-about-grid { grid-template-columns: 1fr; }
  .land-hero-inner { grid-template-columns: 1fr; }
  .land-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .land-nav { display: none; }
  .land-header-actions { display: none; }
  .land-menu-btn { display: block; }
  .land-hero { padding: 3rem 0 2rem; }
  .land-section { padding: 3rem 0; }
  .land-features-grid { grid-template-columns: 1fr; }
  .land-roles-grid { grid-template-columns: 1fr; }
  .land-mission-grid { grid-template-columns: 1fr; }
  .land-pricing-grid { grid-template-columns: 1fr 1fr; }
  .land-contact-grid { grid-template-columns: 1fr; }
  .land-tips-grid { grid-template-columns: 1fr; }
  .land-about-cards { grid-template-columns: 1fr 1fr; }
  .land-footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-page { flex-direction: column; }
  .auth-brand { width: 100%; padding: 2rem; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 0.5rem; min-height: auto; }
  .auth-brand::before { display: none; }
  .land-footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .land-pricing-grid { grid-template-columns: 1fr; }
  .land-about-cards { grid-template-columns: 1fr; }
  .land-footer-grid { grid-template-columns: 1fr; }
  .land-hero-stats { gap: 1rem; }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.land-faq { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-block {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-block-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.25rem;
  background: rgba(201,168,76,0.07);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.9rem 1.25rem;
  text-align: left;
  color: rgba(255,255,255,0.8);
  font-size: 0.855rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.18s, background 0.18s;
  font-family: inherit;
}
.faq-q:hover { color: #fff; background: rgba(255,255,255,0.03); }
.faq-q.open { color: var(--gold); }

.faq-arrow {
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.22s;
  color: rgba(255,255,255,0.3);
}
.faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--gold); }

.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-a.open { display: block; }

.faq-a p {
  color: rgba(255,255,255,0.55);
  font-size: 0.845rem;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.faq-a p:last-child { margin-bottom: 0; }

.faq-a ol, .faq-a ul {
  margin: 0.5rem 0 0.75rem 1.2rem;
}
.faq-a ol li, .faq-a ul li {
  color: rgba(255,255,255,0.55);
  font-size: 0.845rem;
  line-height: 1.7;
  margin-bottom: 0.2rem;
}
.faq-a strong { color: rgba(255,255,255,0.85); font-weight: 600; }

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ─── SUGGESTION STRIP (landing) ─────────────────────────────── */
.land-suggestion-strip {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 2px solid var(--gold);
  padding: 2rem 0;
}
.land-suggestion-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.land-sugg-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  animation: sugg-pulse 2.5s ease-in-out infinite;
}
@keyframes sugg-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.15) rotate(-5deg); }
}
.land-sugg-text {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.land-sugg-text strong {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 700;
}
.land-sugg-text span {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.55;
}
.land-sugg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: #0a0f1e;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.3);
}
.land-sugg-btn:hover {
  background: var(--gold-light);
  color: #0a0f1e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}
@media (max-width: 640px) {
  .land-suggestion-inner { flex-direction: column; text-align: center; }
  .land-sugg-text { align-items: center; }
  .land-sugg-btn  { width: 100%; justify-content: center; }
}
