:root {
  --bg: #fff9ec;
  --bg-soft: #fff2cf;
  --surface: #ffffff;
  --text: #1d1a12;
  --muted: #6f6650;
  --gold-1: #ffd35c;
  --gold-2: #f8b400;
  --gold-3: #d18f00;
  --line: #f1deb0;
  --ok: #1a7f37;
  --shadow: 0 14px 40px rgba(166, 116, 0, 0.18);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1300px 700px at 85% -10%, #ffe9ab 0%, var(--bg) 55%, #fff 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  scroll-behavior: smooth;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 249, 236, 0.75);
  border-bottom: 1px solid rgba(209, 143, 0, 0.15);
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(166, 116, 0, 0.12);
  flex: 0 0 auto;
}

.hero-logo-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.hero-logo {
  width: min(280px, 70%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(166, 116, 0, 0.18));
}

.cta-btn {
  background: linear-gradient(145deg, var(--gold-2), var(--gold-3));
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 20px rgba(209, 143, 0, 0.28);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(209, 143, 0, 0.32);
}

.hero {
  padding: 72px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start;
}

.tag {
  display: inline-block;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff2c7;
  border: 1px solid #f0d483;
  color: #7a5600;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: "Sora", sans-serif;
  margin: 0;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  margin-top: 14px;
  margin-bottom: 16px;
  max-width: 16ch;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.14rem);
  line-height: 1.6;
  max-width: 56ch;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ghost {
  border: 1px solid var(--line);
  color: #7a5600;
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  animation: floatIn .7s ease;
}

.hero-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: #453c2a;
  line-height: 1.65;
  font-size: .97rem;
}

section {
  padding: 30px 0;
}

.stats {
  background: linear-gradient(170deg, #fff2cf, #ffe8a1);
  border-top: 1px solid #f1d891;
  border-bottom: 1px solid #f1d891;
}

.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 0;
}

.stat-card {
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(209, 143, 0, .25);
  border-radius: 14px;
  padding: 18px;
}

.stat-title {
  color: #765826;
  font-weight: 700;
  font-size: .9rem;
}

.stat-value {
  margin-top: 8px;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 800;
  font-family: "Sora", sans-serif;
  line-height: 1.15;
}

.stat-subtitle {
  margin-top: 6px;
  color: #66593f;
  font-size: .92rem;
  line-height: 1.35;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 70ch;
  margin-top: 10px;
}

.cards-3 {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: #5f5644;
  line-height: 1.6;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pillar {
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, #fff, #fff8e8);
}

.pillar h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.pillar ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #4f4637;
  line-height: 1.55;
}

.highlight {
  padding: 36px 0 24px;
}

.highlight-box {
  border-radius: 22px;
  background: linear-gradient(130deg, #f8b400 0%, #d18f00 100%);
  color: #fff9e5;
  padding: 28px;
  box-shadow: var(--shadow);
}

.highlight-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.highlight-box p {
  margin: 10px 0 0;
  max-width: 70ch;
  line-height: 1.6;
}

.checklist {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.checklist span::before {
  content: "✓ ";
  color: #fff;
  font-weight: 800;
}

.footer-cta {
  margin-top: 30px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.footer-cta h3 {
  margin-bottom: 8px;
}

.small {
  font-size: .88rem;
  color: #7d7461;
  margin-top: 10px;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .cards-3,
  .pillars,
  .stats-wrap,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .brand {
    gap: 10px;
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero-logo {
    width: min(230px, 88%);
  }
}

@media (min-width: 961px) and (max-width: 1180px) {
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
