.logo-container{width:140px!important;}

/* ===================================================== */

:root {
          
--color-primary-lightest: #e5e5e5;
--color-primary-lighter: #a5a5a5;
--color-primary-light: #727272;
--color-primary: #000000;
--color-primary-dark: #000000;
--color-primary-darker: #000000;
--color-primary-darkest: #000000;

--color-accent1-lightest: #fafafa;
--color-accent1-lighter: #eeeeee;
--color-accent1-light: #e5e5e5;
--color-accent1: #d1d0d0;
--color-accent1-dark: #a7a5a5;
--color-accent1-darker: #888686;
--color-accent1-darkest: #5e5c5c;

--color-accent2-lightest: #f4f3f3;
--color-accent2-lighter: #dad5d5;
--color-accent2-light: #c5bcbc;
--color-accent2: #988686;
--color-accent2-dark: #7c6868;
--color-accent2-darker: #655455;
--color-accent2-darkest: #463a3a;

--color-accent3-lightest: #efedec;
--color-accent3-lighter: #c7bfbf;
--color-accent3-light: #a89a9a;
--color-accent3: #5c4e4e;
--color-accent3-dark: #493e3e;
--color-accent3-darker: #3c3232;
--color-accent3-darkest: #292222;

--color-neutral-lightest: #f5f5f5;
--color-neutral-lighter: #dddddd;
--color-neutral-light: #c9c9c9;
--color-neutral: #9e9e9e;
--color-neutral-dark: #7e7e7e;
--color-neutral-darker: #666666;
--color-neutral-darkest: #474747;


          
/* Buttons */
--button-primary-bg: var(--color-primary);
--button-primary-hover-bg: var(--color-primary-dark);
--button-primary-text: var(--color-neutral-lightest);
--button-secondary-bg: var(--color-neutral-lightest);
--button-secondary-border: var(--color-neutral-light);
--button-secondary-text: var(--color-primary-dark);
--button-tertiary-text: var(--color-accent1-dark);

/* Text & Links */
--link-color: var(--color-primary);
--link-hover-color: var(--color-primary-dark);
--heading-color: var(--color-neutral-darkest);
--body-color: var(--color-neutral);
--subhead-color: var(--color-neutral-dark);
--muted-text-color: var(--color-neutral-light);
--placeholder-color: var(--color-neutral-light);

/* Surfaces & Layout */
--card-bg: var(--color-neutral-lightest);
--card-hover-bg: var(--color-neutral-lighter);
--card-border: var(--color-neutral-lighter);
section:nth-of-type(odd) {
  --section-bg: linear-gradient(
    180deg,
    var(--color-neutral-lightest),
    var(--color-primary-lightest)
  );
}
section:nth-of-type(even) {
  --section-bg: linear-gradient(
    180deg,
    var(--color-primary-lightest),
    var(--color-neutral-lightest)
  );
}
--nav-bg: var(--color-neutral-lightest);
--nav-text: var(--color-neutral-darkest);
--nav-active: var(--color-primary);
--footer-bg: var(--color-neutral-darkest);
--footer-text: var(--color-neutral-light);

/* Components & Indicators */
--badge-bg: var(--color-accent1);
--icon-color: var(--color-primary);
--icon-secondary-color: var(--color-accent2);
--progress-color: var(--color-primary);
--progress-bg: var(--color-neutral-lighter);
--tab-active: var(--color-primary);
--tab-inactive: var(--color-neutral-light);

/* Forms & Inputs */
--input-border-active: var(--color-primary);
--input-focus: var(--color-primary-light);
--input-border: var(--color-neutral-light);
--input-bg: var(--color-neutral-lightest);

/* Callouts & Banners */
--callout-bg: var(--color-accent1-lightest);
--callout-border: var(--color-accent1-light);

/* Stats & Illustrations */
--stats-highlight: var(--color-primary-dark);
--stats-accent: var(--color-accent2-dark);
--illu-main: var(--color-primary);
--illu-accent: var(--color-accent1);
--illu-fill-light: var(--color-neutral-lightest);
--illu-fill-dark: var(--color-neutral-darkest);


          
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Inter', sans-serif;


          --spacing-xs: 0.5rem;
          --spacing-sm: 1rem;
          --spacing-md: 2rem;
          --spacing-lg: 3rem;
          --spacing-xl: 4rem;
          --spacing-xxl: 6rem;

          --border-radius: 12px;
          --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--color-neutral);
            background-color: #000;
            line-height: 1.6;
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            line-height: 1.3;
        }
        
        h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
        }
        
        h2 {
            font-size: clamp(1.75rem, 5vw, 2.75rem);
        }
        
        h3 {
            font-size: clamp(1.35rem, 3vw, 2rem);
        }

        h4 {
          font-size: 1.25rem;
        }
        
        p {
            font-size: 1.025rem;
            line-height: 1.8;
        }
        
        a {
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        button {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 600;
            padding: var(--spacing-sm) var(--spacing-lg);
            border: none;
            border-radius: var(--border-radius-md);
            cursor: pointer;
            transition: all 0.3s ease;
        }    
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-lg);}
        }
        
        .section-divider {
            width: 60px;
            height: 4px;
            background-color: var(--color-accent);
            margin: var(--spacing-md) 0;
            border-radius: var(--border-radius-sm);
        }

