
  :root {
    --orange: #F7941D;
    --orange-dark: #e07d08;
    --orange-light: #FFF3E0;
    --dark: #1a1a1a;
    --mid: #4a4a4a;
    --light: #f9f9f9;
    --white: #ffffff;
    --border: #e8e8e8;
    --green: #2e7d32;
  }

  .hero {
    position: relative;
    /* top: 130px; */
    min-height: 100vh;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
    /* padding-top: 60px; */
    /* background: url('/upload_files/home_slider/1746233702-1.jpg') center/cover no-repeat; */


  }
  @media (max-width: 1366px) {
  .hero {
      min-height: 120vh;

  }
}
@media (max-width: 1440px) {
  .hero {
      min-height: 120vh;
  }
}

/* Tablets (landscape) */
@media (max-width: 1024px) {
  .hero {
       min-height: 120vh;

  }
}



  .hero-bg {
    position: absolute;
    inset: 0;
    background: url('/upload_files/home_slider/1746233702-1.jpg') center/cover no-repeat;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.78) 0%, rgba(20, 20, 20, 0.55) 60%, rgba(247, 148, 29, 0.22) 100%);
  }

  /* .hero-content {
    position: relative; z-index: 2; text-align: center;top:50%;left:27%; transform:translateY(-50%);
    max-width: 860px; padding: 60px 32px;   
    animation: fadeUp .8s ease both;
  } */
  .hero-content {
    padding-top: 68px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 860px;
    text-align: center;
    padding: 0px 32px;
    z-index: 2;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp .6s .1s ease both;
  }

  .hero-badge span {
    width: 7px;
    height: 7px;
    background: white;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1
    }

    50% {
      opacity: .3
    }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5.5vw, 58px);
    color: white;
    line-height: 1.18;
    margin-bottom: 16px;
    animation: fadeUp .7s .2s ease both;
  }

  .hero h1 em {
    color: var(--orange);
    font-style: normal;
  }

  .hero-sub-headline {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    animation: fadeUp .7s .3s ease both;
  }

  /* Spots counter */
  .spots-widget {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 16px 28px;
    margin: 20px 0 28px;
    animation: fadeUp .7s .4s ease both;
  }

  .spots-total {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
  }

  .spots-total strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
  }

  .spots-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.3);
  }

  .spots-remain {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
  }

  .spots-remain strong {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
  }

  .spots-bar-wrap {
    flex: 1;
    min-width: 140px;
  }

  .spots-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
  }

  .spots-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
  }

  .spots-bar-fill {
    height: 100%;
    width: 38%;
    background: linear-gradient(90deg, var(--orange), #ffb347);
    border-radius: 4px;
    animation: barGrow 1.2s .8s ease both;
    transform-origin: left;
  }

  @keyframes barGrow {
    from {
      transform: scaleX(0)
    }

    to {
      transform: scaleX(1)
    }
  }

  .hero-tagline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 32px;
    line-height: 1.6;
    animation: fadeUp .7s .45s ease both;
  }

  .hero-tagline strong {
    color: var(--orange);
  }

  .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .7s .55s ease both;
  }

  .btn-primary {
    background: var(--orange);
    color: white;
    padding: 16px 34px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s;
    box-shadow: 0 6px 24px rgba(247, 148, 29, 0.45);
  }

  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(247, 148, 29, 0.55);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    padding: 16px 34px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover {
    background:rgba(247, 148, 29, 0.55);
    transform: translateY(-2px);
  }

  .scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 1px;
    animation: fadeUp 1s 1s ease both;
  }

  .scroll-chevron {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
  }

  @keyframes bounce {

    0%,
    100% {
      transform: rotate(45deg) translateY(0)
    }

    50% {
      transform: rotate(45deg) translateY(5px)
    }
  }

  /* ─── STEP NAV ─── */
  .section-nav {
    background: var(--dark);
    /* position: sticky; top: 68px;  */
    z-index: 900;
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 3px solid var(--orange);
  }

  .snav-btn {
    color: rgba(255, 255, 255, 0.55);
    background: none;
    border: none;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: .5px;
  }

  .snav-btn::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform .25s;
  }

  .snav-btn.active,
  .snav-btn:hover {
    color: white;
  }

  .snav-btn.active::after,
  .snav-btn:hover::after {
    transform: scaleX(1);
  }

  .snav-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
  }

  /* ─── SECTIONS (content panels) ─── */
  .section-panel {
    display: none;
    animation: fadeUp .5s ease;
  }

  .section-panel.active {
    display: block;
  }

  /* ─── HOW IT WORKS ─── */
  .how-section {
    padding: 90px 40px;
    background: var(--white);
  }

  .section-tag {
    display: inline-block;
    background: var(--orange-light);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-title em {
    color: var(--orange);
    font-style: normal;
  }

  .section-sub {
    font-size: 17px;
    color: var(--mid);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .how-card {
    background: var(--light);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1.5px solid var(--border);
    position: relative;
    transition: transform .25s, box-shadow .25s;
  }

  .how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  }

  .how-num {
    position: absolute;
    top: -16px;
    left: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.4);
  }

  .how-icon {
    font-size: 36px;
    margin-bottom: 16px;
    margin-top: 8px;
  }

  .how-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .how-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.65;
  }

  .how-cta {
    margin-top: 60px;
    text-align: center;
  }

  /* ─── MODEL OPTIONS ─── */
  .model-section {
    padding: 90px 40px;
    background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 100%);
  }

  .model-section .section-tag {
    background: rgba(247, 148, 29, 0.18);
  }

  .model-section .section-title {
    color: white;
  }

  .model-section .section-sub {
    color: rgba(255, 255, 255, 0.65);
  }

  .model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .model-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px 26px;
    transition: all .25s;
    text-align: center;
  }

  .model-card:hover {
    background: rgba(247, 148, 29, 0.12);
    border-color: var(--orange);
    transform: translateY(-4px);
  }

  .model-icon {
    font-size: 44px;
    margin-bottom: 18px;
  }

  .model-card h3 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .model-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.65;
  }

  .model-badge {
    display: inline-block;
    margin-top: 16px;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
  }

  .model-cta {
    margin-top: 56px;
    text-align: center;
  }

  /* ─── FOUNDING ─── */
  .founding-section {
    padding: 90px 40px;
    background: var(--white);
  }

  .founding-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .founding-left {}

  .founding-perks {
    list-style: none;
    margin: 28px 0 38px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .founding-perks li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--mid);
    line-height: 1.6;
  }

  .perk-check {
    width: 22px;
    height: 22px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .founding-right {}

  .founding-card {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid rgba(247, 148, 29, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  }

  .fc-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .fc-num {
    font-size: 80px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    font-family: 'Playfair Display', serif;
  }

  .fc-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 30px;
  }

  .fc-progress {
    background: rgba(255, 255, 255, 0.12);
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .fc-progress-fill {
    height: 100%;
    width: 38%;
    background: linear-gradient(90deg, var(--orange), #ffb347);
    border-radius: 5px;
  }

  .fc-progress-label {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-bottom: 36px;
  }

  .fc-price-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .fc-price-note strong {
    color: var(--orange);
  }

  /* ─── URGENCY BAR ─── */
  .urgency-bar {
    background: var(--orange);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .urgency-bar p {
    color: white;
    font-size: 16px;
    font-weight: 600;
  }

  .urgency-bar a {
    background: white;
    color: var(--orange);
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
  }

  .urgency-bar a:hover {
    background: var(--dark);
    color: white;
  }

  /* ─── RESPONSIVE ─── */
  @media(max-width:768px) {
    .hero {
      padding-top: 60px;
      min-height: 100vh;
    }

    .hero-content {
      top: 56%;
    }

    .founding-wrap {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .snav-btn {
      padding: 14px 16px;
      font-size: 12px;
    }

    .section-nav {
      overflow-x: auto;
    }

    .how-section,
    .model-section,
    .founding-section {
      padding: 60px 20px;
    }

    .hero-content {
      padding: 40px 20px;
    }

    .spots-widget {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
