*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #00b14f;
  --green-dark: #007f38;
  --green-light: #e6f9ee;
  --green-mid: #4cce80;
  --teal: #1a3a4a;
  --navy: #1e2d3d;
  --white: #fff;
  --gray-100: #eef1f4;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-900: #0f172a;
  --ff: 'Sora', sans-serif;
  --fb: 'Inter', sans-serif;
}

body { font-family: var(--fb); color: var(--gray-900); background: #fff; overflow-x: hidden; }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--gray-200); height: 56px; display: flex; align-items: center; padding: 0 24px; }
.header-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--ff); font-weight: 800; font-size: 13px; color: #fff; }
.logo-text { font-family: var(--ff); font-weight: 700; font-size: 17px; color: var(--gray-900); }
.search-bar { display: flex; align-items: center; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 24px; padding: 6px 14px; gap: 8px; width: 240px; transition: border-color .2s; }
.search-bar:focus-within { border-color: var(--green); background: #fff; }
.search-bar input { border: none; background: transparent; outline: none; font-size: 13px; color: var(--gray-600); width: 100%; font-family: var(--fb); }
.search-bar input::placeholder { color: var(--gray-400); }

/* AD SPACE */

.ad-space { height: 260px; background: #fff; border-bottom: 1px solid var(--gray-200); }

/* CAROUSEL */
/* CAROUSEL */
.categories-section {
  background: #eef1f4;
  padding: 40px 0;
}

/* TEXTO */
.categories-header {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 20px;
}

.categories-title {
  font-family: var(--ff);
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

.categories-subtitle {
  font-size: 15px;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* WRAPPER */
.carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* VIEWPORT */
.carousel-viewport {
  overflow: hidden;
  flex: 1;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  will-change: transform;
}

/* CARD */
.cat-card {
  flex: 0 0 150px;
  width: 150px;
  min-height: 130px;
  background: #f8f8f8;
  border-radius: 16px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    border-color .2s,
    box-shadow .2s,
    transform .2s;
}

.cat-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  transform: translateY(-3px);
}

/* ÍCONE */
.cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e5f5eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* TEXTO CARD */
.cat-label {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 12px;
  color: #31475b;
  text-align: center;
  line-height: 1.4;
}

/* BOTÕES */
.carousel-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-600);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: .2s;
}

.carousel-btn:hover {
  background: var(--green);
  color: #fff;
}
.carousel-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--gray-200); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, border-color .2s, color .2s; color: var(--gray-600); }
.carousel-btn:hover { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.carousel-viewport { overflow: hidden; flex: 1; }
.carousel-track { display: flex; gap: 16px; flex-wrap: nowrap; will-change: transform; }
.cat-card { flex: 0 0 200px; width: 200px; background: #fff; border-radius: 16px; padding: 22px 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; cursor: pointer; border: 2px solid transparent; transition: border-color .2s, box-shadow .2s, transform .2s; }
.cat-card:hover { border-color: var(--green); box-shadow: 0 4px 20px rgba(0,177,79,.12); transform: translateY(-2px); }
.cat-card.active { border-color: var(--green); background: var(--green-light); }
.cat-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.cat-card.active .cat-icon { background: rgba(0,177,79,.18); }
.cat-label { font-family: var(--ff); font-weight: 700; font-size: 13px; color: var(--teal); text-align: center; line-height: 1.3; }
.cat-card.cat-more .cat-icon { background: var(--gray-200); }

/* SIMULATOR PANEL */
.sim-panel { background: var(--gray-100); overflow: visible; max-height: 0; transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .35s; opacity: 0; }
.sim-panel.open { max-height: 9999px; opacity: 1; }
.sim-panel-inner { max-width: 1200px; margin: 0 auto; padding: 32px 24px 40px; display: flex; justify-content: center; }

/* THE CARD */
.sim-card { background: linear-gradient(140deg,#eef2ff 0%,#e8f5ee 55%,#f0f4ff 100%); border-radius: 24px; box-shadow: 0 2px 24px rgba(0,0,0,.07),0 1px 4px rgba(0,0,0,.04); padding: 36px 36px 30px; width: 100%; max-width: 860px; }
.sc-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 30px; }
.sc-title-row { display: flex; align-items: center; gap: 14px; }
.sc-icon-box { width: 52px; height: 52px; border-radius: 14px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sc-title { font-family: var(--ff); font-weight: 800; font-size: 20px; color: var(--gray-900); }
.sc-tag { font-size: 12px; font-weight: 600; color: var(--gray-400); white-space: nowrap; margin-top: 3px; }
.sc-close { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gray-200); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--gray-400); flex-shrink: 0; margin-left: 12px; transition: background .2s, border-color .2s, color .2s; }
.sc-close:hover { background: #fee2e2; border-color: #ef4444; color: #ef4444; }

/* FIELDS */
.sc-body { display: flex; flex-direction: column; gap: 20px; }
.sc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sc-field { display: flex; flex-direction: column; gap: 5px; }
.sc-field label { font-size: 13.5px; font-weight: 500; color: var(--gray-600); }

/* input with R$ prefix */
.sc-input-wrap { display: flex; align-items: center; background: #fff; border: 1.5px solid #d1dae8; border-radius: 10px; overflow: hidden; transition: border-color .2s; }
.sc-input-wrap:focus-within { border-color: var(--green); }
.sc-prefix { padding: 0 12px; font-size: 13px; font-weight: 600; color: var(--gray-400); background: #f4f7fb; border-right: 1.5px solid #d1dae8; height: 50px; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.sc-input-wrap input { flex: 1; border: none; background: transparent; padding: 0 12px; font-size: 16px; font-family: var(--fb); color: var(--gray-900); outline: none; height: 50px; min-width: 0; }
.sc-clear { padding: 0 10px; color: var(--gray-400); cursor: pointer; font-size: 18px; background: none; border: none; transition: color .2s; line-height: 1; flex-shrink: 0; }
.sc-clear:hover { color: var(--gray-900); }

/* suffix (%) */
.sc-suffix { padding: 0 12px; font-size: 13px; font-weight: 600; color: var(--gray-400); background: #f4f7fb; border-left: 1.5px solid #d1dae8; height: 50px; display: flex; align-items: center; white-space: nowrap; flex-shrink: 0; }

.cat-icon i { font-size: 22px; color: var(--teal); }
.cat-card.active .cat-icon i { color: var(--green-dark); }
.sc-icon-box i { font-size: 22px; color: #fff; }
.sc-brand-icon i { font-size: 15px; color: #fff; }

/* date select */
.sc-date-sel { height: 38px; background: #fff; border: 1.5px solid #d1dae8; border-radius: 8px; padding: 0 6px; font-size: 13px; font-family: var(--fb); color: var(--gray-900); outline: none; cursor: pointer; transition: border-color .2s; width: 52px; text-align: center; }
.sc-date-sel:focus { border-color: var(--green); }

/* rate pills */
.rate-pills { display: flex; gap: 5px; flex-wrap: nowrap; margin-top: 5px; width: 100%; }
.rate-pill { flex: 1; padding: 3px 0; background: #fff; border: 1.5px solid var(--gray-200); border-radius: 6px; font-size: 11px; font-weight: 600; font-family: var(--ff); color: var(--gray-600); cursor: pointer; text-align: center; transition: background .15s, border-color .15s, color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rate-pill:hover { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.rate-pill.active { background: var(--green); border-color: var(--green); color: #fff; }

/* plain input */
.sc-plain { height: 50px; background: #fff; border: 1.5px solid #d1dae8; border-radius: 10px; padding: 0 14px; font-size: 16px; font-family: var(--fb); color: var(--gray-900); outline: none; transition: border-color .2s; width: 100%; }
.sc-plain:focus { border-color: var(--green); }

/* select */
.sc-select-wrap { display: flex; align-items: center; background: #fff; border: 1.5px solid #d1dae8; border-radius: 10px; overflow: hidden; transition: border-color .2s; }
.sc-select-wrap:focus-within { border-color: var(--green); }
.sc-select-wrap select { flex: 1; border: none; background: transparent; padding: 0 14px; font-size: 14.5px; font-family: var(--fb); color: var(--gray-900); outline: none; height: 50px; cursor: pointer; }

/* STEPPER */
.sc-stepper { display: flex; align-items: center; background: #fff; border: 1.5px solid #d1dae8; border-radius: 10px; overflow: hidden; height: 50px; }
.sc-step-btn { width: 50px; height: 50px; background: var(--navy); border: none; color: #fff; font-size: 24px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; user-select: none; line-height: 1; }
.sc-step-btn:hover { background: var(--green-dark); }
.sc-step-val { flex: 1; text-align: center; font-family: var(--ff); font-weight: 700; font-size: 17px; color: var(--gray-900); border: none; background: transparent; outline: none; }

/* CARD FOOTER ROW */
.sc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; flex-wrap: wrap; gap: 12px; }
.sc-hint { font-size: 13px; color: var(--green); font-weight: 600; }
.sc-brand { display: flex; align-items: center; gap: 10px; }
.sc-brand-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.sc-brand-text { font-family: var(--ff); font-weight: 700; font-size: 14px; color: var(--gray-900); }
.sc-brand-sub { font-size: 12px; color: var(--gray-400); }
.sc-calc-btn { padding: 13px 36px; background: #eef1f4; color: var(--gray-900); border: 1.5px solid var(--gray-200); border-radius: 10px; font-family: var(--ff); font-weight: 700; font-size: 15px; cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .15s; white-space: nowrap; }
.sc-calc-btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-1px); }

/* RESULT STRIP */
.sc-result { display: none; flex-direction: column; background: linear-gradient(135deg,var(--navy) 0%,#0d2233 100%); border-radius: 14px; padding: 24px 26px; margin-top: 18px; }
.sc-result.visible { display: flex; }
.sc-result-label { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.sc-result-main { font-family: var(--ff); font-weight: 800; font-size: 34px; color: var(--green-mid); margin-bottom: 16px; }
.sc-result-rows { display: flex; flex-direction: column; }
.sc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.sc-result-row:last-child { border-bottom: none; }
.sc-result-row span:first-child { font-size: 13px; color: rgba(255,255,255,.55); }
.sc-result-row span:last-child { font-size: 14px; font-weight: 600; color: #fff; }
.sc-disclaimer { font-size: 11px; color: rgba(255,255,255,.28); line-height: 1.5; margin-top: 12px; }

.res-vermais-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 9px 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: rgba(255,255,255,.7);
  font-family: var(--ff);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
  letter-spacing: .5px;
}
.res-vermais-btn:hover { background: rgba(255,255,255,.15); color: #fff; }

/* investment taxas grid */
.inv-taxas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.inv-taxa-card {
  background: #f8fafc;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .2s;
}
.inv-taxa-card:hover { border-color: var(--green); }
.inv-taxa-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}
.inv-taxa-val {
  font-family: var(--ff);
  font-weight: 800;
  font-size: 20px;
  color: var(--gray-900);
}
.inv-taxa-loading {
  font-size: 18px;
  color: var(--gray-400);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.inv-params-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.inv-param-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
}

/* investment result table */
.inv-result-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.inv-result-table th {
  font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .8px;
  padding: 0 0 10px; text-align: left;
}
.inv-result-table th:not(:first-child) { text-align: right; }
.inv-result-table td {
  font-size: 13px; color: rgba(255,255,255,.8);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: middle;
}
.inv-result-table td:not(:first-child) { text-align: right; font-weight: 600; }
.inv-result-table tr:last-child td { border-bottom: none; }
.inv-result-table tr.best td { color: #fff; }
.inv-result-table tr.best td:first-child { color: var(--green-mid); font-weight: 700; }
.inv-result-table tr.best td:not(:first-child) { color: var(--green-mid); }
.inv-bar { height: 6px; border-radius: 3px; background: var(--green); display: inline-block; vertical-align: middle; margin-left: 6px; }

/* fitness */
.fit-macro-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 4px; }
.fit-macro-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 12px; text-align: center;
}
.fit-macro-icon { font-size: 20px; margin-bottom: 4px; }
.fit-macro-val { font-family: var(--ff); font-weight: 800; font-size: 20px; color: var(--green-mid); }
.fit-macro-unit { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; font-weight: 600; }
.fit-macro-label { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .5px; margin-top: 3px; }
.fit-section { margin-top: 16px; }
.fit-section-title { font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.fit-tip-list { display: flex; flex-direction: column; gap: 7px; }
.fit-tip { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: rgba(255,255,255,.75); line-height: 1.5; }
.fit-tip-icon { color: var(--green-mid); flex-shrink: 0; margin-top: 1px; }
.fit-agua-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fit-agua-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 12px 14px; }
.fit-agua-val { font-family: var(--ff); font-weight: 800; font-size: 18px; color: #60a5fa; }
.fit-agua-label { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 2px; text-transform: uppercase; letter-spacing: .5px; }

/* area conversion table */
.area-conv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.area-conv-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
}
.area-conv-val {
  font-family: var(--ff);
  font-weight: 800;
  font-size: 18px;
  color: var(--green-mid);
  margin-bottom: 2px;
}
.area-conv-label {
  font-size: 10.5px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .6px;
  font-weight: 600;
}
.area-uso-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(0,177,79,.2);
  border: 1px solid rgba(0,177,79,.4);
  color: var(--green-mid);
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}

/* loteria balls */
.lot-balls { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.lot-ball {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff); font-weight: 800; font-size: 13px;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: transform .2s;
}
.lot-ball:hover { transform: scale(1.1); }
.lot-section { margin-bottom: 14px; }
.lot-section-label {
  font-size: 10.5px; font-weight: 700; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.lot-freq-bar {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.lot-freq-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff); font-weight: 800; font-size: 12px; color: #fff;
  flex-shrink: 0;
}
.lot-freq-track {
  flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden;
}
.lot-freq-fill { height: 100%; border-radius: 3px; transition: width .4s ease; }
.lot-freq-count { font-size: 11px; color: rgba(255,255,255,.5); flex-shrink: 0; width: 28px; text-align: right; }

@keyframes spin { to { transform: rotate(360deg); } }

/* consorcio code */
.cons-code {
  background: var(--navy);
  border: 2px solid var(--green);
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}
.cons-code-val {
  font-family: var(--ff);
  font-weight: 800;
  font-size: 28px;
  color: var(--green-mid);
  letter-spacing: 3px;
}
.cons-code-copy {
  padding: 8px 16px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.cons-code-copy:hover { background: var(--green-dark); }
.cons-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
}
.cons-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 12.5px;
}
.cons-row:last-child { border-bottom: none; }
.cons-row-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff);
  font-weight: 700;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  flex-shrink: 0;
}
.cons-row.mine .cons-row-num {
  background: var(--green);
  color: #fff;
}
.cons-row-date { color: rgba(255,255,255,.65); flex: 1; }
.cons-row.mine .cons-row-date { color: var(--green-mid); font-weight: 700; }
.cons-row-code { font-family: var(--ff); font-size: 11px; color: rgba(255,255,255,.35); }
.cons-row.mine .cons-row-code { color: var(--green-mid); font-weight: 600; }

/* STATS */
.stats-banner { background: var(--green); padding: 28px 24px; margin-top: 20px; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--ff); font-weight: 800; font-size: 26px; color: #fff; display: block; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.85); margin-top: 2px; }

/* EDITOR PICKS */
.editor-section { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.section-title { font-family: var(--ff); font-weight: 800; font-size: 28px; color: var(--gray-900); text-align: center; }
.section-subtitle { text-align: center; color: var(--gray-600); font-size: 15px; margin-top: 10px; line-height: 1.6; max-width: 560px; margin-left: auto; margin-right: auto; }
.cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
.article-card { background: var(--gray-100); border-radius: 14px; padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .2s,transform .2s; cursor: pointer; }
.article-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.article-tag { font-family: var(--ff); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--green); }
.article-tag.blue { color: #2563eb; } .article-tag.purple { color: #7c3aed; } .article-tag.orange { color: #d97706; }
.article-title { font-family: var(--ff); font-weight: 700; font-size: 14px; color: var(--gray-900); line-height: 1.4; }
.article-excerpt { font-size: 12.5px; color: var(--gray-600); line-height: 1.6; }

/* PURPOSE */
.purpose-section { padding: 72px 24px; }
.purpose-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.purpose-label { font-family: var(--ff); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.purpose-heading { font-family: var(--ff); font-weight: 800; font-size: 42px; color: var(--gray-900); line-height: 1.1; margin-bottom: 24px; }
.purpose-body { font-size: 14.5px; color: var(--gray-600); line-height: 1.75; }
.purpose-image-wrap { position: relative; border-radius: 16px; overflow: hidden; height: 380px; }
.purpose-img-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#c8edd8,#a8d8be); }
.purpose-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0,177,79,.92); padding: 24px; }
.purpose-overlay p { font-family: var(--ff); font-weight: 700; font-size: 17px; color: #fff; line-height: 1.4; }

/* FAQ */
.faq-section { background: linear-gradient(160deg,#4cce80 0%,var(--green) 60%,var(--green-dark) 100%); padding: 64px 24px; }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-title { font-family: var(--ff); font-weight: 800; font-size: 28px; color: #fff; text-align: center; margin-bottom: 32px; }
.faq-item { background: rgba(255,255,255,.18); border-radius: 12px; margin-bottom: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--ff); font-weight: 700; font-size: 15px; color: #fff; text-align: left; gap: 12px; }
.faq-chevron { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease,padding .3s; padding: 0 24px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: rgba(255,255,255,.9); line-height: 1.7; }

/* FOOTER */
footer { background: #0d2233; color: #fff; padding: 48px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand-name { font-family: var(--ff); font-weight: 700; font-size: 20px; color: #fff; }
.footer-brand-name span { color: var(--green-mid); }
.footer-pipe { width: 1px; height: 20px; background: rgba(255,255,255,.3); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.6); }
.social-links { display: flex; gap: 10px; }
.social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); cursor: pointer; transition: background .2s,color .2s; text-decoration: none; }
.social-link:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-disclaimer { font-size: 11.5px; color: rgba(255,255,255,.5); line-height: 1.7; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-disclaimer strong { color: rgba(255,255,255,.75); }
.footer-disclaimer a { color: var(--green-mid); text-decoration: underline; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; padding-top: 32px; }
.footer-col-title { font-family: var(--ff); font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 16px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; list-style: none; }
.footer-links li a, .footer-links-single li a { font-size: 12.5px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links li a:hover, .footer-links-single li a:hover { color: var(--green-mid); }
.footer-links-single { list-style: none; display: flex; flex-direction: column; gap: 6px; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

@media(max-width:900px){
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .purpose-inner{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr 1fr}
  .sc-row{grid-template-columns:1fr}
}
@media(max-width:600px){
  .cards-grid{grid-template-columns:1fr}
  .purpose-heading{font-size:30px}
  .footer-cols{grid-template-columns:1fr}
  .search-bar{width:160px}
}