    /* CSS Reset & Base */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --background: #000;
      --foreground: #fff;
      --card: hsl(240, 10%, 6%);
      --card-foreground: #fff;
      --primary: hsl(186, 100%, 50%);
      --primary-foreground: #000;
      --secondary: hsl(300, 100%, 50%);
      --muted: hsl(0, 0%, 100%);
      --muted-foreground: hsl(0, 0%, 100%);
      --border: hsl(240, 10%, 20%);
      --gray: #121212;
      --radius: 0.75rem;
      --gradient-text:  linear-gradient(90deg,rgba(164, 21, 170, 1) 0%, rgba(66, 236, 246, 1) 50%, rgba(164, 90, 216, 1) 100%);
     --gradient-text-h3:  linear-gradient(90deg,rgba(164, 21, 170, 1) 0%, rgba(66, 236, 246, 1) 50%, rgba(164, 90, 216, 1) 100%);
      --gradient-border:  linear-gradient(90deg,rgba(164, 21, 170, 1) 0%, rgba(66, 236, 246, 1) 50%, rgba(164, 90, 216, 1) 100%);
      --gradient-button:  linear-gradient(90deg,rgba(164, 21, 170, 1) 0%, rgba(66, 236, 246, 1) 50%, rgba(164, 90, 216, 1) 100%);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
     font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    /* Container */
    .lvp_container {
      width: 90%;
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 7%;
      padding-right: 7%;
    }

    /* Utilities */
    .lvp_gradient-text {
      background: var(--gradient-text);
      font-size: 5rem !important;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .lvp_ecosystem-text {
      background: var(--gradient-text);
      font-size: 3rem !important;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .lvp_section-heading {
      font-size: 2.5rem !important;
      font-weight: 600;
      letter-spacing: -0.025em;
      background: linear-gradient(
        180deg,
        hsl(186, 100%, 60%) 0%,
        hsl(186, 100%, 60%) 0%,
        hsl(280, 100%, 65%) 74%,
        hsl(280, 100%, 65%) 81%
        );
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    @media (min-width: 768px) {
      .lvp_section-heading {
        font-size: 1.875rem;
      }
    }

    /* Header */
    .lvp_header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background-color: rgba(10, 10, 12, 0.8);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .lvp_header .lvp_container {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 1.3rem;
      padding-bottom: 1.3rem;
      position: relative;
    }

    .lvp_header-logo {
      height: 1.25rem;
    }

    @media (min-width: 768px) {
      .lvp_header-logo {
        height: 1.5rem;
      }
    }

    .lvp_header-nav {
      position: absolute;
      right: 5%;
    }

    .lvp_header-nav button {
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.2s ease;
    }

    .lvp_header-nav button:hover {
      color: var(--foreground);
    }

    /* Hero */
    .lvp_hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-top: 5rem;
     
    background-image: url('/assets/brands/lvp/images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    }

    .lvp_hero .lvp_container {
      padding-top: 5rem;
      padding-bottom: 5rem;
      text-align: center;
    }

    .lvp_hero h1 {
      font-size: 1.875rem;
      font-weight: 800;;
      font-weight: 600;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      letter-spacing: -0.025em;
    }

    @media (min-width: 768px) {
      .lvp_hero h1 {
        font-size: 2.25rem;
        font-weight: 800;;
      }
    }

    @media (min-width: 1024px) {
      .lvp_hero h1 {
        font-size: 4rem !important;
        font-weight: 800;;
      }
    }

    .lvp_hero p {
      color: var(--muted-foreground);
      max-width: 39rem;
      margin: 0 auto;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .lvp_hero p {
        font-size: 1.1rem;
      }
    }

    /* Approach Section */
    .lvp_approach {
      padding: 9rem 0;
      background-color: #121212;
     
    }
    .lvp_hero-text h1 {
        font-size: 4.5rem !important;
        
    }
    .lvp_hero-text p {
        font-size: 1.1rem  !important;
    }

    .lvp_approach-grid {
      display: grid;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    @media (min-width: 768px) {
      .lvp_approach-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Gradient Border Card */
    .lvp_gradient-border-card {
      position: relative;
      background: var(--card);
      border-radius: var(--radius);
      padding: 2.5rem 1.5rem;
      height: 100%;
    }

    .lvp_gradient-border-card::before {
      content: '';
      position: absolute;
      inset: 0;
      padding: 1px;
      border-radius: var(--radius);
      background: var(--gradient-border);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .lvp_gradient-border-card h3 {
      font-size: 2rem;
      font-weight: 900;
      color: var(--foreground);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .lvp_gradient-border-card p {
      color: var(--muted-foreground);
      font-size: 1.3rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .lvp_gradient-border-card p:last-child {
      margin-bottom: 0;
    }

    /* Ecosystem Section */
    .lvp_ecosystem {
      padding: 5rem 0;
      background-size: cover;
      background-position: center;
    }

    .lvp_ecosystem .lvp_container {
      text-align: center;
    }

    .lvp_ecosystem h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .lvp_ecosystem h2 {
        font-size: 1.875rem;
      }
    }

    .lvp_ecosystem-description {
      color: var(--muted-foreground);
      max-width: 50rem;
      margin: 0 auto 3rem;
      font-size: 0.875rem;
      line-height: 1.1;
      font-size: 1.5rem !important
    }

    @media (min-width: 768px) {
      .lvp_ecosystem-description {
        font-size: 1rem;
      }
    }

    .lvp_ecosystem-image {
      display: flex;
      justify-content: center;
      margin-bottom: 3rem;
      width: 100%;
    }

    .lvp_ecosystem-image img {
        width: 100%;
      max-width: 100%;
      height: auto;
    }

    @media (min-width: 768px) {
      .lvp_ecosystem-image img {
        max-width: 42rem;
      }
    }

    .lvp_ecosystem-footer {
      color: var(--muted-foreground);
      font-size: 1.5rem;

      line-height: 1.1;
    }

    .lvp_ecosystem-footer p {
      margin-bottom: 0.25rem;
    }

    /* Contact Section */
    .lvp_contact {
      padding: 5rem 0;
      background-color: var(--gray);
    }

    .lvp_contact-grid {
      display: grid;
      gap: 3rem;
    }

    @media (min-width: 768px) {
      .lvp_contact-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

      @media (max-width: 620px) {
      .lvp_gradient-text {
        font-size: 2rem !important;
      }
      .lvp_ecosystem-text {
        font-size: 2rem !important;
      }
    }


   

    .lvp_contact-content h2 {
      margin-bottom: 1rem;
    }

    .lvp_contact-content h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--foreground);
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .lvp_contact-content h3 {
        font-size: 1.875rem;
      }
    }

    .lvp_contact-content p {
      color: var(--muted-foreground);
      font-size: 1.3rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .lvp_ecosystem-text {
        font-size: 2.5rem;
    }
    /* Form */
    .lvp_form-group {
      margin-bottom: 1.25rem;
    }

    .lvp_form-group label {
      display: block;
      color: var(--muted-foreground);
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .lvp_form-group input,
    .lvp_form-group textarea {
      width: 100%;
      background-color: #121212;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0.75rem 1rem;
      color: var(--foreground);
      font-family: inherit;
      font-size: 1rem;
      transition: all 0.2s ease;
    }

    .lvp_form-group input:focus,
    .lvp_form-group textarea:focus {
      outline: none;
      box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.3);
    }

    .lvp_form-group textarea {
      resize: none;
      min-height: 120px;
    }

    .lvp_gradient-button {
      width: 100%;
      background: var(--gradient-button);
      color: var(--foreground);
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 2.5rem;
      transition: all 0.3s ease;
    }

    .lvp_gradient-button:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }

    /* Footer */
    .lvp_footer {
      padding: 2rem 0;
      background-color: var(--card);
      border-top: 1px solid var(--border);
    
    }

    .lvp_footer .lvp_container {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

     @media (max-width: 768px) {

         .lvp_gradient-button {
        font-size: 1rem;
      }
     }

   

    @media (min-width: 768px) {
      .lvp_footer .lvp_container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      
    }

    .lvp_footer-logo {
      height: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .lvp_footer-address {
      color: var(--muted-foreground);
      font-size: 0.75rem;
    }

    .lvp_footer-address p {
      margin-bottom: 0.125rem;
    }

    .lvp_footer-nav {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--muted-foreground);
    }

    .lvp_footer-nav a {
      transition: color 0.2s ease;
    }

    .lvp_footer-nav a:hover {
      color: var(--foreground);
    }

    .lvp_footer-nav span {
      color: var(--muted-foreground);
    }

    .lvp_contact-form {
  padding: 3rem 1rem;
  border-radius: 2rem;

  background:
    linear-gradient(#0b0b0f, #0b0b0f) padding-box,
    linear-gradient(135deg,
      hsl(186, 100%, 50%),
      hsl(280, 100%, 60%)
    ) border-box;

  border: 0.5rem solid transparent;
}

 .lvp_contact-alert-success {
  background: rgba(101, 0, 255, 0.2) !important;
  border: 2px solid #6500ff !important;
}
.lvp_contact-alert-success h4 {
  color: #6500ff !important;
  font-size: 1.5rem !important;
  margin-bottom: 15px !important;
  font-family: 'Bruno Ace SC', sans-serif !important;
}
#wrapper {
  margin-top: 8%;
}