@layer layout {
   
/* =========================
   CONTENT WRAPPER 1st level
   ========================= */

.content-wrapper {
  margin-top: -10px;
  padding-bottom: 20px;
}

/* =========================
   CONTENT GRID - 2nd Level
   ========================= */

.content-grid {
  max-width: 1200px;
  margin: 40px auto;
  background: white;
  border-radius: 24px;
  padding: 60px 55px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
   
/* =========================
   NAVIGATION (DESKTOP / BASE)
   ========================= */

.site-nav {
   height: 64px;
  position: relative;
  z-index: 50;
  background-color: #F8FAFC;
  border-bottom: 1px solid #E5E7EB;
}

/* NAV WRAPPER */
.nav-container {
  height: 64px;
  /*max-width: 1200px;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 430px;   
  padding-right: 470px;
}

/* =========================
   LOGO
   ========================= */

.nav-logo {
  display: flex;
  align-items: center;

  height: 120px;
 
  margin: 0;
  line-height: 0; /* removes inline spacing */
}

.nav-logo img {
 height: 100%;
  width: auto;
  display: block;
  margin: 5px;
  background: transparent;
  object-fit: contain;
}

/* =========================
   NAV CONTENT (RIGHT)
   ========================= */

.nav-content {
  margin-left: auto;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* DESKTOP MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;

  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0f172a;

  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #6d5dfc;
}

/* HAMBURGER (hidden on desktop) */
.nav-toggle {
  display: none;
  font-size: 28px;

  background: none;
  border: none;
  cursor: pointer;
  color: #0f172a;
}

/* MOBILE MENU BASE (always hidden by default) */
.mobile-menu {
  display: none;
}

/* =========================
   HERO SHELL
   ========================= */

.hero {
  position: relative;
  padding: 30px 20px 20px;
  text-align: center;
  color: white;
}

   .hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 760px;
    margin: 0 auto;
    }

  .hero h1 {
  font-size: 2.3rem;
  margin-bottom: 3px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 14px;
  line-height: 1.4;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
  margin-top: 24px;
  padding: 20px 20px 56px;
  background: transparent;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.site-footer::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 0 auto 32px;
  background: rgba(255,255,255,0.25);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-link img {
  width: 16px;
  height: 16px;
}

.footer-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
}
