/* =========================================================
   FONTS
   ========================================================= */
@font-face {
  font-family: "ITC Eras";
  src: url("./ITC\ Eras\ Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "ITC Content";
  src: url("./ITC\ Eras\ Book\ Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "ITC medium";
  src: url("./ITC\ Eras\ Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

/* =========================================================
   ROOT VARIABLES (merged from all sections, no duplicates)
   ========================================================= */
:root {
  /* shared brand palette */
  --blue: #1e4276;
  --green: #609142;
  --orange: #fcb257;
  --red: #ee595c;
  --black: #000000;
  --white: #ffffff;

  --page-bg: #ffffff;
  /* --page-width: 1875px; */
  --font-primary: "ITC Eras";
  --font-secondary: "ITC Content";
  --font-tertiary: "ITC Medium";

  /* FOCO advantage section */
  --foco-navy: #234978;
  --foco-gray: #8a8a8a;
  --foco-card: #f4f4f4;
  --foco-white: #ffffff;

  /* "Choose the format" cards section */
  --fmt-navy: #1f4a7c;
  --fmt-navy-dark: #1c4272;
  --fmt-card-bg: #f3f4f4;
  --fmt-body-text: #5a6570;
  --fmt-divider: #c7d3e0;
  --fmt-green: #84c464;

  /* "More than one revenue channel" banner */
  --rev-navy: #1e4676;

  /* "Founding 50" investor landing block */
  --inv-navy: #10315e;
  --inv-green: #80c165;
  --inv-input-bg: #d4d7dc;
}

/* =========================================================
   RESET (single copy — previously duplicated 3x)
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "ITC Eras", sans-serif;
  font-weight: 400;
  background: var(--page-bg);
  color: var(--blue);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* =========================================================
   SECTION A — HERO PAGE (logo, heading, 3 investment cards, CTA)
   ========================================================= */
.hero-page {
  position: relative;
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  background: var(--page-bg);
  overflow: hidden;
  padding-bottom: 44px;
  /* background-image removed from here */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height is set by JS to reach the decor-line, not hardcoded */
  background-image: url("./images/hero-banner.png");
  background-size: cover;
  background-position: center top;
  z-index: 0;
  opacity: 0.2;
}

/* everything else sits above the background layer */
.logo-wrap,
.hero,
.cards-section {
  position: relative;
  z-index: 1;
}

.logo-wrap {
  position: absolute;
  top: 20px;
  left: 218px;
}

.logo {
  width: 168px;
  height: auto;
  display: block;
}

.hero {
  text-align: center;
  padding-top: 124px;
}

.hero-eyebrow {
  /* font-family: "ITC Eras", sans-serif; */
  font-family: var(--font-tertiary);
  font-weight: 900;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--blue);
  margin-bottom: 4px;
}

.hero-title {
  font-family: "ITC Eras", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0.2px;
  color: var(--blue);
  margin-bottom: 6px;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-weight: 900;
  font-size: 25px;
  line-height: 1.3;
  color: var(--blue);
}

.cards-section {
  position: relative;
  margin-top: 74px;
max-width: 1600px;
width: 100%;
margin: 0 auto;
}

.decor-line {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 4px;
  display: flex;
  align-items: center;
  z-index: 1;
}

.line-seg {
  display: block;
  height: 4px;
}

.line-blue {
  background: var(--blue);
  flex: 1 1 40%;
}

.line-red {
  background: var(--red);
  flex: 0 0 50.6%;
}

.line-orange {
  background: var(--orange);
  flex: 0 0 3.6%;
}

.line-green {
  background: var(--green);
  flex: 1 1 40%;
}

.cards-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 27px;
  width: 90%;
  margin:  0 auto;
  margin-top: 7%;
}

.invest-card {
  position: relative;
  width: 100%;
  max-width: 465px;
  flex: 1 1 465px;
}

.card-media {
    width: 356px;
    height: 251px;
    background: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-shrink: 0;
    padding: 20px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: -34px;
  right: -7px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(30, 66, 118, 0.35);
  z-index: 3;
}

.badge-amount {
  font-family: "ITC Eras", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
}

.badge-unit {
  font-family: "ITC Eras", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin-top: 3px;
}

.card-label {
  margin-top: 4px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  font-family: "ITC Eras", sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 1px;
  padding: 14px 0;
  border-radius:  0px 0px 14px 14px;
  position: relative;
  left:44px;
  width: 269px;
}

.hero-description {
  text-align: center;
  max-width: 700px;
  margin: 64px auto 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.4;
  color: var(--blue);
}

.cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.cta-button {
  font-family: "ITC Eras", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--white);
  background: var(--blue);
  border: none;
  cursor: pointer;
  width: 688px;
  max-width: 90%;
  height: 68px;
  border-radius: 34px;
  transition: opacity 0.2s ease;
}

.cta-button:hover {
  opacity: 0.92;
}

.cta-button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .cards-section { padding: 0 60px; }
  .logo-wrap { left: 40px; }
  .hero-title { font-size: 46px; }
  .hero-eyebrow { font-size: 26px; }
  .hero-subtitle { font-size: 21px; }
  .card-media { height: 260px; }
  .badge { width: 108px; height: 108px; top: -26px; right: -6px; }
  .badge-amount { font-size: 26px; }
  .badge-unit { font-size: 15px; }
  .card-label { font-size: 20px; padding: 13px 0; }
  .decor-line { top: 155px; }
  .hero-description { font-size: 20px; }
  .cta-button { width: 520px; }
}

