/* ============================================================
   SGE Intelligence Platform — Main Stylesheet
   Design: dark premium, azul #0052CC, laranja #FF7A00
   ============================================================ */

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0f1a;
  color: #c5d4e8;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: #0052cc; text-decoration: none; }
a:hover { color: #ff7a00; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
  --blue:    #0052CC;
  --blue2:   #003A99;
  --orange:  #FF7A00;
  --dark:    #0a0f1a;
  --dark2:   #0d1628;
  --dark3:   #111927;
  --text:    #c5d4e8;
  --text2:   #8ea4c8;
  --text3:   #56697e;
  --border:  rgba(255,255,255,.08);
  --card-bg: rgba(255,255,255,.04);
  --radius:  12px;
  --max-w:   1160px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; color: #fff; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.2; color: #fff; }
h3 { font-size: 1.2rem; font-weight: 600; color: #fff; }
h4 { font-size: 1rem; font-weight: 600; color: #fff; }
p  { color: var(--text2); line-height: 1.7; }

.sge-gradient {
  background: linear-gradient(135deg, #60a5fa, #ff7a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.sge-wrap    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sge-section { padding: 80px 0; }
.sge-section-dark { background: var(--dark2); }
.sge-section-darker { background: var(--dark3); }

.sge-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.sge-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sge-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.sge-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }

@media(max-width:900px) {
  .sge-grid-4, .sge-grid-5 { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:700px) {
  .sge-grid-2, .sge-grid-3, .sge-grid-4, .sge-grid-5 { grid-template-columns: 1fr; }
  .sge-section { padding: 56px 0; }
}

/* ── CARD ───────────────────────────────────────────────────── */
.sge-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.sge-card:hover { border-color: rgba(0,82,204,.4); transform: translateY(-2px); }
.sge-card h3 { margin-bottom: 10px; }
.sge-card p  { font-size: .95rem; }

/* ── EYEBROW ────────────────────────────────────────────────── */
.sge-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.sge-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  border: 2px solid transparent;
}
.sge-btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.sge-btn-primary:hover { background: var(--blue2); border-color: var(--blue2); color: #fff; }
.sge-btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.sge-btn-orange:hover { background: #e56d00; color: #fff; }
.sge-btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.sge-btn-ghost:hover { border-color: var(--blue); color: #fff; }
.sge-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── HEADER ─────────────────────────────────────────────────── */
.sge-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,15,26,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.sge-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.sge-logo-link { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; line-height: 0; }
.sge-logo-img  { height: 40px; width: auto; display: block; object-fit: contain; }
@media(max-width:500px) { .sge-logo-img { height: 32px; } }
.sge-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sge-nav a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text2);
  transition: color .15s, background .15s;
}
.sge-nav a:hover, .sge-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.sge-nav-cta {
  margin-left: 8px;
  padding: 8px 16px;
  background: var(--blue);
  color: #fff !important;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
}
.sge-nav-cta:hover { background: var(--blue2) !important; }

/* Mobile menu */
.sge-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.sge-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.sge-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.sge-mobile-nav a {
  padding: 10px 12px;
  color: var(--text2);
  font-size: .95rem;
  border-radius: 6px;
}
.sge-mobile-nav a:hover { background: var(--card-bg); color: #fff; }
.sge-mobile-nav.open { display: flex; }

/* Lang switcher */
.sge-lang {
  position: relative;
}
.sge-lang-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--text2);
  font-size: .8rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sge-lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #141c2e;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 120px;
  overflow: hidden;
  z-index: 200;
}
.sge-lang-dropdown.open { display: block; }
.sge-lang-dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--text2);
  font-size: .875rem;
}
.sge-lang-dropdown a:hover { background: var(--card-bg); color: #fff; }

@media(max-width:860px) {
  .sge-nav { display: none; }
  .sge-burger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.sge-hero {
  padding: 100px 0 80px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0,82,204,.18), transparent);
}
.sge-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.sge-hero h1 { margin-bottom: 20px; }
.sge-hero .sge-lead {
  font-size: 1.15rem;
  color: var(--text2);
  max-width: 560px;
}
@media(max-width:900px) {
  .sge-hero-inner { grid-template-columns: 1fr; }
  .sge-hero { padding: 72px 0 56px; }
}

/* ICS demo panel */
.sge-ics-panel {
  background: linear-gradient(145deg, #111927, #0d1628);
  border: 1px solid rgba(0,82,204,.3);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 60px rgba(0,82,204,.12);
}
.sge-ics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sge-ics-label { font-size: .75rem; color: var(--text3); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.sge-ics-tag { font-size: .7rem; background: rgba(180,83,9,.2); color: #f59e0b; padding: 3px 8px; border-radius: 4px; font-weight: 600; }
.sge-ics-score { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.sge-ics-class { font-size: .8rem; color: var(--orange); font-weight: 600; margin-bottom: 20px; }
.sge-dim { margin-bottom: 10px; }
.sge-dim-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.sge-dim-name { font-size: .75rem; color: var(--text3); }
.sge-dim-val  { font-size: .75rem; color: var(--text2); font-weight: 600; }
.sge-dim-bar  { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.sge-dim-fill { height: 100%; border-radius: 2px; background: var(--blue); }
.sge-tend-note {
  margin-top: 16px;
  padding: 10px 12px;
  background: rgba(180,83,9,.12);
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  font-size: .75rem;
  color: #f59e0b;
}

/* ── SECTION HEADERS ────────────────────────────────────────── */
.sge-sh { margin-bottom: 48px; }
.sge-sh h2 { margin-bottom: 12px; }
.sge-sh p { max-width: 600px; }

/* ── FEATURE GRID ───────────────────────────────────────────── */
.sge-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,82,204,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: #60a5fa;
  font-weight: 700;
}

/* ── PRODUCT MARKS ──────────────────────────────────────────── */
.sge-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-weight: 900;
  font-size: .9rem;
  color: #fff;
  margin-bottom: 14px;
}
.m-dco  { background: linear-gradient(135deg,#4c1d95,#7c3aed); }
.m-dci  { background: linear-gradient(135deg,#7c2d12,#c2410c); }
.m-acr  { background: linear-gradient(135deg,#065f46,#059669); }
.m-madi { background: linear-gradient(135deg,#1e40af,#0052cc); }
.m-ics  { background: linear-gradient(135deg,#92400e,#b45309); }
.m-tend { background: linear-gradient(135deg,#1e3a5f,#0369a1); }

/* ── STATS / METRICS ────────────────────────────────────────── */
.sge-stat-big {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.sge-stat-label { font-size: .9rem; color: var(--text3); }

/* ── FLOW STRIP ─────────────────────────────────────────────── */
.sge-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.sge-flow-step {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text2);
}
.sge-flow-arrow { color: var(--blue); font-weight: 700; font-size: 1.1rem; }

/* ── FORMS ──────────────────────────────────────────────────── */
.sge-form { display: grid; gap: 12px; }
.sge-form input,
.sge-form select,
.sge-form textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s;
}
.sge-form input:focus,
.sge-form select:focus,
.sge-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}
.sge-form input::placeholder,
.sge-form textarea::placeholder { color: var(--text3); }
.sge-form select option { background: #141c2e; color: #fff; }
.sge-form textarea { min-height: 120px; resize: vertical; }
.sge-form-note { font-size: .8rem; color: var(--text3); text-align: center; }
.sge-form-success {
  text-align: center;
  padding: 32px 20px;
}
.sge-form-success h3 { color: #fff; margin-bottom: 8px; }
.sge-form-success .check {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 16px;
}

/* ── STATUS BADGE ───────────────────────────────────────────── */
.sge-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sge-badge-dev {
  background: rgba(255,122,0,.12);
  color: var(--orange);
  border: 1px solid rgba(255,122,0,.3);
}
.sge-badge-live {
  background: rgba(34,197,94,.12);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,.3);
}

/* ── HIGHLIGHT BOX ──────────────────────────────────────────── */
.sge-highlight {
  background: linear-gradient(135deg, rgba(0,82,204,.12), rgba(255,122,0,.08));
  border: 1px solid rgba(0,82,204,.25);
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  font-size: .95rem;
  color: var(--text);
  line-height: 1.7;
  margin-top: 24px;
}

/* ── TECH STRIP ─────────────────────────────────────────────── */
.sge-tech-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 32px 0;
}
.sge-tech-strip span {
  padding: 6px 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .8rem;
  color: var(--text3);
  font-weight: 500;
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.sge-cta-block {
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
}
.sge-cta-block h2 { margin-bottom: 16px; }
.sge-cta-block p  { margin-bottom: 28px; font-size: 1.05rem; }
.sge-cta-block .sge-ctas { justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.sge-footer {
  background: #060c18;
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.sge-footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.sge-footer-brand h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.sge-footer-brand .tag { color: var(--orange); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.sge-footer-brand p { font-size: .875rem; line-height: 1.7; margin-bottom: 12px; }
.sge-footer-brand a { font-size: .875rem; color: var(--text2); }
.sge-footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.sge-footer-col a  { display: block; font-size: .875rem; color: var(--text2); padding: 4px 0; }
.sge-footer-col a:hover { color: #fff; }
.sge-footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: var(--text3);
}
@media(max-width:700px) {
  .sge-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── MADI ASSESSMENT ────────────────────────────────────────── */
.sge-quiz {
  max-width: 720px;
  margin: 0 auto;
}
.sge-quiz-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}
.sge-quiz-progress span {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
  transition: background .3s;
}
.sge-quiz-progress span.done { background: var(--blue); }
.sge-quiz-progress span.active { background: var(--orange); }
.sge-quiz-step { display: none; }
.sge-quiz-step.active { display: block; }
.sge-quiz-dim {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.sge-quiz-q { font-size: 1.1rem; color: #fff; font-weight: 500; margin-bottom: 20px; line-height: 1.5; }
.sge-quiz-options { display: grid; gap: 10px; }
.sge-quiz-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text2);
  font-size: .95rem;
  transition: all .2s;
  text-align: left;
}
.sge-quiz-opt:hover  { border-color: var(--blue); color: #fff; background: rgba(0,82,204,.1); }
.sge-quiz-opt.chosen { border-color: var(--blue); background: rgba(0,82,204,.15); color: #fff; }
.sge-quiz-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all .2s;
}
.sge-quiz-opt.chosen .sge-quiz-dot { background: var(--blue); border-color: var(--blue); }
.sge-quiz-nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }

/* Quiz result */
.sge-result { display: none; }
.sge-result.active { display: block; }
.sge-score-circle {
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 900;
}
.sge-score-num { font-size: 2.5rem; color: #fff; line-height: 1; }
.sge-score-max { font-size: .75rem; color: rgba(255,255,255,.6); }

/* Radar chart area */
.sge-radar-wrap { max-width: 300px; margin: 0 auto; }

/* ── GATE ───────────────────────────────────────────────────── */
.sge-gate {
  max-width: 480px;
  margin: 0 auto;
}

/* ── ACR UPLOAD ─────────────────────────────────────────────── */
.sge-upload-zone {
  border: 2px dashed rgba(0,82,204,.4);
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.sge-upload-zone:hover { border-color: var(--blue); background: rgba(0,82,204,.06); }
.sge-upload-zone.drag { border-color: var(--orange); background: rgba(255,122,0,.06); }
.sge-upload-icon { font-size: 3rem; margin-bottom: 12px; color: var(--blue); }
.sge-acr-steps { display: grid; gap: 8px; margin: 24px 0; }
.sge-acr-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--card-bg);
  border-radius: 8px;
  font-size: .85rem;
  color: var(--text3);
}
.sge-acr-step.done  { color: #22c55e; }
.sge-acr-step.active { color: var(--text); }
.sge-step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.sge-acr-step.done  .sge-step-dot { background: #22c55e; }
.sge-acr-step.active .sge-step-dot { background: var(--orange); animation: pulse 1s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── EXPERIENCE PAGE ────────────────────────────────────────── */
.sge-timeline {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 40px;
}
.sge-tl-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 20px 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  position: relative;
}
.sge-tl-item:not(:first-child) { border-left: none; }
.sge-tl-year  { font-size: 1.1rem; font-weight: 800; color: var(--blue); margin-bottom: 6px; }
.sge-tl-label { font-size: .8rem; color: var(--text3); }
.sge-sector-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  margin-top: 32px;
}
.sge-sector-card {
  padding: 20px 16px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  text-align: center;
}
.sge-sector-card h4 { font-size: .9rem; color: #fff; margin-bottom: 6px; }
.sge-sector-card p  { font-size: .8rem; }
@media(max-width:700px) { .sge-sector-grid { grid-template-columns: repeat(2,1fr); } }

/* ── BLOG / INSIGHTS ────────────────────────────────────────── */
.sge-post-card { display: flex; flex-direction: column; }
.sge-post-card img { border-radius: 8px 8px 0 0; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.sge-post-card .body { padding: 20px 20px 24px; flex: 1; }
.sge-post-card .date { font-size: .75rem; color: var(--text3); margin-bottom: 8px; }
.sge-post-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.sge-post-card .more { font-size: .85rem; color: var(--blue); font-weight: 600; margin-top: 12px; }

/* ── CONTACT ────────────────────────────────────────────────── */
.sge-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media(max-width:700px) { .sge-contact-grid { grid-template-columns: 1fr; } }

/* ── INSIGHTS CARD FIX ────────────────────────────────────── */
.sge-post-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.sge-post-card:hover { border-color: rgba(0,82,204,.4); transform: translateY(-2px); }
.sge-post-card .sge-post-thumb {
  aspect-ratio: 16/9;
  max-height: 180px;
  overflow: hidden;
  background: rgba(0,82,204,.08);
  border-radius: var(--radius) var(--radius) 0 0;
}
.sge-post-card .sge-post-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s;
}
.sge-post-card:hover .sge-post-thumb img { transform: scale(1.03); }
.sge-post-card .sge-post-thumb .sge-post-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 2rem; color: rgba(0,82,204,.4);
}
.sge-post-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.sge-post-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sge-post-date { font-size: .75rem; color: var(--text3); }
.sge-post-cat  { font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--orange); background: rgba(255,122,0,.1);
  padding: 2px 8px; border-radius: 4px; }
.sge-post-card h3 { font-size: 1rem; color: #fff; margin-bottom: 8px; line-height: 1.4; flex: 1; }
.sge-post-excerpt { font-size: .85rem; color: var(--text2); margin-bottom: 14px; }
.sge-post-link { font-size: .85rem; color: var(--blue); font-weight: 600; }
.sge-post-link:hover { color: var(--orange); }

/* ── NEWSLETTER FORM ──────────────────────────────────────── */
.sge-newsletter {
  background: linear-gradient(135deg, rgba(0,82,204,.15), rgba(255,122,0,.08));
  border: 1px solid rgba(0,82,204,.2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 48px;
}
.sge-newsletter h3 { color: #fff; margin-bottom: 8px; font-size: 1.3rem; }
.sge-newsletter p  { margin-bottom: 24px; }
.sge-newsletter .sge-form {
  max-width: 480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
}
@media(max-width:500px) { .sge-newsletter .sge-form { grid-template-columns: 1fr; } }

/* ── MADI EMBLEM ─────────────────────────────────────────── */
.sge-madi-emblem {
  max-width: 320px; margin: 0 auto 36px;
  filter: drop-shadow(0 0 40px rgba(0,82,204,.5));
}
.sge-madi-emblem img { width: 100%; height: auto; border-radius: 16px; }
