/* =========================================
   HEXCORE CONSULTING — DevSecOps as a Service
   ========================================= */

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

:root {
  --bg-base:    #030712;
  --bg-surface: #0d1117;
  --bg-card:    #111827;
  --bg-card2:   #1a2332;
  --border:     #1e293b;
  --border2:    #243046;
  --text:       #e2e8f0;
  --text-muted: #64748b;
  --text-dim:   #94a3b8;
  --accent:     #00d4aa;
  --accent2:    #0ea5e9;
  --accent3:    #7c3aed;
  --red:        #ef4444;
  --yellow:     #f59e0b;
  --green:      #10b981;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }

.accent { color: var(--accent); }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
}
.btn--primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,212,170,0.35); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn--outline:hover { background: rgba(0,212,170,0.08); }
.btn--nav {
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid var(--border2);
  font-size: 13px;
  padding: 8px 18px;
}
.btn--nav:hover { border-color: var(--accent); }
.btn--lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-sm); }
.btn--full { width: 100%; justify-content: center; }

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,212,170,0.3);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(3, 7, 18, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { color: var(--text-muted); text-decoration: none; font-size: 15px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#matrixCanvas { width: 100%; height: 100%; opacity: 0.12; }
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid var(--border2);
  background: rgba(13,17,23,0.8);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(13,17,23,0.7);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 20px 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.stat { text-align: center; }
.stat__num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--accent); font-family: 'JetBrains Mono', monospace; }
.stat__label { font-size: 12px; color: var(--text-muted); margin-top: 2px; display: block; }
.stat__divider { width: 1px; height: 40px; background: var(--border2); }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border2));
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========== LOGOS ========== */
.logos {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.logos__label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.logos__track { overflow: hidden; }
.logos__inner {
  display: flex;
  gap: 16px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-pill {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ========== SERVICES ========== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.service-card--featured {
  background: linear-gradient(135deg, rgba(0,212,170,0.06), rgba(14,165,233,0.04));
  border-color: rgba(0,212,170,0.3);
  grid-column: span 1;
}
.service-card--featured:hover { border-color: rgba(0,212,170,0.5); }
.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(0,212,170,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}
.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
}
.service-card__tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,212,170,0.3);
  padding: 3px 9px;
  border-radius: 100px;
}

/* ========== HOW IT WORKS ========== */
.how { background: linear-gradient(to bottom, var(--bg-base), var(--bg-surface)); }
.how__steps { display: flex; flex-direction: column; gap: 80px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.step--reverse { direction: rtl; }
.step--reverse > * { direction: ltr; }
.step__number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border2);
  line-height: 1;
}
.step__content h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
.step__content p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* Terminal */
.terminal {
  background: #0a0f1a;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}
.terminal__bar {
  display: flex;
  gap: 7px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.terminal__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border2);
}
.terminal__bar span:nth-child(1) { background: #ef4444; }
.terminal__bar span:nth-child(2) { background: #f59e0b; }
.terminal__bar span:nth-child(3) { background: #10b981; }
.terminal__body {
  padding: 20px;
  line-height: 1.9;
  color: var(--text-dim);
}
.t-green { color: var(--green); }
.t-yellow { color: var(--yellow); }
.t-dim { color: var(--text-muted); }

/* Policy card */
.policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.policy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.policy-row:last-child { border-bottom: none; }
.policy-icon { font-size: 14px; width: 18px; text-align: center; }
.policy-row--block .policy-icon { color: var(--red); }
.policy-row--warn .policy-icon { color: var(--yellow); }
.policy-row--pass .policy-icon { color: var(--green); }
.policy-row span:nth-child(2) { flex: 1; color: var(--text); }
.policy-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: auto;
}
.policy-badge.block { background: rgba(239,68,68,0.15); color: var(--red); }
.policy-badge.warn  { background: rgba(245,158,11,0.15); color: var(--yellow); }
.policy-badge.pass  { background: rgba(16,185,129,0.15); color: var(--green); }

/* PR Card */
.pr-card {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.pr-card__header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pr-num { font-size: 12px; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }
.pr-title { font-size: 14px; font-weight: 500; }
.pr-card__checks { padding: 12px 20px; display: flex; flex-direction: column; gap: 8px; }
.check { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.check span { font-size: 13px; font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.check--pass span { color: var(--green); }
.check--fail span { color: var(--red); }
.check--warn span { color: var(--yellow); }
.pr-card__footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
}
.pr-status { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.pr-status--blocked { background: rgba(239,68,68,0.15); color: var(--red); }

/* Dashboard mini */
.dashboard-mini {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
}
.dash-header { font-size: 12px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.dash-score { display: flex; align-items: center; gap: 24px; }
.score-ring { position: relative; width: 80px; height: 80px; flex-shrink: 0; }
.score-ring svg { width: 100%; height: 100%; }
.score-ring span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}
.dash-metrics { display: flex; flex-direction: column; gap: 10px; }
.dash-metric { display: flex; align-items: center; gap: 10px; }
.dm-val { font-size: 1.1rem; font-weight: 700; font-family: 'JetBrains Mono', monospace; min-width: 44px; }
.dm-lab { font-size: 12px; color: var(--text-muted); }
.dm-red { color: var(--red); }
.dm-yellow { color: var(--yellow); }
.dm-green { color: var(--green); }

/* ========== STACK ========== */
.stack { background: var(--bg-base); }
.stack__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stack-cat h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.stack-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stack-pills span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}
.stack-pills span:hover { border-color: var(--accent); color: var(--accent); }

/* ========== PRICING ========== */
.pricing { background: var(--bg-surface); }
.pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.toggle-save {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,212,170,0.15);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border2);
  border-radius: 100px;
  transition: 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.price-card--featured {
  border-color: rgba(0,212,170,0.4);
  background: linear-gradient(135deg, rgba(0,212,170,0.05), rgba(14,165,233,0.03));
  transform: scale(1.03);
  box-shadow: 0 0 40px rgba(0,212,170,0.12);
}
.price-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-currency { font-size: 14px; color: var(--text-muted); font-weight: 500; align-self: flex-start; margin-top: 8px; }
.price-num { font-size: 3rem; font-weight: 800; font-family: 'JetBrains Mono', monospace; color: var(--text); }
.price-period { font-size: 14px; color: var(--text-muted); }
.price-card__header p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.price-features li span {
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  flex-shrink: 0;
}
.price-feature--off { color: var(--text-muted); }
.price-feature--off span { color: var(--border2) !important; }

/* ========== FAQ ========== */
.faq { background: var(--bg-base); }
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--text-muted);
}
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  background: var(--bg-card);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ========== CONTACT ========== */
.contact { background: var(--bg-surface); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin: 12px 0 16px;
  line-height: 1.2;
}
.contact__text > p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; }
.contact__benefits { display: flex; flex-direction: column; gap: 12px; }
.contact-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
}
.contact-benefit span { color: var(--accent); font-weight: 700; }

/* Form */
.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text-dim); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-disclaimer { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; }

.form-success { text-align: center; padding: 40px 0; }
.success-icon {
  width: 56px; height: 56px;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 48px;
}
.footer__brand p { font-size: 13px; color: var(--text-muted); margin-top: 12px; line-height: 1.7; }
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom p { font-size: 13px; color: var(--text-muted); }
.footer__certs { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stack__categories { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card--featured { transform: none; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 60px 1fr; }
  .step__visual { display: none; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .stack__categories { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; padding: 16px 24px; flex-direction: column; }
  .stat__divider { width: 100%; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer__links { grid-template-columns: 1fr; }
}
