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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: #f4f4f1;
  color: #151515;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
}

.nav-links a:hover {
  color: #c8ff64;
}

.hero {
  min-height: 100vh;
  padding-top: 90px;
  background:
    linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.72)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-content {
  padding: 150px 8% 100px;
  max-width: 950px;
}

.badge {
  color: #c8ff64;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-text p {
  max-width: 680px;
  color: #e2e2e2;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

button {
  background: #c8ff64;
  color: #111;
  border: none;
  padding: 15px 28px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  opacity: 0.85;
}

.section {
  padding: 85px 8%;
  text-align: center;
}

.section h2 {
  font-size: 38px;
  margin-bottom: 35px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.card,
.price-card,
.project-card {
  background: white;
  width: 320px;
  padding: 32px;
  border-radius: 22px;
  text-align: left;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.card h3,
.price-card h3,
.project-card h3 {
  margin-bottom: 14px;
}

.card p,
.price-card p,
.project-card p {
  color: #555;
  line-height: 1.6;
}

.projects {
  background: #edede8;
}

.project-card {
  text-decoration: none;
  color: #111;
}

.project-card span {
  display: inline-block;
  margin-top: 18px;
  font-weight: bold;
  border-bottom: 2px solid #c8ff64;
}

.prices {
  background: #f4f4f1;
}

.price {
  font-size: 31px;
  font-weight: 800;
  color: #111 !important;
  margin: 15px 0;
}

.about-me {
  padding: 85px 8%;
  background: #111;
  color: white;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-img img {
  width: 300px;
  height: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
}

.about-text {
  max-width: 700px;
}

.about-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.about-text p {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.7;
}

.contact p {
  color: #555;
  margin-bottom: 25px;
}

.instagram-banner {
  max-width: 520px;
  margin: 0 auto 30px;
  padding: 22px;
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  font-size: 18px;
}

.instagram-banner strong {
  font-size: 22px;
}

form {
  max-width: 520px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 16px;
  outline: none;
}

textarea {
  height: 130px;
  resize: none;
}

footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 25px;
}

@media (max-width: 850px) {
  html {
    scroll-padding-top: 140px;
  }

  nav {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    text-align: center;
  }

  .nav-links a {
    margin: 0 7px;
    font-size: 14px;
  }

  .hero {
    padding-top: 135px;
  }

  .hero-content {
    padding: 100px 8% 80px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .about-me {
    flex-direction: column;
    text-align: center;
  }

  .card,
  .price-card,
  .project-card {
    width: 100%;
  }

  .instagram-banner {
    flex-direction: column;
    gap: 8px;
  }
}