*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D1B2A; --navy-light: #1A2D42; --green: #2E7D52;
  --green-light: #3A9966; --yellow: #F4C430; --white: #FFFFFF;
  --cream: #F9F6F0; --gray: #6B7280; --light-gray: #E8E8E8;
}
body { font-family: 'Inter', sans-serif; color: #1A1A2E; background: var(--white); }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,27,42,0.96); backdrop-filter: blur(10px);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 60px;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 900; color: #fff; text-decoration: none; }
.nav-logo span { color: var(--yellow); }
.nav-back { color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 0.85rem; display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s; }
.nav-back:hover { color: var(--yellow); }
.hero {
  padding-top: 60px; min-height: 380px; position: relative;
  display: flex; align-items: flex-end;
}
.hero-img { position: absolute; inset: 0; object-fit: cover;
  width: 100%; height: 100%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.3) 60%);
}
.hero-content { position: relative; z-index: 2; padding: 2.5rem 5%; width: 100%; }
.hero-tag { display: inline-block; background: rgba(244,196,48,0.2);
  border: 1px solid rgba(244,196,48,0.5); color: var(--yellow);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 0.35rem 0.9rem;
  border-radius: 2px; margin-bottom: 0.8rem; }
.hero h1 { font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900;
  color: #fff; line-height: 1.1; margin-bottom: 0.5rem; }
.hero-meta { color: rgba(255,255,255,0.65); font-size: 0.85rem;
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.hero-meta span { display: flex; align-items: center; gap: 0.3rem; }
.content { max-width: 820px; margin: 0 auto; padding: 3rem 5% 5rem; }
.price-bar {
  background: var(--navy); border-radius: 10px; padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
}
.price-label { color: rgba(255,255,255,0.6); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 1px; }
.price-amount { font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--yellow); }
.price-note { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #25D366; color: #fff; text-decoration: none;
  padding: 0.9rem 1.8rem; border-radius: 6px; font-weight: 700;
  font-size: 0.95rem; transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-wa:hover { background: #1EB856; transform: translateY(-2px); }
.section { margin-bottom: 2.5rem; }
.section-title {
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  font-weight: 700; color: var(--navy); margin-bottom: 1rem;
  padding-bottom: 0.5rem; border-bottom: 2px solid var(--light-gray);
  display: flex; align-items: center; gap: 0.5rem;
}
.items-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.items-list li {
  font-size: 0.9rem; color: #374151; line-height: 1.6;
  padding: 0.4rem 0; display: flex; align-items: flex-start; gap: 0.5rem;
}
.items-list li::before { content: '•'; color: var(--green);
  font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.pill-green { background: #EAF5EE; color: var(--green);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; }
.pill-red { background: #FEF2F2; color: #DC2626;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; }
.pill-yellow { background: #FFFBEB; color: #92400E;
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem; margin-top: 0.5rem; }
.info-card { background: var(--cream); border-radius: 8px;
  padding: 1rem 1.2rem; }
.info-card .label { font-size: 0.7rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.3rem; }
.info-card .value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.alert { background: #FFFBEB; border: 1px solid #FDE68A;
  border-radius: 8px; padding: 1rem 1.2rem; font-size: 0.85rem;
  color: #78350F; line-height: 1.6; margin-top: 1rem; }
footer { background: var(--navy); color: rgba(255,255,255,0.4);
  text-align: center; padding: 1.5rem; font-size: 0.78rem; }
@media (max-width: 600px) {
  .price-bar { flex-direction: column; text-align: center; }
}
