/* ============================================================
   RAPHA NATIONS — MOVIS TECH INSPIRED DESIGN SYSTEM
   Fonts: Plus Jakarta Sans + IBM Plex Mono
   Colors: White/Lavender bg, Purple primary, Dark navy footer
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --bg:           #ffffff;
  --bg-soft:      #f8f7ff;
  --bg-card:      #ffffff;
  --purple:       #6d28d9;
  --purple-mid:   #7c3aed;
  --purple-light: #ede9fe;
  --purple-text:  #7c3aed;
  --indigo:       #4f46e5;
  --navy:         #0f172a;
  --navy-mid:     #1e293b;
  --text-primary: #1a1a2a;
  --text-second:  #4b5563;
  --text-third:   #6b7280;
  --text-white:   #ffffff;
  --border:       #e5e7eb;
  --border-purple:#ddd6fe;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(109,40,217,0.10);
  --shadow-lg:    0 12px 40px rgba(109,40,217,0.15);
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-full:  9999px;
  --font-head:    'Plus Jakarta Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --nav-h:        72px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-head);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-head); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.nav-logo-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-name span { color: var(--purple); }

.nav-logo-tag {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-second);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--purple); }

.nav-links .nav-btn {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-links .nav-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  display: block;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── EYEBROW LABEL ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--purple-text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--purple-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h1 em, h1 span.accent {
  color: var(--purple);
  font-style: normal;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

p {
  color: var(--text-second);
  line-height: 1.75;
  font-size: 16px;
}

.lead {
  font-size: 18px;
  color: var(--text-second);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-1px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  color: var(--purple);
}

/* Submit button specifically */
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
  position: relative;
}

.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: all 0.25s;
}

.card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--purple);
}

/* ── FORM ELEMENTS ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.label-required::after {
  content: ' *';
  color: #ef4444;
}

input, select, textarea {
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  padding: 12px 16px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder {
  color: var(--text-third);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.08);
  background: #fff;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236d28d9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select option { background: #fff; color: var(--text-primary); }

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* Phone wrap */
.phone-wrap { display: flex; }
.phone-code {
  width: 100px;
  flex-shrink: 0;
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  padding: 12px 8px 12px 12px;
  font-family: var(--font-head);
  font-size: 14px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236d28d9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.phone-code:focus { border-color: var(--purple); outline: none; }
.phone-num {
  flex: 1;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-left: 1px solid var(--border);
}

/* Field error */
.field-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  display: none;
  font-weight: 500;
}
input.error, select.error, textarea.error {
  border-color: #ef4444;
}

/* Privacy note */
.privacy-note {
  font-size: 12px;
  color: var(--text-third);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ── SECTION LAYOUT ── */
.section {
  padding: 96px 60px;
}

.section-sm {
  padding: 64px 60px;
}

.section-dark {
  background: var(--navy);
  color: var(--text-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--text-white);
}

.section-dark p { color: rgba(255,255,255,0.7); }

.section-purple {
  background: linear-gradient(135deg, var(--purple) 0%, var(--indigo) 100%);
  color: var(--text-white);
}

.section-purple h1,
.section-purple h2,
.section-purple h3 { color: var(--text-white); }
.section-purple p { color: rgba(255,255,255,0.85); }

.section-soft { background: var(--bg-soft); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header p {
  margin-top: 16px;
  font-size: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── GRID LAYOUTS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── HERO SECTION ── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  padding-left: 60px;
  padding-right: 60px;
  background: linear-gradient(160deg, var(--bg-soft) 0%, var(--bg) 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-light);
  color: var(--purple-text);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-mono);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 18px;
  color: var(--text-second);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-image {
  background: linear-gradient(135deg, var(--purple-light), #e0e7ff);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── STATS BAR ── */
.stats-bar {
  padding: 48px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.5;
}

/* ── TRUST POINTS ── */
.trust-points { display: flex; flex-direction: column; gap: 20px; }

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-point-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-point-desc {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.55;
}

/* ── WHAT HAPPENS STEPS ── */
.what-happens {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 28px;
}

.what-happens-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--purple-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.what-steps { display: flex; flex-direction: column; gap: 14px; }

.what-step { display: flex; align-items: flex-start; gap: 12px; }

.what-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.what-step-text {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.6;
}

.what-step-text strong { color: var(--text-primary); font-weight: 600; }

/* ── TWO COLUMN LAYOUT (prayer form etc) ── */
.main-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
}

.left-panel {
  padding: 72px 56px 72px 60px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.left-content { max-width: 480px; }

.left-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.left-headline em {
  color: var(--purple);
  font-style: normal;
}

.left-sub {
  font-size: 17px;
  color: var(--text-second);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Pastor mini card */
.pastor-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.pastor-mini-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border-purple);
  overflow: hidden;
  flex-shrink: 0;
}

.pastor-mini-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pastor-mini-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pastor-mini-quote {
  font-size: 13px;
  color: var(--text-second);
  font-style: italic;
  line-height: 1.5;
}

/* Right panel (form side) */
.right-panel {
  background: var(--bg);
  border-left: 1px solid var(--border);
  padding: 56px 56px 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Counter */
.right-counter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.right-counter-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.03em;
  line-height: 1;
}

.right-counter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.right-counter-sub {
  font-size: 12px;
  color: var(--text-third);
}

/* Form header */
.form-header { margin-bottom: 28px; }

.form-header-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.form-header-sub {
  font-size: 14px;
  color: var(--text-second);
}

.form-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, var(--purple), var(--indigo));
  border-radius: 2px;
  margin-top: 12px;
}

/* ── THANK YOU STATE ── */
.thankyou-wrap {
  display: none;
  text-align: center;
  padding: 40px 0;
}

.thankyou-icon { font-size: 56px; margin-bottom: 20px; }

.thankyou-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.thankyou-title em { color: var(--purple); font-style: normal; }

.thankyou-sub {
  font-size: 16px;
  color: var(--text-second);
  line-height: 1.7;
  margin-bottom: 10px;
}

.thankyou-check {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.thankyou-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-whatsapp:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }

.btn-telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--purple);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--purple);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-telegram:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
  color: var(--purple);
}

