:root {
  --navy: #010E72;
  --blue: #214B8F;
  --teal: #2D9FB5;
  --peach: #F5A830;
  --orange: #E87F00;
  --bg: #FAFBFE;
  --text: #1a1f36;
  --muted: #5a6178;
}

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

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(1,14,114,.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--peach), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; color: var(--navy);
}
.logo-text { font-weight: 700; font-size: 18px; letter-spacing: .3px; }
.logo-text small { display: block; font-weight: 400; font-size: 11px; opacity: .8; letter-spacing: 1px; }
nav ul { display: flex; list-style: none; gap: 6px; flex-wrap: wrap; }
nav a {
  color: #fff; text-decoration: none; font-size: 15px;
  padding: 8px 14px; border-radius: 8px; transition: background .2s;
}
nav a:hover, nav a.active { background: var(--blue); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--teal) 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.hero h1 { font-size: 42px; line-height: 1.2; margin-bottom: 18px; }
.hero h1 span { color: var(--peach); }
.hero p { font-size: 19px; max-width: 720px; margin: 0 auto 32px; opacity: .95; }
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: 16px; transition: transform .15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-outline { border: 2px solid #fff; color: #fff; margin-left: 12px; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  padding: 48px 20px;
}
.page-hero h1 { font-size: 34px; }

/* Sections */
section { padding: 60px 0; }
h2 { color: var(--navy); font-size: 30px; margin-bottom: 28px; }
h3 { color: var(--blue); font-size: 20px; margin: 24px 0 10px; }
.section-alt { background: #fff; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: #fff; border-radius: 14px; padding: 26px;
  box-shadow: 0 4px 18px rgba(1,14,114,.08);
  border-top: 4px solid var(--teal);
}
.card.accent-orange { border-top-color: var(--orange); }
.card.accent-peach { border-top-color: var(--peach); }
.card.accent-navy { border-top-color: var(--navy); }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); font-size: 15px; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; text-align: center; }
.fact-num { font-size: 40px; font-weight: 800; color: var(--orange); }
.fact-label { color: var(--muted); font-size: 15px; }

table.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(1,14,114,.08); }
table.info-table th, table.info-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #eef0f7; vertical-align: top; }
table.info-table th { background: var(--navy); color: #fff; font-weight: 600; width: 40%; }
table.info-table tr:last-child td, table.info-table tr:last-child th { border-bottom: none; }

ul.list { padding-left: 22px; margin: 10px 0 20px; }
ul.list li { margin-bottom: 8px; }

.placeholder { background: #fff4e0; border: 1px dashed var(--orange); padding: 2px 8px; border-radius: 6px; font-style: italic; color: var(--orange); }

.notice {
  background: #eaf6f9; border-left: 4px solid var(--teal);
  padding: 18px 22px; border-radius: 0 12px 12px 0; margin: 24px 0; color: var(--text);
}

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 24px; }
.price-card {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(1,14,114,.08); border: 2px solid #eef0f7;
  position: relative; text-align: center;
}
.price-card.best { border-color: var(--orange); box-shadow: 0 10px 30px rgba(232,127,0,.18); }
.price-badge {
  display: inline-block; font-size: 13px; font-weight: 700; color: #fff;
  background: var(--teal); padding: 5px 14px; border-radius: 20px; margin-bottom: 14px;
}
.price-badge.alt { background: var(--blue); }
.price-badge.muted { background: var(--muted); }
.price-card.best .price-badge { background: var(--orange); }
.price-card h3 { color: var(--navy); font-size: 18px; margin: 0 0 12px; }
.price-main { font-size: 34px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.price-main span { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-year { color: var(--orange); font-weight: 600; font-size: 15px; margin-top: 8px; }
.price-note { color: var(--muted); font-size: 14px; margin-top: 12px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-top: 20px; }
.gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 12px; box-shadow: 0 4px 14px rgba(1,14,114,.12); }
.photo-slot {
  height: 200px; border-radius: 12px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: #eef2fb; border: 2px dashed var(--blue); color: var(--blue); font-weight: 600;
}
.photo-slot small { font-weight: 400; color: var(--muted); font-size: 12px; margin-top: 6px; }
code { background: #eef2fb; padding: 1px 6px; border-radius: 5px; font-size: 13px; }

/* Footer */
footer { background: var(--navy); color: #fff; padding: 40px 0; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; max-width: 1100px; margin: 0 auto; padding: 0 20px; font-size: 14px; }
footer a { color: var(--peach); text-decoration: none; }
footer .muted { opacity: .7; font-size: 13px; margin-top: 8px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
}