/* ===================================================== */

#sec-topbar{
    position: sticky;
    top: 0;
    z-index: 10000;
    background: var(--section-bg);
    padding:10;
  }
  .topbar-wrapper {
    top: 0;
    left: 0;
    right: 0;
    height: 73.66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 77.752px;
    background-color: var(--section-bg);
    border-bottom: 1px solid var(--card-border);
    z-index: 100;
    box-sizing: border-box;
  }

  .topbar-left {
    display: flex;
    align-items: center;
    gap: 19.444px;
  }
 
  .logo-container {
    background-color: var(--logo-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .site-title {
    font-size: 15.556px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--heading-color);
    line-height: 15.556px;
    margin: 0;
  }

  .topbar-right {
    display: flex;
    align-items: center;
    gap: 32.738px;
  }

  .nav-left {
    display: flex;
    align-items: center;
    gap: 31.111px;
  }

  .nav-link,
  .dashboard-link {
    font-size: 17.5px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--heading-color);
    text-decoration: none;
    white-space: nowrap;
  }

  .login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9.795px;
    padding: 11.754px 23.508px;
    border-radius: 23.508px;
    background-color: var(--button-primary-bg);
    color: var(--button-primary-text);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
  }

  .hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--heading-color);
  }

  .dropdown-trigger-wrapper {
    display: flex;
    align-items: center;
    gap: 5.456px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }

  .avatar {
    width: 38.194px;
    height: 38.194px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19.097px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--body-color);
  }

  .dropdown-trigger-wrapper svg {
    width: 16.369px;
    height: 16.369px;
    stroke-width: 2;
    color: var(--muted-text-color);
  }

  .dropdown-menu {
    position: fixed;
    top: 64px;
    right: 77.752px;
    width: 249px;
    background: var(--section-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 12px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .dropdown-menu a,
  .dropdown-menu button {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--body-color);
    text-decoration: none;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
  }

  .dropdown-menu a:hover,
  .dropdown-menu button:hover {
    background-color: var(--card-hover-bg);
  }
  
  [data-cta-type="logged-in-state"] {
      display: none;
  }

  @media (max-width: 768px) {
    .topbar-wrapper {
      padding: 0 24px;
    }

    .hamburger-menu {
      display: block;
      order: 1;
    }

    .nav-left {
      display: none;
      position: absolute;
      top: 73.66px;
      left: 0;
      right: 0;
      background: var(--section-bg);
      flex-direction: column;
      padding: 24px;
      gap: 24px;
      border-bottom: 1px solid var(--card-border);
      z-index: 100;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .nav-left.active {
      display: flex;
    }

    .topbar-right {
      gap: 16px;
    }

    .login-btn {
      order: 2;
    }

    #logged-in-state {
      order: 3;
    }

    .dropdown-menu {
      right: 24px;
    }
  }

/* ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&display=swap');

  #sec-z73p9q {
    background: #000000;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 80px 20px;
    font-family: 'Syne', sans-serif;
  }

  .cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(to right, rgba(0, 255, 0, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
  }

  .hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    position: relative;
    z-index: 2;
    align-items: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .pill-badge-cyber {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00FF00;
    color: #00FF00;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
  }

  .cyber-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -2px;
  }

  .gradient-text {
    background: linear-gradient(90deg, #ff2e2e, #f7557a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff2e2e;
  }

  .cyber-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 20px;
  }

  .cyber-stat {
    display: flex;
    flex-direction: column;
  }

  .stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  }

  .stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .instructor-stat {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 700;
  }

  .neon-text {
    color: #00FF00;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
  }

  .cyber-ctas {
    display: flex;
    gap: 20px;
    margin-top: 20px;
  }

  .btn-magenta {
    background: linear-gradient(to right, #ff2e2e, #f7557a);
    color: #FFFFFF;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 46, 46, 0.4);
  }

  .btn-magenta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 46, 46, 0.6);
  }

  .btn-ghost {
    background: transparent;
    color: #FFFFFF;
    padding: 16px 32px;
    border: 2px solid #FFFFFF;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .floating-card {
    background: #0f1117;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-top: 2px solid transparent;
    background-clip: padding-box;
  }

  .floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2e2e, #00FF00);
    border-radius: 20px 20px 0 0;
  }

  .card-tag {
    font-size: 11px;
    color: #ff2e2e;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 46, 46, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
  }

  .card-title {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 32px;
    line-height: 1.3;
    font-weight: 800;
  }

  .curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .curriculum-list li {
    color: #9ca3af;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
  }

  .neon-arrow {
    color: #00FF00;
    font-weight: 800;
    font-size: 18px;
  }

  .card-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
  }

  .card-pricing-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .price-old {
    color: #4b5563;
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 600;
  }

  .price-new {
    color: #00FF00;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
  }

  .early-bird-badge {
    color: #00FF00;
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(0, 255, 0, 0.05);
  }

  @media (max-width: 1024px) {
    .hero-container {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 80px;
    }
    .hero-left {
      align-items: center;
    }
    .cyber-stats-row {
      justify-content: center;
    }
    .cyber-ctas {
      justify-content: center;
      flex-direction: column;
      width: 100%;
    }
    .btn-magenta, .btn-ghost {
      width: 100%;
    }
  }
  .cs-widget,
.cs-widget * {
  box-sizing: border-box;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.cs-widget {
  max-width: 100%;
  /*background: linear-gradient(180deg, #121a33 0%, #1a2548 100%);*/
  border-radius: 16px;
  color: #e8ecf8;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.cs-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.cs-flame { filter: drop-shadow(0 0 6px rgba(245,158,11,.7)); }

/* Seat grid (50 person icons) */
.cs-seat-grid {
  display: grid;
  grid-template-columns: repeat(25, 1fr);
  gap: 6px;
  padding: 14px;
  /*background: #0f1734;*/
  border: 1px solid #25325f;
  border-radius: 12px;
}
.cs-seat {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b3866;
  transition: transform .25s ease, color .25s ease;
}
.cs-seat svg { width: 100%; height: 100%; display: block; }
.cs-seat.cs-taken { color: #00FF00; }
.cs-seat.cs-taken svg { filter: drop-shadow(0 0 4px rgba(34,211,238,.45)); }
.cs-seat.cs-mine {
  color: #f59e0b;
  transform: scale(1.25);
  animation: csBounce 1.6s ease-in-out infinite;
}
.cs-seat.cs-mine svg { filter: drop-shadow(0 0 6px rgba(245,158,11,.7)); }
.cs-seat.cs-mine::after {
  content: "YOU";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #1a1300;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: .5px;
  white-space: nowrap;
}
@keyframes csBounce {
  0%, 100% { transform: scale(1.25) translateY(0); }
  50%      { transform: scale(1.25) translateY(-3px); }
}

.cs-legend {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
  font-size: 11px;
  color: #8b97c2;
}
.cs-lg { display: flex; align-items: center; gap: 6px; }
.cs-sw { width: 12px; height: 12px; border-radius: 3px; }
.cs-sw.cs-taken { background: #00FF00; }
.cs-sw.cs-you   { background: #f59e0b; }
.cs-sw.cs-open  { background: #2b3866; }

/* Live activity feed */
.cs-live {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,185,129,.07);
  border: 1px dashed rgba(16,185,129,.35);
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  color: #bef0d8;
}
.cs-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,.7);
  animation: csPulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes csPulse {
  0%   { box-shadow: 0 0 0 0 rgba(16,185,129,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

@media (max-width: 520px) {
  .cs-seat-grid { grid-template-columns: repeat(10, 1fr); }
}

/* ===================================================== */

#sec-proof-of-work-g1h2 {
  background-color: #000000;
  background-image: 
    linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--spacing-xxl) 0;
  color: #ffffff;
  overflow: hidden;
}

#sec-proof-of-work-g1h2 .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

#sec-proof-of-work-g1h2 .header-group {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

#sec-proof-of-work-g1h2 .dev-tag {
  font-family: 'Courier New', Courier, monospace;
  color: #00FF00;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: var(--spacing-sm);
}

#sec-proof-of-work-g1h2 .headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

#sec-proof-of-work-g1h2 .highlight-pink {
  color: #ff2e2e;
}

#sec-proof-of-work-g1h2 .subtitle {
  font-family: 'Courier New', Courier, monospace;
  color: #888888;
  font-size: 1.1rem;
}

#sec-proof-of-work-g1h2 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: var(--spacing-xl);
}

