
:root {
  --primary:#ff5b2e;
  --dark:#0d0625;
  --light:#f2f2f2;
  --radius:8px;
  --max:1100px;
  --shadow:0 4px 14px rgba(0,0,0,.08);
}
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: #fff;
  background: #0f0f0f;
  line-height: 1.6;
}
h1, h2, h3 {
  font-weight: 700;
  margin: 0 0 .5em;
}
section {
  padding: 70px 120px;
  text-align: center;
}
a {
  color: var(--primary);
  text-decoration: none;
}
.btn-primary, .btn-primary-outline, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-secondary {
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-primary:hover {
  opacity: .85;
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  background-color: #161616;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}
/* Hero */
.hero {
  background: url('../images/1.png') center/cover no-repeat;
  min-height: 100vh;
  color: #fff;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,.55);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 100px;
}
.hero-inner h1 {
  font-size: 48px;
}
.hero-inner p {
  font-size: 20px;
  margin: 15px 0 30px;
}
/* Features */
.features .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
}
.features article {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
border-top: 2px solid var(--primary);

}

.features article:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.features article h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.features article p {
  color: #bbb;
  font-size: 15px;
  line-height: 1.5;
}

/* Demo */
.demo-zwrap {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
}
.demo-wrap {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.demo-img {
  width: 35%;
  border-radius: 12px;
}

.demo-img.zmobile {
  width: 40%;
  max-width: 300px;
}
.demo-img.mobile {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
}

/* Button style */
.btn-demo {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.btn-demo:hover {
  background: #e94f23;
}

/* Pricing */

.plans {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
}

.price-card {
  background: #1e1e1e;
  padding: 35px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 300px;
  color: #fff;
}

.price {
  font-size: 32px;
  margin: 10px 0;
}

.price small {
  font-size: 16px;
  color: #bbb;
}

.popular {
  border: 3px solid var(--primary);
}

.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 15px;
}

.price-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.price-card ul li::before {
  content: "✔";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Testimonials */
.testimonials blockquote {
  background: #1e1e1e;
  margin: 20px auto;
  max-width: 600px;
  padding: 25px;
  border-left: 4px solid var(--primary);
  font-style: italic;
}
/* Contact */
.cta.contact {
  background-color: #0d0625;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

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

.cta.contact p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 40px;
  padding: 0 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px 18px;
  border: 1px solid #444;
  border-radius: var(--radius);
  font-size: 17px;
  width: 100%;
  background: #161616;
  color: #fff;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

/* Direct email link */
.direct-mail a {
  color: var(--primary);
  font-weight: 600;
}

/* Footer */
footer {
  background: var(--dark);
  color: #bbb;
  padding: 25px;
  text-align: center;
}
footer a {
  color: #bbb;
  font-size: 14px;
}
.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #ff5b2e;
  display: flex;
  align-items: center;
  gap: 1px;
}

.logo-text .icon {
  font-size: 20px;
}

@media (max-width: 768px) {
  .plan, .feature, .testimonial {
    max-width: 95%;
    margin: 0 auto 20px;
  }

  .testimonials {
    padding: 30px 15px;
  }
    .navbar {
    padding: 8px 20px;
  }

  .navbar nav a {
    font-size: 15px;
    margin-left: 12px;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  nav ul li {
    text-align: center;
  }
  .pricing {
    padding: 30px 15px;
  }

  .plans {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .plan {
    width: 100%;
    max-width: 320px;
  }

  /* Features */
  .features {
    padding: 30px 15px;
  }

  .features .feature {
    max-width: 320px;
    margin: 0 auto 20px;
  }

  /* Hero text scaling */
.hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 1.8em;
  }

  .hero p {
    font-size: 1em;
  }
}