:root {
  --brand: #304aa6;
  --brand-dark: #24387d;
  --brand-soft: rgba(48, 74, 166, 0.1);
  --bg: #f5f6f8;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #4b5563;
  --yellow-dark: #fdaa38;
  --yellow-light: #ffd051;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
}

/* ===============================
         LAYOUT
      =============================== */
.page-container {
  max-width: 1120px;
  margin: auto;
  padding: 36px 24px;
}

/* ===============================
         TYPOGRAPHY
      =============================== */
.heading-xl {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 16px;
}

.heading-lg {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.heading-md {
  font-size: 20px;
  font-weight: 600;
  margin: 8px 0;
}

.text-body {
  font-size: 15px;
  line-height: 24px;
  color: var(--muted);
  margin: 0;
}

.text-subtle {
  font-size: 14px;
  line-height: 22px;
  color: var(--muted);
}

.goal-points p.text-subtle {
  margin: 0;
}

/* ===============================
         CARD & UI
      =============================== */
.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.02),
    0 30px 60px rgba(0, 0, 0, 0.06);
}

.icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* ===============================
         BUTTONS
      =============================== */
.link {
  text-decoration: none;
}

.link-primary {
  color: var(--yellow-dark);
}

.btn {
  height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffd051, #fdaa38);
  color: #fff;
  /* color: #000; */
  justify-content: center;
}

i {
  color: #fdaa38;
}

.btn-ghost {
  background: transparent;
  /* color: #fdaa38; */
  color: #000;
  /* border: 2px solid #fdaa38; */
  border: 2px solid #000;
}

/* ===============================
         HERO
      =============================== */
.hero--container {
  padding-top: 0 !important;
}

.hero--container h1 {
  margin-top: 0;
}

#hero-section {
  display: grid;
  /* grid-template-columns: 1.15fr 0.85fr; */
  grid-template-columns: 1fr;
  column-gap: 48px;
  row-gap: 24px;
  align-items: center;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.hero-stat {
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat strong {
  font-size: 26px;
  font-weight: 800;
}

.hero-stat span {
  font-size: 13px;
  color: var(--muted);
}

/* ===============================
         GOAL FIRST
      =============================== */
#goal-first-card {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: max-content;
  margin: auto;
}

.goal-points {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.goal-point {
  display: flex;
  gap: 12px;
  /* align-items: flex-start; */
  align-items: center;
}

/* ===============================
         PRODUCTS
      =============================== */
#products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.product-bullets {
  margin-top: 12px;
  padding-left: 18px;
}

.product-bullets li {
  font-size: 14px;
  line-height: 22px;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ===============================
         WHY US
      =============================== */
#why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

/* ===============================
         PROCESS
      =============================== */
#process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.process-card p {
  margin-top: 8px;
}

/* ===============================
         CTA
      =============================== */
#cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

/* ===============================
         MODALS (ADDED ONLY)
      =============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  /* z-index: 1000; */
  /* z-index: 2001; */
  z-index: 9602;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--muted);
}

.modal-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.modal-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.modal-form .form-group p.error {
  position: absolute;
  z-index: 20;
  bottom: -18px;
  margin: 0;
  color: red;
  font-size: 12px;
}

p.error {
  position: absolute;
  z-index: 20;
  bottom: 0;
  margin: 0;
}

.modal-form input,
.modal-form textarea {
  height: 46px;
  /* height: 32px; */
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 0 14px;
  font-size: 14px;
  width: 100%;
  resize: none;
}
.modal-form textarea {
  height: 64px;
}

.modal-form .checkline {
  font-size: 14px;
}

.modal-form input[type="checkbox"] {
  width: unset;
  height: auto;
}

/* Modal Form */

/* Modal Form */

@media (max-width: 900px) {
  #hero-section,
  #products-grid,
  #why-grid,
  #process-grid,
  #cta-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 720px) {
  .page-container {
    padding: 18px 0;
  }
  .heading-xl {
    font-size: 32px;
  }
  .heading-lg {
    font-size: 26px;
  }
}