@media (max-width: 760px) {
  .hero-page { padding-bottom: 40px; display: none;}
  .logo-wrap { position: static; display: none; justify-content: center; padding-top: 24px; }
  .hero { padding-top: 28px; padding-left: 20px; padding-right: 20px; display: none;}
  .hero-eyebrow { font-size: 20px; }
  .hero-title { font-size: 30px; line-height: 1.2; }
  .hero-subtitle { font-size: 15px; }
  .cards-section { padding: 0 24px; margin-top: 44px; }
  .decor-line { display: none; }
  .cards-row { flex-direction: column; align-items: center; gap: 44px; }
  .invest-card { max-width: 340px; }
  .card-media { height: 220px; }
  .badge { width: 92px; height: 92px; top: -22px; right: -6px; }
  .badge-amount { font-size: 22px; }
  .badge-unit { font-size: 13px; }
  .card-label { font-size: 18px; padding: 13px 0; }
  .hero-description { font-size: 17px; padding: 0 24px; margin-top: 36px; }
  .cta-wrap { margin-top: 36px; }
  .cta-button { width: 90%; height: 54px; font-size: 17px; }
}

/* =========================================================
   SECTION B — THE FOCO ADVANTAGE (4-step process)
   ========================================================= */
.foco-advantage {
  background: var(--foco-white);
  padding: 56px 24px 64px;
}

.foco-advantage__container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.foco-advantage__header h2 {
  margin: 0;
  color: var(--foco-navy);
  font-weight: 800;
  font-family: var(--font-primary);
  font-size: 38px;
  /* letter-spacing: 1px; */
  line-height: 1.1;
}

.foco-advantage__tagline {
  margin: 10px 0 0;
  color: var(--foco-gray);
  font-family: var(--font-tertiary);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.foco-advantage__subtitle {
  margin: 14px 0 0;
  color: var(--foco-navy);
  font-weight: 500;
  font-size: 24px;
  font-family: var(--font-tertiary);
}

.foco-advantage__process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
}

.foco-advantage__card {
  width: 200px;
  height: 113px;
  background: var(--foco-card);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
  padding: 70px 0px;
}

.foco-advantage__card img {
  width: 38px;
  height: 48px;
  object-fit: contain;
}
.foco-advantage__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.foco-advantage__card span {
  color: var(--foco-navy);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-tertiary);
}

