/* ==========================================================================
   MoneyByFaith.com warm, comforting, confident
   Palette built around #294936 (deep forest green)
   ========================================================================== */

:root {
  /* Core palette */
  --green: #294936;        /* primary brand, deep forest */
  --green-dark: #1c3627;   /* headers, footer */
  --green-deep: #142a1d;   /* darkest shade */
  --green-soft: #3e6650;   /* hover states */
  --sage: #7d9b88;         /* muted supporting green */
  --sage-light: #dfe9e2;   /* pale sage tint */
  --cream: #faf7f0;        /* main warm background */
  --cream-dark: #f1ebdd;   /* alternate section background */
  --ivory: #fffdf8;        /* cards */
  --gold: #c19a3f;         /* warm antique gold accent */
  --gold-dark: #a5822e;
  --gold-light: #e9d9ae;
  --navy: #1b2a4a;         /* from the logo */
  --ink: #26332b;          /* body text */
  --ink-soft: #55645b;     /* secondary text */

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(28, 54, 39, 0.07);
  --shadow-md: 0 10px 34px rgba(28, 54, 39, 0.13);
  --shadow-lg: 0 24px 60px rgba(20, 42, 29, 0.22);

  --header-h: 78px;
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green); }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--green-dark);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.9rem;
}

.eyebrow-light { color: var(--gold-light); }

.accent { color: var(--gold-dark); }
.accent-gold { color: var(--gold-light); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.2rem;
}

.section-sub {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(41, 73, 54, 0.32);
}
.btn-primary:hover { background: var(--green-soft); box-shadow: 0 10px 26px rgba(41, 73, 54, 0.4); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(165, 130, 46, 0.38);
}
.btn-gold:hover { box-shadow: 0 10px 26px rgba(165, 130, 46, 0.5); filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: #fff; }

.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.06rem; }
.btn-block { display: block; width: 100%; }

/* ---------- Announcement bar ---------- */

.announce {
  background: linear-gradient(90deg, var(--green-deep), var(--green) 55%, var(--green-deep));
  color: #f2efe6;
  padding: 0.6rem 0;
  position: relative;
  z-index: 60;
}

.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.95rem;
}

.announce-badge {
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
}

.announce strong { color: var(--gold-light); }

.announce-cta {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(233, 217, 174, 0.5);
  padding-bottom: 1px;
}
.announce-cta:hover { color: #fff; border-color: #fff; }

/* ---------- Header ---------- */

.site-header {
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(41, 73, 54, 0.1);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-img {
  height: 46px;
  width: auto;
  /* Blend the logo's white background into the header color so no white box shows */
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--green); }

.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 0.62rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(41, 73, 54, 0.28);
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--green-soft); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(193, 154, 63, 0.14), transparent 60%),
    radial-gradient(900px 600px at -15% 110%, rgba(125, 155, 136, 0.18), transparent 55%),
    var(--cream);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-sub {
  margin-top: 1.3rem;
  font-size: 1.13rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.hero-verse {
  margin-top: 1.6rem;
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.1rem;
  font-family: var(--font-display);
}
.hero-verse p { font-size: 1.12rem; color: var(--green-dark); font-style: italic; }
.hero-verse cite { font-size: 0.88rem; color: var(--gold-dark); font-style: normal; font-weight: 600; }

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Hero lead magnet card */

.hero-card {
  position: relative;
  background: var(--green-dark);
  color: #ece8dc;
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(233, 217, 174, 0.25);
}

.hero-card-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(165, 130, 46, 0.45);
}

.hero-card h3 {
  color: #fff;
  font-size: 1.55rem;
  margin-bottom: 0.7rem;
}
.hero-card h3 .accent { color: var(--gold-light); }

.hero-card > p {
  font-size: 0.97rem;
  color: rgba(236, 232, 220, 0.85);
  margin-bottom: 1.4rem;
}

.magnet-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.magnet-form input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(41, 73, 54, 0.25);
  background: var(--ivory);
  color: var(--ink);
  width: 100%;
}
.magnet-form input:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.magnet-privacy {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: rgba(236, 232, 220, 0.7);
  text-align: center;
}

/* ---------- Trust strip ---------- */

.trust-strip {
  background: var(--green-dark);
  color: #ece8dc;
  padding: 1.7rem 0;
}

.trust-inner { text-align: center; }

