:root {
  --bg: #0D0F1A;
  --bg-card: #13162B;
  --bg-panel: #1A1D35;
  --fg: #EDE9E3;
  --fg-muted: #888499;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.15);
  --gia: #4ECDC4;
  --gia-dim: rgba(78, 205, 196, 0.15);
  --border: rgba(255,255,255,0.07);
  --green: #6BCB77;
  --red: #FF6B6B;
  --yellow: #FFD93D;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 80px 80px;
  min-height: 90vh;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-muted);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}

.cta-primary {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--accent);
  color: #0D0F1A;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-primary:hover { opacity: 0.85; }

.cta-secondary {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-secondary:hover { color: var(--fg); }

/* OPS PANEL */
.ops-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.panel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.panel-dot.red { background: var(--red); }
.panel-dot.yellow { background: var(--yellow); }
.panel-dot.green { background: var(--green); }

.panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  margin-left: 8px;
}

.panel-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.metric-label {
  font-size: 13px;
  color: var(--fg-muted);
}

.metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.metric-val.accent {
  color: var(--accent);
}

.pipeline-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gia);
  margin-bottom: 8px;
}

.pipeline-bar {
  height: 6px;
  background: var(--bg-card);
  border-radius: 100px;
  overflow: hidden;
}

.pipeline-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gia), var(--accent));
  border-radius: 100px;
}

.pipeline-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.act-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* DIVISIONS */
.divisions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.division {
  padding: 64px 60px;
  background: var(--bg);
}

.division-left { border-right: 1px solid var(--border); }

.division-badge {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 20px;
}

.division-badge.gia {
  background: var(--gia-dim);
  color: var(--gia);
}

.division h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.division p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.division-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.division-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}

.division-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

.division-right .division-features li::before {
  color: var(--gia);
}

/* STATS */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 72px 80px;
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.manifesto p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* CLOSING */
.closing {
  padding: 100px 80px;
  background: var(--bg-card);
  text-align: center;
}

.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.closing-cta {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--accent);
  color: #0D0F1A;
  text-decoration: none;
  transition: opacity 0.2s;
}

.closing-cta:hover { opacity: 0.85; }

/* FOOTER */
footer {
  padding: 40px 80px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--fg); }

.footer-sep { color: var(--fg-muted); }

/* SERVICES SECTION */
.services {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.services-header {
  padding: 0 80px 56px;
  border-bottom: 1px solid var(--border);
}

.services-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 12px;
}

.services-lede {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 560px;
}

/* TIERS */
.tier {
  border-bottom: 1px solid var(--border);
}

.tier-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 80px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.tier-name {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}

.tier-range {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
}

.tier-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--bg);
}

.tier-desc {
  padding: 28px 32px 28px 80px;
  border-right: 1px solid var(--border);
}

.tier-desc p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.tier-services {
  padding: 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 0;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

.service-price {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  flex-shrink: 0;
}

/* TIER COLORS — border-left accent bar per tier */
.tier-advisory .tier-label { border-left: 3px solid var(--accent); padding-left: 77px; }
.tier-strategic .tier-label { border-left: 3px solid var(--gia); padding-left: 77px; }
.tier-enterprise .tier-label { border-left: 3px solid var(--green); padding-left: 77px; }
.tier-global .tier-label { border-left: 3px solid var(--fg); padding-left: 77px; }

.tier-advisory .tier-name { color: var(--accent); }
.tier-strategic .tier-name { color: var(--gia); }
.tier-enterprise .tier-name { color: var(--green); }
.tier-global .tier-name { color: var(--fg); }

/* CTA FOOTER */
.services-footer {
  padding: 48px 80px;
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  transition: opacity 0.2s;
}

.cta-btn:hover { opacity: 0.85; }

.services-note {
  font-size: 14px;
  color: var(--fg-muted);
}

/* SUMUP STORE SECTION */
.sumup-section {
  padding: 100px 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.sumup-header {
  text-align: center;
  margin-bottom: 64px;
}

.sumup-header .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.sumup-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}

.sumup-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.sumup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.sumup-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s;
}

.sumup-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.sumup-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.sumup-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sumup-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.sumup-card-cta {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border: 1px solid var(--accent-dim);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.sumup-card-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.sumup-footer {
  text-align: center;
  padding-top: 16px;
}

.sumup-full-cta {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 20px;
}

.sumup-full-cta:hover { opacity: 0.85; }

.sumup-footer-note {
  font-size: 14px;
  color: var(--fg-muted);
}

/* CATALOG SECTION */
.catalog-section {
  padding: 100px 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.catalog-header {
  text-align: center;
  margin-bottom: 48px;
}

.catalog-header .eyebrow {
  justify-content: center;
  margin-bottom: 20px;
}

.catalog-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}

.catalog-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Filter bar */
.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}

.filter-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg-muted);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--fg);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.filter-count {
  font-size: 11px;
  opacity: 0.7;
}

/* Controls row */
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding: 0 4px;
}

.catalog-count {
  font-size: 14px;
  color: var(--fg-muted);
}

.catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.catalog-sort select {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg);
  cursor: pointer;
  outline: none;
}

/* Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

/* Cards */
.catalog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.catalog-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.catalog-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.catalog-cat-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
}

.catalog-price {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
}

.catalog-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
}

.catalog-card-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.catalog-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border: 1px solid var(--accent-dim);
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: auto;
}

.catalog-cta:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Footer */
.catalog-footer {
  text-align: center;
  padding-top: 8px;
}

.catalog-consultation {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-bottom: 20px;
}

.catalog-consultation:hover { opacity: 0.85; }

.catalog-footer-note {
  font-size: 14px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 900px) {
  .catalog-section { padding: 60px 32px; }
  .catalog-filters { gap: 6px; }
  .filter-btn { font-size: 12px; padding: 6px 12px; }
  .catalog-grid { grid-template-columns: 1fr; gap: 14px; }
  .catalog-controls { flex-direction: column; align-items: flex-start; gap: 12px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 60px 32px 60px;
    gap: 48px;
    min-height: auto;
  }
  .hero-left h1 { font-size: 40px; }
  .hero-right { display: none; }
  .divisions { grid-template-columns: 1fr; }
  .division-left { border-right: none; border-bottom: 1px solid var(--border); }
  .stats { flex-direction: column; gap: 40px; padding: 60px 32px; }
  .stat-divider { width: 80px; height: 1px; }
  .manifesto, .closing { padding: 60px 32px; }
  .manifesto h2, .closing h2 { font-size: 28px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px; }
  .services-header, .tier-label, .tier-desc { padding-left: 32px; padding-right: 32px; }
  .tier-label { padding-left: 29px; }
  .tier-services { padding: 20px 32px; grid-template-columns: 1fr; }
  .tier-body { grid-template-columns: 1fr; }
  .tier-desc { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 32px; }
  .services-footer { padding: 40px 32px; flex-direction: column; align-items: flex-start; }
}