#sec-proof-of-work-g1h2 .gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

#sec-proof-of-work-g1h2 .gallery-item:hover {
  transform: scale(1.05);
  z-index: 2;
}

#sec-proof-of-work-g1h2 .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#sec-proof-of-work-g1h2 .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 15px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85rem;
  color: #ffffff;
  pointer-events: none;
}

/* KPMG Holographic Effect */
#sec-proof-of-work-g1h2 .kpmg-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 150, 255, 0.2) 0%, transparent 70%);
  mix-blend-mode: screen;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(0, 150, 255, 0.3);
  border: 1px solid rgba(0, 150, 255, 0.2);
  border-radius: 12px;
}

/* IIT Delhi Tag */
#sec-proof-of-work-g1h2 .iit-tag {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #7030a0;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 5;
  letter-spacing: 1px;
}

#sec-proof-of-work-g1h2 .cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: var(--spacing-lg);
}

#sec-proof-of-work-g1h2 .insta-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #333;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.02);
}

#sec-proof-of-work-g1h2 .insta-button:hover {
  background: rgba(255,255,255,0.08);
  border-color: #555;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  #sec-proof-of-work-g1h2 .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #sec-proof-of-work-g1h2 .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #sec-proof-of-work-g1h2 .headline {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  #sec-proof-of-work-g1h2 .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================== */

