/* GLOBAL STYLES */
html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* NAVBAR */
  .navbar {
    position: sticky;
    top: 0;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #111;
    z-index: 999;
    transition: background 0.3s ease;
  }
  
  
  nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #aaa;
  }
  
  /* LOGO */
  .logo {
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.5);
  }
  
  /* HERO SECTION */
  .hero {
    padding: 120px 20px 80px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 1px;
  }
  
  .hero p {
    margin-top: 20px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* PRICING / CARDS */
  .pricing {
    display: grid;
    gap: 20px;
    padding: 40px 20px;
  }
  
  .card {
    border: 1px solid #111;
    padding: 30px;
    border-radius: 20px;
    background: #0a0a0a;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }
  
  .card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05);
    border-color: #fff;
  }
  
  .highlight {
    border: 2px solid #fff;
    transform: scale(1.05);
  }
  
  /* CONTACT SECTION */
  .contact {
    padding: 80px 20px;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .contact-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 14px 28px;
    border-radius: 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    transform: scale(1.05);
  }
  
  .outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
  }
  
  .outline:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
  }
  
  /* SCROLL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* MEDIA QUERIES */
  @media (min-width: 900px) {
    .pricing {
      grid-template-columns: repeat(3, 1fr);
      max-width: 1100px;
      margin: auto;
    }
  
    .hero h1 {
      font-size: 58px;
    }
  
    .hero p {
      font-size: 20px;
    }
  }
  
  /* ADDITIONAL TOUCHES */
  a {
    transition: color 0.3s ease;
  }
  
  *:focus {
    outline: none;
  }
  