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

body {
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1624 50%, #1a1f2e 100%);
  color: #d1d5db;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 24px 8% 80px;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
              url("hero.jpg") center / cover no-repeat;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 96px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-img:hover {
  transform: scale(1.08);
}

.nav-center {
  display: flex;
  gap: 40px;
}

.nav-center a {
  position: relative;
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-center a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff7a00, #ff6600);
  transition: width 0.35s ease;
}

.nav-center a:hover {
  color: #ff7a00;
}

.nav-center a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  background: linear-gradient(135deg, #ff7a00 0%, #ff6600 100%);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.2);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 122, 0, 0.35);
}

.btn.ghost {
  background: transparent;
  border: 2px solid rgba(255, 122, 0, 0.6);
  color: #ff7a00;
}

.btn.ghost:hover {
  background: rgba(255, 122, 0, 0.1);
  border-color: #ff7a00;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.2);
}

/* MOBILE MENU BUTTON */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.new{
  color: #e89e0b;
  font-size: 18px;
  margin-bottom: 16px;
  text-align: center;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ff7a00;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 70px;
  right: -300px;
  width: 280px;
  height: calc(100vh - 70px);
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 1px solid rgba(255, 122, 0, 0.15);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.mobile-menu a:hover {
  background: rgba(255, 122, 0, 0.1);
  color: #ff7a00;
  padding-left: 20px;
}

.mobile-menu .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* HERO CONTENT */
.hero-content {
  margin-top: 160px;
  max-width: 720px;
}

.hero-content h1 {
  color: #fff;
  font-size: 42px;
}

.brand-img {
  width: 280px;
  margin: 16px 0;
}

.cta {
  display: flex;
  justify-content: center;
  margin-top: 100px; /* adjust spacing if needed */
}


/* SECTIONS */
.feature {
  min-height: 90vh;
  padding: 120px 8%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  background: #fff7f0;
  transition: all .9s ease;
}

.feature.reverse {
  background: #fff1e6;
  grid-template-columns: 0.9fr 1.1fr;
}

.feature.animate {
  opacity: 0;
  transform: translateY(60px);
}

.feature.show {
  opacity: 1;
  transform: translateY(0);
}

.text {
  opacity: 1;
  transform: translateX(0);
  transition: all .8s ease;
  order: 1;
}

.feature.reverse .text {
  order: 2;
  transform: translateX(0);
}

.feature.animate .text {
  opacity: 0;
  transform: translateX(-40px);
}

.feature.reverse.animate .text {
  opacity: 0;
  transform: translateX(40px);
}

.feature.show .text {
  opacity: 1;
  transform: translateX(0);
}

.text h2 {
  color: #ff7a00;
  font-size: 42px;
}

.text p {
  color: #555;
  font-size: 18px;
  max-width: 480px;
}

/* FLOAT IMAGE */
.float-img {
  width: 240px;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  order: 2;
}

.feature.reverse .float-img {
  order: 2;
}

.float-img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.image-pair {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  order: 2;
}

.feature.reverse .image-pair {
  order: 2;
}

.image-pair .float-img {
  animation: float 6s ease-in-out infinite;
}

.image-pair .float-img:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes float {
  50% { transform: translateY(-16px); }
}

/* CAROUSEL */
.carousel-container {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(255, 122, 0, 0.2);
  order: 2;
}

.feature.reverse .carousel-container {
  order: 2;
}

.carousel {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
  height: 100%;
}

.carousel-img {
  min-width: calc(100% / 3);
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #ff7a00;
  transform: translateY(-50%) scale(1.1);
}

.text h2 {
  color: #ff7a00;
  font-size: 42px;
}

.text p {
  color: #555;
  font-size: 18px;
  max-width: 480px;
}

/* FLOAT IMAGE */
.float-img {
  width: 240px;
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
  cursor: pointer;
}

.float-img:hover {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.image-pair {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.image-pair .float-img {
  animation: float 6s ease-in-out infinite;
}

.image-pair .float-img:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes float {
  50% { transform: translateY(-16px); }
}

/* FOOTER */
.site-footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 122, 0, 0.1);
  padding: 60px 8% 30px;
  margin-top: 100px;
  backdrop-filter: blur(20px);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: #ff7a00;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column p {
  color: #6b7280;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #6b7280;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #ff7a00;
  transform: translateX(4px);
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.08);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 122, 0, 0.1);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #ff7a00;
  text-decoration: none;
}

.social-icons a:hover {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-4px) scale(1.1);
}

.download-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 122, 0, 0.1);
  border-bottom: 1px solid rgba(255, 122, 0, 0.1);
}

.download-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00 0%, #ff6600 100%);
  color: #fff;
  padding: 14px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 122, 0, 0.4);
}

.footer-bottom {
  text-align: center;
  color: #4b5563;
  font-size: 12px;
  padding-top: 30px;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-center,
  .nav-actions {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .feature {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 60px 8%;
  }

  .feature.reverse {
    grid-template-columns: 1fr;
  }

  .text h2 {
    font-size: 28px;
  }

  .text p {
    font-size: 14px;
    max-width: 100%;
    margin: 0 auto;
  }

  .float-img {
    width: 180px;
    margin: 40px auto 0;
  }

  .image-pair {
    flex-direction: column;
    margin-top: 40px;
  }

  .image-pair .float-img {
    width: 160px;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
  .feature {
    padding: 40px 4%;
  }

  .text h2 {
    font-size: 22px;
  }

  .text p {
    font-size: 12px;
  }

  .float-img {
    width: 140px;
  }

  .image-pair {
    gap: 10px;
  }

  .image-pair .float-img {
    width: 120px;
  }
}