.foco-advantage__arrow {
  width: 80px;
  height: 39px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foco-advantage__arrow svg {
  width: 100%;
  height: 100%;
}

.foco-advantage__statement {
  margin: 48px 0 0;
  color: var(--foco-navy);
  font-weight: 700;
  font-size: 23px;
  font-family: var(--font-tertiary);
}

@media (max-width: 1024px) {
  .foco-advantage__process { flex-wrap: wrap; gap: 20px; }
  .foco-advantage__arrow { transform: rotate(90deg); width: 40px; }
}

@media (max-width: 767px) {
  .foco-advantage__header h2 { font-size: 32px; }
  .foco-advantage__tagline { font-size: 18px; letter-spacing: 3px; }
  .foco-advantage__subtitle { font-size: 18px; }
  .foco-advantage__statement { font-size: 18px; }
  .foco-advantage__process { flex-direction: column; }
  .foco-advantage__arrow { transform: rotate(90deg); }
}

@media (max-width: 767px) {

  .foco-advantage {
    padding: 0px 20px 0px;
  }

  .foco-advantage__container {
    max-width: 320px;
  }

  /* ---------- Heading ---------- */
  .foco-advantage__mobile-break {
    display: block;
  }

  .foco-advantage__header h2 {
    font-size: clamp(21px, 10vw, 37px);
    line-height: 1;
    letter-spacing: 0.2px;
  }

  .foco-advantage__tagline {
    margin-top: 8px;
    font-size: clamp(13px, 6.8vw, 24px);
    letter-spacing: 1px;
    line-height: 1.15;
  }

  .foco-advantage__subtitle {
    margin-top: 12px;
    font-size: clamp(12px, 6.4vw, 19px);
    line-height: 1.1;
    max-width: 308px;
    margin-inline: auto;
  }

  /* ---------- 2×2 process grid via a 3×3 track grid
     (card / arrow-gap / card columns and rows) ---------- */
  .foco-advantage__process {
    display: grid;
    grid-template-columns: 1fr clamp(28px, 8vw, 36px) 1fr;
    grid-template-rows: auto clamp(28px, 8vw, 36px) auto;
    align-items: center;
    justify-items: center;
    gap: 0;
    margin-top: clamp(32px, 8vw, 40px);
    width: 100%;
  }

  /* Card 1 — You Invest */
  .foco-advantage__card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  /* Arrow 1 — Card1 → Card2 (horizontal, unrotated) */
  .foco-advantage__arrow:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    transform: none;
  }

  /* Card 2 — We Select & Build */
  .foco-advantage__card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }

  /* Arrow 2 — Card2 ↓ Card3 (rotate 90deg) */
  .foco-advantage__arrow:nth-child(4) {
    grid-column: 3;
    grid-row: 2;
    transform: rotate(90deg);
  }

  /* Card 3 — We Operate */
  .foco-advantage__card:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
  }

  /* Arrow 3 — Card3 ← Card4 (rotate 180deg) */
  .foco-advantage__arrow:nth-child(6) {
    grid-column: 2;
    grid-row: 3;
    transform: rotate(180deg);
  }

  /* Card 4 — We Hire & Train */
  .foco-advantage__card:nth-child(7) {
    grid-column: 1;
    grid-row: 3;
  }

  /* ---------- Card sizing ---------- */
  .foco-advantage__card {
    width: 100%;
    max-width: clamp(88px, 55vw, 187px);
    height: clamp(76px, 22vw, 109px);
    padding: 0;
    gap: 6px;
    border-radius: 16px;
  }

  .foco-advantage__card img {
    width: auto;
    height: clamp(20px, 9vw, 43px);
  }

  .foco-advantage__card span {
    font-size: clamp(10px, 5vw, 16px);
    line-height: 1.15;
    text-align: center;
  }

  /* ---------- Arrows ---------- */
  .foco-advantage__arrow {
    width: clamp(18px, 5vw, 20px);
    height: clamp(18px, 5vw, 20px);
  }

  /* ---------- Bottom statement ---------- */
  .foco-advantage__statement {
    margin-top: clamp(28px, 7vw, 36px);
    font-size: clamp(12px, 6.4vw, 18px);
    line-height: 1.3;
    max-width: 303px;
    margin-inline: auto;
    font-weight: 700;
  }
}

/* =========================================================
   SECTION C — CHOOSE THE FORMAT (3 pricing cards over blue block)
   ========================================================= */

.investment-section {
  max-width: 1180px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
}


.format-header {
  background: var(--fmt-navy);
  border-radius: 26px;
  padding: 56px 40px 150px;
  text-align: center;
  font-family: var(--font-primary);
}

