   /* Reset & Vars */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --o: #FF6B00;
      --b: #0A1628;
      --g: #64748b;
      --br: #ffffff;
      --li: #ffffff;
      --bg-alt: #f8fafc;
    }

    body {
      font-family: 'Space Grotesk', sans-serif;
      background: #fafafa;
      color: var(--b);
      overflow-x: hidden;
    }

    /* NAV */
    #nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      height: 110px;
      background: #ffffff;
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      transition: box-shadow .3s;
    }

    #nav.sh {
      box-shadow: 0 4px 30px rgba(10, 22, 40, .10);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-ic {
      width: 42px;
      height: 42px;
      background: var(--b);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 900;
      color: var(--o);
    }

    .logo-tx {
      font-size: 19px;
      font-weight: 800;
      color: var(--b);
    }

    .logo-tx em {
      color: var(--o);
      font-style: normal;
    }

    .nl {
      display: flex;
      gap: 36px;
      list-style: none;
      align-items: center;
    }

    .nl a {
      text-decoration: none;
      color: var(--b);
      font-size: 15px;
      font-weight: 600;
      position: relative;
      padding-bottom: 3px;
      transition: color .2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nl a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--o);
      transition: width .3s;
      border-radius: 2px;
    }

    .nl a:hover {
      color: var(--o);
    }

    .nl a:hover::after {
      width: 100%;
    }

    /* DROPDOWN */
    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(15px);
      background: #fff;
      min-width: 260px;
      border-radius: 16px;
      padding: 15px 0;
      box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid var(--br);
      z-index: 100;
      display: flex;
      flex-direction: column;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu a {
      padding: 12px 24px;
      font-size: 14px;
      font-weight: 500;
      color: var(--g);
      display: block;
      transition: all 0.2s;
    }

    .dropdown-menu a::after {
      display: none;
    }

    .dropdown-menu a:hover {
      background: #f8fafc;
      color: var(--b);
      padding-left: 28px;
    }

    .dropdown-menu a i {
      color: var(--o);
      margin-right: 8px;
    }

    .ncta {
      background: var(--o);
      color: #fff;
      border: none;
      padding: 11px 26px;
      border-radius: 9px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Space Grotesk', sans-serif;
      transition: background .2s, transform .15s;
    }

    .ncta:hover {
      background: #e55f00;
      transform: translateY(-1px);
    }

    .hbg {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hbg span {
      width: 24px;
      height: 2px;
      background: var(--b);
      border-radius: 2px;
      display: block;
      transition: .3s;
    }

    .hbg.op span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hbg.op span:nth-child(2) {
      opacity: 0;
    }

    .hbg.op span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mnav {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      background: #fff;
      z-index: 9998;
      flex-direction: column;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    }

    .mnav.op {
      display: flex;
    }

    .mnav a {
      padding: 16px 6%;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      color: var(--b);
      border-bottom: 1px solid var(--br);
      transition: color .2s;
    }

    .mnav a:hover {
      color: var(--o);
    }

    /* MNAV DROPDOWN HACK */
    .mnav-sub {
      background: #f8fafc;
      display: none;
      flex-direction: column;
    }

    .mnav-sub.active {
      display: flex;
    }

    .mnav-sub a {
      padding: 12px 10%;
      font-size: 14px;
      font-weight: 500;
      color: var(--g);
      border-bottom: 1px solid #e2e8f0;
    }

    .m-tog {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .mcta {
      margin: 16px 6%;
      background: var(--o);
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 9px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      background: #fafafa;
      padding-top: 15vh;
      padding-bottom: 50px;
    }

    .hero-content {
      text-align: center;
      z-index: 2;
      position: relative;
      margin-bottom: 50px;
    }

    .hero h1 {
      font-size: clamp(60px, 12vw, 160px);
      font-weight: 900;
      letter-spacing: -5px;
      line-height: .95;
      color: var(--b);
      opacity: 0;
      text-transform: uppercase;
    }

    .hero h1 .orange {
      color: var(--o);
      display: block;
    }

    .hero p {
      font-size: clamp(18px, 2.5vw, 28px);
      font-weight: 500;
      color: var(--g);
      margin-top: 25px;
      opacity: 0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-img-wrap {
      position: relative;
      width: 95%;
      max-width: 1500px;
      height: 70vh;
      z-index: 1;
      opacity: 0;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 40px 80px rgba(10, 22, 40, 0.1);
    }

    .hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Marquee / Huge Type */
    .marquee-sec {
      padding: 80px 0;
      background: var(--bg-alt);
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .marquee-track {
      display: flex;
      white-space: nowrap;
    }

    .marquee-text {
      font-size: clamp(60px, 8vw, 120px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--b);
      padding-right: 50px;
    }

    .marquee-text.outline {
      color: transparent;
      -webkit-text-stroke: 2px rgba(10, 22, 40, 0.2);
    }

    /* Features */
    .section {
      padding: 180px 6%;
      position: relative;
    }

    .section.dark {
      background: var(--b);
      color: #fff;
    }

    .sec-title {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 120px;
    }

    .sec-title h2 {
      font-size: clamp(40px, 6vw, 90px);
      font-weight: 800;
      letter-spacing: -2.5px;
      line-height: 1.05;
      margin-bottom: 25px;
    }

    .sec-title p {
      font-size: 24px;
      color: var(--g);
      line-height: 1.5;
      font-weight: 500;
    }

    .dark .sec-title p {
      color: rgba(255, 255, 255, 0.6);
    }

    .split {
      display: flex;
      align-items: center;
      gap: 8%;
      margin-bottom: 200px;
    }

    .split:nth-child(even) {
      flex-direction: row-reverse;
    }

    .split:last-child {
      margin-bottom: 0;
    }

    .s-text {
      flex: 1;
    }

    .s-text h3 {
      font-size: clamp(35px, 4vw, 55px);
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 25px;
    }

    .s-text p {
      font-size: 20px;
      color: var(--g);
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .dark .s-text p {
      color: rgba(255, 255, 255, 0.6);
    }

    .s-img {
      flex: 1.2;
      height: 750px;
      border-radius: 40px;
      overflow: hidden;
      position: relative;
      background: #f0f0f0;
    }

    .s-img img {
      width: 100%;
      height: 130%;
      object-fit: cover;
      position: absolute;
      top: -15%;
    }

    /* Bento Grid */
    .bento {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .bento-card {
      background: var(--bg-alt);
      border-radius: 40px;
      padding: 60px 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .bento-card.large {
      grid-column: span 2;
    }

    .bento-card.dark-card {
      background: var(--b);
      color: #fff;
    }

    .bento-icon {
      font-size: 45px;
      color: var(--o);
      margin-bottom: 80px;
    }

    .bento-card h4 {
      font-size: 30px;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 15px;
      color: var(--o);
    }

    .bento-card p {
      font-size: 18px;
      color: var(--g);
      line-height: 1.6;
    }

    .dark-card p {
      color: rgba(255, 255, 255, 0.6);
    }

    .dark-card .bento-icon {
      color: #fff;
    }

    /* Sticky Section */
    .sticky-sec {
      display: flex;
      align-items: flex-start;
      padding: 100px 6%;
      position: relative;
    }

    .sticky-left {
      flex: 1;
      position: sticky;
      top: 150px;
      padding-right: 80px;
    }

    .sticky-left h2 {
      font-size: clamp(50px, 7vw, 100px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -3px;
    }

    .sticky-left h2 em {
      color: var(--o);
      font-style: normal;
    }

    .sticky-right {
      flex: 1.2;
      display: flex;
      flex-direction: column;
      gap: 150px;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .s-item h4 {
      font-size: 35px;
      font-weight: 800;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .s-item p {
      font-size: 20px;
      color: var(--g);
      line-height: 1.6;
    }

    /* Pricing Section */
    .pricing-sec {
      padding: 100px 6%;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
    }

    .pricing-card {
      background: var(--b);
      color: #fff;
      border-radius: 40px;
      padding: 60px 50px;
      width: 100%;
      max-width: 500px;
      text-align: center;
      position: relative;
      box-shadow: 0 30px 60px rgba(10, 22, 40, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 40px;
    }

    .p-badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--o);
      color: #fff;
      padding: 8px 24px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .pricing-card h3 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .p-price {
      font-size: 60px;
      font-weight: 900;
      color: var(--o);
      line-height: 1;
      margin-top: 15px;
      margin-bottom: 5px;
    }

    .p-freq {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.6);
      margin-bottom: 40px;
    }

    .p-features {
      list-style: none;
      text-align: left;
      margin-bottom: 50px;
    }

    .p-features li {
      font-size: 18px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
      color: rgba(255, 255, 255, 0.85);
    }

    .p-features li i {
      color: var(--o);
      font-size: 16px;
    }

    .p-btn {
      width: 100%;
      background: #fff;
      color: var(--b);
      border: none;
      padding: 20px;
      border-radius: 100px;
      font-size: 18px;
      font-weight: 800;
      cursor: pointer;
      transition: all 0.3s;
    }

    .p-btn:hover {
      background: var(--o);
      color: #fff;
      transform: scale(1.05);
    }

    /* CTA Full block */
    .cta-block {
      height: 90vh;
      background: var(--b);
      border-radius: 60px;
      margin: 0 3% 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .cta-bg {
      position: absolute;
      inset: 0;
      opacity: 0.3;
    }

    .cta-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cta-content {
      z-index: 2;
      text-align: center;
      color: #fff;
      max-width: 900px;
      padding: 0 40px;
    }

    .cta-content h2 {
      font-size: clamp(50px, 8vw, 120px);
      font-weight: 800;
      letter-spacing: -3px;
      line-height: 1;
      margin-bottom: 30px;
    }

    .cta-btn {
      background: var(--o);
      color: #fff;
      border: none;
      padding: 22px 50px;
      border-radius: 100px;
      font-size: 20px;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s;
    }

    .cta-btn:hover {
      background: #fff;
      color: var(--b);
      transform: scale(1.05);
    }

    /* FOOTER & MODAL */
    footer {
      background: var(--b);
      color: rgba(255, 255, 255, .6);
      padding: 72px 6% 0;
      position: relative;
      z-index: 10;
    }

    .fg4 {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 56px;
    }

    .fl {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }

    .flic {
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, .08);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 900;
      color: var(--o);
    }

    .flt {
      font-size: 19px;
      font-weight: 800;
      color: #fff;
    }

    .flt em {
      color: var(--o);
      font-style: normal;
    }

    .fd {
      font-size: 14px;
      line-height: 1.75;
      max-width: 260px;
    }

    .fc h4 {
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      margin-bottom: 22px;
    }

    .fc ul {
      list-style: none;
    }

    .fc ul li {
      margin-bottom: 13px;
    }

    .fc ul li a {
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      font-size: 14px;
      transition: color .2s;
    }

    .fc ul li a:hover {
      color: var(--o);
    }

    .fsc {
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .fsl {
      display: flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
      color: rgba(255, 255, 255, .6);
      font-size: 14px;
      transition: color .2s;
    }

    .fsl:hover {
      color: var(--o);
    }

    .fsic {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #fff;
      transition: background .2s;
      flex-shrink: 0;
    }

    .fsl:hover .fsic {
      background: var(--o);
    }

    .fbot {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 26px 0;
      text-align: center;
      font-size: 13px;
      color: rgba(255, 255, 255, .35);
    }

    .fbot em {
      color: var(--o);
      font-style: normal;
    }

    .mov {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 22, 40, .78);
      z-index: 99999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(6px);
    }

    .mov.op {
      display: flex;
    }

    .mod {
      background: #fff;
      border-radius: 24px;
      padding: 50px 44px;
      max-width: 530px;
      width: 93%;
      position: relative;
      animation: mp .35s cubic-bezier(.22, 1, .36, 1);
      max-height: 92vh;
      overflow-y: auto;
    }

    @keyframes mp {
      from {
        opacity: 0;
        transform: scale(.88) translateY(30px);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .mc {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: none;
      background: var(--li);
      cursor: pointer;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--b);
      transition: background .2s, color .2s;
    }

    .mc:hover {
      background: var(--o);
      color: #fff;
    }

    .mod h2 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .mod h2 em {
      color: var(--o);
      font-style: normal;
    }

    .mod>p {
      color: var(--g);
      margin-bottom: 28px;
      font-size: 15px;
    }

    .fr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .fg {
      margin-bottom: 20px;
    }

    .fg label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--b);
      margin-bottom: 9px;
    }

    .fg input,
    .fg textarea {
      width: 100%;
      padding: 14px 17px;
      border: 2px solid var(--br);
      border-radius: 11px;
      font-size: 15px;
      font-family: 'Inter', sans-serif;
      color: var(--b);
      background: #fff;
      outline: none;
      transition: border-color .2s;
    }

    .fg input:focus,
    .fg textarea:focus {
      border-color: var(--o);
    }

    .fg textarea {
      height: 120px;
      resize: vertical;
    }

    .sbtn {
      width: 100%;
      background: var(--o);
      color: #fff;
      border: none;
      padding: 16px;
      border-radius: 11px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background .2s, transform .15s;
      margin-top: 6px;
    }

    .sbtn:hover {
      background: #e55f00;
      transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .split {
        flex-direction: column !important;
        gap: 50px;
        text-align: center;
      }

      .s-img {
        height: 500px;
        width: 100%;
      }

      .bento {
        grid-template-columns: 1fr;
      }

      .bento-card.large {
        grid-column: span 1;
      }

      .sticky-sec {
        flex-direction: column;
      }

      .sticky-left {
        position: static;
        margin-bottom: 80px;
        padding-right: 0;
        text-align: center;
      }

      .hero-img-wrap {
        bottom: 0;
        height: 50vh;
        width: 95%;
        border-radius: 30px 30px 0 0;
      }

      .nl {
        display: none;
      }

      .hbg {
        display: flex;
      }

      .fg4 {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
      }
    }

    @media(max-width:700px) {
      .fr {
        grid-template-columns: 1fr;
      }

      .fg4 {
        grid-template-columns: 1fr;
      }

      .mod {
        padding: 36px 22px;
      }
    }

    /* Animations Utils */
    .rv-up {
      opacity: 0;
      transform: translateY(60px);
    }

    .rv-scale {
      opacity: 0;
      transform: scale(0.9);
    }