html, body {
    margin: 0;
    padding: 0;
    background: white;
    font-family: "DM Sans", sans-serif;
  }

  .ai-image{
    width: 64px;
    height: 64px;
    object-fit: cover;
    margin-right: 8px;
    margin-top: 7px;
    margin-right: -4px;
    margin-bottom: 18px;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  @font-face {
    font-family: "Funnel Display";
    src: url('fonts/FunnelDisplay-VariableFont_wght.ttf') format("truetype");
  }
  
  
  @font-face {
    font-family: "DM Sans";
    src: url('fonts/DMSans-VariableFont_opsz,wght.ttf') format("truetype");
  }

  .primary-button{
    background: linear-gradient(45deg, #9e33ff, #60b3ff);
    text-align: center;
    font-size: 16px;
    line-height: 32px;;
    letter-spacing: -1px;
    color:white;
    border: 0;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    padding: 8px 32px;
    min-height: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .primary-button:disabled {
    background: linear-gradient(45deg, #cccccc, #999999);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
  }

  .primary-button:disabled:hover {
    background: linear-gradient(45deg, #cccccc, #999999);
    transform: none !important;
  }

  .primary-button:disabled::before {
    display: none;
  }

  .header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }

 

  .testimonial-section{
    align-items: left;
    display: flex;
    gap:12px;
    justify-content: left;
    text-align: left;
    font-size: 12px;
    color: #37383b;
  }

  .testimonial-section img{
    width: 120px;
    height:28px;
  }

  .niche-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
  }

  .niche-bubble {
    background: linear-gradient(135deg, rgb(74 174 255 / 20%), rgb(198 152 255 / 30%));
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 14px;
    color: #37383b;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    border: 1px solid rgba(158, 51, 255, 0.1);
  }

  .niche-bubble svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
  }

  .niche-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .niche-bubble:hover {
    border-color: rgba(158, 51, 255, 0.3);
    background: linear-gradient(135deg, rgb(74 174 255 / 30%), rgb(198 152 255 / 40%));
    transform: translateY(-2px);
  }

  .niche-bubble:hover::before {
    left: 100%;
  }

  .primary-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    z-index: 1;
    overflow: hidden;
  }

  .primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: 2;
    pointer-events: none;
  }

     .primary-button:hover::before {
     left: 100%;
   }

   .pulsing-dot {
     animation: pulse 2s infinite;
   }

   @keyframes pulse {
     0% {
       transform: translateY(-50%) scale(0.9);
       box-shadow: 0 0 4px 2px #ff9393, 0 0 2px 1px #fff inset;
     }
     50% {
       transform: translateY(-50%) scale(1.1);
       box-shadow: 0 0 12px 4px #ff5959, 0 0 2px 1px #fff inset;
     }
     100% {
       transform: translateY(-50%) scale(0.9);
       box-shadow: 0 0 4px 2px #ff9393, 0 0 2px 1px #fff inset;
     }
   }

   .glowing-textarea-wrapper {
     position: relative;
     margin: 24px auto;
     max-width: 600px;
   }

   @property --angle {
     syntax: '<angle>';
     initial-value: 0deg;
     inherits: false;
   }

   .glowing-textarea-wrapper::before {
     content: '';
     position: absolute;
     top: -4px;
     left: -4px;
     right: -4px;
     bottom: -4px;
     z-index: -1;
     background: conic-gradient(from var(--angle), #00ffff, #ff00ff, #0080ff, #00ffff);
     border-radius: 20px;
     filter: blur(12px);
     animation: rotate-glow 3s linear infinite;
     opacity: 0.6;
   }

   .menu ul{
    display: inline-flex;
    list-style: none;
    gap: 20px;
   }

  .link{
    display: inline-block;
    text-decoration: none;
    color: rgb(136 77 255);
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .link:hover{
    color: rgb(79, 182, 220);
  }

.coming-soon-bubble {
  background: #cbbfff;
  color: #fff;
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 10px;
  display: inline;
  position: absolute;
  top: 10px;
  left: 20px;
}

   .glowing-textarea {
     width: 100%;
     min-height: 120px;
     padding: 20px;
     border: none;
     border-radius: 16px;
     font-size: 16px;
     font-family: 'DM Sans', sans-serif;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     outline: none;
     resize: vertical;
     position: relative;
     z-index: 1;
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
     box-sizing: border-box;
   }

   .glowing-textarea::placeholder {
     color: #888;
     font-style: italic;
   }

   .glowing-textarea:focus {
     background: rgba(255, 255, 255, 1);
   }

   .tick-icon{
    width: 20px;
    height: 20px;
    margin-right: 2px;
    position: relative;
    top: 4px;
    margin-left:2px;
   }

   .tick-benefits {

        color: rgb(255, 255, 255);
        gap: 4px;
        margin: 0;
        flex-direction: column;
        padding:0;
   }

   .tick-benefit {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
   }

   .tick-benefit img{
    width: 20px;
    height: 20px;
    margin-right: 2px;
    position: relative;
    top: -2px;
   }

   .loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: relative;
    top: 4px;
    right: 8px;
  }

   @keyframes rotation {
    0% {
      transform: rotate(0deg);
    } 
    100% {
      transform: rotate(360deg);
    }
  }   

   @keyframes rotate-glow {
     0% {
       --angle: 0deg;
     }
     100% {
       --angle: 360deg;
     }
   }

   /* Error Toast Styles */
   .error-toast {
     position: fixed;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%) translateY(100px);
     background: rgba(255, 182, 193, 0.95);
     border: 2px solid #ff4757;
     border-radius: 12px;
     padding: 16px 24px;
     font-size: 14px;
     font-weight: 600;
     color: #d63031;
     box-shadow: 0 8px 32px rgba(255, 71, 87, 0.3);
     backdrop-filter: blur(10px);
     z-index: 1000;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     opacity: 0;
     font-family: 'DM Sans', sans-serif;
   }

   .error-toast.show {
     transform: translateX(-50%) translateY(0);
     opacity: 1;
   }

   #benfits-container-desktop-only{
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
   }

   @media (max-width: 600px) {

   

    .tick-benefit{
      font-size: 12px;
      margin:0;
    }
     .error-toast {
       left: 20px;
       right: 20px;
       transform: translateY(100px);
       max-width: calc(100vw - 40px);
     }

     .error-toast.show {
       transform: translateY(0);
     }
   }

     p{
     font-size: 16px;
     line-height: 1.6;
   }

   h1 {
     font-family: "Funnel Display";
     font-size: clamp(2.618rem, 24px + 3vw, 4.236rem); /* Golden ratio: 1.618 */
     line-height: 1.2;
     margin: 16px 0;
     font-weight: 600;
   }

   h2 {
     font-family: "Funnel Display";
     font-size: clamp(1.618rem, 18px + 2.5vw, 2.618rem); /* h1 / φ */
     line-height: 1.3;
     margin: 16px 0;
     font-weight: 600;
   }

   h3 {
     font-family: "Funnel Display";
     font-size: clamp(1rem, 14px + 1.5vw, 1.618rem); /* h2 / φ */
     line-height: 1.3;
     margin: 16px 0;
     font-weight: 600;
     margin-bottom:24px;
   }

       #whats-included li{
     list-style: none;
     margin-bottom: 12px;
     line-height: 1.4;
     font-size: 14px;
     font-weight: 600;
     color: #2a2a2a;
     display: flex;
     align-items: flex-start;
     gap: 8px;
    }

    #whats-included li:last-child {
     margin-bottom: 0;
    }

    #whats-included ul{
     padding-left: 0;
     margin-top: 16px;
    }

    #whats-included img{
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 24px;
      margin-bottom: 16px;
    }

    #whats-included ul img{
     width: 16px;
     height: 16px;
     margin: 0;
     flex-shrink: 0;
     margin-top: 2px;
    }

   .section-intro {
     text-align: center;
     color: #6c6f75;
     font-size: 14px;
     margin-bottom: 8px;
   }

   .problem-intro {
     text-align: center;
     margin: 32px 0 24px 0;
   }

   .problem-list {
     max-width: 600px;
     margin: 0 auto 40px auto;
   }

   .problem-item {
     display: flex;
     align-items: center;
     margin-bottom: 16px;
     font-size: 16px;
   }

   .solution-section {
     background: linear-gradient(135deg, #9e33ff, #4aa6ff);
     color: white;
     padding: 60px 0;
   }

   .solution-heading {
     color: white;
     margin: 8px 0;
   }

     .solution-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .comparison-section {
    background: url('assets/new-background.jpg') center center/cover no-repeat;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px auto;
  }

  .comparison-wrapper {
    position: relative;
  }

  .comparison-left, .comparison-right {
    background: rgba(245, 245, 245, 0.95);
    border-radius: 20px;
    padding: 32px 24px;
    backdrop-filter: blur(10px);
  }

  .comparison-right {
    background: linear-gradient(135deg, rgba(158, 51, 255, 0.95), rgba(74, 166, 255, 0.95));
    color: white;
    backdrop-filter: blur(10px);
  }

  .comparison-vs {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    background: #18171b;
    color: white;
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
  }

  .comparison-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .section{
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  #hero{
    width: 100%;
    height: 100dvh;
    min-height: 100vh; /* Fallback for older browsers */
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  #hero .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }

  #hero .container {
    position: relative;
    z-index: 2;
  }

  header{
    position: fixed;
    width: 100%;
    color: white;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    z-index: 100;
  }

  /* Hero refinements */
  .hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 12px;
    background: #b0b0b042;
    color: white;
    border-radius: 32px;
    backdrop-filter: blur(12px);
    margin-bottom: 16px;
    padding-left:24px;
  }

  .hero-badge .pulsing-dot {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 60% 40%, #ff4b4b 70%, #ff0000 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px 2px #ff4b4b, 0 0 2px 1px #fff inset;
  }

  .hero-subhead {
    display: inline-block;
    max-width: 760px;
  }

  /* Modern Hero Typography */
  #hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  #hero .hero-container {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    height: 100dvh;
    display: flex;
    align-items: center;
  }

  .hero-cta-section {
    margin: 32px 0;
  }

  .hero-cta-button {
    font-size: 18px;
    padding: 16px 32px;
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 600;
  }

  .hero-cta-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 40px;
  }

  .hero-trust-section {
    margin: 40px 0;
  }

  .hero-trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 500;
  }

  .hero-trust-avatars {
    display: flex;
    justify-content: center;
    gap: -8px;
    margin-bottom: 48px;
  }

  .hero-trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -8px;
    background: white;
  }

  .hero-trust-avatars img:first-child {
    margin-left: 0;
  }

  /* Scrolling Icons Section */
  .hero-scrolling-icons {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-top: 40px;
  }

  .hero-scrolling-icons::before,
  .hero-scrolling-icons::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
  }

  .hero-scrolling-icons::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
  }

  .hero-scrolling-icons::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.3), transparent);
  }

  .icons-track {
    display: flex;
    animation: scroll-icons 20s linear infinite;
    gap: 40px;
    align-items: center;
  }

  .icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
  }

  .icon-item svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 1.5;
  }

  @keyframes scroll-icons {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* JS-Powered Floating Bubbles Animation */
  .hero-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }

  .bubble {
    position: absolute;
    background: radial-gradient(
      circle at 25% 25%, 
      rgba(255, 255, 255, 0.25), 
      rgba(255, 255, 255, 0.12) 40%, 
      rgba(255, 255, 255, 0.05) 70%, 
      rgba(255, 255, 255, 0.02)
    );
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    pointer-events: none;
    backdrop-filter: blur(4px);
    box-shadow: 
      inset 2px 2px 4px rgba(255, 255, 255, 0.3),
      inset -1px -1px 2px rgba(255, 255, 255, 0.1),
      0 4px 12px rgba(0, 0, 0, 0.15),
      0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease-out;
  }

  /* Mobile responsiveness for hero */
  @media (max-width: 768px) {
    #hero .hero-container {
      padding: 20px 16px;
    }
    
    .hero-trust-avatars {
      gap: -4px;
    }
    
    .hero-trust-avatars img {
      width: 32px;
      height: 32px;
      margin-left: -4px;
    }
    
    .icons-track {
      gap: 30px;
    }
    
    .icon-item {
      min-width: 60px;
    }
    
    .icon-item svg {
      width: 20px;
      height: 20px;
    }
  }

  /* Tooltip Styles (moved from inline) */
  .tooltip-container {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -18px;
  }

  .tooltip-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.487);
    border: 0;
    border-radius: 50%;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
  }

  .tooltip-icon:hover {
    background: rgba(0, 0, 0, 0.6);
  }

  .tooltip-content {
    position: absolute;
    top: -220px;
    left: -145px;
    background: #2a2a2a;
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 999999;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 150px;
    border: 6px solid transparent;
    border-top-color: #2a2a2a;
  }

  @media (max-width: 768px) {
    .tooltip-container {
      display: none;
    }
  }

  .tooltip-container:hover .tooltip-content {
    opacity: 1;
  }

 .two-cols{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
 }
 .three-cols{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
 }

 /* Steps container with arrows */
 .steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;
 }

 .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e33ff;
    opacity: 0.8;
 }

 .step-item img{
  max-width: 100%;
  min-width: 100%;
  max-height: 500px;
  border-radius: 16px;
 }

 .arrow-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease, color 0.3s ease;
 }

 .step-arrow:hover .arrow-icon {
    transform: translateX(4px);
    color: #7760ff;
 }
 .four-cols{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
 }

 /* Mobile Menu Styles */
 .mobile-menu-btn {
   display: none;
   background: none;
   border: none;
   cursor: pointer;
   padding: 8px;
   z-index: 1001;
   position: relative;
 }

 .hamburger-line {
   display: block;
   width: 24px;
   height: 2px;
   background: #9e33ff;
   margin: 4px 0;
   transition: all 0.3s ease;
   transform-origin: center;
 }

   /* Hamburger to X animation */
  .mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
  }

   /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
  }

 .mobile-menu-list {
   list-style: none;
   padding: 0;
   margin: 0;
   text-align: center;
 }

   .mobile-menu-list li {
    margin: 16px 0;
  }

   .mobile-menu-link {
    font-size: 18px;
    font-weight: 600;
    color: #9e33ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 12px 24px;
    border-radius: 12px;
  }

 .mobile-menu-link:hover {
   background: rgba(158, 51, 255, 0.1);
   transform: translateY(-2px);
 }

 .mobile-menu-login {
   background: linear-gradient(45deg, #9e33ff, #60b3ff);
   color: white !important;
   border-radius: 24px;
   margin-top: 32px;
 }

 .mobile-menu-login:hover {
   background: linear-gradient(45deg, #8b2de6, #4aa0e6);
   transform: translateY(-2px);
 }

 .mobile-only-images{
  display: none;
 }

 /* Hide mobile menu button on desktop */
 @media (min-width: 801px) {
   .mobile-menu-btn {
     display: none;
   }
 }

 @media (max-width: 800px) {
  .mobile-only-images{
    display: flex;
    flex-direction: row;
    width:100%;
    gap: 16px;
  }

  #hero{
    width: 100%;
    min-height: 100vh;
  }

  .mobile-only-images img{
    max-width: 25%;
  }

  .menu{
    display: none;
  }

  .header-right .primary-button {
    display: none;
  }

  .mobile-menu-btn {
    display: block !important;
  }

     .two-cols{
         grid-template-columns: repeat(1, 1fr);
     }
     .three-cols{
         grid-template-columns: repeat(1, 1fr);
     }
     .four-cols{
         grid-template-columns: repeat(1, 1fr);
     }

     .tick-benefits {
      
          color: rgb(249, 249, 249);
          gap: 4px;
          margin: 16px 0;
          flex-direction: column;
     }

     #hero h1{
      font-size: 28px !important;
      line-height: 1;
     }

     /* Mobile steps layout */
     .steps-container {
         grid-template-columns: 1fr;
         grid-template-rows: auto auto auto auto auto;
         gap: 24px;
     }

     .step-arrow {
         transform: rotate(90deg);
         margin: 8px 0;
     }

     .step-arrow:hover .arrow-icon {
         transform: rotate(90deg) translateX(4px);
     }
     
     .comparison-section {
         padding: 40px 20px;
         margin: 20px 0;
     }
     
     .comparison-vs {
         left: 50%;
         top: 50%;
         transform: translate(-50%, -50%);
         z-index: 3;
     }
  }

 #whats-included .col-4{
    background: rgb(255 255 255 / 50%);
    padding: 20px;
    border-radius: 32px;
    box-shadow: 0 2px 12px #7b7b7b22;
    backdrop-filter: blur(5px);
 }

       /* Testimonials Section Styles */
       .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
        margin: 0 auto;
      }
      .testimonial-card {
        background: #ffffff;
        border: 1px solid #e3e3e3;
        border-radius: 24px;
        padding: 16px;
        box-shadow: 0 2px 12px #7b7b7b22;
        transition: box-shadow 0.18s;
        font-family: 'DM Sans', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .testimonial-card:hover {
        box-shadow: 0 4px 24px #a259ff22, 0 0 0 2px #a259ff22;
      }
      .testimonial-text {
        font-size: 14px;
        line-height: 1.4;
        color: #2a2a2a;
        margin-bottom: 12px;
        font-weight: 400;
        font-style: italic;
        font-family: 'DM Sans', sans-serif;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .testimonial-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #f0f0f0;
      }
      .testimonial-author-name {
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #17171a;
        margin-bottom: 2px;
      }
      .testimonial-author-title {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        color: #6c6f75;
        font-weight: 400;
      }
      @media (max-width: 768px) {
        .testimonials-grid {
          grid-template-columns: 1fr;
          gap: 16px;
        }
      }

      .faq-section {
        background: url('assets/gradient-bg.jpg') center center/cover no-repeat;
        
      }
      
      .faq-label {
        display: inline-block;
        background: #18171b;
        color: #fff;
        border-radius: 16px;
        padding: 6px 18px;
        font-size: 15px;
        font-family: 'DM Sans';
        margin: 0 auto 18px auto;
        text-align: center;
      }
      
      .faq-heading {
        color: #252327;
        font-family: 'DM Sans', sans-serif;
        
        text-align: center;
        margin-bottom: 38px;
        margin-top: 0;
      }
      
      .faq-container {
        max-width: 700px;
        margin: 0 auto;
      }
      
      .faq-item {
        border: none;
        margin-bottom: 18px;
        overflow: hidden;
        background: #18171b;
        border-radius: 18px;
        box-shadow: 0 2px 16px 0 #00000022;
      }
      
      .faq-question {
        cursor: pointer;
        padding: 22px 44px 22px 28px;
        background: none;
        color: #fff;
        font-family: 'DM Sans', sans-serif;
        font-size: 1.25em;
        font-weight: 500;
        position: relative;
        user-select: none;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        border-radius: 18px;
        transition: background 0.2s;
      }
      
      .faq-question.active, .faq-question:active {
        background: #232228;
      }
      
      .faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        font-weight: 600;
        flex: 1;
      }
      
      .symbol {
        position: absolute;
        right: 24px;
        top: 50%;
        width: 18px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transform: translateY(-50%);
        transition: background 0.2s;
      }
      
      .symbol::before {
        content: "";
        position: absolute;
        left: 8px;
        top: -8px;
        width: 2px;
        height: 18px;
        background: #fff;
        border-radius: 2px;
        transition: opacity 0.2s;
      }
      
      .faq-question.active .symbol::before {
        display: none;
      }
      
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s cubic-bezier(.4,0,.2,1);
        color: #e0e0e0;
        font-family: 'DM Sans', sans-serif;
        font-size: 1.1em;
        background: none;
      }
      
      .faq-answer p {
        margin: 12px 24px 18px 24px;
        line-height: 1.5;
      }
      
      .faq-question.active + .faq-answer {
        max-height: 400px;
        transition: max-height .35s cubic-bezier(.4,0,.2,1);
      }
      
      @media (max-width: 700px) {
        .faq-question {
          font-size: 1em !important;
          padding: 16px 48px 16px 16px !important;
          border-radius: 12px !important;
        }
        .faq-question h3 {
          font-size: 1em !important;
        }
        .faq-item {
          border-radius: 12px !important;
          margin-bottom: 10px !important;
        }
      }

      /* Brand Page Styles */
      .brand-page {
        background: #f8f9fa;
        color: #2a2a2a;
      }

      .brand-page header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
      }

      .brand-page .link {
        color: #9e33ff;
      }

      .brand-layout {
        display: grid;
        grid-template-columns: 1fr 0.67fr;
        gap: 40px;
        align-items: start;
      }

      .brand-main {
        background: white;
        border-radius: 24px;
        padding: 0;
        overflow: hidden;
      }

      .brand-cover {
        width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 24px 24px 0 0;
      }

      .cover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .brand-header {
        padding: 32px;
        padding-bottom: 24px;
      }

      .brand-header h1 {
        margin: 0 0 16px 0;
        font-size: 2rem;
        font-weight: 600;
        color: #2a2a2a;
      }

      .brand-meta, .creator-meta {
        margin-bottom: 16px;
      }

      .about-label, .creator-label {
        background: #f8f9fa;
        color: #6c6f75;
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .brand-description, .creator-bio {
        line-height: 1.6;
        color: #4a4a4a;
        margin: 0;
      }

      .brand-benefits {
        padding: 0 32px 24px 32px;
        border-bottom: 1px solid #f0f0f0;
      }

      .benefits-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .benefit-item, .pricing-benefit {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #2a2a2a;
      }

      .benefit-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
      }

      .learning-hub {
        padding: 32px;
      }

      .learning-hub h2 {
        margin: 0 0 16px 0;
        font-size: 1.5rem;
        font-weight: 600;
        color: #2a2a2a;
      }

      .hub-description {
        color: #6c6f75;
        line-height: 1.6;
        margin-bottom: 24px;
      }

      .courses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }

      .no-courses-message {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        background: #f8f9fa;
        border-radius: 16px;
        border: 2px dashed #e0e0e0;
      }

      .no-courses-icon {
        font-size: 3rem;
        margin-bottom: 16px;
      }

      .no-courses-message h3 {
        margin: 0 0 12px 0;
        font-size: 1.5rem;
        font-weight: 600;
        color: #2a2a2a;
      }

      .no-courses-message p {
        margin: 0;
        font-size: 16px;
        color: #6c6f75;
        line-height: 1.5;
        max-width: 400px;
        margin: 0 auto;
      }

      .course-card {
        background: #f8f9fa;
        border-radius: 16px;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }

      .course-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(158, 51, 255, 0.1);
      }

      .course-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
      }

      .course-placeholder {
        height: 120px;
        background: linear-gradient(135deg, #9e33ff, #60b3ff);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        font-size: 14px;
      }

      .course-content {
        padding: 16px;
      }

      .course-content h3 {
        margin: 0 0 8px 0;
        font-size: 1rem;
        font-weight: 600;
        color: #2a2a2a;
      }

      .course-content p {
        margin: 0;
        font-size: 14px;
        color: #6c6f75;
        line-height: 1.4;
      }

      /* Sidebar Styles */
      .brand-sidebar {
        position: relative;
      }

      .sidebar-content {
        position: sticky;
        top: 140px;
        /* background: linear-gradient(135deg, #9e33ff, #60b3ff); */
        background:black;
        border-radius: 24px;
        padding: 32px;
        color: white;
      }

      .creator-info {
        margin-bottom: 32px;
        text-align: center;
      }

      .creator-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 16px;
      }

      .creator-avatar-placeholder {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        margin: 0 auto 16px auto;
      }

      .creator-info h3 {
        margin: 0 0 12px 0;
        font-size: 1.25rem;
        font-weight: 600;
        color: white;
      }

      .creator-label {
        background: rgba(255, 255, 255, 0.2);
        color: white;
      }

      .creator-bio {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
        text-align: left;
        margin-bottom: 16px;
      }

      .creator-stats {
        text-align: left;
      }

      .stat-item {
        margin-bottom: 8px;
      }

      .stat-label {
        display: block;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
      }

      .stat-value {
        font-size: 14px;
        font-weight: 500;
        color: white;
      }

      /* Pricing Box */
      .pricing-box {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 16px;
        padding: 24px;
        backdrop-filter: blur(10px);
      }

      .price {
        display: flex;
        align-items: baseline;
        justify-content: center;
        margin-bottom: 20px;
      }

      .currency {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
      }

      .amount {
        font-size: 3rem;
        font-weight: 700;
        color: white;
        margin: 0 4px;
      }

      .period {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
      }

      .pricing-benefits {
        margin-bottom: 24px;
      }

      .pricing-benefit {
        margin-bottom: 12px;
        color: white;
      }

      .pricing-benefit:last-child {
        margin-bottom: 0;
      }

      .subscribe-button {
        display: block;
        width: 100%;
        background: white;
        color: #9e33ff;
        text-align: center;
        padding: 12px 24px;
        border-radius: 60px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
        box-sizing: border-box;
      }

      .subscribe-button:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
      }

      /* Newsletter Page Styles */
      .newsletter-page {
        background: #f8f9fa;
      }

      .newsletter-layout {
        display: flex;
        justify-content: center;
        max-width: 800px;
        margin: 0 auto;
      }

      .newsletter-main {
        background: white;
        border-radius: 24px;
        padding: 48px;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      }

      .newsletter-cover {
        margin-bottom: 32px;
      }

      .newsletter-cover-image {
        width: 100%;
        max-width: 600px;
        height: 200px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      }

      .newsletter-logo {
        margin-bottom: 32px;
      }

      .brand-logo-image {
        height: 80px;
        width: auto;
        object-fit: contain;
        border-radius: 16px;
      }

      .newsletter-header h1 {
        margin: 0 0 16px 0;
        font-size: 2.5rem;
        font-weight: 600;
        color: #2a2a2a;
      }

      .newsletter-subtitle {
        font-size: 1.2rem;
        color: #6c6f75;
        margin-bottom: 24px;
        line-height: 1.5;
      }

      .newsletter-description {
        color: #4a4a4a;
        line-height: 1.6;
        margin-bottom: 40px;
        text-align: left;
      }

      .newsletter-signup {
        margin-bottom: 40px;
      }

      .signup-form {
        max-width: 400px;
        margin: 0 auto;
      }

      .form-group {
        margin-bottom: 20px;
        text-align: left;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #2a2a2a;
      }

      .form-group input {
        width: 100%;
        padding: 16px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 16px;
        transition: border-color 0.2s ease;
        box-sizing: border-box;
      }

      .form-group input:focus {
        outline: none;
        border-color: #9e33ff;
      }

      .newsletter-submit {
        width: 100%;
        margin: 24px 0 16px 0;
        padding: 16px 24px;
        font-size: 18px;
      }

      .signup-note {
        font-size: 14px;
        color: #6c6f75;
        margin: 0;
        font-style: italic;
      }

      .newsletter-benefits {
        margin-bottom: 40px;
        text-align: left;
      }

      .newsletter-benefits h3 {
        text-align: center;
        margin-bottom: 24px;
        color: #2a2a2a;
      }

      .newsletter-creator {
        border-top: 1px solid #f0f0f0;
        padding-top: 32px;
      }

      .creator-card {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        max-width: 300px;
        margin: 0 auto;
      }

      .creator-avatar-small {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #f0f0f0;
      }

      .creator-info-small {
        text-align: left;
      }

      .creator-info-small p {
        margin: 0;
        line-height: 1.4;
      }

      .creator-title {
        color: #6c6f75;
        font-size: 14px;
      }

      /* Mobile Responsive */
      @media (max-width: 800px) {
        .brand-layout {
          grid-template-columns: 1fr;
          gap: 24px;
        }

        .sidebar-content {
          position: relative;
          top: auto;
        }

        .brand-header {
          padding: 24px;
          padding-bottom: 16px;
        }

        .brand-benefits {
          padding: 0 24px 16px 24px;
        }

        .learning-hub {
          padding: 24px;
        }

        .courses-grid {
          grid-template-columns: 1fr;
        }

        .newsletter-main {
          padding: 32px 24px;
          margin: 0 16px;
        }

        .newsletter-header h1 {
          font-size: 2rem;
        }

        .creator-card {
          flex-direction: column;
          text-align: center;
        }

        .creator-info-small {
          text-align: center;
        }
      }

      /* Footer */
      .site-footer {
        background: #0f0e12;
        color: #cfcfd4;
        padding: 60px 0 24px 0;
        border-top: 1px solid rgba(255,255,255,0.06);
      }
      .footer-top {
        display: grid;
        grid-template-columns: 1.2fr 2fr;
        gap: 40px;
        align-items: start;
      }
      .footer-brand p { margin: 8px 0 16px 0; color: #a9a9b2; }
      .footer-logo { width: 36px;  }
      .footer-cta { margin-top: 8px; }
      .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
      .footer-col h4 { margin: 0 0 12px 0; color: #fff; font-weight: 600; }
      .footer-col ul { list-style: none; padding: 0; margin: 0; }
      .footer-link { color: #cfcfd4; text-decoration: none; display: inline-block; padding: 6px 0; font-size: 14px; }
      .footer-link:hover { color: #ffffff; }
      .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); margin-top: 32px; padding-top: 16px; text-align: center; color: #9a9aa3; font-size: 14px; }
      @media (max-width: 900px){
        .footer-top { grid-template-columns: 1fr; }
        .footer-grid { grid-template-columns: repeat(2, 1fr); }
      }