/* ===========================================================
   InvestoFlex — Header + Hero
   =========================================================== */

:root{
  --bg: #060911;
  --bg-soft: #0a0f1c;
  --panel: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.09);
  --border-soft: rgba(255,255,255,0.06);

  --brand: #3578f0;
  --brand-dark: #2a62d4;
  --brand-light: #5b94f5;

  --blue-300: #93c5fd;
  --blue-400: #5b94f5;
  --blue-500: #3578f0;
  --blue-600: #2a62d4;
  --blue-700: #1e4eb8;

  --text-primary: #f4f7fb;
  --text-secondary: #96a1b8;
  --text-tertiary: #6b7690;

  --ink: #14213d;
  --ink-muted: #6b7280;
  --surface: #ffffff;
  --surface-border: #e5e7eb;

  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --header-h: 84px;
  --container: 1280px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: #ffffff;
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a{ text-decoration: none; color: inherit; }
button{ font: inherit; cursor: pointer; }
img{ max-width: 100%; display: block; }

/* -----------------------------------------------------------
   Ambient background field
----------------------------------------------------------- */
.bg-field{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 12%, #0c1830 0%, var(--bg) 55%),
    var(--bg);
}

.site-header,
.hero{
  position: relative;
}

.grid-overlay{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(85% 70% at 68% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(85% 70% at 68% 30%, #000 0%, transparent 72%);
  opacity: .55;
}

.glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .35;
}
.glow-a{
  width: 620px; height: 620px;
  right: -140px; top: -160px;
  background: radial-gradient(circle, var(--blue-600), transparent 70%);
}
.glow-b{
  width: 480px; height: 480px;
  left: -160px; bottom: -220px;
  background: radial-gradient(circle, #1e3a8a, transparent 70%);
  opacity: .25;
}

/* -----------------------------------------------------------
   Header
----------------------------------------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--bg);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled{
  background: var(--bg);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.header-inner{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 11px;
  margin-right: 8px;
  flex-shrink: 0;
}

.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-name{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.brand-tag{
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: .04em;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.nav-link{
  position: relative;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover{ color: var(--text-primary); background: var(--panel); }
.nav-link.is-active{ color: var(--text-primary); }
.nav-link.is-active::after{
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* -----------------------------------------------------------
   Buttons
----------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .2s ease, color .2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-ghost{
  color: var(--text-secondary);
  border-color: transparent;
}
.btn-ghost:hover{ color: var(--text-primary); }

.btn-primary{
  color: #fff;
  background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
  box-shadow: 0 6px 20px rgba(53,120,240,0.35);
}
.btn-primary:hover{
  box-shadow: 0 10px 28px rgba(53,120,240,0.5);
  transform: translateY(-1px);
}

.btn-outline{
  color: var(--text-primary);
  background: rgba(255,255,255,0.02);
  border-color: var(--border);
}
.btn-outline:hover{
  border-color: var(--blue-400);
  background: rgba(59,130,246,0.08);
}

.btn-lg{ padding: 14px 28px; font-size: 15.5px; border-radius: 12px; }

/* -----------------------------------------------------------
   Nav toggle (mobile)
----------------------------------------------------------- */
.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--panel);
  flex-shrink: 0;
}
.nav-toggle span{
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .28s ease, opacity .28s ease;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-auth{
  display: none;
}

body.nav-open{
  overflow: hidden;
}

/* -----------------------------------------------------------
   Hero
----------------------------------------------------------- */
.hero{
  position: relative;
  z-index: 1;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
  overflow: hidden;
}

.hero-inner{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-copy{
  animation: rise .8s cubic-bezier(.22,1,.36,1) both;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.eyebrow-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(96,165,250,0.18);
}

.hero-title{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text-primary);
}

.text-accent{
  background: linear-gradient(100deg, var(--blue-300) 0%, var(--blue-500) 55%, var(--blue-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle{
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 0 34px;
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-stats{
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.stat{ display: flex; flex-direction: column; gap: 3px; }
.stat-value{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.stat-label{
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}
.stat-divider{
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* -----------------------------------------------------------
   Hero visual
----------------------------------------------------------- */
.hero-visual{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rise .9s cubic-bezier(.22,1,.36,1) .12s both;
}

.visual-glow{
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,120,240,0.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.visual-image{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  height: auto;
  will-change: transform;
  animation: float 6.5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}

@keyframes float{
  0%, 100%{ transform: translateY(0px); }
  50%{ transform: translateY(-14px); }
}

@keyframes rise{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* -----------------------------------------------------------
   Scroll cue
----------------------------------------------------------- */
.scroll-cue{
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: .7;
}
.scroll-line{
  width: 1px;
  height: 30px;
  background: linear-gradient(var(--text-tertiary), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-line::after{
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: linear-gradient(var(--blue-400), transparent);
  animation: scrollDrip 1.8s ease-in-out infinite;
}
@keyframes scrollDrip{
  0%{ top: -100%; }
  60%, 100%{ top: 100%; }
}

@media (prefers-reduced-motion: reduce){
  .visual-image{ animation: none; }
  .scroll-line::after{ animation: none; }
  .hero-copy, .hero-visual{ animation: none; }
}

/* -----------------------------------------------------------
   Page body (white area below the hero)
----------------------------------------------------------- */
.page-body{
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: var(--ink);
  min-height: 40vh;
}

.section-tag{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(53,120,240,0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.reward-note{
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-muted);
}

.plans-disclaimer{
  color: var(--ink-muted);
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.landing-cta{
  background: linear-gradient(135deg, #0a1a3c 0%, #122a5c 100%);
  padding: 56px 20px 72px;
}

.landing-cta-inner{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.landing-cta-inner h2{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin: 0 0 12px;
}

.landing-cta-inner p{
  margin: 0 auto 28px;
  color: #b8c4de;
  font-size: 15px;
  line-height: 1.65;
  max-width: 560px;
}

.landing-cta-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-cta .btn-outline{
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

.landing-cta .btn-outline:hover{
  border-color: var(--brand-light);
  background: rgba(53,120,240,0.15);
}

.legal-content{
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  padding: 32px 28px;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 4px 24px rgba(15,22,38,0.06);
}

.legal-content h1{
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--ink);
  margin: 0 0 16px;
}

.legal-content h2{
  font-size: 1.1rem;
  color: var(--ink);
  margin: 28px 0 10px;
}

.legal-content p,
.legal-content li{
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content a{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-page{
  padding: 48px 20px 64px;
}

/* ===========================================================
   Responsive
   =========================================================== */

@media (max-width: 1080px){
  .hero-inner{ gap: 28px; }
  .visual-image{ max-width: 480px; }
}

@media (max-width: 920px){
  .main-nav{ display: none; }
  .header-actions{ display: none; }
  .nav-toggle{ display: flex; }

  .header-inner{
    padding: 0 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  .main-nav.is-open{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    padding: 14px 20px 22px;
    background: rgba(6,9,17,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    gap: 2px;
    animation: rise .28s ease both;
  }
  .main-nav.is-open .nav-link{
    padding: 13px 12px;
    font-size: 15.5px;
    width: 100%;
  }
  .main-nav.is-open .nav-link.is-active::after{ display: none; }

  .main-nav.is-open .nav-mobile-auth{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  .main-nav.is-open .nav-mobile-auth .btn{
    width: 100%;
    justify-content: center;
  }

  .hero{ min-height: calc(100vh - var(--header-h)); }

  .hero-inner{
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 64px;
  }
  .hero-copy{ order: 1; }
  .hero-visual{ order: 0; margin-bottom: 16px; }
  .hero-subtitle{
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero-actions{
    justify-content: center;
    gap: 12px;
  }
  .hero-actions .btn{
    min-width: 160px;
  }
  .hero-actions .btn-lg{
    width: 100%;
    max-width: 320px;
  }
  .hero-stats{
    justify-content: center;
    gap: 18px;
  }
  .hero-stats .stat{
    min-width: 120px;
    text-align: center;
  }
  .visual-image{ max-width: 340px; }
}

@media (max-width: 560px){
  :root{ --header-h: 72px; }
  .brand-tag{ display: none; }
  .header-inner{ padding: 0 16px; }
  .hero-inner{ padding: 32px 18px 52px; }
  .hero-title{ font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero-subtitle{ font-size: 15px; }
  .btn-lg{ padding: 13px 22px; font-size: 14.5px; }
  .hero-actions{ width: 100%; }
  .hero-actions .btn{
    flex: 1;
    min-width: 0;
  }
  .hero-actions .btn-lg{ max-width: none; }
  .hero-stats{
    gap: 16px;
    flex-direction: column;
  }
  .hero-stats .stat{
    width: 100%;
  }
  .stat-divider{ display: none; }
  .visual-image{ max-width: 300px; }
  .scroll-cue{ display: none; }
  .landing-cta-actions .btn-lg{
    width: 100%;
    max-width: 320px;
  }
}

@media (max-height: 680px) and (min-width: 921px){
  .hero{ min-height: auto; padding: 32px 0; }
  .visual-image{ max-width: 340px; }
}



.pricing-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 15px;
    color: #6b7280;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    width: 300px;
    padding: 30px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border: 2px solid #3578f0;
    padding-top: 0;
    overflow: hidden;
}

.popular-badge {
    background-color: #3578f0;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 0;
    text-transform: uppercase;
    margin: 0 -28px 20px -28px;
}

.plan-name {
    font-size: 16px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 18px;
}

.pricing-card.popular .plan-name {
    margin-top: 20px;
}

.plan-headline {
    font-size: 36px;
    font-weight: 800;
    color: #14213d;
    margin-bottom: 6px;
}

.pricing-card.popular .plan-headline {
    color: #3578f0;
}

.plan-subtext {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #f0f1f3;
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: #3578f0;
    flex-shrink: 0;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    background: #ffffff;
    color: #3578f0;
    border: 1.5px solid #3578f0;
}

.plan-button:hover {
    background-color: #3578f0;
    color: #ffffff;
}

.pricing-card.popular .plan-button {
    background-color: #3578f0;
    color: #ffffff;
    border: 1.5px solid #3578f0;
}

.pricing-card.popular .plan-button:hover {
    background-color: #2a62d4;
}

@media (max-width: 980px) {
    .pricing-cards {
        flex-direction: column;
        align-items: stretch;
    }

    .pricing-card {
        width: 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

.why-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
 
.why-header {
    text-align: center;
    margin-bottom: 40px;
}
 
.why-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #14213d;
}
 
.why-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
 
.why-item {
    flex: 1;
    min-width: 200px;
    text-align: left;
}
 
.why-icon {
    width: 46px;
    height: 46px;
    background-color: #e9edfb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #3578f0;
}
 
.why-icon svg {
    width: 24px;
    height: 24px;
}
 
.why-title {
    font-size: 15px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 8px;
}
 
.why-text {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.5;
}
 
@media (max-width: 800px) {
    .why-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .why-item {
        text-align: center;
        max-width: 620px;
        width: 100%;
    }
    .why-icon {
        margin-left: auto;
        margin-right: auto;
    }
    .about-grid {
        flex-direction: column;
        gap: 32px;
    }
    .about-stats {
        width: 100%;
    }
}

.about-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 20px;
}
 
.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}
 
.about-content {
    flex: 1;
    min-width: 300px;
}
 
.about-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #14213d;
    margin-bottom: 18px;
}
 
.about-content p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 14px;
}
 
.about-stats {
    flex: 1;
    min-width: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
 
.stat-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 24px 18px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
 
.stat-number {
    font-size: 26px;
    font-weight: 800;
    color: #3578f0;
    margin-bottom: 6px;
}
 
.about-stats .stat-box .stat-label {
    font-size: 13px;
    color: #6b7280;
}
 
/* How It Works Section */
.how-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}
 
.how-header {
    text-align: center;
    margin-bottom: 40px;
}
 
.how-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #14213d;
}
 
.how-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
 
.how-item {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 26px 22px;
    text-align: left;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
 
.how-step {
    font-size: 22px;
    font-weight: 800;
    color: #c7d2fe;
    margin-bottom: 12px;
}
 
.how-title {
    font-size: 15px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 8px;
}
 
.how-text {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.5;
}
 
@media (max-width: 800px) {
    .how-grid {
        flex-direction: column;
    }
}
 
/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 90px;
}
 
.faq-header {
    text-align: center;
    margin-bottom: 36px;
}
 
.faq-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #14213d;
}
 
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 
.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}
 
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14.5px;
    font-weight: 600;
    color: #14213d;
    cursor: pointer;
    text-align: left;
}
 
.faq-icon {
    width: 18px;
    height: 18px;
    color: #3578f0;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
 
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
 
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 20px;
}
 
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}
 
.faq-answer p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
}

/* Footer */
footer.investoflex-footer{
    box-sizing:border-box;
    font-family:'Segoe UI', Arial, sans-serif;
    background:#0a1a3c;
    color:#93a0bf;
    padding:60px 8% 0;
    margin:0;
  }
  .investoflex-footer *{
    box-sizing:border-box;
  }
  .investoflex-footer .footer-top{
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:40px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
  .investoflex-footer .footer-brand{
    max-width:300px;
  }
  .investoflex-footer .logo{
    display:flex;
    align-items:center;
    gap:8px;
    color:#ffffff;
    font-size:20px;
    font-weight:700;
  }
  .investoflex-footer .logo span{
    width:28px;
    height:28px;
    background:#3578f0;
    border-radius:6px;
    display:inline-block;
  }
  .investoflex-footer .footer-brand p{
    margin:14px 0 0;
    padding:0;
    font-size:14px;
    line-height:1.6;
  }
  .investoflex-footer .footer-col h4{
    color:#ffffff;
    font-size:15px;
    margin:0 0 16px;
    padding:0;
    font-weight:600;
  }
  .investoflex-footer .footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
  }
  .investoflex-footer .footer-col ul li{
    margin:0 0 10px;
    padding:0;
  }
  .investoflex-footer .footer-col ul li a{
    color:#93a0bf;
    text-decoration:none;
    font-size:14px;
    transition:color .2s;
  }
  .investoflex-footer .footer-col ul li a:hover{
    color:#3578f0;
  }
  .investoflex-footer .footer-bottom{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px 0;
    font-size:13px;
  }
  .investoflex-footer .footer-bottom p{
    margin:0;
    padding:0;
  }

  @media (max-width: 768px) {
    footer.investoflex-footer{
      padding: 48px 20px 0;
    }
    .investoflex-footer .footer-top{
      flex-direction: column;
      gap: 28px;
    }
    .investoflex-footer .footer-brand{
      max-width: none;
    }
  }