/* ========================================
   STAFFLYTICS – styles.css
   Color palette from the app screenshot:
   Navy bg: #0d1b2a / #112240
   Green:   #2ecc71 / #27ae60
   Red:     #e74c3c
   Yellow:  #f39c12 / #f1c40f
   Blue:    #2980b9 / #3498db
   ======================================== */

:root {
  --bg:        #0d1527;
  --bg-card:   #112240;
  --bg-card2:  #162a4a;
  --green:     #2ecc71;
  --green-d:   #27ae60;
  --red:       #e74c3c;
  --red-d:     #c0392b;
  --yellow:    #f1c40f;
  --yellow-d:  #e67e22;
  --blue:      #3498db;
  --blue-d:    #2980b9;
  --text:      #e8f0fe;
  --text-muted:#8fa8c8;
  --border:    rgba(255,255,255,0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius:    16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── UTILITIES ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.accent-green  { color: var(--green); }
.accent-red    { color: var(--red); }
.accent-yellow { color: var(--yellow); }
.accent-blue   { color: var(--blue); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: 100px;
  padding: 13px 28px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn--primary {
  background: var(--green);
  color: #0d1527;
  font-weight: 700;
}
.btn--primary:hover {
  background: var(--green-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,204,113,.3);
}
.btn--ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn--large { font-size: 17px; padding: 17px 40px; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay1 { transition-delay: .12s; }
.reveal--delay2 { transition-delay: .22s; }
.reveal--delay3 { transition-delay: .34s; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,21,39,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span { color: var(--green); }
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.nav-cta { color: var(--text); }
.nav-cta {
  background: var(--green) !important;
  color: #0d1527 !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-d) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
}
.mobile-menu.open { display: flex; }

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .35;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb--green  { width: 400px; height: 400px; background: rgba(46,204,113,.12); top: -80px; left: -100px; }
.hero-orb--red    { width: 300px; height: 300px; background: rgba(231,76,60,.12);  top: 40%;  right: -80px; }
.hero-orb--yellow { width: 250px; height: 250px; background: rgba(241,196,15,.08); bottom: 0; left: 30%; }

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 20px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

.hero-tag {
  grid-column: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(46,204,113,.1);
  border: 1px solid rgba(46,204,113,.3);
  padding: 6px 16px;
  border-radius: 100px;
  width: fit-content;
}

.hero-title {
  grid-column: 1;
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-sub {
  grid-column: 1;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  grid-column: 1;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.phone-mockup {
  grid-column: 2;
  grid-row: 1 / 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 260px;
  height: 510px;
  background: #1a2a44;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow:
    0 40px 80px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.phone-screen {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.phone-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.phone-greeting { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.phone-role { font-size: 11px; color: var(--text-muted); }

.phone-pins { display: flex; flex-direction: column; gap: 8px; }
.pin-label { font-size: 9px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; }
.pin-grid { display: flex; gap: 8px; }
.pin-icon {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
  font-family: var(--font-head);
}
.pin--green  { background: var(--green); }
.pin--yellow { background: var(--yellow-d); }
.pin--red    { background: var(--red); }
.pin--blue   { background: var(--blue); }

.phone-reminder {
  background: var(--bg-card2);
  border-radius: 12px;
  padding: 12px;
  border-left: 3px solid var(--blue);
}
.reminder-label { font-size: 8px; letter-spacing: 2px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.reminder-event { font-size: 13px; font-weight: 600; }
.reminder-time  { font-size: 10px; color: var(--text-muted); }

.phone-modules { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.module-card {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-head);
  color: white;
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.module--green  { background: linear-gradient(135deg, var(--green-d), var(--green)); }
.module--red    { background: linear-gradient(135deg, var(--red-d), var(--red)); }
.module--yellow { background: linear-gradient(135deg, var(--yellow-d), var(--yellow)); }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--text-muted), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-tag { margin: 0 auto; }
  .hero-sub { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .phone-mockup {
    grid-column: 1;
    grid-row: auto;
    margin-top: 40px;
  }
}

/* ── OVERVIEW ── */
.overview {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.overview-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}
.overview-text h2 em { font-style: italic; color: var(--green); }
.overview-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 16px;
}
.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color .25s, transform .25s;
}
.stat-card:hover {
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 768px) {
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── FEATURES ── */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0a1020 100%);
}
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  border-radius: 2px 2px 0 0;
}
.bento--green::before  { background: var(--green); }
.bento--red::before    { background: var(--red); }
.bento--yellow::before { background: var(--yellow); }
.bento--blue::before   { background: var(--blue); }
.bento--dark::before   { background: linear-gradient(90deg, var(--green), var(--blue)); }

.bento-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.bento--wide { grid-column: span 2; }
.bento-icon { font-size: 32px; margin-bottom: 16px; }
.bento-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bento-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.bento-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,.05);
  padding: 4px 10px;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .features-bento { grid-template-columns: 1fr 1fr; }
  .bento--wide { grid-column: span 2; }
}
@media (max-width: 560px) {
  .features-bento { grid-template-columns: 1fr; }
  .bento--wide { grid-column: span 1; }
}

/* ── SALES ── */
.sales {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.sales-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sales-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.sales-left p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }
.sales-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sales-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
}
.bullet {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bullet--green  { background: var(--green); }
.bullet--red    { background: var(--red); }
.bullet--yellow { background: var(--yellow); }
.bullet--blue   { background: var(--blue); }

.crm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.crm-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.crm-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.crm-count { font-family: var(--font-head); font-size: 14px; font-weight: 700; }
.crm-stages { display: flex; flex-direction: column; gap: 18px; }
.crm-stage {
  display: grid;
  grid-template-columns: 10px 1fr 24px;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.stage-dot { width: 10px; height: 10px; border-radius: 50%; }
.stage--green  { background: var(--green); }
.stage--yellow { background: var(--yellow); }
.stage--red    { background: var(--red); }
.stage--blue   { background: var(--blue); }
.stage-name { font-size: 13px; color: var(--text); margin-bottom: 4px; }
.stage-bar { height: 4px; background: rgba(255,255,255,.07); border-radius: 2px; overflow: hidden; }
.stage-fill { height: 100%; border-radius: 2px; transition: width .6s ease; }

@media (max-width: 768px) {
  .sales-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ── CLIENT EXPERIENCE ── */
.client-exp {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a1020 0%, var(--bg) 100%);
  text-align: center;
}
.client-exp .section-title { margin-bottom: 56px; }
.client-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  transition: transform .25s, box-shadow .25s;
}
.client-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.cc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.client-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.client-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
  .client-cards { grid-template-columns: 1fr; }
}

/* ── FINANCE ── */
.finance {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.finance-inner { max-width: 780px; }
.finance-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.finance-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.finance-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 48px; }
.finance-modules { display: flex; flex-direction: column; gap: 16px; }
.fin-module {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-left-width: 4px;
  transition: transform .25s;
}
.fin-module:hover { transform: translateX(6px); }
.fin--green { border-left-color: var(--green); }
.fin--blue  { border-left-color: var(--blue); }
.fin--red   { border-left-color: var(--red); }
.fin-top { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; min-width: 160px; }
.fin-emoji { font-size: 22px; }
.fin-label { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.fin-module p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 560px) {
  .fin-module { flex-direction: column; }
}

/* ── WORKFLOW ── */
.workflow {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0a1020 100%);
  text-align: center;
}
.workflow-sub { color: var(--text-muted); font-size: 17px; max-width: 580px; margin: -24px auto 64px; }
.workflow-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.wd-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border-top-width: 3px;
}
.wd-node--green { border-top-color: var(--green); }
.wd-node--red   { border-top-color: var(--red); }
.wd-node--yellow { border-top-color: var(--yellow); border-top-width: 3px; }
.wd-icon { font-size: 28px; margin-bottom: 8px; }
.wd-label {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.wd-items { display: flex; flex-direction: column; gap: 4px; }
.wd-items span {
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255,255,255,.04);
  border-radius: 6px;
  padding: 3px 8px;
}

.wd-arrows {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}
.wd-arrow {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.2), rgba(255,255,255,.08));
  width: 60px;
  position: relative;
}
.wd-arrow::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid rgba(255,255,255,.3);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.wd-core {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-card), #1e3560);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(46,204,113,.2);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 30px rgba(46,204,113,.15); }
  50%      { box-shadow: 0 0 60px rgba(46,204,113,.35); }
}
.wd-core-inner {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  color: var(--green);
}

