/* Layout Styles */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  color: var(--accent-color);
  font-weight: 600;
}

.nav-list {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.nav-list a:hover {
  color: var(--primary-color);
}

.nav-cta {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: 10px 25px;
  border-radius: 50px;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
}

.nav-desktop {
  display: none;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background: radial-gradient(circle at top right, #fff9f0, transparent);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.25;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--text-muted);
  max-width: 520px;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* Footer */
.footer {
  padding: 60px 0;
  text-align: center;
  background: #fff;
  border-top: 1px solid #eee;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Floating CTA (Subtle appearance) */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 25px;
  left: 20px;
  right: 20px;
  z-index: 900;
  transform: translateY(120px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-cta .btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
}

.floating-cta.visible {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }

  .mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 0 30px;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
    height: 0;
    overflow: hidden;
  }

  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
    padding: 30px;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    margin: 0 auto 40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .floating-cta {
    display: block;
  }
}
