:root {
  --bg: #f4f7f9;
  --surface: #ffffff;
  --ink: #10212d;
  --muted: #557082;
  --brand: #1f5a76;
  --brand-2: #2f7b9f;
  --line: #d8e3ea;
  --ok: #0f8d5f;
  --shadow: 0 14px 40px rgba(16, 33, 45, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(47, 123, 159, 0.22), transparent 60%),
    radial-gradient(700px 260px at 10% 15%, rgba(31, 90, 118, 0.14), transparent 60%),
    var(--bg);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(244, 247, 249, 0.88);
  border-bottom: 1px solid rgba(216, 227, 234, 0.8);
}

.topbar-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
}

.logo img { height: 70px; width: auto; }

.menu {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.menu a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.88;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 8px 20px rgba(31, 90, 118, 0.34);
}

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

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.hero {
  padding: 74px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(31, 90, 118, 0.1);
  border: 1px solid rgba(31, 90, 118, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  margin-bottom: 14px;
}

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

h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem);
  margin-bottom: 16px;
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}

.mini-points span::before {
  content: "•";
  color: var(--ok);
  margin-right: 8px;
}

.spotlight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #0f2f41, #1f5a76 58%, #2f7b9f);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 22px 46px rgba(16, 33, 45, 0.24);
  color: #fff;
  padding: 24px;
}

.spotlight::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -60px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05));
  animation: pulse 3.2s ease-in-out infinite;
}

.spot-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.spot-head span {
  font-weight: 800;
  letter-spacing: .01em;
}

.growth-pill {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 700;
  white-space: nowrap;
}

.spot-value {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

.spot-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.spot-item {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 12px;
}

.spot-item b {
  display: block;
  margin-top: 4px;
  font-size: 1.02rem;
}

.spot-progress {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.spot-progress i {
  display: block;
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, #8df7ce, #65d9ff);
  border-radius: inherit;
  animation: slide 2s ease-out;
}

.spot-foot {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: .9rem;
  opacity: .94;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: .7; }
}

@keyframes slide {
  from { width: 0; }
  to { width: 78%; }
}

section { padding: 52px 0; }

.section-title {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
}

.section-sub {
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 70ch;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(16, 33, 45, 0.06);
}

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

.card p {
  color: var(--muted);
  margin: 0;
  font-size: .98rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
}

.cta {
  background: linear-gradient(135deg, #12364a, #1f5a76);
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: center;
}

.form {
  display: grid;
  gap: 10px;
}

.input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 12px 13px;
  font: inherit;
}

.input::placeholder { color: rgba(255, 255, 255, 0.86); }

.btn-light {
  background: #fff;
  color: #12364a;
  border: 0;
  font-weight: 800;
}

footer {
  padding: 30px 0 50px;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

@media (max-width: 940px) {
  .menu { display: none; }
  .hero-grid, .cta-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .topbar-inner { height: 72px; }
  .logo img { height: 42px; }
}