.format-header h1 {
  margin: 0;
  color: var(--white);
  font-size: 37px;
  font-weight: 800;
  /* font-style: italic; */
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.format-cards {
  display: flex;
  gap: 24px;
  margin-top: -101px;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.investment-card {
  /* flex: 1;
  background: var(--fmt-card-bg);
  border-radius: 18px; */
  overflow: visible;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.investment-up
{
 flex: 1;
  background: var(--fmt-card-bg);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  position: relative;
  /* top: -20px; */
  z-index: 5;
}

.card-body {
  padding: 30px 26px 26px;
  flex: 1;
}

.card-brand {
  display: block;
  color: var(--fmt-navy);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2px;
  font-family: var(--font-tertiary);
}

.card-type {
  display: block;
  color: var(--fmt-navy);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.price-box {
  background: var(--fmt-navy-dark);
  border-radius: 10px;
  padding: 7px 18px;
  margin-bottom: 16px;
}

.price-box span {
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
}

.format-card-subtitle {
  color: var(--fmt-navy);
  font-size: 19px;
  font-weight: 700;
  /* font-style: italic; */
  font-family: var(--font-tertiary);
  margin: 0 7px 16px;
}

.card-description {
  color: var(--fmt-body-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 16px;
  font-family: var(--font-tertiary);
}

.card-divider {
  border: none;
  border-top: 1px solid var(--fmt-divider);
  margin: 0 0 16px;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  color: var(--fmt-navy);
  font-size: 15px;
  font-weight: 500;
  line-height: 0.6;
}

.card-features li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-tertiary);
  list-style: none;
}

.features-row span::before {
  content: "\25AA";
  margin-right: 6px;
  font-size: 27px;
}

.card-button {
  display: block;
  width: 100%;
  border: none;
  padding: 22px 0;
  background: var(--fmt-navy);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
  cursor: default;
  position: relative;
  top:-14px;
}

.investment-card.featured .card-button {
  background: var(--fmt-green);
}

.investment-card {
  flex: 1;
  background: var(--fmt-card-bg);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.investment-up {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-button {
  display: block;
  width: 100%;
  border: none;
  padding: 33px 0;
  background: var(--fmt-navy);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
  cursor: default;
  /* position: relative; top: -14px;  <-- removed, this caused the mismatch */
}

.investment-card.featured .card-button {
  background: var(--fmt-green);
}

@media (max-width: 900px) {
  .format-header { padding: 40px 24px 60px; display: none;}
  .format-header h1 { font-size: 26px; }
  .format-cards { flex-direction: column; margin-top: -40px; padding: 0 20px; }
}



/* =========================================================
   SCALE-FIT WRAPPER
   Keeps the fixed-pixel sections (.canvas, .investor-page)
   pixel-perfect at 1600px wide, but scales them down to match
   the viewport on narrower screens instead of overflowing it.
   The scale factor is applied via JS (see bottom of body).
   ========================================================= */
.scale-fit {
  width: 100%;
  max-width: 1600px;
  margin: 60px auto;
  overflow: hidden;
}

.scale-fit > * {
  transform-origin: top left;
  margin: 0;
}

/* =========================================================
   SECTION D — MORE THAN ONE REVENUE CHANNEL (fixed 1600x384)
   ========================================================= */
.canvas {
  position: relative;

  height: 384px;
  background: var(--rev-navy);
  /* overflow: hidden; */
}
.canvas-div{
  max-width: 1600px;
  width: 80%;
  margin: 0 auto;
}

.heading {
  position: absolute;
  top: 66px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  /* font-style: italic; */
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.stages {
  position: absolute;
  top: 158px;
  left: 0;
  width: 100%;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.stage {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  font-family:var(--font-tertiary);
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 18px;
}

.canvas-description {
  position: absolute;
  top: 220px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-tertiary);
  color: #f2f4f7;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.bottom-title {
  position: absolute;
  top: 275px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 39px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 767px) {

  .canvas {
    height: auto;
    padding: clamp(28px, 8vw, 40px) 0 clamp(32px, 9vw, 44px);
  }

  .canvas-div {
    width: calc(100% - 40px);
    max-width: 340px;
  }

  /* ---------- Heading ---------- */
  .heading {
    position: static;
    font-size: clamp(19px, 7.6vw, 26px);
    line-height: 1.15;
    max-width: 243px;
    margin: 0 auto;
  }

  /* ---------- Stages: vertical stack, not a flex row ---------- */
  .stages {
    position: static;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: clamp(10px, 2.8vw, 13px);
    width: 86%;
    margin: 0 auto;
      margin-top: clamp(20px, 5.5vw, 26px);
  }

  .stage {
    width: 100%;
    height: clamp(40px, 12.5vw, 46px);
    background: transparent;
    border-radius: 8px;
    font-size: clamp(13px, 5.8vw, 20px);
    font-weight: 500;
    white-space: normal;
    padding: 0 16px;
  }

  /* ---------- Supporting paragraph ---------- */
  .canvas-description {
    position: static;
    margin-top: clamp(22px, 6vw, 28px);
    font-size: clamp(12.5px, 3.6vw, 14px);
    line-height: 1.35;
    max-width: 260px;
    margin-inline: auto;
  }

  /* ---------- Bottom bold statement ---------- */
  .bottom-title {
    position: static;
    margin-top: clamp(16px, 4.5vw, 20px);
    font-size: clamp(16px, 6.8vw, 24px);
    font-style: italic;
    font-weight: 700;
    line-height: 1.25;
  }

}

/* =========================================================
   SECTION E — FOUNDING 50 INVESTOR OPPORTUNITY (fixed 1600x845)
   ========================================================= */

.investor-page {
  position: relative;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  height: 845px;
  overflow: hidden;
}

.main-section {
  position: relative;
  max-width: 1600px;
  width: 80%;
  margin: 0 auto;
  height: 755px;
  background: var(--inv-navy);
}

.left-content {
  position: absolute;
  left: 180px;
  top: 98px;
  width: 640px;
}

.left-content h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-tertiary);
}

.headline {
  margin-top: 12px;
  color: var(--inv-green);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-tertiary)
}
.headline br{
  display: none;
}
.investor-description {
  margin-top: 14px;
  color: #e7eaef;
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
  font-family: var(--font-tertiary);
}

.investor-cards {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.investor-cards .card {
  width: 438px;
  height: 96px;
  border: 2px dashed #4a76ad;
  border-radius: 13px;
  padding: 13px 0 0 28px;
}

.card-title {
  color: var(--inv-green);
  font-size: 30px;
  font-weight: 700;
  font-family: var(--font-tertiary);
}

.investor-card-subtitle {
  margin-top: 5px;
  color: #e7eaef;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-tertiary);
}

.right-content {
  position: absolute;
  left: 952px;
  top: 112px;
  width: 393px;
}

.right-content h2 {
  color: #ffffff;
  font-size: 29px;
  font-weight: 600;
  line-height: 33px;
  margin: 0;
  font-family: var(--font-tertiary);
}

.form-fields {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-fields input {
  width: 390px;
  height: 50px;
  border: none;
  border-radius: 11px;
  background: var(--inv-input-bg);
  padding: 0 23px;
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--inv-navy);
}

.form-fields input::placeholder {
  color: var(--inv-navy);
  opacity: 0.85;
}

.request-btn {
  margin-top: 22px;
  width: 231px;
  height: 58px;
  background: var(--inv-green);
  border: none;
  border-radius: 11px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: default;
}

.investor-page footer {
  position: absolute;
  left: 0;
  top: 755px;
  width: 1600px;
  height: 89px;
  background: var(--inv-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-tertiary);
}

.investor-page footer p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}
.investor-page footer p  br{
  display: none;
}
.left-content {
  position: absolute;
  left: 180px;
  top: 98px;
  width: 640px;
}

.left-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  pointer-events: none;
}

.main-section {
  position: relative;
  width: 1600px;
  height: 755px;
  background: var(--inv-navy);
}

.form-fields__select {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  background-color: #d9dde1; /* match your input grey */
  color: #1e3a5f;            /* match your input text color */
  font-size: 16px;
  font-family: var(--font-tertiary);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.card-visual, .card-visual__title, .card-visual__badge{
  display: none;
}
/* =========================================================
   RESPONSIVE FIX — LAPTOP / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1600px) {

    .investor-page {
        width: 100%;
        max-width: 1600px;
    }

    .main-section {
        width: 100%;
        max-width: 1600px;
    }

    .left-content {
        left: 7.25%;
    }

    .right-content {
        left: 59.5%;
    }

    .investor-page footer {
        width: 100%;
    }
}


@media (max-width: 767px) {

  /* ---------- Hide the separate image-teaser section — its
     content is now merged into the format-cards on mobile ---------- */
  .cards-section {
    display: none;
  }

  /* ---------- format-cards: single centered vertical stack ---------- */
  .format-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 8vw, 44px);
    width: 100%;
    margin-top: 0;
    padding: 0 16px;
  }

  .investment-card,
  .investment-card.featured {
    position: relative;
    width: min(92vw, 360px);
    max-width: 360px;
    flex: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }

  .investment-up {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    position: static;
  }

  /* ---------- Image + circular badge (new mobile-only block) ---------- */
  .card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 87%;
    height: clamp(150px, 55vw, 217px);
    background:  #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 16px;
    margin: 0 auto;
  }

  .card-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .card-visual__badge {
    position: absolute;
    top: -18px;
    right: -10px;
    width: clamp(56px, 16vw, 68px);
    height: clamp(56px, 16vw, 68px);
    border-radius: 50%;
    background: var(--fmt-navy-dark);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(30, 66, 118, 0.35);
    z-index: 3;
  }

  .card-visual__badge-amount {
    font-family: var(--font-tertiary);
    font-weight: 700;
    font-size: clamp(16px, 4.6vw, 19px);
    line-height: 1;
  }

  .card-visual__badge-unit {
    font-family: var(--font-tertiary);
    font-weight: 700;
    font-size: clamp(9px, 2.6vw, 11px);
    line-height: 1.2;
    margin-top: 2px;
  }

  /* ---------- Title bar (replaces card-brand/card-type/price-box) ---------- */
  .card-visual__title {
    display: block;
    margin: 0 auto;
    width: min(78%, 265px);
    background: var(--fmt-navy-dark);
    color: var(--white);
    text-align: center;
    font-family: var(--font-tertiary);
    font-weight: 700;
    font-size: clamp(15px, 7.6vw, 24px);
    letter-spacing: 1px;
    padding: clamp(9px, 2.6vw, 12px) 0;
    border-radius: 0 0 14px 14px;
  }

  /* ---------- Hide desktop text elements now replaced by the badge/title bar ---------- */
  .investment-card .card-brand,
  .investment-card .card-type,
  .investment-card .price-box,
  .investment-card .card-divider {
    display: none;
  }

  .card-body {
    padding: 0;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .format-card-subtitle {
    margin: clamp(10px, 3vw, 14px) 0 0;
    color: var(--fmt-navy);
    font-weight: 700;
    font-size: clamp(15px, 5.4vw, 24px);
  }

  .card-description {
    margin: 6px 0 0;
    color: var(--fmt-body-text);
    font-weight: 500;
    font-size: clamp(12px, 4.4vw, 17px);
    line-height: 1.1;
    max-width: 260px;
  }

.card-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: clamp(10px, 3vw, 14px) 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(12px, 3.6vw, 14px);
  line-height: 0.6;
}