.trust-verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(236, 232, 220, 0.95);
}
.trust-verse cite { color: var(--gold-light); font-style: normal; font-size: 0.85rem; margin-left: 0.5rem; }

/* ---------- Story ---------- */

.story { padding: 5.5rem 0; background: var(--ivory); }

.story-head { text-align: center; max-width: 850px; margin: 0 auto 3rem; }

.story-body {
  max-width: 680px;
  margin: 0 auto;
}

.story-body p { margin-bottom: 1.3rem; color: var(--ink-soft); }
.story-body p strong { color: var(--ink); }

.lead-para {
  font-size: 1.16rem;
  color: var(--ink) !important;
}

.verse-inline { color: var(--gold-dark); font-weight: 600; font-size: 0.92em; }

.story-close {
  font-family: var(--font-display);
  font-size: 1.25rem !important;
  color: var(--green-dark) !important;
  font-style: italic;
}

.story-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Services ---------- */

.services {
  padding: 5.5rem 0;
  background:
    radial-gradient(900px 500px at 110% 0%, rgba(125, 155, 136, 0.14), transparent 55%),
    var(--cream-dark);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.pillar {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(41, 73, 54, 0.08);
  border-top: 4px solid var(--gold);
}

.pillar-head {
  text-align: center;
  padding-bottom: 1.4rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(41, 73, 54, 0.1);
}

.pillar-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-light);
  display: grid;
  place-items: center;
}
.pillar-icon svg { width: 32px; height: 32px; }

.pillar-head h3 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.pillar-head p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.pillar-list { display: grid; }

.pillar-item {
  border-bottom: 1px solid rgba(41, 73, 54, 0.08);
}
.pillar-item:last-child { border-bottom: none; }

.pillar-item summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.2rem;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--green-dark);
  transition: color 0.15s;
}
.pillar-item summary::-webkit-details-marker { display: none; }

.pillar-item summary::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform 0.2s;
}

.pillar-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold-dark);
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 0.25s;
}

.pillar-item[open] summary { color: var(--green); }
.pillar-item[open] summary::after { transform: rotate(45deg); }

.pillar-item summary:hover { color: var(--green); }

.pillar-item > p {
  padding: 0 0.2rem 1rem 1.35rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}
.services-cta p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

/* ---------- Money By Faith Number section ---------- */

.number-section {
  background:
    radial-gradient(1000px 600px at 0% 0%, rgba(193, 154, 63, 0.12), transparent 55%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 100%);
  color: #ece8dc;
  padding: 5.5rem 0;
}

