/* GEMA — Gerakan Medang Minim Sampah */
:root {
  --g-primary: #15803d;
  --g-primary-dark: #166534;
  --g-primary-light: #dcfce7;
  --g-accent: #f59e0b;
  --g-bg: #f0fdf4;
  --g-surface: #ffffff;
  --g-border: #bbf7d0;
  --g-text: #0f172a;
  --g-muted: #64748b;
  --g-err: #dc2626;
  --g-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --g-radius: 14px;
  --g-nav-h: 62px;
  --g-safe-b: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--g-font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--g-text);
  background: var(--g-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--g-primary-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }

.gema-wrap { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.gema-wrap-narrow { max-width: 520px; margin: 0 auto; padding: 0 16px; }

/* Header */
.gema-hdr {
  background: linear-gradient(135deg, #14532d 0%, var(--g-primary) 55%, #22c55e 100%);
  color: #fff;
  padding: 14px 16px;
  padding-top: max(14px, env(safe-area-inset-top));
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(21, 128, 61, 0.25);
}
.gema-hdr-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gema-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.gema-brand img { width: 36px; height: 36px; border-radius: 10px; background: #fff; padding: 3px; }
.gema-brand strong { display: block; font-size: 1.05rem; font-weight: 800; letter-spacing: -0.3px; }
.gema-brand span { display: block; font-size: 0.68rem; opacity: 0.9; font-weight: 500; }
.gema-hdr-nav { display: none; gap: 8px; align-items: center; }
.gema-hdr-nav a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.gema-hdr-nav a:hover { background: rgba(255,255,255,0.22); }
.gema-hdr-nav a.gema-btn-white { background: #fff; color: var(--g-primary-dark); }

@media (min-width: 768px) {
  .gema-hdr-nav { display: flex; }
  .gema-hdr-menu-btn { display: none !important; }
}

.gema-hdr-menu-btn {
  width: 42px; height: 42px; border: none; border-radius: 12px;
  background: rgba(255,255,255,0.15); color: #fff; font-size: 1.1rem; cursor: pointer;
}
.gema-mobile-menu {
  display: none;
  background: var(--g-primary-dark);
  padding: 8px 16px 16px;
}
.gema-mobile-menu.open { display: block; }
.gema-mobile-menu a {
  display: block;
  color: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 4px;
}
.gema-mobile-menu a:hover { background: rgba(255,255,255,0.1); }

/* Buttons */
.gema-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s;
  font-family: inherit;
  min-height: 44px;
}
.gema-btn:active { transform: scale(0.98); }
.gema-btn-primary { background: var(--g-primary); color: #fff; box-shadow: 0 4px 14px rgba(21,128,61,0.3); }
.gema-btn-primary:hover { background: var(--g-primary-dark); }
.gema-btn-outline { background: #fff; color: var(--g-primary-dark); border: 2px solid var(--g-border); }
.gema-btn-accent { background: var(--g-accent); color: #fff; }
.gema-btn-block { width: 100%; }
.gema-btn-sm { padding: 8px 14px; font-size: 0.8rem; min-height: 36px; }

/* Cards */
.gema-card {
  background: var(--g-surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--g-radius);
  padding: 18px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}
.gema-card-green { border-color: var(--g-border); background: linear-gradient(180deg, #fff 0%, #f0fdf4 100%); }

.gema-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .gema-stat-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.gema-stat {
  text-align: center;
  padding: 18px 12px;
  border-radius: var(--g-radius);
  background: var(--g-surface);
  border: 1px solid #e2e8f0;
}
.gema-stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--g-primary-dark); line-height: 1.1; }
.gema-stat-lbl { font-size: 0.72rem; color: var(--g-muted); font-weight: 600; margin-top: 4px; }

/* Hero landing */
.gema-hero {
  padding: 32px 0 40px;
  text-align: center;
}
.gema-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--g-primary-light);
  color: var(--g-primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.gema-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--g-primary-dark);
}
.gema-hero p { color: var(--g-muted); max-width: 560px; margin: 0 auto 24px; font-size: 1rem; }
.gema-hero-cta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* Sections */
.gema-section { padding: 40px 0; }
.gema-section-title { font-size: 1.25rem; font-weight: 800; margin: 0 0 6px; color: var(--g-primary-dark); }
.gema-section-sub { color: var(--g-muted); margin: 0 0 20px; font-size: 0.9rem; }

.gema-unit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .gema-unit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gema-unit-grid { grid-template-columns: repeat(3, 1fr); } }

.gema-unit-card { padding: 16px; }
.gema-badge-rw {
  display: inline-block;
  background: var(--g-primary-light);
  color: var(--g-primary-dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.gema-unit-card h3 { margin: 0 0 6px; font-size: 1rem; }
.gema-unit-meta { font-size: 0.8rem; color: var(--g-muted); }
.gema-unit-stat { margin-top: 10px; font-size: 0.82rem; font-weight: 700; color: var(--g-primary); }

.gema-steps { display: grid; gap: 16px; }
@media (min-width: 768px) { .gema-steps { grid-template-columns: repeat(3, 1fr); } }
.gema-step { text-align: center; padding: 20px; }
.gema-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--g-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; margin: 0 auto 12px;
}
.gema-edu-grid { display: grid; gap: 14px; }
@media (min-width: 768px) { .gema-edu-grid { grid-template-columns: repeat(3, 1fr); } }
.gema-edu-card i { font-size: 1.4rem; color: var(--g-primary); margin-bottom: 10px; }
.gema-edu-card h3 { margin: 0 0 6px; font-size: 0.95rem; }
.gema-edu-card p { margin: 0; font-size: 0.82rem; color: var(--g-muted); }

/* Forms */
.gema-field { margin-bottom: 14px; }
.gema-field label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; color: var(--g-text); }
.gema-field input, .gema-field select, .gema-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  min-height: 44px;
}
.gema-field input:focus, .gema-field select:focus, .gema-field textarea:focus {
  outline: none;
  border-color: var(--g-primary);
  box-shadow: 0 0 0 3px rgba(21,128,61,0.15);
}
.gema-alert {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.gema-alert-err { background: #fef2f2; color: var(--g-err); border: 1px solid #fecaca; }
.gema-alert-ok { background: #f0fdf4; color: var(--g-primary-dark); border: 1px solid var(--g-border); }

/* Portal layout */
.gema-portal-body { padding-bottom: calc(var(--g-nav-h) + var(--g-safe-b) + 16px); }
.gema-main { padding: 16px; }
@media (min-width: 768px) {
  .gema-portal-desktop { display: flex; min-height: calc(100vh - 60px); }
  .gema-sidebar {
    width: 240px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    padding: 20px 12px;
    flex-shrink: 0;
  }
  .gema-sidebar a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--g-muted);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 4px;
  }
  .gema-sidebar a.active, .gema-sidebar a:hover { background: var(--g-primary-light); color: var(--g-primary-dark); }
  .gema-portal-content { flex: 1; padding: 24px; max-width: 900px; }
  .gema-mobile-nav { display: none !important; }
}
@media (max-width: 767px) {
  .gema-sidebar { display: none; }
}

.gema-mobile-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: calc(var(--g-nav-h) + var(--g-safe-b));
  padding-bottom: var(--g-safe-b);
  background: #fff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  z-index: 40;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}
.gema-mobile-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--g-muted);
  padding: 8px 4px;
}
.gema-mobile-nav a i { font-size: 1.15rem; }
.gema-mobile-nav a.active { color: var(--g-primary); }

.gema-saldo-card {
  background: linear-gradient(135deg, #14532d, var(--g-primary), #22c55e);
  color: #fff;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
}
.gema-saldo-card small { opacity: 0.85; font-size: 0.75rem; font-weight: 600; }
.gema-saldo-card .amount { font-size: 1.8rem; font-weight: 800; margin: 6px 0; }
.gema-saldo-card .unit { font-size: 0.82rem; opacity: 0.9; }

.gema-kartu-qr {
  text-align: center;
  padding: 24px;
}
.gema-kartu-qr canvas, .gema-kartu-qr img { max-width: 200px; margin: 12px auto; border-radius: 12px; }
.gema-kartu-no { font-family: monospace; font-size: 1.1rem; font-weight: 800; letter-spacing: 1px; }

.gema-list-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
}
.gema-list-item:last-child { border-bottom: none; }
.gema-list-item strong { display: block; font-size: 0.9rem; }
.gema-list-item span { font-size: 0.78rem; color: var(--g-muted); }
.gema-list-item .val { font-weight: 800; color: var(--g-primary-dark); white-space: nowrap; }

.gema-empty { text-align: center; padding: 40px 20px; color: var(--g-muted); }
.gema-empty i { font-size: 2.5rem; opacity: 0.3; display: block; margin-bottom: 12px; }

.gema-table-wrap { overflow-x: auto; }
.gema-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.gema-table th, .gema-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #e2e8f0; }
.gema-table th { background: #f8fafc; font-weight: 700; color: var(--g-muted); font-size: 0.75rem; text-transform: uppercase; }

.gema-footer {
  background: #14532d;
  color: rgba(255,255,255,0.85);
  padding: 32px 16px;
  margin-top: 40px;
  font-size: 0.85rem;
}
.gema-footer-inner { max-width: 1120px; margin: 0 auto; text-align: center; }
.gema-footer a { color: #bbf7d0; }

.gema-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: linear-gradient(160deg, #ecfdf5 0%, #f0fdf4 40%, #fff 100%);
}
.gema-login-box { width: 100%; max-width: 420px; }
.gema-login-box .gema-card { padding: 28px 24px; }

.gema-kategori-row {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 10px;
  align-items: end;
  margin-bottom: 10px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .gema-setoran-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
}

.gema-struk { max-width: 320px; margin: 0 auto; font-size: 0.82rem; }
.gema-struk h2 { text-align: center; font-size: 1rem; margin: 0 0 8px; }
.gema-struk hr { border: none; border-top: 1px dashed #ccc; margin: 8px 0; }

.g-desktop-only { display: none; }
.g-mobile-only { display: block; }
@media (min-width: 768px) {
  .g-desktop-only { display: block; }
  .g-mobile-only { display: none; }
}

/* ═══ Landing page profesional ═══ */
.gema-landing { background: #f8fafc; }

.gema-landing .gema-hdr-landing {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}
.gema-landing .gema-hdr-landing.is-scrolled {
  background: rgba(20, 83, 45, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.gema-landing .gema-mobile-menu {
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 49;
  background: rgba(20, 83, 45, 0.97);
  backdrop-filter: blur(10px);
}

.gema-hero-pro {
  position: relative;
  min-height: 92vh;
  min-height: 92dvh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  background: #14532d center/cover no-repeat;
  background-image: var(--gema-hero-bg);
  color: #fff;
}
.gema-hero-pro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6, 40, 20, 0.92) 0%, rgba(6, 40, 20, 0.72) 45%, rgba(21, 128, 61, 0.45) 100%);
}
.gema-hero-pro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 960px) {
  .gema-hero-pro-inner { grid-template-columns: 1.15fr 0.85fr; gap: 48px; }
}
.gema-hero-pro-copy { text-align: left; }
.gema-hero-badge-glass {
  background: rgba(255,255,255,0.14);
  color: #ecfdf5;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.gema-hero-pro h1 {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.gema-text-gradient {
  background: linear-gradient(90deg, #86efac, #fde68a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gema-hero-lead {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
  margin: 0 0 28px;
}
.gema-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; }
.gema-btn-hero-primary {
  background: #fff;
  color: #14532d;
  padding: 14px 22px;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.gema-btn-hero-primary:hover { background: #ecfdf5; transform: translateY(-1px); }
.gema-btn-hero-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  padding: 14px 22px;
}
.gema-btn-hero-ghost:hover { background: rgba(255,255,255,0.2); }
.gema-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.gema-hero-trust i { color: #86efac; margin-right: 4px; }

.gema-hero-pro-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 24px;
  color: var(--g-text);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.6);
}
.gema-hero-pro-card-head strong { display: block; font-size: 1.05rem; color: var(--g-primary-dark); }
.gema-hero-pro-card-head span { font-size: 0.82rem; color: var(--g-muted); }
.gema-hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.gema-hero-mini-stats div {
  text-align: center;
  padding: 12px 8px;
  background: #f0fdf4;
  border-radius: 12px;
  border: 1px solid var(--g-border);
}
.gema-hero-mini-stats em {
  display: block;
  font-style: normal;
  font-size: 1rem;
  font-weight: 800;
  color: var(--g-primary-dark);
  line-height: 1.2;
}
.gema-hero-mini-stats small { font-size: 0.65rem; color: var(--g-muted); font-weight: 600; }

.gema-stats-float {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding-bottom: 8px;
}
.gema-stats-float-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
}
@media (min-width: 640px) { .gema-stats-float-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gema-stats-float-grid { grid-template-columns: repeat(4, 1fr); padding: 20px; } }

.gema-stat-pro {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 10px;
}
.gema-stat-pro-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--g-primary-light);
  color: var(--g-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.gema-stat-pro .gema-stat-num { font-size: 1.25rem; text-align: left; }
.gema-stat-pro .gema-stat-lbl { text-align: left; }

.gema-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--g-primary);
  margin: 0 0 8px;
}
.gema-section-title-lg { font-size: clamp(1.35rem, 3vw, 1.85rem); line-height: 1.2; }
.gema-section-sub-left { text-align: left; max-width: none; margin-bottom: 24px; }
.gema-section-head-center { text-align: center; max-width: 640px; margin: 0 auto 32px; }
.gema-section-head-center .gema-section-sub { margin-bottom: 0; }
.gema-section-alt { background: #fff; }
.gema-section-title em { font-style: normal; color: var(--g-primary); }

.gema-split {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) { .gema-split { grid-template-columns: 1fr 1fr; gap: 48px; } }
.gema-split-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(21,128,61,0.15); }
.gema-split-media img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.gema-split-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--g-primary-dark);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.gema-split-badge i { color: var(--g-primary); margin-right: 6px; }