.features-row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
}

.features-row span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}



/* Remove the old grid-column rules entirely — not needed with flex */
  /* ---------- Button: pill shape, green for every card (matches screenshot) ---------- */
  .card-button,
  .investment-card.featured .card-button {
    display: block;
    position: static;
    margin: clamp(14px, 4vw, 18px) auto 0;
    width: min(88%, 278px);
    height: auto;
    padding: clamp(9px, 2.6vw, 11px) 0;
    border-radius: 999px;
    background: var(--fmt-green);
    color: var(--white);
    font-style: normal;
    font-size: clamp(13px, 4.8vw, 19px);
  }
}
.investor-break--mobile { display: none; }

@media (max-width: 767px) {
  .investor-break--desktop { display: none; }
  .investor-break--mobile { display: block; }
    .investor-page {
    height: auto;
    max-width: 100%;
  }

  .main-section {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: clamp(28px, 8vw, 36px) 20px clamp(32px, 9vw, 40px);
  }

  /* ---------- Hide the form entirely on mobile ---------- */
  .right-content {
    display: none;
  }

  /* ---------- Left content: from absolute to normal flow ---------- */
  .left-content {
    position: static;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
  }

  .left-content::after {
    display: none; /* desktop-only fade edge, not relevant in single-column mobile */
  }
  .left-content h1 br{
    display: none;
  }
  .left-content h1 {
    font-size: clamp(20px, 8.6vw, 27px);
    font-weight: 500;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
  }
  .headline br{
    display: block;
  }
  .headline {
    margin-top: 10px;
    font-size: clamp(18px, 8vw, 27px);
    line-height: 1;
    letter-spacing: 0.2px;
  }

  .investor-description {
    margin-top: 12px;
    font-size: clamp(13px, 5.8vw, 17px);
    line-height: 1.2;
    max-width: 225px;
    margin-inline: auto;
  }

  /* ---------- Investment cards ---------- */
  .investor-cards {
    margin-top: clamp(20px, 5.5vw, 26px);
    gap: 12px;
    width: 100%;
  }

  .investor-cards .card {
    width: 100%;
    height: auto;
    min-height: 76px;
    border: 1.5px dashed #4a76ad;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
  }

  .card-title {
    font-size: clamp(18px, 11.2vw, 33px);
  }

  .investor-card-subtitle {
    margin-top: 4px;
    font-size: clamp(12px, 5.6vw, 17px);
  }

  /* ---------- Footer: from absolute to natural flow ---------- */
.investor-page footer {
  position: static;
  width: 100%;
  height: auto;
  padding: clamp(18px, 5vw, 22px) 24px;
  text-align: center;
}

.investor-page footer p br{
  display: block;
}

.investor-page footer p {
  font-size: clamp(12.5px, 5.6vw, 19px);
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
  margin: 0;
}

.investor-page footer p a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.investor-page footer p a:hover {
  text-decoration: underline;
}
  .investor-page footer p .footer-separator {
    display: none;
  }
}
/* =========================================================
   ABSOLUTE MOBILE WIZARD
   Fully self-contained. Hidden above 767px so it never
   affects any existing desktop layout.
   ========================================================= */