.number-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.number-copy h2 { color: #fff; margin-bottom: 1.2rem; }
.number-copy > p { color: rgba(236, 232, 220, 0.88); margin-bottom: 1.1rem; }
.number-copy strong { color: var(--gold-light); }

.number-list {
  list-style: none;
  margin: 1.2rem 0 1.4rem;
  display: grid;
  gap: 0.7rem;
}

.number-list li {
  padding-left: 1.9rem;
  position: relative;
  color: rgba(236, 232, 220, 0.88);
}
.number-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.number-list strong { color: #fff; }

.number-verse {
  border-left: 3px solid var(--gold);
  padding-left: 1.1rem;
  margin-top: 1.6rem;
  font-family: var(--font-display);
}
.number-verse p { font-style: italic; font-size: 1.1rem; color: #fff; }
.number-verse cite { font-style: normal; color: var(--gold-light); font-size: 0.88rem; font-weight: 600; }

.number-form-card {
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem;
  box-shadow: var(--shadow-lg);
}

.number-form-card h3 { margin-bottom: 0.4rem; }
.number-form-card > p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.4rem; }

.number-form-card .magnet-form input {
  background: #fff;
  border-color: rgba(41, 73, 54, 0.28);
}

.number-form-card .magnet-privacy { color: var(--ink-soft); }

/* ---------- How it works ---------- */

.how { padding: 5.5rem 0; background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1020px;
  margin: 0 auto;
}

.step {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
}

.step-num {
  width: 52px; height: 52px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step h3 { margin-bottom: 0.6rem; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

.how-cta { text-align: center; margin-top: 2.8rem; }
.how-cta .hero-note { margin-top: 0.8rem; }

/* ---------- Verse banner ---------- */

.verse-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 50%, var(--gold-dark));
  padding: 3rem 0;
  text-align: center;
}

.verse-banner blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: #fff;
  text-shadow: 0 1px 6px rgba(101, 78, 22, 0.3);
}

.verse-banner cite {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
}

/* ---------- FAQ ---------- */

.faq { padding: 5.5rem 0; background: var(--ivory); }

.faq-container { max-width: 860px; }

.faq-list { display: grid; gap: 0.9rem; }

.faq-item {
  background: var(--cream);
  border: 1px solid rgba(41, 73, 54, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: rgba(193, 154, 63, 0.55);
  box-shadow: var(--shadow-sm);
  background: var(--ivory);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 3.2rem 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--green-dark);
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 0.25s;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-body { padding: 0 1.5rem 1.4rem; }
.faq-body p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Contact / final close ---------- */

.contact {
  background:
    radial-gradient(1000px 600px at 100% 100%, rgba(193, 154, 63, 0.14), transparent 55%),
    linear-gradient(200deg, var(--green-dark) 0%, var(--green-deep) 100%);
  color: #ece8dc;
  padding: 5.5rem 0 6rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-copy h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.contact-copy > p { color: rgba(236, 232, 220, 0.88); }

.logic-list {
  list-style: none;
  margin: 1.4rem 0;
  display: grid;
  gap: 1rem;
}

.logic-list li {
  padding: 0 0 0 2.1rem;
  position: relative;
  color: rgba(236, 232, 220, 0.85);
}
.logic-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}
.logic-list strong { color: #fff; }

.contact-close {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-style: italic;
  color: #fff !important;
  margin-top: 1.4rem;
}

.contact-verse { margin-top: 1.8rem; }
.contact-verse p { color: #fff; }

.contact-form-card {
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.3rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 { margin-bottom: 0.5rem; }
.contact-form-card > p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.6rem; }

.contact-form { display: grid; gap: 1.1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field { display: grid; gap: 0.35rem; }

.form-field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--green-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(41, 73, 54, 0.28);
  background: #fff;
  color: var(--ink);
  width: 100%;
}

.form-field textarea { resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.contact-form .magnet-privacy { color: var(--ink-soft); margin-top: 0.2rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--cream);
  border-top: 1px solid rgba(41, 73, 54, 0.12);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-logo { height: 34px; width: auto; margin-bottom: 1rem; mix-blend-mode: multiply; }

.footer-brand p { font-size: 0.92rem; color: var(--ink-soft); max-width: 34ch; }

.footer-col { display: grid; gap: 0.55rem; align-content: start; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.3rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.footer-col a:hover { color: var(--green); }

.footer-verse {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-dark);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.footer-verse cite { font-style: normal; font-size: 0.85rem; color: var(--gold-dark); font-weight: 600; }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(41, 73, 54, 0.1);
  display: grid;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.82rem; color: var(--ink-soft); }
.footer-disclaimer { max-width: 90ch; opacity: 0.8; }

/* ---------- Success modal ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 42, 29, 0.65);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 1.5rem;
}

.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-check {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold-light);
  font-size: 2rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.modal h3 { margin-bottom: 0.6rem; }
.modal p { color: var(--ink-soft); margin-bottom: 1.6rem; }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .pillars { gap: 1.2rem; }
  .pillar { padding: 2rem 1.5rem 1.2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .hero-inner,
  .number-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .hero { padding: 3rem 0 4rem; }
  .hero-card { margin-top: 0.5rem; }

  .steps { grid-template-columns: 1fr; max-width: 480px; }

  .pillars { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 1.6rem; }

  /* Mobile nav */
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.6rem;
    box-shadow: -12px 0 40px rgba(20, 42, 29, 0.18);
    transform: translateX(105%);
    transition: transform 0.3s ease;
    z-index: 55;
  }

  .main-nav.open { transform: translateX(0); }

  .main-nav a { font-size: 1.1rem; }

  .nav-toggle { position: relative; z-index: 60; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .announce-inner { font-size: 0.85rem; gap: 0.5rem; }
  .announce-inner p { display: none; }
  .announce-inner::after { content: none; }
  .announce-badge { font-size: 0.68rem; }
  .announce-cta { font-size: 0.9rem; }
  .announce-inner { justify-content: center; }
  .announce-inner::before {
    content: "Your free Money By Faith Number awaits";
    font-weight: 600;
  }

  .form-row { grid-template-columns: 1fr; }

  .hero-actions .btn { width: 100%; }

  .hero-card { padding: 2.2rem 1.5rem 1.8rem; }
  .number-form-card, .contact-form-card { padding: 2rem 1.4rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
