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

:root {
  --blue:       #1a56a0;
  --blue-dark:  #0e3a70;
  --blue-light: #e8f0fb;
  --accent:     #f5a623;
  --text:       #1c1c2e;
  --muted:      #5a6070;
  --border:     #dde3ef;
  --white:      #ffffff;
  --section-bg: #f7f9fd;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

/* ─── HEADER ─── */
header {
  background: #0e3a70;
  background: linear-gradient(135deg, #0e3a70 0%, #1a56a0 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.22);
}
.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
}
.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: #f5a623; }

nav { display: flex; gap: 0.15rem; flex-wrap: wrap; }
nav a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
nav a:hover, nav a.active {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
nav a.shop {
  background: #f5a623;
  color: #fff;
  font-weight: 700;
  margin-left: 0.25rem;
}
nav a.shop:hover { background: #d4891a; }

/* ─── HERO ─── */
.hero {
  background: #0e3a70;
  background: linear-gradient(135deg, #0e3a70 0%, #1a56a0 60%, #2d7dd2 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}
.hero h1 span { color: #f5a623; }
.hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.9);
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  box-shadow: none;
  margin-left: 0.75rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-blue {
  background: #1a56a0;
  box-shadow: 0 4px 14px rgba(26,86,160,0.3);
}
.btn-blue:hover { background: #0e3a70; opacity: 1; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: #0e3a70;
  background: linear-gradient(135deg, #0e3a70 0%, #1a56a0 100%);
  color: #fff;
  padding: 3.5rem 1.5rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.6rem;
}
.page-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ─── SECTIONS ─── */
section { padding: 4rem 1.5rem; }
section.alt-bg { background: var(--section-bg); }
.section-inner { max-width: 1000px; margin: auto; }

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 0.5rem;
}
.section-lead {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 680px;
}

/* ─── CARDS ─── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(26,86,160,0.1); transform: translateY(-2px); }
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.4rem; }
.card p { font-size: 0.9rem; color: var(--muted); }

/* ─── STEPS ─── */
.steps { display: flex; flex-direction: column; gap: 1.1rem; }
.step {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  align-items: flex-start;
}
.step-num {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a56a0;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.25rem; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ─── TABLE ─── */
.table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid var(--border); }
table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
thead { background: #1a56a0; color: #fff; }
thead th { padding: 0.85rem 1rem; text-align: left; font-weight: 600; }
tbody tr:nth-child(even) { background: var(--blue-light); }
tbody td { padding: 0.75rem 1rem; color: var(--text); border-bottom: 1px solid var(--border); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: #dce8f8; }

/* ─── BENEFIT ITEMS ─── */
.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-icon { font-size: 1.6rem; min-width: 44px; text-align: center; }
.benefit-item h3 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.2rem; }
.benefit-item p { font-size: 0.9rem; color: var(--muted); }

/* ─── REGIONS ─── */
.regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
.region-card {
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s;
}
.region-card:hover { box-shadow: 0 6px 24px rgba(26,86,160,0.1); transform: translateY(-2px); }
.region-header {
  background: #1a56a0;
  color: #fff;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.region-body { padding: 1rem 1.25rem; }
.region-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.6rem; }

/* ─── TAGS ─── */
.tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin: 0.15rem;
}
.tag.warn { background: #fff3e0; color: #c05700; }
.tag.good { background: #e8f5e9; color: #2e7d32; }

/* ─── PRODUCTS ─── */
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card {
  border-radius: 14px;
  border: 2px solid var(--border);
  padding: 1.75rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.product-card:hover { box-shadow: 0 8px 30px rgba(26,86,160,0.12); transform: translateY(-3px); }
.product-card.featured { border-color: #f5a623; }
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f5a623;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}
.product-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.product-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: 0.5rem; }
.product-card p { font-size: 0.875rem; color: var(--muted); flex: 1; margin-bottom: 1.25rem; }
.product-price { font-size: 1.6rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 1rem; }
.product-price span { font-size: 0.9rem; font-weight: 400; color: var(--muted); }
.btn-buy {
  display: block;
  text-align: center;
  background: #1a56a0;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-buy:hover { background: #0e3a70; }
.product-card.featured .btn-buy { background: #f5a623; }
.product-card.featured .btn-buy:hover { background: #d4891a; }
.product-includes { list-style: none; margin-bottom: 1.25rem; }
.product-includes li { font-size: 0.85rem; color: var(--muted); padding: 0.2rem 0; }
.product-includes li::before { content: "✓ "; color: #2e7d32; font-weight: 700; }

/* ─── INFO BOX ─── */
.info-box {
  background: var(--blue-light);
  border-left: 4px solid #1a56a0;
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
}
.info-box strong { color: var(--blue-dark); }

.warn-box {
  background: #fff3e0;
  border-left: 4px solid #f5a623;
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

/* ─── FAQ ─── */
details {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  font-size: 0.95rem;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.2rem; color: #1a56a0; }
details[open] summary::after { content: "−"; }
details[open] summary { background: var(--blue-light); }
.faq-body { padding: 1rem 1.25rem; font-size: 0.9rem; color: var(--muted); background: var(--white); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: #0e3a70;
  background: linear-gradient(135deg, #0e3a70, #1a56a0);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-banner h2 { color: #fff; font-size: 1.9rem; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 550px; margin: 0 auto 2rem; }

/* ─── FOOTER ─── */
footer {
  background: #0e3a70;
  color: rgba(255,255,255,0.65);
  padding: 2.5rem 1.5rem;
  font-size: 0.82rem;
}
.footer-inner {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 0.75rem; font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; padding: 0.2rem 0; font-size: 0.82rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; color: rgba(255,255,255,0.45); font-size: 0.75rem; max-width:1000px; margin:0 auto; }
.footer-bottom a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  nav { display: none; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero-badges { display: none; }
}
