/* ═══════════════════════════════════════════════
   GoldPe Franchise – Hero Page
   Design reference: Figma node 6:1552
   Canvas: 1440 × 846 px
═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  width: 100%;
  min-height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; }

/* ══════════════════════════════════════════════
   Hero Wrapper  (full viewport / 1440 × 846 ref)
══════════════════════════════════════════════ */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #03190E;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ══════════════════════════════════════════════
   Background Image + Overlays
══════════════════════════════════════════════ */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}

/* Subtle top-edge darkening */
.overlay {
  position: absolute;
  inset: 0;
}

.overlay-top {
  background: linear-gradient(
    to bottom,
    rgba(7, 17, 11, 0.45) 0%,
    rgba(0, 0, 0, 0) 27%
  );
}

/* Heavy left-to-right darkening so text is readable */
.overlay-left {
  background: linear-gradient(
    to right,
    rgba(7, 17, 11, 0.92) 0%,
    rgba(7, 17, 11, 0.85) 38%,
    rgba(7, 17, 11, 0.40) 60%,
    rgba(0, 0, 0, 0) 78%
  );
}

/* Navbar styles are in css/navbar.css */

/* ══════════════════════════════════════════════
   Hero Section  (y=221 in 846px frame)
══════════════════════════════════════════════ */
.hero-section {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 126px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

/* ── Headline group (badge + h1) ── */
.headline-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

/* ── Trust Badge ── */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #FFCE1B;
  border-radius: 9999px;
  padding: 6px 16px;
  width: fit-content;
  margin-bottom: 0;
}

.badge-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  /* Figma has scaleY(-1) on the icon – flip it */
  transform: scaleY(-1);
}

.badge-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #FFC800;
  white-space: nowrap;
}

/* ── Headline ── */
.hero-headline {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.17;
  color: #fff;
  margin-top: 4px;
  max-width: 720px;
}

/* ── Description ── */
.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  max-width: 687px;
  margin-top: 12px;
}

/* ── CTA Buttons ── */
.cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(24px, 4vh, 64px);
}

.hero-section .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 306px;
  height: 64px;
  background: #FFCE1B;
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
  border-radius: 16px;
  box-shadow:
    0 20px 25px 0 rgba(13, 73, 67, 0.30),
    0 8px 10px 0 rgba(13, 73, 67, 0.30);
  transition: background 0.2s, transform 0.15s;
}

.hero-section .btn-primary:hover { background: #f5c200; transform: translateY(-2px); }

.hero-section .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 278px;
  height: 64px;
  background: #fff;
  color: #0D4943;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  white-space: nowrap;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  transition: background 0.2s, transform 0.15s;
}

.hero-section .btn-secondary:hover { background: #f5f7fa; transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   Stats Bar  (pinned to bottom of viewport)
══════════════════════════════════════════════ */
.stats-section {
  position: relative;
  z-index: 10;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 126px 40px;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
}

.stats-card {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px 24px;
  width: 610px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.stat-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #FFCE1B;
  white-space: nowrap;
}

.stat-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   Responsive
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero-section,
  .stats-section {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 900px) {
  .hero-section { padding: 0 24px; }
  .stats-section { padding: 0 24px 32px; }

  .hero-desc { font-size: 16px; }
}

@media (max-width: 640px) {
  .hero-section { padding: 0 16px; }
  .stats-section { padding: 0 16px 24px; }

  .hero-headline { font-size: 30px; }
  .hero-desc { font-size: 14px; margin-top: 8px; }

  .cta-group {
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
    align-items: flex-start;
  }

  .hero-section .btn-primary,
  .hero-section .btn-secondary { width: 100%; max-width: 100%; font-size: 15px; }

  .stats-card {
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat-value { font-size: 20px; }
  .stat-label { font-size: 14px; }
}

/* ═══════════════════════════════════════════════
   Process Section – Solving Trading Challenges
═══════════════════════════════════════════════ */
.process-section {
  background: #ffffff;
  width: 100%;
  padding: 96px 126px;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ── Header ── */
.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.process-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063B1F;
}

.process-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #64748B;
  max-width: 672px;
}

/* ── Cards row ── */
.process-cards {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.process-card {
  flex: 1;
  position: relative;
  background: rgba(248, 252, 249, 0.5);
  border: 1px solid #F1F9F3;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 286px;
  overflow: hidden;
}

/* Featured card (middle) */
.process-card--featured {
  background: #ffffff;
  border-color: #E2E8F0;
  box-shadow:
    0 20px 25px -5px rgba(226, 232, 240, 0.5),
    0 8px 10px -6px rgba(226, 232, 240, 0.5);
}

/* Gold top bar on featured card */
.card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #F4C025;
  border-radius: 16px 16px 0 0;
}

/* ── Icon wrapper ── */
.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: rgba(244, 192, 37, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 26px;
  flex-shrink: 0;
}

.card-icon-wrap svg {
  transform: scaleY(-1);
}

/* ── Card text ── */
.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0F172A;
  margin-bottom: 12px;
}

