:root {
  --bg: #154f38;
  --panel: #206a4d;
  --panel-2: #1b5d43;
  --deep: #103b2b;
  --text: #ffffff;
  --muted: #d7efe4;
  --yellow: #ffc323;
  --gold: #f0a400;
  --green: #75d66b;
  --line: rgba(255, 255, 255, 0.18);
  --shadow: rgba(5, 26, 17, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 59, 43, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 74px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.brand img {
  width: 132px;
  height: auto;
  aspect-ratio: 21 / 8;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(5, 26, 17, 0.26);
}

.brand-fallback {
  color: var(--yellow);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 0 var(--gold), 0 5px 14px rgba(0, 0, 0, 0.35);
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.menu a:hover,
.menu a.active {
  color: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--yellow);
  color: #103b2b;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 195, 35, 0.28);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  border-color: var(--yellow);
  color: var(--text);
  box-shadow: none;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 1.35rem;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(16, 59, 43, 0.96), rgba(21, 79, 56, 0.82)),
    radial-gradient(circle at 80% 22%, rgba(255, 195, 35, 0.28), transparent 34%),
    linear-gradient(135deg, #103b2b 0%, #206a4d 54%, #154f38 100%);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: 28px;
}

.hero-copy {
  max-width: 760px;
  padding: 58px 0;
}

.hero-promo {
  margin: 0;
}

.hero-promo img,
.promo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 465;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  box-shadow: 0 18px 40px var(--shadow);
}

.eyebrow {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.6rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  margin: 0;
}

.lead {
  margin-top: 20px;
  max-width: 680px;
  font-size: 1.15rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  background: var(--deep);
  padding: 24px;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--yellow);
  font-size: 1.45rem;
}

section,
.page {
  padding: 78px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.section-heading {
  max-width: 780px;
}

.section-heading a,
.internal-links a,
.sidebar a,
.footer-links a {
  color: var(--text);
}

.section-heading a {
  color: var(--yellow);
  font-weight: 900;
}

.promotions-section {
  background: var(--bg);
}

.promo-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 40px var(--shadow);
}

.promo-card h3 {
  margin-bottom: 10px;
  color: var(--yellow);
}

.internal-links {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
}

.internal-links h2,
.internal-links h3 {
  color: var(--yellow);
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.internal-links ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.internal-links a {
  color: var(--muted);
  font-weight: 800;
}

.internal-links a:hover {
  color: var(--yellow);
}

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 40px var(--shadow);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--yellow);
}

.band {
  background: var(--panel-2);
  border-block: 1px solid var(--line);
}

.band .eyebrow {
  color: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  color: var(--text);
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(56, 199, 106, 0.14);
}

.page-title {
  padding: 64px 0 34px;
  border-bottom: 1px solid var(--line);
  background: var(--deep);
}

.content {
  max-width: 820px;
}

.content p,
.content li {
  color: var(--muted);
}

.content h2,
.content h3 {
  margin-top: 34px;
  margin-bottom: 12px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.post-card time,
.post-meta {
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.9rem;
}

.post-card h2,
.post-card h3 {
  margin: 8px 0 10px;
}

.sidebar {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
}

.sidebar h2 {
  font-size: 1.15rem;
  color: var(--yellow);
}

.sidebar nav {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.sidebar a {
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.sidebar a:hover {
  color: var(--yellow);
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--deep);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--deep);
  padding: 46px 0 28px;
}

.footer-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
  font-size: 1rem;
  color: var(--yellow);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--text);
}

.footer-links a:hover {
  color: var(--yellow);
}

.fineprint {
  width: min(1180px, calc(100% - 48px));
  margin: 30px auto 0;
  color: var(--text);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    position: absolute;
    inset: 74px 16px auto 16px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--deep);
    flex-direction: column;
    align-items: stretch;
  }

  .menu.open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .trust-row,
  .grid-3,
  .split,
  .hero-inner,
  .blog-layout,
  .promo-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 520px) {
  .nav,
  .hero-inner,
  .section-inner,
  .footer-grid,
  .fineprint {
    width: min(100% - 32px, 1180px);
    padding-inline: 0;
  }

  .brand img {
    width: 116px;
  }

  .mobile-toggle {
    width: auto;
    padding: 0 12px;
    font-size: 0.92rem;
    font-weight: 900;
  }

  section,
  .page {
    padding: 54px 0;
  }

  .btn {
    width: 100%;
  }
}
