@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0a1628;
  --navy2:     #112240;
  --navy3:     #1d3461;
  --gold:      #c9a84c;
  --gold2:     #e8c96d;
  --gold-soft: #f5e9c8;
  --white:     #ffffff;
  --off-white: #f8f6f1;
  --text:      #0a1628;
  --muted:     #6b7a99;
  --border:    #e2ddd4;
  --border2:   #d4cfc6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 32px; height: 32px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-mark svg { width: 14px; height: 14px; }

.nav-logo span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links li { position: relative; }

.nav-links a, .nav-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-links a.active-link { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 8px 18px !important;
  letter-spacing: 0.03em;
}

.nav-cta:hover {
  background: var(--gold2) !important;
}

.nav-btn svg { transition: transform 0.2s; }
.nav-btn.open svg { transform: rotate(180deg); }

/* dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 6px;
  min-width: 240px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
}

.dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.dropdown-item:hover { background: rgba(255,255,255,0.07); }

.dropdown-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.dropdown-item .di-text span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.dropdown-item .di-text small {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px 32px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border2);
  padding: 15px 32px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── HOME HERO ── */
.home-hero {
  background: var(--navy);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 48px 80px;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.home-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,52,97,0.6) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.home-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
}

.home-title em {
  font-style: normal;
  color: var(--gold);
}

.home-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* ── STAT BAR ── */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy2);
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.15);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 96px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-line {
  width: 2px;
  min-height: 48px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  border-radius: 2px;
}

.value-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── SECTION DIVIDER ── */
.section-rule {
  height: 1px;
  background: var(--border);
  margin: 0 80px;
}

/* ── PRODUCT GRID ── */
.range-section {
  padding: 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.range-header {
  margin-bottom: 40px;
}

.range-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 8px;
}

.range-header p {
  font-size: 0.9rem;
  color: var(--muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.product-card {
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.product-card:hover { background: var(--off-white); }

.card-image {
  height: 240px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}

.card-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}

.product-card:hover .card-image img { transform: scale(1.04); }

.card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--navy);
}

.card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.card-arrow {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── PRODUCT PAGE ── */
.page { padding-top: 68px; }

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 80px 80px 72px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.product-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.07;
  margin-bottom: 18px;
  color: var(--navy);
}

.product-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: var(--text);
  line-height: 1.55;
}

.fcheck {
  width: 18px; height: 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 900;
}

.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 4px;
  padding: 56px 48px;
  min-height: 480px;
  position: relative;
}

.product-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.product-image-wrap img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── CAMPAIGN ── */
.campaign {
  background: var(--navy);
  padding: 80px;
}

.campaign-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.campaign .eyebrow { margin-bottom: 12px; }

.campaign h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 14px;
}

.campaign-lead {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 52px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  overflow: hidden;
}

.c-card {
  background: var(--navy2);
  padding: 28px;
}

.c-icon {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: block;
}

.c-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.c-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.footer-back {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
}

.footer-back:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--navy2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 12px;
    gap: 4px;
    z-index: 99;
  }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    background: var(--navy);
    opacity: 1;
    pointer-events: all;
    border: none;
    border-radius: 8px;
    margin-top: 4px;
  }
  .product-hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    gap: 32px;
  }
  .product-image-wrap { order: -1; min-height: 260px; padding: 32px 24px; }
  .about-section { grid-template-columns: 1fr; padding: 64px 24px; gap: 48px; }
  .campaign { padding: 64px 24px; }
  .range-section { padding: 64px 24px; }
  .section-rule { margin: 0 24px; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
  .stat-bar { grid-template-columns: 1fr; }
  .home-hero { padding: 100px 24px 64px; }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  align-items: center;
  gap: 8px;
}