.gema-benefit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.gema-benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.gema-benefit-list li > i {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--g-primary-light);
  color: var(--g-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gema-benefit-list strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.gema-benefit-list span { font-size: 0.82rem; color: var(--g-muted); line-height: 1.5; }

.gema-feature-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .gema-feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gema-feature-grid { grid-template-columns: repeat(4, 1fr); } }
.gema-feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 18px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.gema-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(21,128,61,0.1);
  border-color: var(--g-border);
}
.gema-feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #15803d, #22c55e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.gema-feature-card h3 { margin: 0 0 8px; font-size: 0.95rem; color: var(--g-primary-dark); }
.gema-feature-card p { margin: 0; font-size: 0.82rem; color: var(--g-muted); line-height: 1.55; }

.gema-unit-card-pro {
  transition: transform 0.15s, box-shadow 0.15s;
  border-color: #e2e8f0;
}
.gema-unit-card-pro:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21,128,61,0.1);
}
.gema-unit-meta p { margin: 0 0 6px; font-size: 0.82rem; color: var(--g-muted); }
.gema-unit-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--g-primary);
}
.gema-unit-empty { grid-column: 1 / -1; }

.gema-steps-pro {
  display: grid;
  gap: 20px;
}
@media (min-width: 768px) { .gema-steps-pro { grid-template-columns: repeat(3, 1fr); } }
.gema-step-pro {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}
.gema-step-pro-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--g-primary-light);
  line-height: 1;
  margin-bottom: 12px;
  -webkit-text-stroke: 1px var(--g-primary);
  color: transparent;
}
.gema-step-pro h3 { margin: 0 0 8px; font-size: 1rem; color: var(--g-primary-dark); }
.gema-step-pro p { margin: 0; font-size: 0.85rem; color: var(--g-muted); line-height: 1.55; }

.gema-edu-card-pro { height: 100%; }
.gema-edu-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--g-primary-light);
  color: var(--g-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.gema-edu-card-pro h3 { margin: 0 0 8px; font-size: 0.95rem; }
.gema-edu-card-pro p { margin: 0; font-size: 0.82rem; color: var(--g-muted); }

.gema-cta-pro {
  position: relative;
  padding: 72px 0;
  background: #14532d center/cover no-repeat;
  background-image: var(--gema-cta-bg);
  color: #fff;
  text-align: center;
  margin-top: 0;
}
.gema-cta-pro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,40,20,0.88), rgba(21,128,61,0.82));
}
.gema-cta-pro-inner { position: relative; z-index: 1; max-width: 640px; }
.gema-cta-pro h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.2;
}
.gema-cta-pro p { color: rgba(255,255,255,0.9); margin: 0 0 24px; font-size: 1rem; }
.gema-cta-pro .gema-hero-cta { justify-content: center; }
.gema-cta-contact { margin-top: 20px !important; font-size: 0.88rem !important; opacity: 0.9; }

.gema-landing .gema-footer { margin-top: 0; }