.wd-arrows--bottom {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  justify-content: center;
}
.wd-arrow--v {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.2), rgba(255,255,255,.08));
  position: relative;
}
.wd-arrow--v::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-top: 8px solid rgba(255,255,255,.3);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.wd-node--bottom {
  grid-column: 2;
  grid-row: 3;
  max-width: 240px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 600px) {
  .workflow-diagram {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .wd-arrows, .wd-arrows--bottom { display: none; }
  .wd-core { width: 80px; height: 80px; }
  .wd-node--bottom { max-width: 100%; }
}

/* ── USE CASES ── */
.usecases {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.uc-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.uc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.uc-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .25;
}
.uc-card h3 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
}
.uc-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

@media (max-width: 768px) {
  .uc-grid { grid-template-columns: 1fr; }
}

/* ── CTA ── */
.cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1020 0%, var(--bg) 100%);
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-orb--green { width: 500px; height: 500px; background: rgba(46,204,113,.1);  top: 50%; left: 50%; transform: translate(-80%, -50%); }
.cta-orb--red   { width: 400px; height: 400px; background: rgba(231,76,60,.08);  top: 50%; right: 50%; transform: translate(80%, -50%); }
.cta-inner { position: relative; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}
.cta-inner p { font-size: 17px; color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; }

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.contact h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-sub { color: var(--text-muted); font-size: 17px; margin-bottom: 48px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; max-width: 600px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  text-decoration: none;
  color: var(--text);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.contact-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: #0d1527;
  flex-shrink: 0;
}
.ca--green { background: var(--green); }
.ca--red   { background: var(--red); color: white; }
.contact-name  { font-family: var(--font-head); font-size: 17px; font-weight: 700; }
.contact-email { font-size: 14px; color: var(--text-muted); margin-top: 2px; }
.contact-arrow { margin-left: auto; font-size: 22px; color: var(--text-muted); transition: transform .25s; }
.contact-card:hover .contact-arrow { transform: translateX(4px); color: var(--text); }

/* ── FOOTER ── */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer p { font-size: 13px; color: var(--text-muted); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card2); border-radius: 3px; }