      @import url("https://fonts.cdnfonts.com/css/gilroy-bold");

      * {
        margin: 0;
        padding: 0;
      }

      body {
        font-family: "Gilroy-Bold", sans-serif;
        font-family: "Gilroy-Heavy", sans-serif;
        font-family: "Gilroy-Light", sans-serif;
        font-family: "Gilroy-Medium", sans-serif;
        font-family: "Gilroy-Regular", sans-serif;
      }
      :root {
        --primary-color: #ff6b35;
        --secondary-color: #ff8c42;
        --dark-color: #1a1a1a;
        --light-color: #ffffff;
        --gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        line-height: 1.6;
        color: var(--dark-color);
        overflow-x: hidden;
      }

      .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
          url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="bubbles" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23FF6B35" opacity="0.3"/><circle cx="75" cy="75" r="3" fill="%23FF8C42" opacity="0.2"/><circle cx="50" cy="80" r="1.5" fill="%23FF6B35" opacity="0.4"/></pattern></defs><rect width="100%" height="100%" fill="%23000"/><rect width="100%" height="100%" fill="url(%23bubbles)"/></svg>');
        background-size: cover;
        background-position: center;
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
      }

      .hero-content {
        text-align: center;
        color: white;
        z-index: 2;
      }

      .hero-title {
        /* font-family: "Playfair Display", serif; */
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: fadeInUp 1s ease-out;
      }

      .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        animation: fadeInUp 1s ease-out 0.3s both;
      }

      .btn-primary-custom {
        background: var(--gradient);
        border: none;
        padding: 15px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        animation: fadeInUp 1s ease-out 0.6s both;
      }

      .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
      }

      .navbar-custom {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      }

      .navbar-brand {
        /* font-family: "Playfair Display", serif; */
        font-size: 2rem;
        font-weight: 700;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .nav-link {
        color: var(--dark-color) !important;
        font-weight: 500;
        transition: color 0.3s ease;
      }

      .nav-link:hover {
        color: var(--primary-color) !important;
      }

      .section-padding {
        padding: 100px 0;
      }

      .section-title {
        /* font-family: "Playfair Display", serif; */
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient);
        border-radius: 2px;
      }

      .product-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        margin-bottom: 2rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .product-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient);
      }

      .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      }

      .product-icon {
        font-size: 4rem;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
      }

      .product-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark-color);
      }

      .product-description {
        color: #666;
        line-height: 1.8;
        margin-bottom: 1.5rem;
      }

      .features-list {
        list-style: none;
        padding: 0;
      }

      .features-list li {
        padding: 0.5rem 0;
        position: relative;
        padding-left: 2rem;
      }

      .features-list li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--primary-color);
        font-weight: bold;
      }

      .stats-section {
        background: var(--dark-color);
        color: white;
        text-align: center;
      }

      .stat-item {
        padding: 2rem 1rem;
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 700;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
      }

      .stat-label {
        font-size: 1.1rem;
        opacity: 0.8;
        margin-top: 0.5rem;
      }

      .cta-section {
        background: var(--gradient);
        color: white;
        text-align: center;
      }

      .btn-secondary-custom {
        background: white;
        color: var(--primary-color);
        border: none;
        padding: 15px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
      }

      .btn-secondary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        color: var(--primary-color);
      }

      .footer {
        background: var(--dark-color);
        color: white;
        padding: 3rem 0 1rem;
      }

      .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
      }

      .floating-element {
        position: absolute;
        background: var(--gradient);
        border-radius: 50%;
        opacity: 0.1;
        animation: float 6s ease-in-out infinite;
      }

      .floating-element:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
      }

      .floating-element:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 60%;
        right: 10%;
        animation-delay: 2s;
      }

      .floating-element:nth-child(3) {
        width: 60px;
        height: 60px;
        top: 80%;
        left: 70%;
        animation-delay: 4s;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }

      .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateX(-50%) translateY(0);
        }
        40% {
          transform: translateX(-50%) translateY(-10px);
        }
        60% {
          transform: translateX(-50%) translateY(-5px);
        }
      }

      @media (max-width: 768px) {
        .hero-title {
          font-size: 2.5rem;
        }

        .hero-subtitle {
          font-size: 1.2rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .product-card {
          margin-bottom: 2rem;
        }
      }
