    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #FE4C33;
      --dark: #0A0A0A;
      --dark-lighter: #1A1A1A;
      --text: #ffffff;
      --text-muted: #9CA3AF;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }

    .wrapper {
      width: 100%;
      overflow-x: hidden;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 20px 0;
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 24px;
      font-weight: 800;
      color: white;
      text-decoration: none;
    }

    .header__nav {
      display: flex;
      gap: 40px;
      align-items: center;
    }

    .header__nav a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: color .3s;
    }

    .header__nav a:hover {
      color: var(--primary);
    }

    .header__btns {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .header__btn-black {
      padding: 10px 24px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all .3s;
    }

    .header__btn-black:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--primary);
    }

    .header__btn-white {
      padding: 10px 24px;
      background: var(--primary);
      border-radius: 8px;
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: all .3s;
    }

    .header__btn-white:hover {
      background: #e63e28;
    }

    /* Hero Section */
    .hero {
      padding: 100px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .hero__mid {
      position: relative;
    }

    .hero__mid-inner {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .grey-bg {
      display: inline-block;
      padding: 8px 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, 0.9);
    }

    .grey-bg .bold {
      color: var(--primary);
      font-weight: 700;
    }

    h1 {
      font-size: 64px;
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    h2 {
      font-size: 48px;
      font-weight: 900;
      line-height: 1.2;
    }

    h3 {
      font-size: 24px;
      font-weight: 700;
    }

    h4 {
      font-size: 20px;
      font-weight: 400;
      color: var(--text-muted);
      margin-bottom: 40px;
      line-height: 1.6;
    }

    /* Floating App Screenshots */
    .elems {
      position: absolute;
      border-radius: 24px;
      box-shadow: 0 20px 60px rgba(254, 76, 51, 0.3);
      opacity: 0.8;
      transition: all .3s;
    }

    .elems:hover {
      opacity: 1;
      transform: translateY(-10px);
    }

    @keyframes float1 {
      0%, 100% { transform: translateY(0px) rotate(-5deg); }
      50% { transform: translateY(-20px) rotate(-5deg); }
    }

    @keyframes float2 {
      0%, 100% { transform: translateY(0px) rotate(5deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }

    @keyframes float3 {
      0%, 100% { transform: translateY(0px) rotate(-3deg); }
      50% { transform: translateY(-25px) rotate(-3deg); }
    }

    .elem1 {
      width: 200px;
      top: 10%;
      left: 5%;
      animation: float1 6s ease-in-out infinite;
    }

    .elem2 {
      width: 180px;
      top: 15%;
      left: 15%;
      animation: float2 5s ease-in-out infinite;
      animation-delay: 1s;
    }

    .elem3 {
      width: 190px;
      top: 40%;
      left: 8%;
      animation: float3 7s ease-in-out infinite;
      animation-delay: 2s;
    }

    .elem4 {
      width: 200px;
      top: 10%;
      right: 5%;
      animation: float1 6s ease-in-out infinite;
      animation-delay: 3s;
    }

    .elem5 {
      width: 180px;
      top: 15%;
      right: 15%;
      animation: float2 5s ease-in-out infinite;
      animation-delay: 0.5s;
    }

    .elem6 {
      width: 190px;
      top: 40%;
      right: 8%;
      animation: float3 7s ease-in-out infinite;
      animation-delay: 1.5s;
    }

    .hero__mid-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 40px;
    }

    .btn_orange {
      padding: 16px 40px;
      background: var(--primary);
      border-radius: 12px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      transition: all .3s;
    }

    .btn_orange:hover {
      background: #e63e28;
      transform: translateY(-2px);
    }

    .btn__border {
      padding: 16px 40px;
      background: transparent;
      border: 2px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      transition: all .3s;
    }

    .btn__border:hover {
      border-color: var(--primary);
      background: rgba(254, 76, 51, 0.1);
    }

    /* Platform Section */
    .platform {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.02);
    }

    .platform__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .platform__txt h2 {
      margin-bottom: 20px;
    }

    .platform__txt p {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .platform__img {
      position: relative;
    }

    .platform__ekr {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(254, 76, 51, 0.2);
    }

    /* Prils Section */
    .prils {
      padding: 100px 0;
    }

    .prils__txt {
      text-align: center;
      max-width: 700px;
      margin: 30px auto 60px;
    }

    .prils__txt h2 {
      margin-bottom: 16px;
    }

    .prils__txt p {
      font-size: 18px;
      color: var(--text-muted);
    }

    .prils__elems {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 60px;
    }

    .prils__l {
      position: relative;
    }

    .prils__ekr {
      width: 100%;
      border-radius: 20px;
    }

    .prils__r {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .prils__r-elem {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all .3s;
    }

    .prils__r-elem:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--primary);
    }

    .prils__r-elem svg {
      flex-shrink: 0;
      margin-top: 2px;
    }

    .prils__r-elem p {
      font-size: 16px;
      line-height: 1.6;
    }

    /* Constructor Section */
    .constr {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.02);
    }

    .constr__txt {
      text-align: center;
      max-width: 700px;
      margin: 30px auto 60px;
    }

    .constr__txt h2 {
      margin-bottom: 16px;
    }

    .constr__txt p {
      font-size: 18px;
      color: var(--text-muted);
    }

    .constr__elems {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 60px;
    }

    .const__l {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .constr__l-elem {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all .3s;
    }

    .constr__l-elem:hover {
      background: rgba(255, 255, 255, 0.05);
      border-color: var(--primary);
    }

    .constr__l-elem p {
      font-size: 16px;
      line-height: 1.6;
    }

    .const__r {
      position: relative;
    }

    .const__ekr {
      width: 100%;
      border-radius: 20px;
    }

    /* Anymore Section */
    .anymore {
      padding: 100px 0;
    }

    .anymore__txt {
      text-align: center;
      max-width: 700px;
      margin: 30px auto 60px;
    }

    .anymore__txt h2 {
      margin-bottom: 16px;
    }

    .anymore__txt p {
      font-size: 18px;
      color: var(--text-muted);
    }

    .anymore__elems {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 60px;
    }

    .anymore__elem {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all .3s;
    }

    .anymore__elem:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
    }

    .anymore__elem img {
      width: 100%;
      display: block;
    }

    .anymore__elem-bot {
      padding: 30px;
    }

    .anymore__elem-bot h3 {
      margin-bottom: 12px;
      color: var(--primary);
    }

    .anymore__elem-bot p {
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* Video Section */
    .video {
      padding: 100px 0;
      background: rgba(255, 255, 255, 0.02);
    }

    .video__txt {
      text-align: center;
      max-width: 700px;
      margin: 30px auto 60px;
    }

    .video__txt h2 {
      margin-bottom: 16px;
    }

    .video__txt p {
      font-size: 18px;
      color: var(--text-muted);
    }

    .video__cont {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

    .video__cont iframe {
      width: 100%;
      aspect-ratio: 16/9;
      border: none;
    }

    /* Price Section */
    .price {
      padding: 100px 0;
    }

    .price__txt {
      text-align: center;
      margin-bottom: 60px;
    }

    .price__txt h2 {
      margin-bottom: 16px;
    }

    .price__txt p {
      font-size: 18px;
      color: var(--text-muted);
    }

    .price__elems {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
    }

    .price_elem {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 32px 24px;
      transition: all .3s;
    }

    .price_elem:hover {
      border-color: var(--primary);
      transform: translateY(-5px);
    }

    .price__elem-top {
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 24px;
    }

    .price__elem-top h3 {
      margin-bottom: 8px;
    }

    .price__elem-top span {
      font-size: 14px;
      color: var(--text-muted);
    }

    .price__elem-bot {
      margin-bottom: 16px;
    }

    .price__elem-bot h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .elem__bot-b {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .elem__bot-b span {
      font-size: 14px;
      color: var(--text-muted);
    }

    .elem__bot-b p {
      font-size: 18px;
      font-weight: 700;
    }

    .price-enter {
      grid-column: 1 / -1;
      text-align: center;
      padding: 20px;
      background: rgba(254, 76, 51, 0.1);
      border: 1px solid var(--primary);
      border-radius: 12px;
      font-weight: 600;
      margin-top: 20px;
    }

    .price__bot {
      text-align: center;
      margin-top: 40px;
      font-size: 16px;
      color: var(--text-muted);
    }

    .price__bot p {
      margin-bottom: 8px;
    }

    .price__bot .orange {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
    }

    .price__bot .orange:hover {
      text-decoration: underline;
    }

    /* Banner Section */
    .banner {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary) 0%, #e63e28 100%);
    }

    .banner__inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .banner__l-txt h2 {
      font-size: 56px;
      margin-bottom: 12px;
    }

    .banner__l-txt h3 {
      font-size: 32px;
      margin-bottom: 32px;
    }

    .banner__btn {
      display: inline-block;
      padding: 18px 48px;
      background: white;
      color: var(--primary);
      border-radius: 12px;
      text-decoration: none;
      font-weight: 700;
      font-size: 18px;
      transition: all .3s;
    }

    .banner__btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .banner__r img {
      width: 100%;
      max-width: 400px;
    }

    /* Footer */
    footer {
      padding: 60px 0 40px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer__logo {
      font-size: 24px;
      font-weight: 800;
    }

    .footer__txt {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-end;
    }

    .footer__txt p {
      font-size: 14px;
      color: var(--text-muted);
    }

    .footer__link {
      color: var(--primary);
      text-decoration: none;
    }

    .footer__link:hover {
      text-decoration: underline;
    }

    /* Mobile Styles */
    .mob {
      display: none;
    }

    @media (max-width: 768px) {
      .desk {
        display: none;
      }

      .mob {
        display: block;
      }

      .header__nav {
        display: none;
      }

      h1 {
        font-size: 40px;
      }

      h2 {
        font-size: 32px;
      }

      .platform__inner,
      .prils__elems,
      .constr__elems,
      .banner__inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .anymore__elems,
      .price__elems {
        grid-template-columns: 1fr;
      }

      .elems {
        display: none;
      }

      .footer__inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .footer__txt {
        align-items: center;
      }

      .price-enter {
        grid-column: 1;
      }
    }

    /* Placeholder for screenshots */
    .placeholder-img {
      width: 100%;
      height: auto;
      background: linear-gradient(135deg, rgba(254, 76, 51, 0.2), rgba(230, 62, 40, 0.2));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      color: rgba(255,255,255,0.3);
    }
