/* ============================================================
   INFINITE FUNDING — Book a Call
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* VARIABLES */
:root {
  --bg:       #0d0d0d;
  --bg-card:  #111111;
  --bg-dark:  #0a170a;
  --green:    #22c55e;
  --green-10: rgba(34,197,94,0.10);
  --green-20: rgba(34,197,94,0.20);
  --green-30: rgba(34,197,94,0.30);
  --red:      #dc2626;
  --red-10:   rgba(220,38,38,0.10);
  --white:    #ffffff;
  --gray:     #9ca3af;
  --gray-300: #d1d5db;
  --border:   rgba(255,255,255,0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --max-w:   1280px;
  --max-md:   900px;
  --max-sm:   640px;
  --radius:   12px;
}

/* BASE */
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}

/* Keep inputs, labels, and list items left-aligned for readability */
input, label, .faq-a p, .who-list li, .promise-list li,
.checklist li, .call-step p, td { text-align: left; }

/* ── LAYOUT ── */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-md { max-width: var(--max-md); margin: 0 auto; padding: 0 24px; }
.text-center  { text-align: center; }

.section      { padding: 80px 0; }
.section-dark { background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase; line-height: 0.92; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; }
h3 { font-size: 1.6rem; margin-bottom: 10px; }
h4 { font-size: 1.2rem; margin-bottom: 8px; }

.text-primary { color: var(--green); }
.text-white   { color: var(--white); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--green);
  margin-bottom: 10px;
}
.body-text { color: var(--gray-300); font-size: 1.1rem; line-height: 1.7; max-width: 680px; margin: 0 auto 28px; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding: 12px 24px;
}
header .container { display: flex; justify-content: center; }
.logo { height: 64px; width: auto; }

/* ── HERO ── */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top left, rgba(34,197,94,0.08) 0%, transparent 55%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}


/* Full-width title block above the two-column grid */
.hero-title-block {
  text-align: center;
  margin-bottom: 40px;
}
.hero-title-block h1 { margin-bottom: 0; }

/* Hero video column (left on desktop, first on mobile) */
.hero-video-col {
  display: flex;
  flex-direction: column;
  order: 1;
}
.hero-step-label {
  font-size: 0.95rem;
  color: var(--gray-300);
  margin-bottom: 6px;
  line-height: 1.5;
}
.hero-step-label strong { color: var(--white); }

/* Hero content column (right on desktop, second on mobile) */
.hero-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 2;
}
.hero-content-col h1 { margin-bottom: 0; }

@media (max-width: 900px) {
  .hero-video-col { order: 1; }
  .hero-content-col { order: 2; }
}

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
}
.badge-red {
  border: 1px solid rgba(220,38,38,0.5);
  background: rgba(220,38,38,0.10);
  color: #f87171;
}
.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px 2px rgba(220,38,38,0.7);
  animation: pulse-red 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-red { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-sub { font-size: 1.05rem; color: var(--gray-300); font-weight: 500; width: 100%; text-align: left; line-height: 1.7; }

/* Social proof */
.social-proof {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border: 1px solid var(--green-20);
  border-radius: var(--radius); padding: 12px 18px;
  align-self: center; margin-left: auto; margin-right: auto;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--bg-card); object-fit: cover;
  margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }
.stars { color: #facc15; font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 2px; }
.proof-text { font-size: 0.72rem; font-weight: 700; color: var(--gray-300); text-transform: uppercase; letter-spacing: 0.12em; }

/* Stat badges */
.stat-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--green-20);
  border-radius: var(--radius); padding: 10px 16px;
  flex: 1; min-width: 180px;
}
.stat-icon { font-size: 1.4rem; }
.stat-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); }
.stat-disclaimer { font-size: 0.58rem; color: var(--gray); opacity: 0.65; line-height: 1.4; margin-top: 4px; max-width: 200px; }
.stat-value { font-size: 0.85rem; font-weight: 700; color: var(--white); }

/* ── CTA CARD ── */
.cta-card {
  background: #0d1a0d;
  border: 1px solid var(--green-20);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 0 50px rgba(34,197,94,0.08);
  position: sticky; top: 90px;
  text-align: center;
}
.cta-card-badge {
  display: inline-block;
  background: var(--green-10);
  border: 1px solid var(--green-20);
  color: var(--green);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.cta-card-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  line-height: 1;
}
.cta-card-sub {
  color: var(--gray-300);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: normal;
}
.cta-card-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}
.cta-card-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-300);
  font-size: 0.92rem;
}
.cta-card-perks li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
}