#sec-student-outcomes-v8k {
  background-color: #000000;
  background-image: 
    linear-gradient(to right, #111 1px, transparent 1px), 
    linear-gradient(to bottom, #111 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 0;
  color: #ffffff;
  font-family: var(--font-body);
  overflow: hidden;
}

#sec-student-outcomes-v8k .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

#sec-student-outcomes-v8k .header-group {
  margin-bottom: 50px;
  text-align: left;
}

#sec-student-outcomes-v8k .tag-line {
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

#sec-student-outcomes-v8k .headline {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

#sec-student-outcomes-v8k .gradient-text {
  background: linear-gradient(90deg, #ff2e2e 0%, #f7557a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#sec-student-outcomes-v8k .main-white-card {
  background: #ffffff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#sec-student-outcomes-v8k .google-summary {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #f0f0f0;
  text-align: center;
}

#sec-student-outcomes-v8k .google-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
}

#sec-student-outcomes-v8k .rating-value {
  font-size: 5rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

#sec-student-outcomes-v8k .stars {
  color: #F39C12;
  font-size: 1.8rem;
  margin: 10px 0;
}

#sec-student-outcomes-v8k .verified-text {
  color: #6B7280;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

#sec-student-outcomes-v8k .google-btn {
  background: #1a73e8;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

#sec-student-outcomes-v8k .google-btn:hover {
  opacity: 0.9;
}

#sec-student-outcomes-v8k .testimonials-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px;
  gap: 30px;
  scrollbar-width: none;
}

#sec-student-outcomes-v8k .testimonials-carousel::-webkit-scrollbar {
  display: none;
}

#sec-student-outcomes-v8k .testimonial-card {
  min-width: 320px;
  flex: 1;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #f0f0f0;
  padding-right: 30px;
}

#sec-student-outcomes-v8k .testimonial-card:last-child {
  border-right: none;
  padding-right: 0;
}

#sec-student-outcomes-v8k .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  position: relative;
}

#sec-student-outcomes-v8k .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

#sec-student-outcomes-v8k .user-info h4 {
  color: #111;
  font-size: 1.1rem;
  margin: 0;
}

#sec-student-outcomes-v8k .school-tag {
  font-size: 0.75rem;
  background: #FFF8E1;
  color: #F39C12;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
}

#sec-student-outcomes-v8k .google-mini-icon {
  margin-left: auto;
}

#sec-student-outcomes-v8k .mini-stars {
  color: #F39C12;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

#sec-student-outcomes-v8k .quote {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

#sec-student-outcomes-v8k .time-ago {
  color: #9CA3AF;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  #sec-student-outcomes-v8k .main-white-card {
    grid-template-columns: 1fr;
  }
  #sec-student-outcomes-v8k .google-summary {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  #sec-student-outcomes-v8k .testimonial-card {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  #sec-student-outcomes-v8k {
    padding: 60px 0;
  }
  #sec-student-outcomes-v8k .container {
    padding: 0 20px;
  }
  #sec-student-outcomes-v8k .headline {
    font-size: 2.2rem;
  }
  #sec-student-outcomes-v8k .testimonial-card {
    min-width: 260px;
    border-right: none;
    background: #f9fafb;
    padding: 20px;
    border-radius: 16px;
  }
  #sec-student-outcomes-v8k .testimonials-carousel {
    padding: 20px;
  }
}

/* ===================================================== */

.instructor-section {
  background-color: #000000;
  background-image: 
    linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--spacing-xxl) 0;
  color: #ffffff;
  overflow: hidden;
}

.instructor-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.instructor-section .header-group {
  margin-bottom: var(--spacing-md);
}

.instructor-section .instructor-label {
  font-family: monospace;
  color: #00FF00;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 2px;
}

.instructor-section .main-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
}

.instructor-section .text-magenta {
  color: #ff2e2e;
}

.instructor-section .profile-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--spacing-xl);
  align-items: center;
}

.instructor-section .image-col {
  position: relative;
}

.instructor-section .image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
  background: #111827;
}

.instructor-section .instructor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(to right, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%);
}

.instructor-section .cert-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.instructor-section .cert-pill {
  background: rgb(0 0 0 / 66%);
  border: 1px solid #00FF00;
  color: #00FF00;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: monospace;
  backdrop-filter: blur(4px);
}

