* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

body {
  background: #0b0b0b;
  color: #fff;
}
.hero {
  padding: 0;
}

/* GLOBAL */
section {
  position: relative;
  padding: 120px 8%;
  width: 100%;
}

h1, h2 {
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

p, ul {
  text-align: center;
}

span {
  color: #ff4242;
}

.cta {
  margin-top: 30px;
  background: #ff4242;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;

  /* Glow */
  box-shadow:
    0 0 0 rgba(255, 66, 66, 0),
    0 8px 30px rgba(255, 66, 66, 0.45);

  transition: 
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.hero-content .cta {
  display: block;
  margin: 32px auto 0;
}
.hero-content small {
  text-align: center;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 rgba(255, 66, 66, 0),
    0 12px 40px rgba(255, 66, 66, 0.6);
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

small {
  display: block;
  margin-top: 10px;
  opacity: 0.7;
  text-align: center;
}
.hero-bg {
  position: absolute;
  z-index: 0;
  opacity: 0.09;
  filter: blur(1px);
  pointer-events: none;
}



.dumbbell-bg {
  width: 340px;
  top: 50%;
  left: 50%;
 transform: translate(-150%, -125%) rotate(28deg);

}


.coin-bg {
  width: 220px;
  top: 50%;
  left: 50%;
 transform: translate(110%, -35%) rotate(-12deg);

}



/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 8%;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 42px;

  line-height: 1.25;
  letter-spacing: -0.5px;
}
.hero p {
  margin: 30px auto;
  max-width: 700px;   /* ← key change */
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.8;
}

.dumbbell-hero {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 320px;
  opacity: 0.95;
  pointer-events: none;
}


/* PROBLEM */
/* PROBLEM SECTION */
.problem {
  padding: 140px 8%;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.problem-left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: left;
}

.problem-left p {
  opacity: 0.8;
  max-width: 360px;
  line-height: 1.6;
  text-align: left;
}
.problem-right {
  text-align: left;
}

.problem-right .intro {
  margin-bottom: 20px;
  opacity: 0.9;
}

.problem-right ul {
  list-style: none;
  padding: 0;
}

.problem-right li {
  margin-bottom: 14px;
  line-height: 1.6;
  opacity: 0.85;
}
.problem-footer {
  margin-top: 80px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}




.highlight {
  margin-top: 30px;
  font-weight: 600;
}

.thumb {
  position: absolute;
  left: -40px;
  top: 40px;
  width: 160px;
}

/* HARD TRUTH */
.hard-truth {
  padding: 140px 8%;
}

.hard-truth-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.hard-right h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  text-align: right;
}

.hard-right span {
  color: #ff4d4d;
}
.hard-left p {
  opacity: 0.85;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hard-left span {
  color: #ff4d4d;
  font-weight: 600;
}
.truth-card {
  margin-top: 30px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  max-width: 520px;
}

.truth-card h4 {
  margin-bottom: 16px;
  color: #ff4d4d;
}

.truth-card ul {
  list-style: none;
  padding: 0;
}

.truth-card li {
  margin-bottom: 10px;
  opacity: 0.9;
}
.hard-footer {
  margin-top: 90px;
  text-align: center;
  opacity: 0.85;
  font-size: 18px;
}

.hard-footer span {
  color: #ff4d4d;
  font-weight: 600;
}






/* WHAT WE DO */
.what-we-do {
 padding: 110px 8% 90px;

}

/* TOP ROW */
.what-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.what-heading h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
}

.what-heading span {
  color: #ff4d4d;
}

.what-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #e5e5e5;
  margin-bottom: 14px;
}

