:root {
  --bg: #fffaf0;
  --text: #1f1f1f;
  --muted: #555;
  --accent: #ff5a1f;
  --accent-2: #0088cc;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(0, 0, 0, 0.1);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, #ffe3d8 0, transparent 35%),
    radial-gradient(circle at 85% 5%, #d6f1ff 0, transparent 33%),
    linear-gradient(135deg, #fffaf0 0%, #fff 40%, #f5fbff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.45;
}

.bg-shape-1 {
  width: 350px;
  height: 350px;
  background: #ff5a1f;
  top: -120px;
  right: -100px;
}

.bg-shape-2 {
  width: 300px;
  height: 300px;
  background: #0088cc;
  bottom: -120px;
  left: -80px;
}

.hero {
  padding: 84px 0 44px;
  animation: rise 700ms ease-out both;
}

.tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.6);
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.02em;
  max-width: 16ch;
}

.lead {
  margin-top: 16px;
  font-size: clamp(1rem, 2.3vw, 1.22rem);
  color: var(--muted);
  max-width: 60ch;
}

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

.btn {
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  padding: 14px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #ff7f50);
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 24px;
}

.content-stack {
  display: grid;
  gap: 14px;
}

.info-block {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  animation: rise 760ms ease-out both;
}

.info-block h2 {
  font-size: clamp(1.24rem, 2.1vw, 1.58rem);
  margin-bottom: 10px;
}

.info-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.card {
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  animation: rise 720ms ease-out both;
}

.card h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 8px;
}

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

.cta,
.faq,
.featured {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  padding: 24px;
}

.cta p,
.faq p,
.featured p {
  color: var(--muted);
}

.featured-links {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.featured-link {
  display: block;
  text-decoration: none;
  color: #034f76;
  font-weight: 700;
  border: 1px dashed rgba(3, 79, 118, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 180ms ease, background 180ms ease;
}

.featured-link:hover {
  transform: translateX(2px);
  background: #fff;
}

.cta .btn {
  display: inline-block;
  margin-top: 10px;
}

.faq details {
  border-top: 1px dashed var(--border);
  padding: 12px 0;
}

.faq details:first-of-type {
  border-top: 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.footer {
  padding: 30px 0 45px;
  color: #666;
  font-size: 0.95rem;
}

.footer a {
  color: #045f8c;
}

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

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .content-stack {
    gap: 12px;
  }

  .hero {
    padding-top: 58px;
  }
}