.thankyou-scripture {
  font-size: 15px;
  color: var(--text-second);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

.thankyou-scripture span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  font-style: normal;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--indigo) 100%);
  padding: 80px 60px;
  text-align: center;
}

.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 18px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 60px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-brand-name span { color: var(--purple-text); }

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--purple);
  color: #fff;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE FADE IN ── */
body { animation: pageFadeIn 0.5s ease forwards; }
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TESTIMONY WALL ── */
.testimony-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.25s;
}

.testimony-card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-md);
}

.testimony-quote {
  font-size: 15px;
  color: var(--text-second);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}

.testimony-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimony-country {
  font-size: 12px;
  color: var(--text-third);
  margin-top: 2px;
}

/* ── COMMUNITY PAGE ── */
.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all 0.25s;
}

.community-card:hover {
  border-color: var(--border-purple);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.community-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.community-card h3 { margin-bottom: 8px; }
.community-card p { font-size: 14px; margin-bottom: 20px; }

/* ── PARTNERS PAGE ── */
.partner-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}

.partner-tier.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
}

.partner-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.partner-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
}

.partner-period {
  font-size: 14px;
  color: var(--text-third);
  margin-bottom: 16px;
}

/* ── ABOUT PAGE ── */
.about-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  padding-left: 60px;
  padding-right: 60px;
  background: var(--bg-soft);
}

/* ── BOOKS PAGE ── */
.book-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s;
}

.book-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--border-purple);
}

.book-cover {
  background: linear-gradient(135deg, var(--purple-light), #e0e7ff);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.book-info { padding: 20px; }
.book-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.book-desc { font-size: 13px; color: var(--text-second); margin-bottom: 16px; }

/* ── CONTACT PAGE ── */
.contact-wrap {
  max-width: 600px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .navbar { padding: 0 32px; }
  .hero { padding-left: 32px; padding-right: 32px; }
  .section { padding: 72px 32px; }
  .section-sm { padding: 48px 32px; }
  .stats-bar { padding: 40px 32px; }
  .footer { padding: 48px 32px 24px; }
  .cta-banner { padding: 64px 32px; }
  .about-hero { padding-left: 32px; padding-right: 32px; }
  .left-panel { padding: 56px 40px; }
  .right-panel { padding: 48px 40px 56px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; height: 64px; --nav-h: 64px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    padding: 24px 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    backdrop-filter: blur(20px);
  }

  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero { padding: 40px 20px; padding-top: calc(64px + 48px); }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }

  .main-wrap { grid-template-columns: 1fr; padding-top: 64px; }
  .left-panel { padding: 40px 20px; }
  .right-panel { padding: 40px 20px 56px; border-left: none; border-top: 1px solid var(--border); }

  .section { padding: 56px 20px; }
  .section-sm { padding: 40px 20px; }
  .stats-bar { padding: 32px 20px; }
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 40px 20px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-banner { padding: 56px 20px; }
  .about-hero { padding: 40px 20px; }
}

@media (max-width: 480px) {
  .thankyou-btns { flex-direction: column; }
  .hero-actions { flex-direction: column; }
}