/* CARDS */
/* CARDS GRID */
.what-cards {
  display: grid;
  grid-template-columns: repeat(2, 420px);
  justify-content: center;
  gap: 26px 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* CARD STYLE */
.card {
  background: #ffffff;
  color: #000;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* STAGGERED EFFECT (FIGMA STYLE) */
.card:nth-child(odd) {
  transform: translateY(-14px);
}

.card:nth-child(even) {
  transform: translateY(14px);
}

/* FOOTER */
.what-footer {
  text-align: center;
  font-size: 18px;
  margin-top: 40px;
}

.what-footer span {
  color: #ff4d4d;
  font-weight: 600;
}



/* WHY DIFFERENT */
.why-different {
  padding: 140px 8%;
  text-align: center;
}

.why-different h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 80px;
}

.why-different span {
  color: #ff4d4d;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1100px;
  margin: 0 auto 80px;
  align-items: start;
  text-align: left;
}
.why-left ul {
  list-style: none;
  padding: 0;
}

.why-left li {
  margin-bottom: 12px;
  opacity: 0.85;
}
.flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.flow span {
  background: #fff;
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.arrow {
  background: none !important;
  color: #ff4d4d !important;
  font-weight: 700;
}
.profit {
  margin-top: 20px;
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 22px;
  font-weight: 600;
}
.why-footer {
  margin-bottom: 40px;
  font-size: 18px;
  opacity: 0.9;
}
.why-points {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.why-points div {
  background: #fff;
  color: #000;
  padding: 14px 22px;
  border-radius: 24px;
  font-size: 14px;
}
/* FOR / NOT FOR SECTION */
.for-who {
  text-align: left;
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.for-card {
  padding: 40px 36px;
  border-radius: 22px;
}

.for-card h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.for-card span {
  color: #ff4d4d;
}
.for-card ul {
  list-style: none;
  padding: 0;
}

.for-card li {
  margin-bottom: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.for-card.positive {
  background: #ffffff;
  color: #000000;
  padding: 40px 36px;
  border-radius: 22px;
}

.for-card.negative {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  padding: 40px 36px;
  border-radius: 22px;
}

.about-trust {
  background: #000;
  padding: 120px 20px;
}

.about-trust-content {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
}

.about-trust h2 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 40px;
}

.about-trust h2 span {
  color: #ff4d4d;
}

.trust-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.trust-left {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
}

.trust-right {
  list-style: none;
  padding: 0;
}

.trust-right li {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ddd;
}

.trust-footer {
  font-size: 18px;
  margin-top: 30px;
  color: #ccc;
}

.trust-footer span {
  color: #ff4d4d;
  font-weight: 600;
}

/* OFFER */
.offer-card {
  background: #f2f2f2;
  border-radius: 28px;
  padding: 80px 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Small eyebrow */
.offer-eyebrow {
  font-size: 18px;
  margin-bottom: 16px;
  color: #111;
}

/* Big headline */
.offer-title {
  color: #000;              /* BLACK */
  font-weight: 800;         /* BOLD but clean */
  letter-spacing: -0.5px;
}


.offer-title span {
  color: #ff4d4d;
  font-weight: 800;
}


/* THIS IS THE MAGIC PART */
.offer-body {
  max-width: 620px;   /* 👈 THIS MATCHES FIGMA */
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #111;
}

.offer-body p {
  margin-bottom: 18px;
}

/* Reassurance line */
.offer-reassurance {
  font-weight: 600;
  margin-top: 28px;
}

/* CTA */
.offer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 40px;
  background: #ff4d4d;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(255,77,77,0.5);
}

.offer-note {
  margin-top: 18px;
  font-size: 14px;
  color: #666;
}


.medal {
  position: absolute;
  right: -40px;
  top: -60px;
  width: 160px;
}
.what-we-do {
  padding: 140px 8%;
}

/* TOP ROW */
.what-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-bottom: 90px;
}

.what-heading h2 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
}

.what-heading span {
  color: #ff4d4d;
}

.what-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.highlight {
  color: #ff4d4d;
}

/* CARDS */
.what-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 1fr));
  gap: 24px 30px;
}

.card {
  background: #ffffff;
  color: #000;
  padding: 22px 26px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* FOOTER */
.what-footer {
  margin-top: 80px;
  text-align: center;
  font-size: 18px;
}

.what-footer span {
  color: #ff4d4d;
  font-weight: 600;
}