.absolute-mobile-wizard {
  --absolute-navy: #1b3a63;
  --absolute-navy-deep: #14284a;
  --absolute-green: #6fb43f;
  --absolute-card-bg: #fbfbf9;
  --absolute-option-bg: #ffffff;
  --absolute-border: #e3e1da;
  --absolute-text: #1b3a63;
  --absolute-text-muted: #6d7a90;
  --absolute-bg: #f4f3ee;

  display: none; /* revealed only under the mobile breakpoint */
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding-bottom: 40px;
  font-family: "Poppins", sans-serif;
}

.absolute-mobile-wizard * {
  box-sizing: border-box;
}

/* ---------- Background pattern — top half only ---------- */
.absolute-mobile-wizard__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;              /* was inset:0 (full height) — now only the top half */
  z-index: 0;
  background-image: url('./images/hero-banner.png');
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.2;
}

/* ---------- Edge accent bars — thin full-width lines, not short tabs ---------- */
.absolute-mobile-wizard__edge-accent {
  position: absolute;
  top: 70%;                 /* aligned with the card's option-list area, per screenshot */
  width: 50%;
  height: 3px;
  z-index: 1;
}

.absolute-mobile-wizard__edge-accent--left {
  left: 0;
  background: var(--absolute-navy-deep);
}

