/* ═══════════════════════════════════════
   SHARED UTILITIES & COMPONENTS
═══════════════════════════════════════ */

/* Layout wrapper */
.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Section base */
.section {
  padding: 92px 0;
  position: relative;
  overflow: hidden;
}

/* ── Chip / badge ── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(253, 160, 2, 0.14);
  border: 1px solid rgba(253, 160, 2, 0.38);
  border-radius: 40px;
  padding: 5px 14px;
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.chip-text {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.12em;
}

/* ── Eyebrow label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 40px;
  padding: 7px 16px;
  margin-bottom: 20px;
}
.eyebrow-icon  { font-size: 17px; }
.eyebrow-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* ── Section heading ── */
.sec-h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
}
.sec-h2 em { display: block; font-style: italic; }

/* ── Section desc ── */
.sec-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ── Centered section header ── */
.sec-header {
  text-align: center;
  margin-bottom: 56px;
}
.sec-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.1;
  margin: 14px 0;
}
.sec-header h2 em { color: var(--amber); font-style: italic; }
.sec-header p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 auto;
}

/* ── Feature list ── */
.feat-list  { margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.feat-item  { display: flex; align-items: center; gap: 11px; font-size: 14px; }
.feat-icon  { font-weight: 700; font-size: 11px; flex-shrink: 0; }

/* ── Buttons ── */
.btn-amber {
  display: inline-block;
  background: var(--amber);
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 6px 24px rgba(253, 160, 2, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(253, 160, 2, 0.55); }

.btn-ghost {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn-blue {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 40px;
  box-shadow: 0 5px 20px rgba(3, 11, 253, 0.28);
  transition: transform 0.22s, box-shadow 0.22s;
}
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 9px 26px rgba(3, 11, 253, 0.38); }

.btn-green {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 40px;
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.28);
  transition: transform 0.22s, box-shadow 0.22s;
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 9px 26px rgba(16, 185, 129, 0.38); }

.btn-amber-solid {
  display: inline-block;
  background: var(--amber);
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 40px;
  box-shadow: 0 5px 20px rgba(253, 160, 2, 0.38);
  transition: transform 0.22s;
}
.btn-amber-solid:hover { transform: translateY(-3px); }