.card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #475569;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .process-section { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .process-section { padding: 64px 24px; }
  .process-cards { flex-direction: column; gap: 20px; }
  .process-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════
   Roadmap Section – The Operational Roadmap
═══════════════════════════════════════════════ */
.roadmap-section {
  background: #f0f4f1;
  width: 100%;
  padding: 96px 126px;
}

.roadmap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ── Header ── */
.roadmap-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.roadmap-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063B1F;
}

.roadmap-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #64748B;
  max-width: 672px;
}

/* ── 2-column grid ── */
.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Individual step card ── */
.roadmap-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 33px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* ── Gold numbered badge ── */
.step-badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 24px;
  background: linear-gradient(to bottom, #fcc600, #dcac00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 1.2px;
}

/* ── Step text ── */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 6.75px;
  flex: 1;
}

.step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #0F172A;
}

.step-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #64748B;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .roadmap-section { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .roadmap-section { padding: 64px 24px; }
  .roadmap-grid { grid-template-columns: 1fr; gap: 20px; }
  .roadmap-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════
   Products Section – Core Distribution Products
═══════════════════════════════════════════════ */
.products-section {
  position: relative;
  width: 100%;
  padding: 140px 126px;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, #FFC900 0%, #FFD84A 25%, #FFE880 55%, #FFEEB0 100%);
  overflow: hidden;
}

/* Wavy texture overlay */
.products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='40'%3E%3Cpath d='M0 20 C25 8 50 32 100 20 C150 8 175 32 200 20' stroke='rgba(180,120,0,0.18)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M0 34 C25 22 50 46 100 34 C150 22 175 46 200 34' stroke='rgba(180,120,0,0.12)' stroke-width='1' fill='none'/%3E%3Cpath d='M0 6 C25 -6 50 18 100 6 C150 -6 175 18 200 6' stroke='rgba(180,120,0,0.12)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 200px 40px;
  opacity: 1;
  pointer-events: none;
}

.products-container {
  position: relative;
  z-index: 1;
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Heading ── */
.products-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063B1F;
  text-align: center;
}

/* ── Cards row ── */
.products-cards {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

/* ── Single product card ── */
.product-card {
  flex: 1;
  background: #063B1F;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Card header ── */
.product-card-header {
  display: flex;
  flex-direction: column;
  gap: 15.25px;
}

.product-card-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #ffffff;
}

.product-card-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Feature list ── */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .products-section { padding: 100px 60px; }
}

@media (max-width: 768px) {
  .products-section { padding: 64px 24px; }
  .products-cards { flex-direction: column; }
  .products-title { font-size: 28px; }
  .product-card-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════
   Revenue Section – Revenue & Potential
═══════════════════════════════════════════════ */
.revenue-section {
  background: #ffffff;
  width: 100%;
  padding: 140px 126px;
}

.revenue-card {
  max-width: 1152px;
  margin: 0 auto;
  background: #FFDE70;
  border-radius: 40px;
  height: 481px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.revenue-inner {
  display: flex;
  align-items: center;
  gap: 97px;
  padding: 0 60px;
  width: 100%;
}

/* ── Left column ── */
.revenue-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 480px;
  flex-shrink: 0;
}

.revenue-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: normal;
  color: #000000;
}

.revenue-stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.revenue-stat-icon {
  display: flex;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.revenue-stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 188px;
}

.revenue-stat-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
}

.revenue-stat-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.68px;
  color: rgba(0, 0, 0, 0.62);
}

/* ── Right: responsibilities box ── */
.responsibilities-box {
  background: rgba(255, 255, 255, 0.31);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  flex-shrink: 0;
  width: 324px;
}

.responsibilities-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: #000000;
}

.responsibilities-list {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.responsibility-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #000000;
}

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .revenue-section { padding: 80px 40px; }
  .revenue-card { height: auto; padding: 60px 40px; }
  .revenue-inner { gap: 48px; padding: 0; }
}