.absolute-mobile-wizard__edge-accent--right {
  right: 0;
  background: var(--absolute-green);
}

/* ---------- Logo ---------- */
.absolute-mobile-wizard__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: clamp(140px, 42vw, 190px);
  height: auto;
  margin: 40px auto 0;
}

/* ---------- Hero text ---------- */
.absolute-mobile-wizard__title {
  position: relative;
  z-index: 2;
  margin: 22px auto 0;
  max-width: 320px;
  text-align: center;
  font-weight: 400;
  font-size: clamp(19px, 5.4vw, 22px);
  line-height: 1.35;
  color: var(--absolute-text);
}

.absolute-mobile-wizard__title strong {
  display: block;
  font-weight: 700;
  font-size: clamp(21px, 8.8vw, 30px);
  font-family: "ITC Eras", sans-serif;
  line-height: 1;
}

.invest-india{
  font-family: var(--font-tertiary);
  font-size: 7vw;
}

.absolute-mobile-wizard__subtitle{
  font-family: var(--font-secondary);
}

.absolute-mobile-wizard__subtitle {
  position: relative;
  z-index: 2;
  margin: 14px auto 0;
  max-width: 300px;
  text-align: center;
  font-size: clamp(13px, 5.8vw, 18px);
  line-height: 1.2;
  color: var(--absolute-text);
}

/* ---------- Card ---------- */
.absolute-mobile-wizard__card {
  position: relative;
  z-index: 2;
  width: calc(87% - 32px);
  max-width: 335px;
  margin: 28px auto 0;
  background: var(--absolute-card-bg);
  border: 1px solid var(--absolute-border);
  border-radius: 28px;
  /* box-shadow: 0 18px 40px rgba(20, 40, 74, 0.1); */
  padding: 26px 20px 20px;
}