.instructor-section .bio-card {
  background-color: #111827;
  padding: var(--spacing-lg);
  border-radius: 24px;
  position: relative;
  border: 1px solid transparent;
  background-image: linear-gradient(#111827, #111827), linear-gradient(135deg, #ff2e2e, #00FF00);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.instructor-section .instructor-name {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: #ffffff;
}

.instructor-section .instructor-title {
  color: #00FF00;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
}

.instructor-section .instructor-bio {
  color: #9CA3AF;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

.instructor-section .instructor-bio strong {
  color: #ffffff;
  font-weight: 700;
}

.instructor-section .awards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--spacing-xl);
}

.instructor-section .awards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.instructor-section .award-pill {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: monospace;
  background: transparent;
}

.instructor-section .pill-green {
  border: 1px solid rgba(0, 255, 0, 0.4);
  color: #00FF00;
}

.instructor-section .pill-magenta {
  border: 1px solid rgba(255, 46, 46, 0.4);
  color: #ff2e2e;
}

.instructor-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(156, 163, 175, 0.2);
}

.instructor-section .stat-value {
  color: #00FF00;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.instructor-section .stat-label {
  color: #9CA3AF;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .instructor-section {
    padding: var(--spacing-xl) 0;
  }

  .instructor-section .profile-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .instructor-section .image-wrapper {
    border-radius: 24px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .instructor-section .instructor-image {
    mask-image: none;
    -webkit-mask-image: none;
  }
  
  .instructor-section .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructor-section .instructor-name {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .instructor-section {
    padding: var(--spacing-lg) 0;
  }

  .instructor-section .container {
    padding: 0 var(--spacing-md);
  }

  .instructor-section .bio-card {
    padding: var(--spacing-lg);
  }

  .instructor-section .instructor-name {
    font-size: 1.5rem;
  }

  .instructor-section .instructor-title {
    font-size: 1rem;
  }

  .instructor-section .instructor-bio {
    font-size: 0.95rem;
  }
  
  .instructor-section .stats-grid {
    gap: var(--spacing-sm);
  }

  .instructor-section .stat-value {
    font-size: 1.5rem;
  }

  .instructor-section .stat-label {
    font-size: 0.7rem;
  }
}

/* ===================================================== */

#sec-course-structure-92k {
  background-color: #000000;
  padding: var(--spacing-xxl) 0;
  position: relative;
  overflow: hidden;
}

.terminal-bg {
  background-image: 
    linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  width: 100%;
}

.header-group {
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.terminal-tag {
  font-family: 'Courier New', Courier, monospace;
  color: #00FF00;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

.main-headline {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 800px;
}

.magenta-text {
  color: #ff2e2e;
}

.module-stack {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.module-card {
  position: relative;
  background: linear-gradient(135deg, #ff2e2e, #00FF00);
  padding: 1px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.module-card:hover {
  transform: translateX(10px);
}

.card-inner {
  background: #111827;
  border-radius: 11px;
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.module-badge {
  width: 50px;
  height: 50px;
  border: 1px solid #00FF00;
  color: #00FF00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  border-radius: 4px;
  font-size: 1.2rem;
}

.card-center {
  flex-grow: 1;
}

.module-title {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-xs);
}

.module-desc {
  color: #9CA3AF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  max-width: 600px;
}

.card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--spacing-xs);
  min-width: 150px;
}

.type-tag {
  border: 1px solid #ff2e2e;
  color: #ff2e2e;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-family: 'Courier New', Courier, monospace;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.duration {
  color: #9CA3AF;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .card-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-md);
  }
  
  .card-right {
    align-items: flex-start;
    min-width: auto;
  }
  
  .module-card:hover {
    transform: none;
  }
}

/* ===================================================== */

#sec-sk8x9y0z {
  background-color: #000000;
  background-image: 
    linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--spacing-xxl) 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#sec-sk8x9y0z .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

#sec-sk8x9y0z .header-container {
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

#sec-sk8x9y0z .tag {
  display: block;
  color: #00FF00;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-sm);
}

#sec-sk8x9y0z .headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3rem);
  color: #FFFFFF;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
}

#sec-sk8x9y0z .headline span {
  display: block;
}

#sec-sk8x9y0z .gradient-text {
  background: linear-gradient(to right, #ff2e2e, #A855F7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#sec-sk8x9y0z .skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

#sec-sk8x9y0z .skill-card {
  background: #111827;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
  background-image: linear-gradient(#111827, #111827), linear-gradient(135deg, #ff2e2e, #00FF00);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

#sec-sk8x9y0z .skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

#sec-sk8x9y0z .icon-wrapper {
  color: #00FF00;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sec-sk8x9y0z .skill-text {
  color: #D1D5DB;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1024px) {
  #sec-sk8x9y0z .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  #sec-sk8x9y0z .skills-grid {
    grid-template-columns: 1fr;
  }
  #sec-sk8x9y0z {
    padding: var(--spacing-xl) 0;
  }
}

/* ===================================================== */