/* ── JOTFORM MODAL ── */
.jf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.jf-modal.open {
  display: flex;
}
.jf-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
}
.jf-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 680px;
  height: 90vh;
  max-height: 800px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(34,197,94,0.2);
  display: flex;
  flex-direction: column;
  animation: modal-in 0.25s cubic-bezier(0.34,1.3,0.64,1) both;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.93) translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.jf-modal-box iframe {
  flex: 1;
  width: 100%;
  border: none;
}
.jf-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.jf-modal-close:hover { background: rgba(0,0,0,0.8); }
body.modal-open { overflow: hidden; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green); color: #000;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 18px 32px; border-radius: 4px; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
  box-shadow: 0 0 30px rgba(34,197,94,0.25);
  animation: glow-pulse 2.5s ease-in-out infinite;
}
.btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; text-align: center; }
@keyframes glow-pulse { 0%,100% { box-shadow: 0 0 20px rgba(34,197,94,0.25); } 50% { box-shadow: 0 0 40px rgba(34,197,94,0.5); } }

/* ── TWO-STEP NOTE ── */
.two-step-note {
  font-size: 0.78rem; color: var(--green); font-weight: 600;
  letter-spacing: 0.01em; margin-top: 10px; opacity: 0.85;
}

/* ── AI BULLETS ── */
.ai-bullets {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  max-width: 480px; margin: 0 auto 32px; text-align: left;
}
.ai-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--gray-300); font-size: 0.97rem; line-height: 1.5;
}
.ai-bullets li::before { content: "✓"; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--green); overflow: hidden;
  padding: 14px 0; border-top: none; border-bottom: none;
}
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1rem; text-transform: uppercase; letter-spacing: 0.15em; color: #000;
}
.marquee-track .dot { opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── VIDEO ── */
.video-16x9 {
  position: relative; padding-bottom: 56.25%; height: 0;
  background: #000; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--green-20);
  box-shadow: 0 0 40px rgba(34,197,94,0.08);
  margin: 28px 0;
}
.video-16x9 iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.vsl-note { font-size: 1.1rem; color: var(--gray); }

/* ── PILLS ── */
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }
.pill {
  padding: 8px 18px;
  border: 1px solid var(--green-20); border-radius: 4px;
  background: var(--green-10); color: var(--green);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── FEATURE CARDS ── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 700px) { .card-grid-3 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card); border: 1px solid var(--green-20);
  border-radius: var(--radius); padding: 36px 28px; text-align: center;
}
.feature-card--featured {
  border-color: rgba(34,197,94,0.45);
  box-shadow: 0 0 20px rgba(34,197,94,0.08);
  border-top: 2px solid var(--green);
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; font-style: normal; }

/* ── WHO THIS IS FOR ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .who-grid { grid-template-columns: 1fr; } }

.who-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid;
}
.who-card--yes {
  background: rgba(34,197,94,0.04);
  border-color: rgba(34,197,94,0.25);
}
.who-card--no {
  background: rgba(220,38,38,0.04);
  border-color: rgba(220,38,38,0.2);
}
.who-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.who-icon { font-size: 1.5rem; flex-shrink: 0; }
.who-card h3 {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.4rem; text-transform: uppercase; margin: 0; line-height: 1;
}
.who-card--yes h3 { color: var(--green); }
.who-card--no h3  { color: #f87171; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.who-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--gray-300); font-size: 0.95rem; line-height: 1.5;
}
.who-card--yes .who-list li::before { content: "✓"; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.who-card--no  .who-list li::before { content: "✕"; color: #f87171; font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── CALL STEPS ── */
.call-steps {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--green-20); border-radius: var(--radius);
  overflow: hidden;
}
.call-step {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s;
}
.call-step:last-child { border-bottom: none; }
.call-step:hover { background: rgba(34,197,94,0.04); }
.call-step-num {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 2.2rem; color: var(--green); opacity: 0.5;
  line-height: 1; flex-shrink: 0; min-width: 44px;
}
.call-step h4 { color: var(--white); margin-bottom: 6px; }
.call-step p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; font-style: normal; }

/* ── MASONRY GALLERY ── */
.masonry {
  columns: 2; column-gap: 12px;
  margin-top: 36px;
}
@media (min-width: 640px)  { .masonry { columns: 3; } }
@media (min-width: 1024px) { .masonry { columns: 4; } }

.result-card {
  break-inside: avoid; position: relative;
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--green-20);
  background: var(--bg-card); margin-bottom: 12px;
}
.result-card img { width: 100%; display: block; object-fit: cover; }
.result-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
}
.result-amount { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 1.3rem; color: var(--green); line-height: 1; }
.result-label  { font-size: 0.72rem; font-weight: 700; color: var(--white); margin-top: 2px; }
.result-name   { font-size: 0.62rem; color: var(--gray); margin-top: 1px; }