.absolute-mobile-wizard__form {
  position: relative;
}

.absolute-mobile-wizard__viewport {
  position: relative;
}

/* One step visible at a time */
.absolute-mobile-wizard__step {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.absolute-mobile-wizard__step.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.absolute-mobile-wizard__step.is-leaving-back {
  transform: translateX(16px);
}

.absolute-mobile-wizard__step.is-leaving-forward {
  transform: translateX(-16px);
}

@media (prefers-reduced-motion: reduce) {
  .absolute-mobile-wizard__step {
    transition: opacity 0.15s ease;
    transform: none !important;
  }
}

.absolute-mobile-wizard__question {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: clamp(18px, 6.6vw, 26px);
  line-height: 1.1;
  color: var(--absolute-navy);
  text-align: center;
  font-family: var(--font-primary);
}

/* ---------- Options ---------- */
.absolute-mobile-wizard__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.absolute-mobile-wizard__options--compact {
  flex-direction: row;
}

.absolute-mobile-wizard__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: var(--absolute-option-bg);
  border: 1.5px solid var(--absolute-border);
  border-radius: 14px;
  padding: 15px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--absolute-navy);
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.absolute-mobile-wizard__option:active {
  transform: scale(0.98);
}

.absolute-mobile-wizard__option.is-selected {
  border-color: var(--absolute-navy);
  background: #eef3f9;
}

.absolute-mobile-wizard__option--compact {
  flex: 1 1 0;
  justify-content: center;
}

.absolute-mobile-wizard__option-label {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
}

.absolute-mobile-wizard__option-value {
  flex: 0 0 auto;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Step 7: contact fields ---------- */
.absolute-mobile-wizard__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.absolute-mobile-wizard__field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.absolute-mobile-wizard__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--absolute-navy);
}

.absolute-mobile-wizard__input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--absolute-text);
  background: #ffffff;
  border: 1.5px solid var(--absolute-border);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease;
}

.absolute-mobile-wizard__input:focus {
  border-color: var(--absolute-navy);
}

.absolute-mobile-wizard__input:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}

.absolute-mobile-wizard__submit {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  background: var(--absolute-navy);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.absolute-mobile-wizard__submit:hover,
.absolute-mobile-wizard__submit:focus-visible {
  background: var(--absolute-navy-deep);
}

/* ---------- Footer: Back (left) + Step/Percent (right) ---------- */
.absolute-mobile-wizard__footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.absolute-mobile-wizard__back {
  flex: 0 0 auto;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--absolute-text-muted);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.absolute-mobile-wizard__back.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.absolute-mobile-wizard__step-label {
  flex: 1 1 auto;
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  color: var(--absolute-navy);
}

.absolute-mobile-wizard__terms {
  width: 100%;
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: var(--absolute-text-muted);
}

/* ---------- Thank-you state ---------- */
.absolute-mobile-wizard__thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 4px 4px;
}

.absolute-mobile-wizard__thankyou:not([hidden]) {
  display: flex;
}

.absolute-mobile-wizard__thankyou-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--absolute-navy);
  margin: 0 0 16px;
}

.absolute-mobile-wizard__thankyou-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--absolute-text-muted);
  max-width: 280px;
  margin: 0 0 22px;
}

.absolute-mobile-wizard__back-to-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: var(--absolute-navy);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.absolute-mobile-wizard__back-to-form:hover,
.absolute-mobile-wizard__back-to-form:focus-visible {
  background: var(--absolute-navy-deep);
}

/* =========================================================
   BREAKPOINT — mobile only
   ========================================================= */
@media (max-width: 767px) {
  .absolute-mobile-wizard {
    display: block;
  }
}

@media (max-width: 359px) {
  .absolute-mobile-wizard__question {
    font-size: 17px;
  }

  .absolute-mobile-wizard__option {
    padding: 13px 14px;
    font-size: 13px;
  }

  .absolute-mobile-wizard__card {
    padding: 22px 16px 16px;
  }
}

/* success -msg */
.success-message
{
  background-color: var(--inv-green);
  color: #ffffff;
  font-family: var(--font-tertiary);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 16px;
  margin-top: 20px;
}