.who-is-this-for {
  background-color: #000000;
  background-image: 
    linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  padding: var(--spacing-xxl) 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.who-is-this-for .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.who-is-this-for .header-group {
  margin-bottom: var(--spacing-xl);
}

.who-is-this-for .terminal-label {
  font-family: 'Courier New', Courier, monospace;
  color: #00FF00;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 1px;
}

.who-is-this-for .main-headline {
  font-size: clamp(2.5rem, 8vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 800px;
}

.who-is-this-for .highlight-magenta {
  color: #ff2e2e;
}

.who-is-this-for .grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.who-is-this-for .card {
  background-color: #0B0E14;
  border: 1px solid #1F2229;
  padding: var(--spacing-lg);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.who-is-this-for .card:hover {
  border-color: rgba(0, 255, 0, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
  transform: translateY(-5px);
}

.who-is-this-for .icon-wrapper {
  background: rgba(255, 255, 255, 0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: var(--spacing-xs);
}

.who-is-this-for .emoji-icon {
  font-size: 1.5rem;
}

.who-is-this-for .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.who-is-this-for .card-desc {
  font-size: 1rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .who-is-this-for .grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .who-is-this-for .grid-layout {
    grid-template-columns: 1fr;
  }
  .who-is-this-for .main-headline {
    font-size: 2.5rem;
  }
}

/* ===================================================== */

#sec-p9q8r7s6 {
    background-color: #0B0B0B;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: var(--font-body, sans-serif);
  }

  .hof-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .hof-header {
    color: #94A3B8;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-align: center;
    margin: 0;
  }

  .hof-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .hof-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    transition: transform 0.3s ease;
  }

  /* Staggering effects for desktop */
  @media (min-width: 769px) {
    .row-2 { transform: translateX(30px); }
    .row-3 { transform: translateX(-30px); }
    .row-4 { transform: translateX(30px); }
  }

  .hof-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    white-space: nowrap;
    opacity: 0.85;
  }
  .hof-chip2{background: #00FF00;}
  .hof-chip2 .hof-text{color: #000;}
  .hof-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.02);
    opacity: 1;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.05);
  }

  .hof-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .hof-text {
    color: #E2E8F0;
    font-size: 15px;
    font-weight: 500;
  }

  /* Icon Colors */
  .icon-gold { color: #FFD700; }
  .icon-purple { color: #A855F7; }
  .icon-pink { color: #EC4899; }
  .icon-skyblue { color: #0EA5E9; }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    #sec-p9q8r7s6 {
      padding: 60px 16px;
    }
    
    .hof-row {
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      transform: none !important;
    }

    .hof-chip {
      padding: 10px 18px;
      font-size: 14px;
    }

    .hof-header {
      font-size: 12px;
      letter-spacing: 0.15em;
    }
  }

/* ===================================================== */

#sec-cta-9382 {
    background-color: #050505;
    background-image: 
      linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: var(--spacing-xxl) var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
  }

  #sec-cta-9382 .cta-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

  #sec-cta-9382 .cta-card {
    background-color: #111218;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: var(--spacing-xxl) var(--spacing-xl);
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  }

  #sec-cta-9382 .cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-lg);
    text-transform: none;
  }

  #sec-cta-9382 .italic-highlight {
    font-style: italic;
  }

  #sec-cta-9382 .cta-subheading {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: #888888;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #sec-cta-9382 .cta-button-wrapper {
    margin-bottom: var(--spacing-xl);
  }

  #sec-cta-9382 .cta-button {
    background-color: linear-gradient(to right, #ff2e2e, #f7557a);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 18px 48px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 46, 46, 0.3);
  }

  #sec-cta-9382 .cta-button:hover {
    background-color: #e62929;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 46, 46, 0.4);
  }

  #sec-cta-9382 .cta-footer-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    color: #666666;
    letter-spacing: 0.05em;
  }

  #sec-cta-9382 .pink-text {
    color: #ff2e2e;
  }

  #sec-cta-9382 .desktop-only {
    display: block;
  }

  @media (max-width: 768px) {
    #sec-cta-9382 {
      padding: var(--spacing-xl) var(--spacing-md);
      min-height: auto;
    }
    
    #sec-cta-9382 .cta-card {
      padding: var(--spacing-xl) var(--spacing-lg);
      border-radius: 20px;
    }

    #sec-cta-9382 .desktop-only {
      display: none;
    }
    
    #sec-cta-9382 .cta-heading {
      font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
  }

  @media (max-width: 480px) {
    #sec-cta-9382 {
      padding: var(--spacing-lg) var(--spacing-sm);
    }

    #sec-cta-9382 .cta-card {
      padding: var(--spacing-lg) var(--spacing-md);
    }

    #sec-cta-9382 .cta-subheading {
      font-size: 1rem;
      margin-bottom: var(--spacing-lg);
    }

    #sec-cta-9382 .cta-button {
      width: 100%;
      padding: 16px 24px;
      font-size: 1rem;
    }

    #sec-cta-9382 .cta-footer-text {
      font-size: 0.75rem;
      line-height: 1.5;
    }
  }

