/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --fire-orange: #FF6B00;
  --fire-red:    #E8220A;
  --fire-yellow: #FFB800;
  --dark-bg:     #0D0D0D;
  --dark-surface:#161616;
  --dark-card:   #1E1E1E;
  --text-primary:#F5F0EB;
  --text-muted:  #9A8F88;
  --border:      #2A2A2A;
  --max-w:       1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 17px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Fire Text ── */
.fire-text {
  background: linear-gradient(90deg, var(--fire-yellow), var(--fire-orange), var(--fire-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: linear-gradient(135deg, var(--fire-orange), var(--fire-red));
  color: #fff;
  padding: 16px 36px;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(232, 34, 10, 0.35);
}
.btn--large {
  padding: 20px 48px;
  font-size: 1.1rem;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 34, 10, 0.5);
  opacity: 0.93;
}

@keyframes arrow-fadein {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes arrow-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  animation:
    arrow-fadein 1.2s ease 1.5s both,
    arrow-bounce 2s ease-in-out 2.7s infinite;
  transition: color 0.2s;
}
.scroll-arrow:hover { color: var(--fire-orange); }
.scroll-arrow svg {
  width: 36px;
  height: 36px;
  display: block;
}

/* ── Section Base ── */
.section {
  padding: 96px 0;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 12px;
  margin-bottom: 48px;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #060200;
}

/* z-index stack: video(0) → gradient(1) → content(2) */
#fireBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.8) saturate(1.2);
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(6,2,0,0.82) 0%, rgba(6,2,0,0.45) 45%, rgba(6,2,0,0.05) 100%),
    linear-gradient(to bottom, transparent 55%, rgba(6,2,0,0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 20px;
}

.hero__content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero__cta-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ── PAIN POINTS ── */
.pain {
  background: var(--dark-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pain h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.pain__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pain__list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fire-orange);
  padding: 24px;
  border-radius: 6px;
  transition: border-left-color 0.2s;
}

.pain__list li:hover {
  border-left-color: var(--fire-red);
}

.pain__list .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain__list strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.pain__list p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ── SOCIAL PROOF ── */
.proof {
  background: var(--dark-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.proof__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 48px;
}

.proof__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--fire-orange);
  border-radius: 8px;
  padding: 36px 24px;
  transition: transform 0.2s, border-top-color 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--fire-red);
}

.stat-card__num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.stat-card__label span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.proof__capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}

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

.proof__cap {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
}

.proof__cap-img {
  width: calc(100% + 48px);
  margin: -24px -24px 0 -24px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px 8px 0 0;
  vertical-align: bottom;
}

.proof__cap-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  padding-top: 16px;
}

.proof__cap-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.proof__cap strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
}

.proof__cap p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

/* ── ABOUT ── */
.about__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
  background: var(--dark-card);
}

@media (max-width: 800px) {
  .about__split { grid-template-columns: 1fr; }
  .about__image { order: -1; }
}

.about h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}

.about p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about p strong {
  color: var(--text-primary);
}

/* ── SERVICES ── */
.services {
  background: var(--dark-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 48px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--fire-orange);
  transform: translateY(-3px);
}

.service-card__img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  margin: -32px -32px 24px -32px;
  width: calc(100% + 64px);
  background: var(--dark-bg);
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.service-card:hover .service-card__img img { opacity: 1; }

.service-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fire-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.service-card p:last-child {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse at center bottom, rgba(232,34,10,0.12) 0%, transparent 65%);
}

.cta-section__flame {
  font-size: 4rem;
  margin-bottom: 16px;
  display: block;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.form-wrap {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 8px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: visible;
}

.form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 834px;
  border: none;
  border-radius: 8px;
}

.cta-section__note {
  margin-top: 16px !important;
  font-size: 0.85rem !important;
  font-style: italic;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.footer__inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.footer__inner a {
  color: var(--fire-orange);
  text-decoration: none;
}

.footer__inner a:hover {
  text-decoration: underline;
}

.footer__sig {
  margin-top: 16px !important;
  font-style: italic;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .hero__content h1 { font-size: 2.4rem; }
  .section { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .pain__list li { flex-direction: column; gap: 12px; }
}
