/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.6;
}
.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s, background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }
.btn-primary {
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff;
}
.btn-primary:hover { background: linear-gradient(135deg, #b71c1c, #991919); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
}
.btn-danger:hover { background: linear-gradient(135deg, #b91c1c, #991b1b); }
.btn-full { width: 100%; justify-content: center; padding: 15px; font-size: 1rem; }

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0 24px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 46px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-title {
  font-weight: 800;
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.2;
}
.nav-sub {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: #475569;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: #d32f2f; }
.nav-links .nav-cta {
  background: #d32f2f;
  color: #fff;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
}
.nav-links .nav-cta:hover { background: #b71c1c; color: #fff; }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #475569;
  cursor: pointer;
  padding: 4px;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 0 16px;
  border-top: 1px solid #e2e8f0;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 10px 16px;
  border-radius: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
}
.nav-mobile a:hover { background: #f1f5f9; color: #d32f2f; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('hero2.jpg') center/cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px min(80px, 6vw) 80px;
  max-width: 100%;
}
.hero-inner { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.hero-accent { color: #fbbf24; }
.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}
.hero-trust span i { color: #fbbf24; }

/* Hero card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 36px;
  width: min(380px, 90vw);
  box-shadow: 0 32px 64px rgba(0,0,0,0.25);
  color: #fff;
}
.hc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.hc-org { font-weight: 700; font-size: 0.95rem; }
.hc-secure {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.hc-amount {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: #fbbf24;
}
.hc-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.hc-divider { border-top: 1px solid rgba(255,255,255,0.15); margin-bottom: 22px; }
.hc-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.hc-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.hc-badge-stripe { font-size: 0.78rem; font-weight: 700; gap: 5px; }
.hc-gift {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

/* ── Section Shared ──────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  background: #fef2f2;
  color: #d32f2f;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.65;
}

/* ── Features Grid ───────────────────────────────────────────────────────── */
.features {
  padding: 96px 0;
  background: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
  border-color: #cbd5e1;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 14px;
}
.feature-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: #d32f2f;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
}
.feature-link:hover { gap: 8px; }

/* ── Gift Aid Banner ─────────────────────────────────────────────────────── */
.gift-aid-banner {
  background: linear-gradient(135deg, #14532d, #166534);
  padding: 56px 0;
  color: #fff;
}
.gab-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.gab-icon {
  font-size: 3rem;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gab-text { flex: 1; }
.gab-text h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.gab-text p { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.65; }
.gab-badge-inner {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 18px 28px;
  text-align: center;
  flex-shrink: 0;
}
.gab-pct { font-size: 2.5rem; font-weight: 900; color: #86efac; line-height: 1; }
.gab-pct-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); font-weight: 600; margin-top: 4px; }

/* ── Logos Strip ─────────────────────────────────────────────────────────── */
.logos-strip {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 28px 0;
}
.logos-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 18px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
}
.logo-item i { font-size: 2rem; }
.logo-stripe { color: #635bff; }
.logo-pci { color: #1e40af; }
.logo-gift { color: #16a34a; }
.logo-ssl { color: #0891b2; }
.logo-item small { display: block; font-size: 0.68rem; line-height: 1; color: #94a3b8; }

/* ── Support Section ─────────────────────────────────────────────────────── */
.support {
  padding: 96px 0;
  background: #f8fafc;
}
.support-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.support-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.sc-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 auto 22px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.support-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}
.support-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}
.sc-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #475569;
}
.sc-list li i { color: #22c55e; font-size: 0.8rem; }

/* ── Contact Info ────────────────────────────────────────────────────────── */
.contact-info {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 64px 0;
}
.ci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ci-card {
  text-align: center;
  padding: 28px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.ci-icon {
  font-size: 1.8rem;
  color: #d32f2f;
  margin-bottom: 14px;
}
.ci-card h4 { font-size: 1rem; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.ci-card p { font-size: 0.88rem; color: #64748b; line-height: 1.5; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-img { height: 52px; width: auto; object-fit: contain; }
.footer-org { color: #e2e8f0; font-weight: 700; font-size: 0.92rem; }
.footer-domain { color: #64748b; font-size: 0.8rem; margin-top: 2px; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.fbadge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 0.82rem; margin-bottom: 4px; }
.footer-note { color: #475569; font-size: 0.76rem; }

/* ── Modal ───────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #fff;
  border-radius: 22px;
  padding: 36px;
  width: min(600px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f1f5f9;
  border: none;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: #e2e8f0; }
.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.modal-sub {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 28px;
}

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #374151;
  margin-bottom: 7px;
}
.req { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.93rem;
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d32f2f;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}
.form-group textarea { resize: vertical; min-height: 96px; }
.field-err {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 4px;
}
.field-hint {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
  display: block;
}
.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #dc2626;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.gdpr-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
}
.gdpr-notice i { color: #0284c7; margin-top: 2px; flex-shrink: 0; }
.gdpr-notice p { font-size: 0.82rem; color: #0369a1; line-height: 1.55; }

/* ── Success state ───────────────────────────────────────────────────────── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 8px;
  gap: 12px;
}
.form-success i {
  font-size: 3.5rem;
  color: #22c55e;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e293b;
}
.form-success p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}
.form-success strong { color: #d32f2f; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 110px 24px 60px;
    gap: 40px;
  }
  .hero-desc { margin: 0 auto 32px; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .ci-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: 1fr; max-width: 480px; }
  .form-row { grid-template-columns: 1fr; }
  .gab-inner { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-badges { justify-content: center; }
  .logos-row { gap: 18px; }
  .modal { padding: 24px 20px; border-radius: 18px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.85rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