/* ===================================================== */

#sec-faq-8291 {
    background-color: #080808;
    background-image: 
      linear-gradient(rgba(0, 255, 0, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0, 255, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    padding: var(--spacing-xxl) 0;
    color: #ffffff;
    font-family: var(--font-body);
  }

  .faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
  }

  .faq-label {
    color: #00ff00;
    font-family: monospace;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
  }

  .faq-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 3rem);
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: var(--spacing-xl);
    line-height: 1.1;
    letter-spacing: -2px;
  }

  .faq-title .highlight {
    color: #ff2e2e;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-md);
  }

  @media (max-width: 768px) {
    .faq-grid {
      grid-template-columns: 1fr;
    }
  }

  .faq-card {
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .faq-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
  }

  .faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
    line-height: 1.4;
  }

  .faq-answer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
  }

  .faq-link {
    color: #4d4dff;
    text-decoration: underline;
  }

  .faq-link:hover {
    color: #8080ff;
  }

/* ===================================================== */

#sec-neoglass1 {
  background-color: #050505;
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

#sec-neoglass1 .pricing-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, #1a1a1a 1px, transparent 1px),
    linear-gradient(to bottom, #1a1a1a 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

#sec-neoglass1 .pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#sec-neoglass1 .pricing-header {
  margin-bottom: 60px;
  text-align: left;
}

#sec-neoglass1 .pricing-eyebrow {
  color: #00ff00;
  font-family: monospace;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  letter-spacing: 1px;
}

#sec-neoglass1 .pricing-title {
  font-size: clamp(40px, 8vw, 3rem);
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-family: var(--font-heading);
  line-height: 1;
}

#sec-neoglass1 .text-pink {
  color: #ff2e2e;
}

#sec-neoglass1 .pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

#sec-neoglass1 .pricing-card {
  background: #121214;
  border: 1px solid #222;
  border-radius: 24px;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

#sec-neoglass1 .card-featured {
  border: 1px solid #ff2e2e;
  box-shadow: 0 0 40px rgba(255, 46, 46, 0.15);
  transform: scale(1.02);
  z-index: 2;
}

#sec-neoglass1 .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff2e2e;
  color: white;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

#sec-neoglass1 .card-label {
  color: #666;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 24px;
  text-transform: uppercase;
}

#sec-neoglass1 .card-price {
  font-size: 46px;
  font-weight: 900;
  margin: 0 0 8px 0;
  font-family: var(--font-heading);
  letter-spacing: -1px;
}

#sec-neoglass1 .price-old {
  color: #444;
  text-decoration: line-through;
  font-size: 20px;
  display: block;
  margin-bottom: 24px;
  font-weight: 600;
}

#sec-neoglass1 .card-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  flex-grow: 1;
}

#sec-neoglass1 .card-features li {
  margin-bottom: 5px;
  color: #999;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

#sec-neoglass1 .check {
  color: #00ff00;
  margin-right: 12px;
  font-weight: bold;
  flex-shrink: 0;
}

#sec-neoglass1 .card-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: none;
}

#sec-neoglass1 .btn-outline {
  border: 1px solid #333;
  color: white;
  background: transparent;
}

#sec-neoglass1 .btn-outline:hover {
  background: #1a1a1a;
  border-color: #444;
}

#sec-neoglass1 .btn-solid {
  background: linear-gradient(to right, #ff2e2e, #f7557a);
  color: white;
  box-shadow: 0 10px 20px rgba(255, 46, 46, 0.2);
}

#sec-neoglass1 .btn-solid:hover {
  background: #e62929;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  #sec-neoglass1 .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  #sec-neoglass1 .card-featured {
    transform: scale(1);
  }
  #sec-neoglass1 .pricing-header {
    text-align: center;
  }
}

/* ===================================================== */

#sec-foot1 {
  background: #0A0A0A;
  color: #FFFFFF;
  padding: 3rem 2rem;
  font-family: var(--font-body);
  border-top: 2px solid #39FF14; /* Neon green accent border */
}

#el-foot1a {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

#el-foot1b {
  display: flex;
  justify-content: flex-start;
  flex: 0 0 auto;
  min-width: 100px;
}

#el-foot1c {
  display: block;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* Ensure logo is visible on dark bg if it's dark */
}

#el-foot1d {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
}

#el-foot1e {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

#el-foot1f,
#el-foot1h,
#el-foot1j,
#el-foot1l {
  display: inline-block;
}

#el-foot1g,
#el-foot1i,
#el-foot1k,
#el-foot1m {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

#el-foot1g:hover,
#el-foot1i:hover,
#el-foot1k:hover,
#el-foot1m:hover {
  color: #E91E8C; /* Hot pink for action/hover */
  text-shadow: 0 0 8px rgba(233, 30, 140, 0.6);
}

#el-foot1g:focus,
#el-foot1i:focus,
#el-foot1k:focus,
#el-foot1m:focus {
  outline: 2px solid #39FF14;
  outline-offset: 2px;
}

