*{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  body{
    font-family:Inter,system-ui,sans-serif;
    background:#0f172a;
    color:white;
  }
  
  .container{
    max-width:1200px;
    margin:auto;
    padding:0 24px;
  }
  
  nav{
    position:sticky;
    top:0;
    background:rgba(15,23,42,.9);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  
  .nav-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
  }
  
  .nav-links{
    display:flex;
    gap:24px;
  }
  
  .nav-links a{
    color:#cbd5e1;
    text-decoration:none;
  }
  
  .hero{
    min-height:90vh;
    display:flex;
    align-items:center;
    text-align:center;
  }
  
  .hero h1{
    font-size:4rem;
    margin:20px 0;
  }
  
  .gradient{
    background:linear-gradient(135deg,#3b82f6,#10b981);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }
  
  .hero-logo{
    display:block;
    margin:0 auto 24px;
    max-width:120px;
    height:auto;
  }

  .pill{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
  }
  
  .actions{
    margin-top:30px;
  }
  
  .btn{
    padding:14px 24px;
    border-radius:12px;
    text-decoration:none;
    margin:0 8px;
  }
  
  .btn-primary{
    background:linear-gradient(135deg,#3b82f6,#10b981);
    color:white;
  }
  
  .btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:white;
  }
  
  .section{
    padding:80px 0;
  }
  
  .grid{
    display:grid;
    gap:24px;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    margin-top:40px;
  }
  
  .card,
  .quote-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:24px;
  }
  
  .video-grid{
    display:grid;
    gap:24px;
    margin-top:40px;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  }
  
  .video-grid iframe{
    width:100%;
    aspect-ratio:16/9;
    border:none;
    border-radius:20px;
  }
  
  footer{
    text-align:center;
    padding:30px;
    border-top:1px solid rgba(255,255,255,.08);
    color:#94a3b8;
  }
  
  @media(max-width:768px){
    .hero h1{
      font-size:2.7rem;
    }
  
    .nav-content{
      flex-direction:column;
      gap:16px;
    }
  
    .nav-links{
      flex-wrap:wrap;
      justify-content:center;
    }
  }

  .hero-small{
    padding:120px 0 80px;
    text-align:center;
}

.hero-small h1{
    font-size:3rem;
    margin:20px 0;
}

.hero-small p{
    max-width:700px;
    margin:auto;
    color:#cbd5e1;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
    font-size:2.2rem;
}

.video-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
}

.video-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:32px;
    transition:.25s;
}

.video-card:hover{
    transform:translateY(-6px);
}

.video-icon{
    font-size:2rem;
    margin-bottom:16px;
}

.video-card h3{
    margin-bottom:12px;
}

.video-card p{
    color:#cbd5e1;
    margin-bottom:24px;
}

.alt-section{
    background:rgba(255,255,255,.02);
}

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

.benefit-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:24px;
}

.benefit-card h3{
    margin-bottom:12px;
}