:root {
  --orange: #f58220;
  --orange2: #ffae42;
  --black: #111;
  --charcoal: #202124;
  --grey: #f6f7f9;
  --muted: #667085;
  --line: #e8eaef;
  --white: #fff;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.12);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Poppins, Inter, Arial, sans-serif;
  color: var(--black);
  background: #fff;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1180px, 92%);
  margin: auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  height: 52px;
  width: auto;
}
.menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
.menu a {
  opacity: 0.82;
}
.menu a:hover {
  color: var(--orange);
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #111;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  box-shadow: 0 12px 30px rgba(245, 130, 32, 0.28);
  cursor: pointer;
}
.btn.dark {
  background: #111;
  color: white;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.22);
}
.btn.ghost {
  background: white;
  border: 1px solid var(--line);
  box-shadow: none;
  color: #111;
}
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(100deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.5)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80")
      center/cover fixed;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 18%,
      rgba(245, 130, 32, 0.45),
      transparent 28%
    ),
    linear-gradient(to top, rgba(255, 255, 255, 0.08), transparent);
  z-index: -1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(16px);
}
.eyebrow.dark {
  color: #111;
  background: #fff;
  border: 1px solid var(--line);
}
.hero h1 {
  color: white;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  margin: 22px 0;
  font-weight: 900;
  letter-spacing: -3px;
  max-width: 980px;
}
.hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  max-width: 780px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.floating-card {
  position: absolute;
  right: 7%;
  bottom: 8%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  width: 300px;
  animation: float 5s ease-in-out infinite;
}
.floating-card strong {
  font-size: 32px;
}
.pulse {
  height: 10px;
  width: 10px;
  background: #16a34a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.12);
}
@keyframes float {
  50% {
    transform: translateY(-16px);
  }
}
.trust {
  background: #111;
  color: #fff;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: #282828;
}
.trust-item {
  background: #111;
  padding: 22px;
  text-align: center;
  font-weight: 800;
}
.trust-item span {
  color: var(--orange);
  margin-right: 8px;
}
.section {
  padding: 86px 0;
}
.section.soft {
  background: var(--grey);
}
.head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}
.head h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  margin: 0;
  letter-spacing: -2px;
}
.head p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stat:before {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.12);
}
.stat b {
  font-size: 42px;
}
.stat p {
  color: var(--muted);
  font-weight: 700;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 50px rgba(17, 17, 17, 0.08);
  transition:
    0.35s transform,
    0.35s box-shadow;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.card-img {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.55), transparent);
}
.tag {
  display: inline-flex;
  background: rgba(245, 130, 32, 0.13);
  color: #9a4a08;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
}
.card-body {
  padding: 24px;
}
.card h3 {
  font-size: 24px;
  margin: 12px 0;
}
.card p {
  color: var(--muted);
  line-height: 1.65;
}
.opps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.opp {
  background: #111;
  color: white;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.opp:before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--orange), transparent);
  border-radius: 50%;
  opacity: 0.55;
}
.opp b {
  font-size: 34px;
}
.opp small {
  color: #ccc;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  position: relative;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  font-weight: 900;
  margin-bottom: 18px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.image-panel {
  min-height: 520px;
  border-radius: var(--radius);
  background: center/cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.image-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.45), transparent);
}
.list {
  display: grid;
  gap: 12px;
}
.list div {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: 16px;
  font-weight: 700;
}
.list span {
  color: var(--orange);
  font-weight: 900;
}
.cta {
  background: linear-gradient(135deg, #111, #272727);
  color: white;
  border-radius: 36px;
  padding: 58px;
  position: relative;
  overflow: hidden;
}
.cta:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(var(--orange), transparent 60%);
  opacity: 0.7;
}
.cta h2 {
  font-size: 48px;
  margin: 0 0 15px;
  letter-spacing: -2px;
}
.footer {
  background: #0d0d0d;
  color: white;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer a,
.footer p {
  color: #bbb;
  line-height: 1.9;
}
.subhero {
  background:
    linear-gradient(100deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.44)),
    var(--bg) center/cover;
  padding: 110px 0;
  color: white;
}
.subhero h1 {
  font-size: 64px;
  margin: 18px 0 8px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
}
.form textarea {
  grid-column: 1/-1;
  min-height: 140px;
}
.wide {
  grid-column: 1/-1;
}
.ticker {
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 18px 0;
}
.ticker-track {
  white-space: nowrap;
  animation: marq 22s linear infinite;
  font-weight: 900;
  color: #222;
}
.ticker-track span {
  margin-right: 44px;
}
.ticker-track em {
  color: var(--orange);
  font-style: normal;
}
@keyframes marq {
  to {
    transform: translateX(-50%);
  }
}
.reveal {
  animation: rise 0.8s ease both;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}
@media (max-width: 900px) {
  .menu {
    display: none;
  }
  .floating-card {
    display: none;
  }
  .trust-row,
  .stats,
  .grid,
  .opps,
  .timeline,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 74vh;
  }
  .hero h1 {
    letter-spacing: -1px;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .subhero h1 {
    font-size: 42px;
  }
  .head {
    display: block;
  }
  .cta {
    padding: 34px;
  }
  .cta h2 {
    font-size: 34px;
  }
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-8px);
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--orange),
    var(--orange2)
  );
  font-weight: 900;
  margin-bottom: 18px;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17,17,17,.05);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--orange);
  transition: .3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: .35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 24px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* FAQ */

.faq-premium{
  max-width:900px;
  margin:auto;
}

.faq-item{
  margin-bottom:20px;
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(15px);
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 20px 60px rgba(17,17,17,.08);
  transition:.35s;
}

.faq-item:hover{
  transform:translateY(-4px);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:28px 32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:20px;
  font-weight:800;
}

.faq-plus{
  font-size:34px;
  color:var(--orange);
  transition:.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:.4s ease;
}

.faq-answer p{
  padding:0 32px 28px;
  color:var(--muted);
  line-height:1.9;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-plus{
  transform:rotate(45deg);
}

/* CTA */

.mega-cta{
  position:relative;
  overflow:hidden;
  text-align:center;
  border-radius:40px;
  padding:90px 60px;
  background:linear-gradient(
    135deg,
    #111,
    #1f1f1f,
    #111
  );
  color:white;
}

.cta-glow{
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(
    rgba(245,130,32,.8),
    transparent 70%
  );
  top:-250px;
  right:-150px;
  animation:floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow{
  50%{
    transform:translateY(40px);
  }
}

.mega-tag{
  display:inline-block;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  padding:12px 20px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
}

.mega-cta h2{
  font-size:clamp(44px,6vw,76px);
  line-height:.95;
  margin:25px 0;
  letter-spacing:-3px;
}

.mega-cta p{
  max-width:760px;
  margin:auto;
  color:rgba(255,255,255,.85);
  line-height:1.9;
  font-size:18px;
}

.mega-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:35px;
}

.mega-stats{
  margin-top:55px;
  display:flex;
  justify-content:center;
  gap:70px;
  flex-wrap:wrap;
}

.mega-stats strong{
  display:block;
  font-size:42px;
  color:var(--orange);
}

.mega-stats span{
  color:#bbb;
}

@media(max-width:900px){

  .mega-cta{
    padding:60px 25px;
  }

  .mega-stats{
    gap:30px;
  }

  .faq-question{
    font-size:17px;
    padding:22px;
  }

}
.faq-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-bottom:50px;
}

.faq-head h2{
  margin:0 0 15px;
}

.faq-head p{
  max-width:700px;
  margin:0 auto;
  color:var(--muted);
  line-height:1.8;
}