#el-foot1n {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  flex: 0 0 auto;
  min-width: 120px;
}

#el-foot1o,
#el-foot1p,
#el-foot1q,
#el-foot1r,
#el-foot1s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  color: #39FF14; /* Neon green for icons */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

#el-foot1o:hover,
#el-foot1p:hover,
#el-foot1q:hover,
#el-foot1r:hover,
#el-foot1s:hover {
  color: #E91E8C; /* Pink on hover */
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px #E91E8C);
}

#el-foot1o:focus,
#el-foot1p:focus,
#el-foot1q:focus,
#el-foot1r:focus,
#el-foot1s:focus {
  outline: 2px solid #39FF14;
  outline-offset: 2px;
}

#el-foot1o svg,
#el-foot1p svg,
#el-foot1q svg,
#el-foot1r svg,
#el-foot1s svg {
  width: 100%;
  height: 100%;
}

#el-foot1t {
  border: none;
  border-top: 1px solid #1A1A1A;
  margin: 2rem 0;
}

#el-foot1u {
  display: flex;
  justify-content: center;
  text-align: center;
}

#el-foot1v {
  margin: 0;
  font-size: 0.85rem;
  color: #888888; /* Sub-label color */
}

@media (max-width: 1024px) {
  #el-foot1a {
    gap: 1.5rem;
  }

  #el-foot1e {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  #sec-foot1 {
    padding: 2rem 1.5rem;
  }

  #el-foot1a {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  #el-foot1b {
    justify-content: center;
    order: 1;
  }

  #el-foot1d {
    order: 2;
  }

  #el-foot1e {
    gap: 1rem;
    font-size: 0.9rem;
  }

  #el-foot1n {
    justify-content: center;
    order: 3;
    gap: 1rem;
  }

  #el-foot1t {
    margin: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  #sec-foot1 {
    padding: 1.5rem 1rem;
  }

  #el-foot1a {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  #el-foot1d {
    width: 100%;
  }

  #el-foot1e {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  #el-foot1g,
  #el-foot1i,
  #el-foot1k,
  #el-foot1m {
    font-size: 0.9rem;
  }

  #el-foot1n {
    gap: 0.75rem;
  }

  #el-foot1o,
  #el-foot1p,
  #el-foot1q,
  #el-foot1r,
  #el-foot1s {
    width: 1.1rem;
    height: 1.1rem;
  }

  #el-foot1t {
    margin: 1rem 0;
  }

  #el-foot1v {
    font-size: 0.75rem;
  }
}

/* Side Tab */
.enquiry-tab{
    position:fixed;
    right:0;
    top:50%;
    transform:translateY(-50%);
    background:linear-gradient(90deg, #ff2e2e, #f7557a);
    color:#fff;
    padding:15px 10px;
    writing-mode:vertical-rl;
    text-orientation:mixed;
    cursor:pointer;
    border-radius:10px 0 0 10px;
    font-weight:bold;
    z-index:9999;
    transition:0.3s;
}

.enquiry-tab:hover{
    background:linear-gradient(90deg, #ff2e2e, #f7557a);
}

/* Form Box */
.enquiry-box{
    position:fixed;
    right:-380px;
    top:50%;
    transform:translateY(-50%);
    width:320px;
    background:#0f1117;
    padding:20px;
    border-radius:12px 0 0 12px;
    box-shadow:0 0 15px rgba(0,0,0,0.2);
    z-index:9998;
    transition:0.4s ease;
}

.enquiry-box::before{
        content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff2e2e, #00FF00);
    border-radius: 20px 20px 0 0;
}

/* Active Class */
.enquiry-box.active{
    right:0;
}

.enquiry-box h2{
    margin-top:0;
    text-align:center;
}

/* Close Button */
.close-btn{
    position:absolute;
    top:10px;
    right:12px;
    font-size:20px;
    cursor:pointer;
    color:red;
}


.enquiry-box input{
    width:100%;
    padding:10px;
    margin-top:12px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
    box-sizing:border-box;
    background: #000;
    color: #fff;
}
.enquiry-box input::placeholder{
    color: #9ca3af;
}

.enquiry-box button{
    width:100%;
    padding:12px;
    margin-top:15px;
    border:none;
    background:linear-gradient(to right, #ff2e2e, #f7557a);
    color:#fff;
    font-size:16px;
    border-radius:6px;
    cursor:pointer;
}


#response{
    margin-top:15px;
    text-align:center;
    font-weight:bold;
}

/* Mobile Responsive */
@media(max-width:768px){

    .enquiry-box{
        width:90%;
        right:-100%;
        top:auto;
        bottom:0;
        transform:none;
        border-radius:15px 15px 0 0;
    }

    .enquiry-box.active{
        right:0;
    }

    .enquiry-tab{
        top:auto;
        bottom:100px;
        transform:none;
    }
}