* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #05060f;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.35;
  z-index: -1;
}

.glow-one {
  background: #6366f1;
  top: -120px;
  left: -150px;
}

.glow-two {
  background: #06b6d4;
  right: -130px;
  bottom: -130px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 6, 15, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  font-size: 26px;
  font-weight: bold;
}

.logo span {
  color: #22d3ee;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a,
.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: #22d3ee;
}

button {
  border: none;
  padding: 13px 24px;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  transition: 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.25);
}

.outline {
  background: transparent;
  border: 1px solid rgba(34, 211, 238, 0.75);
}

.menu-btn {
  display: none;
}

.hero {
  min-height: 92vh;
  padding: 95px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.hero-text {
  max-width: 760px;
}

.tag,
.section-tag {
  color: #22d3ee;
  font-weight: bold;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 66px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.desc {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 44px;
}

.hero-stats h3 {
  color: #22d3ee;
  font-size: 30px;
}

.hero-stats p {
  color: #94a3b8;
  margin-top: 5px;
}

.hero-panel {
  width: 430px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(34, 211, 238, 0.15);
  backdrop-filter: blur(20px);
  animation: floatPanel 4s ease-in-out infinite;
}

@keyframes floatPanel {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.panel-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.panel-dots span {
  width: 12px;
  height: 12px;
  background: #22d3ee;
  border-radius: 50%;
}

.panel-card,
.panel-grid div {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-card p,
.panel-grid p {
  color: #94a3b8;
  margin-bottom: 8px;
}

.panel-card h3 {
  margin-bottom: 18px;
}

.line {
  height: 10px;
  border-radius: 30px;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  margin-bottom: 12px;
}

.line-1 {
  width: 100%;
}

.line-2 {
  width: 72%;
}

.line-3 {
  width: 42%;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}

.panel-grid h4 {
  color: #22d3ee;
  margin-bottom: 6px;
}

.hero-panel button {
  width: 100%;
}

.section {
  padding: 95px 8%;
  text-align: center;
}

.section h2,
.process h2,
.contact h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.cards,
.why-grid,
.projects,
.pricing,
.steps {
  display: grid;
  gap: 26px;
  margin-top: 50px;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.projects {
  grid-template-columns: repeat(3, 1fr);
}

.pricing,
.steps {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.why-card,
.project-card,
.price-card,
.steps div,
.faq-item {
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  transition: 0.3s ease;
}

.card,
.why-card,
.price-card,
.steps div {
  padding: 32px;
}

.card:hover,
.why-card:hover,
.project-card:hover,
.price-card:hover,
.steps div:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 211, 238, 0.75);
  box-shadow: 0 24px 55px rgba(6, 182, 212, 0.14);
}

.icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.card h3,
.why-card h3,
.price-card h3,
.steps h3 {
  margin-bottom: 14px;
}

.card p,
.why-card p,
.price-card p,
.price-card li,
.steps p,
.contact p,
.faq-answer,
.project-content span {
  color: #cbd5e1;
  line-height: 1.7;
}

.project-card {
  padding: 24px;
  text-align: left;
}

.project-screen {
  width: 100%;
  height: 210px;
  border-radius: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #0f172a;
}

.project-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-content p {
  color: #22d3ee;
  font-weight: bold;
  margin-bottom: 10px;
}

.project-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.project-content a {
  display: inline-block;
  margin-top: 20px;
  color: #22d3ee;
  text-decoration: none;
  font-weight: bold;
}

.project-content a:hover {
  color: white;
}

.price-card {
  text-align: left;
  position: relative;
}

.price-card h4 {
  color: #22d3ee;
  font-size: 44px;
  margin-bottom: 14px;
}

.price-card ul {
  list-style: none;
  margin: 24px 0;
}

.price-card li {
  margin-bottom: 12px;
}

.price-card li::before {
  content: "✓ ";
  color: #22d3ee;
}

.popular {
  border-color: #22d3ee;
  transform: scale(1.03);
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  color: white !important;
  font-size: 13px;
}

.process {
  padding: 95px 8%;
  text-align: center;
}

.steps span {
  display: block;
  color: #22d3ee;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}

.faq {
  max-width: 900px;
  margin: 45px auto 0;
  text-align: left;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  box-shadow: none;
  padding: 22px;
}

.faq-question:hover {
  transform: none;
  box-shadow: none;
  color: #22d3ee;
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.active .faq-answer {
  display: block;
}

.contact {
  margin: 80px 8%;
  padding: 85px 30px;
  text-align: center;
  border-radius: 36px;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.20), transparent 55%),
    rgba(15, 23, 42, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact p {
  max-width: 760px;
  margin: 0 auto 30px;
}

.contact-form {
  max-width: 650px;
  margin: 35px auto 30px;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 15px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #22d3ee;
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.12);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  padding: 0;
  border-radius: 50%;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 0 18px 40px rgba(34, 211, 238, 0.35);
}

.footer {
  padding: 45px 8%;
  background: rgba(5, 6, 15, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer h3 {
  margin-bottom: 8px;
}

.footer p {
  color: #94a3b8;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .cards,
  .why-grid,
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-panel {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .menu-btn {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin-top: 18px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.96);
  }

  .nav-links.active {
    display: flex;
  }

  .hero {
    padding: 70px 6%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .desc {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .section,
  .process {
    padding: 75px 6%;
  }

  .section h2,
  .process h2,
  .contact h2 {
    font-size: 34px;
  }

  .cards,
  .why-grid,
  .projects,
  .pricing,
  .steps {
    grid-template-columns: 1fr;
  }

  .popular {
    transform: none;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}