@media (max-width: 900px) {
  .revenue-section { padding: 64px 24px; }
  .revenue-inner { flex-direction: column; gap: 40px; }
  .revenue-left { width: 100%; }
  .responsibilities-box { width: 100%; }
  .revenue-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════
   Investment Section – Investment Framework
═══════════════════════════════════════════════ */
.investment-section {
  background: #ffffff;
  width: 100%;
  padding: 96px 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* ── Header ── */
.investment-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.investment-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #0F172A;
}

.investment-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #475569;
}

.investment-subtitle strong {
  font-weight: 700;
  color: #0F172A;
}

/* ── Table wrapper ── */
.investment-table-wrap {
  width: 100%;
  max-width: 1024px;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.10),
    0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

/* ── Table ── */
.investment-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Column widths matching Figma (~25.6% / ~52.4% / ~22%) */
.inv-th--category,
.inv-td--name    { width: 25.6%; }
.inv-th--description,
.inv-td--desc    { width: 52.4%; }
.inv-th--amount,
.inv-td--amount  { width: 22%; }

/* ── Header row ── */
.inv-header-row {
  background: #F8FCF9;
  border-bottom: 1px solid #E2E8F0;
}

.inv-th {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #0F172A;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 32px;
  text-align: left;
}

.inv-th--amount { text-align: right; }

/* ── Data rows ── */
.inv-row + .inv-row {
  border-top: 1px solid #F1F5F9;
}

.inv-td {
  padding: 32.5px 32px;
}

.inv-td--name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #0F172A;
}

.inv-td--desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #475569;
}

.inv-td--amount {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #0F172A;
  text-align: right;
}

/* ── Footer bar ── */
.inv-footer {
  background: #F8FCF9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  border-top: 1px solid #E2E8F0;
}

.inv-footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inv-footer-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.inv-footer-note {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #64748B;
  white-space: nowrap;
}

.inv-footer-right {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #F4C025;
  white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .investment-section { padding: 80px 40px; }
}

/* ═══════════════════════════════════════════════
   Profile Section – Ideal Profile vs Not Recommended
═══════════════════════════════════════════════ */
.profile-section {
  background: #ffffff;
  width: 100%;
  padding: 140px 126px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.profile-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063B1F;
  text-align: center;
  width: 100%;
}

/* ── Two cards ── */
.profile-cards {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.profile-card {
  flex: 1;
  border-radius: 16px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.profile-card--green { background: #E2F0E9; }
.profile-card--red   { background: #F7D6D6; }

/* ── Card title ── */
.profile-card-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
}

.profile-card-title--green { color: #063B1F; }
.profile-card-title--red   { color: #8F0000; }

/* ── List ── */
.profile-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.profile-card--green .profile-item { color: #063B1F; }
.profile-card--red   .profile-item { color: #8F0000; }

.profile-icon {
  display: flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ═══════════════════════════════════════════════
   CTA Section – Request Franchise Assessment
═══════════════════════════════════════════════ */
.cta-outer {
  background: #ffffff;
  width: 100%;
  padding: 92px 126px;
}

.cta-card {
  position: relative;
  background: #f0f4f0;
  border-radius: 40px;
  border: 1px solid rgba(13, 73, 67, 0.05);
  padding: 97px 49px;
  overflow: hidden;
}

/* Wavy texture overlay */
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='40'%3E%3Cpath d='M0 20 C25 8 50 32 100 20 C150 8 175 32 200 20' stroke='rgba(6,59,31,0.06)' stroke-width='1.2' fill='none'/%3E%3Cpath d='M0 34 C25 22 50 46 100 34 C150 22 175 46 200 34' stroke='rgba(6,59,31,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  background-size: 200px 40px;
  pointer-events: none;
  border-radius: 40px;
}

/* Decorative blobs */
.cta-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cta-blob--tl {
  top: -170px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 206, 27, 0.15) 0%, transparent 65%);
}

.cta-blob--br {
  bottom: -200px;
  right: 100px;
  background: radial-gradient(circle, rgba(6, 59, 31, 0.08) 0%, transparent 65%);
}

/* ── Inner layout ── */
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}

/* ── Left text ── */
.cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 447px;
  flex-shrink: 0;
}

.cta-title {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  color: #063B1F;
}

.cta-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #64748B;
}

/* ── Form ── */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 486px;
}

.cta-row {
  display: flex;
  gap: 16px;
}

.cta-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cta-field--full { width: 100%; }

.cta-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #0A0A0A;
  letter-spacing: 2.16px;
  text-transform: uppercase;
  line-height: normal;
}

