:root {
  --blue: #0066cc;
  --blue-dark: #003366;
  --blue-gradient: linear-gradient(135deg, #0066cc 0%, #003366 100%);
  --green: #1e7c31;
  --green-hover: #186a29;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --container: 1120px;
}

* { box-sizing: border-box; transition: all 0.2s ease-in-out; }

html {
  min-height: 100%;
  background-color: #0066cc;
}

body {
  min-height: 100%;
  margin: 0;
  padding-top: 100px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#site-menu {
  background-color: #0066cc;
  border: none !important;
  box-shadow: none !important;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* HERO */
.hero {
  background: var(--blue-gradient);
  color: #fff;
  padding: 70px 0 55px;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta {
  background: var(--green);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(30, 124, 49, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta:hover {
  background: var(--green-hover);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-secondary.alt {
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.16);
  color: var(--blue);
}

.btn-secondary.alt:hover {
  background: rgba(0, 102, 204, 0.12);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  font-weight: 800;
}

.hero-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.hc-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.hc-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  flex: 0 0 auto;
}

.hero-card-bottom {
  display: flex;
  gap: 10px;
}

.btn-mini {
  flex: 1;
  text-align: center;
  background: #fff;
  color: var(--blue-dark);
  padding: 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-mini.outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-mini:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ARTICLE */
.section {
  padding: 80px 0;
  background: #fff;
}

.section.soft {
  background: var(--bg);
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.article-wrap {
  display: flex;
  justify-content: center;
}

.article-card {
  width: min(860px, 100%);
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 40px;
}

.article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.meta-pill {
  background: rgba(0, 102, 204, 0.08);
  color: var(--blue);
  border: 1px solid rgba(0, 102, 204, 0.14);
  padding: 7px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
}

.lead {
  font-size: 1.08rem;
  font-weight: 600;
  color: #334155;
}

.article-card h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 1.7rem;
  line-height: 1.25;
}

.article-card p {
  margin: 0 0 18px;
  color: var(--text-main);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
}

.list-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #334155;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.info-box {
  margin: 28px 0;
  background: rgba(0, 102, 204, 0.06);
  border: 1px solid rgba(0, 102, 204, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  font-weight: 600;
  color: #0f172a;
}

.cta-box {
  margin-top: 36px;
  background: linear-gradient(180deg, rgba(30,124,49,.05) 0%, #fff 100%);
  border: 1px solid rgba(30,124,49,.14);
  border-radius: 20px;
  padding: 28px;
}

.cta-box h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: var(--blue-dark);
}

.cta-box p {
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.mini-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 30px;
}

.mini-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blue);
}

.mini-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 1.3rem;
}

.mini-card p {
  margin: 0 0 18px;
  color: var(--text-main);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FOOTER */
.site-footer {
  background: var(--blue-dark);
  color: #fff;
  padding: 40px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-weight: 700;
  opacity: 0.8;
  margin-left: 20px;
  color: #fff;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    text-align: center;
  }

  .hero-cta,
  .cta-row {
    justify-content: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-card {
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .section {
    padding: 60px 0;
  }

  .article-card {
    padding: 24px;
  }

  .hero-title {
    font-size: 2.2rem;
  }
}