* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #060816;
  color: white;
  overflow-x: hidden;
  padding: 30px;
}

.gradient {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, #2563eb55, transparent 30%),
    radial-gradient(circle at bottom right, #2563eb55, transparent 30%);
  z-index: -3;
}

.blur {
  position: fixed;
  width: 350px;
  height: 350px;
  filter: blur(120px);
  border-radius: 50%;
  z-index: -2;
}

.blur1 {
  background: #2563eb;
  top: -100px;
  left: -100px;
}

.blur2 {
  background: #2563eb;
  bottom: -100px;
  right: -100px;
}

header {
  position: sticky;
  top: 20px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  margin-bottom: 70px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
}

.logo {
  font-weight: 900;
  letter-spacing: 4px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  opacity: .75;
  transition: .25s;
}

nav a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 25px;
}

.hero p {
  opacity: .7;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

.btn {
  padding: 16px 25px;
  border-radius: 18px;
  text-decoration: none;
  transition: .25s;
}

.primary {
  background: #2563eb;
  color: white;
}

.secondary {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  color: white;
}

.btn:hover {
  transform: translateY(-4px);
}

.glass {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, .25);
  border-radius: 32px;
}

.hero-card {
  padding: 30px;
  height: 500px;
  transform: rotate(6deg);
}

.mockup-top {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.mockup-top span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  opacity: .5;
}

.fake-card {
  height: 120px;
  background: rgba(255, 255, 255, .08);
  border-radius: 24px;
  margin-bottom: 20px;
}

.small {
  height: 80px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.stat {
  padding: 35px;
  text-align: center;
}

.stat h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about {
  padding: 50px;
  margin-bottom: 50px;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  opacity: .7;
  line-height: 1.8;
  font-size: 1.05rem;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.price {
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.featured {
  border: 1px solid #2563eb;
  transform: scale(1.04);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 14px;
  background: #2563eb;
  border-radius: 999px;
  font-size: .8rem;
}

.price h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.price-tag {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.price ul {
  list-style: none;
  opacity: .8;
  line-height: 2;
}

.contact {
  padding: 45px;
  margin-bottom: 50px;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input, textarea {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 18px;
  border-radius: 18px;
  color: white;
  outline: none;
}

textarea {
  min-height: 150px;
  resize: none;
}

button {
  padding: 18px;
  border: none;
  border-radius: 18px;
  background: #2563eb;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
}

button:hover {
  transform: translateY(-3px);
}

#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #2563eb;
  padding: 18px 22px;
  border-radius: 18px;
  display: none;
}

@media(max-width:1000px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero-card {
    transform: none;
    height: auto;
  }
}

@media(max-width:700px) {
  header {
    flex-direction: column;
    gap: 20px;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  body {
    padding: 18px;
  }
}