/* ── SECTION CTA ── */
.section-cta { text-align: center; }
.section-cta h2 { margin-bottom: 16px; }
.section-cta p  { color: var(--gray-300); margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.tag-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.tag {
  border: 1px solid var(--green-20); background: var(--green-10); color: var(--green);
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 8px 18px; border-radius: 4px;
}

/* ── TESTIMONIAL SHORTS ── */
.shorts-scroll { overflow-x: auto; padding-bottom: 16px; -webkit-overflow-scrolling: touch; }
.shorts-scroll::-webkit-scrollbar { height: 4px; }
.shorts-scroll::-webkit-scrollbar-track { background: var(--bg-card); }
.shorts-scroll::-webkit-scrollbar-thumb { background: var(--green-30); border-radius: 2px; }
.shorts-track { display: flex; gap: 16px; width: max-content; }
.short-card {
  flex: none; width: 260px;
  aspect-ratio: 9/16;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--green-20); background: #000;
}
.short-card iframe { width: 100%; height: 100%; border: none; }

/* ── CASE STUDIES GRID ── */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 700px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--green-20); background: #000;
}
.case-card .video-16x9 { margin: 0; border-radius: 0; border: none; }

/* ── ROI TABLE ── */
.table-wrap {
  border: 1px solid var(--green-20); border-radius: var(--radius); overflow: hidden;
  max-width: 760px; margin: 0 auto;
}
table { width: 100%; border-collapse: collapse; }
thead { background: var(--green-10); }
th {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.1rem; text-transform: uppercase; color: var(--green);
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--green-20);
}
td { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.05); color: var(--gray-300); font-size: 1rem; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--green-10); }
.td-roi { color: var(--green); font-weight: 700; font-size: 1.2rem; text-align: right; }
.td-cap { color: var(--white); font-weight: 600; }

/* ── PROMISE SECTION ── */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .promise-grid { grid-template-columns: 1fr; } }

.promise-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid;
}
.promise-card--no {
  background: rgba(220,38,38,0.04);
  border-color: rgba(220,38,38,0.2);
}
.promise-card--yes {
  background: rgba(34,197,94,0.04);
  border-color: rgba(34,197,94,0.25);
}
.promise-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.promise-icon { font-size: 1.4rem; flex-shrink: 0; }
.promise-card h3 {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.4rem; text-transform: uppercase; margin: 0; line-height: 1;
}
.promise-card--no  h3 { color: #f87171; }
.promise-card--yes h3 { color: var(--green); }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.promise-list li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--gray-300); font-size: 0.95rem; line-height: 1.5;
}
.promise-card--no  .promise-list li::before { content: "✕"; color: #f87171; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.promise-card--yes .promise-list li::before { content: "✓"; color: var(--green); font-weight: 900; flex-shrink: 0; margin-top: 2px; }

/* ── FAQ ── */
.faq { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 28px;
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.15rem; text-transform: uppercase; color: var(--white);
  cursor: pointer; user-select: none;
  list-style: none;
  transition: background 0.2s, color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  color: var(--green); font-size: 1.5rem; font-style: normal;
  flex-shrink: 0; transition: transform 0.25s;
}
details[open] .faq-q { color: var(--green); background: var(--green-10); }
details[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 28px 24px;
  background: var(--green-10);
}
.faq-a p {
  color: var(--gray-300); font-size: 0.97rem; line-height: 1.7;
  font-style: normal;
}

/* ── FINAL CTA ── */
.final-cta { text-align: center; padding: 100px 0; }
.final-cta h2 { margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
.final-cta p { color: var(--gray-300); margin-bottom: 12px; }
.checklist { list-style: none; max-width: 520px; margin: 0 auto 36px; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray-300); }
.checklist li::before { content: "✓"; color: var(--green); font-weight: 900; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ── CALENDLY ── */
.calendly-wrap {
  border: 1px solid var(--green-20); border-radius: var(--radius);
  overflow: hidden; background: var(--white); min-height: 700px;
  max-width: 900px; margin: 0 auto;
}
.calendly-inline-widget { min-width: 320px; height: 700px; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0; text-align: center;
  color: var(--gray); font-size: 0.85rem;
}

/* ── FADE-IN (Intersection Observer) ── */
.fade { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade.visible { opacity: 1; transform: none; }

/* ── BOOKING SECTION HEADER ── */
.booking-header { text-align: center; margin-bottom: 36px; }
.booking-header h2 { margin-bottom: 10px; }
.booking-header p { color: var(--gray-300); max-width: 560px; margin: 0 auto; }