.cta-input {
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid #8A8A8A;
  border-radius: 8px;
  padding: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0A0A0A;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input:focus { border-color: #063B1F; }
.cta-input::placeholder { color: #8A8A8A; }

.cta-textarea {
  height: 131px;
  resize: vertical;
  font-family: 'Poppins', sans-serif;
}

/* Select wrapper */
.cta-select-wrap {
  position: relative;
}

.cta-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.cta-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
}

/* Submit button */
.cta-submit {
  width: 100%;
  background: #063B1F;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  border: none;
  border-radius: 12px;
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.cta-submit:hover { background: #0a5a2e; transform: translateY(-1px); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .cta-outer { padding: 60px 40px; }
  .cta-card { padding: 64px 40px; }
  .cta-text { width: 360px; }
}

@media (max-width: 900px) {
  .cta-outer { padding: 48px 24px; }
  .cta-card { padding: 48px 24px; border-radius: 24px; }
  .cta-inner { flex-direction: column; gap: 40px; }
  .cta-text { width: 100%; }
  .cta-title { font-size: 28px; }
  .cta-form { max-width: 100%; }
}

@media (max-width: 560px) {
  .cta-row { flex-direction: column; }
}

/* ═══════════════════════════════════════════════
   Footer
═══════════════════════════════════════════════ */
.site-footer {
  background: #03190E;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  padding: 49px 126px 48px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  flex-shrink: 0;
}

/* ── Right side ── */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}

/* ── Social links ── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.footer-social-link:hover { opacity: 0.75; }

/* ── Legal links ── */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-legal-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.footer-legal-link:hover { opacity: 0.75; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .site-footer { padding: 40px 40px; }
}

@media (max-width: 768px) {
  .site-footer { padding: 40px 24px; }
  .footer-container { flex-direction: column; gap: 32px; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .profile-section { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .profile-section { padding: 64px 24px; gap: 24px; }
  .profile-title { font-size: 28px; }
  .profile-cards { flex-direction: column; }
  .profile-card { padding: 32px 24px; }
  .profile-card-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .investment-section { padding: 64px 24px; gap: 40px; }
  .investment-title { font-size: 28px; line-height: 36px; }
  .investment-subtitle { font-size: 16px; }

  /* Convert table to stacked cards */
  .investment-table thead { display: none; }

  .investment-table,
  .investment-table tbody,
  .investment-table tr,
  .investment-table td { display: block; width: 100%; }

  .inv-row {
    padding: 20px 20px;
    border-top: 1px solid #F1F5F9 !important;
  }

  .inv-row:first-child { border-top: none !important; }

  /* Stack: amount top-right, name + desc below */
  .inv-row { position: relative; padding-right: 100px; }

  .inv-td { padding: 0; }

  .inv-td--name {
    font-size: 15px;
    margin-bottom: 4px;
    padding: 20px 100px 4px 20px;
  }

  .inv-td--desc {
    font-size: 13px;
    line-height: 20px;
    padding: 0 100px 20px 20px;
  }

  .inv-td--amount {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    text-align: right;
    font-size: 15px;
    width: auto;
    padding: 0;
  }

  .inv-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
  }

  .inv-footer-note { font-size: 14px; white-space: normal; }
  .inv-footer-right { font-size: 16px; letter-spacing: 1.6px; }
}

/* Figma alignment overrides */
.logo {
  width: 118px;
  height: auto;
}

.logo-img,
.footer-logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-logo {
  width: 130px;
}







.store-badge {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-width: 0;
  padding: 0;
}

.store-badge:hover {
  background: transparent;
}

.store-badge-image {
  display: block;
  height: auto;
}

.store-badge-image--google {
  width: 191px;
}

.store-badge-image--apple {
  width: 193px;
  border-radius: 12px;
}

.app-phone {
  justify-content: flex-end;
  align-self: stretch;
  overflow: visible;
}

.app-phone-image {
  display: block;
  width: min(903px, calc(100% + 145px));
  max-width: none;
  height: auto;
  margin-right: -145px;
  margin-top: -74px;
  margin-bottom: -74px;
}

.footer-social-icon {
  display: block;
  width: 16px;
  height: 16px;
}

@media (max-width: 1100px) {
  .app-content {
    flex: 0 0 520px;
  }

  .app-phone-image {
    width: min(760px, calc(100% + 60px));
    margin-right: -60px;
  }
}

@media (max-width: 900px) {
  .logo {
    width: 102px;
  }

  .app-content {
    flex: none;
    width: 100%;
  }

  .app-badges {
    flex-wrap: wrap;
    gap: 16px;
  }

  .store-badge-image--google,
  .store-badge-image--apple {
    width: min(193px, 100%);
  }

  .app-phone {
    width: 100%;
    justify-content: center;
  }

  .app-phone-image {
    width: min(100%, 620px);
    margin: 0;
  }
}