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

:root {
  --accent: #00ff88;
  --accent2: #7c3aed;
  --bg: #050508;
  --bg2: #0d0d12;
  --bg3: #141418;
  --text: #ffffff;
  --text-muted: #6b7280;
  --border: #1f1f2e;
}

html { scroll-behavior: smooth; }

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

/* ─── LIGHT THEME ─── */
body.light {
  --accent: #00b865;
  --bg: #f8f9fa;
  --bg2: #ffffff;
  --bg3: #f0f1f3;
  --text: #0a0a0a;
  --text-muted: #6b7280;
  --border: #e5e7eb;
}

body.light .grid-bg {
  background-image:
    linear-gradient(rgba(0,184,101,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,184,101,0.05) 1px, transparent 1px);
}

body.light .glow-1 { background: rgba(0,184,101,0.06); }
body.light .glow-2 { background: rgba(124,58,237,0.06); }

body.light header {
  background: rgba(255,255,255,0.9);
  border-color: var(--border);
}

body.light .screen-mockup { background: #fff; }
body.light .portfolio-screen { background: linear-gradient(135deg, #e8f5e9, #f0faf0); }

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

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  background: rgba(13,13,18,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px);
  max-width: 1100px;
  transition: all 0.3s;
}

.logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.logo span { color: var(--accent); }

nav { display: flex; align-items: center; gap: 8px; }

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
}

nav a:hover { color: var(--text); background: var(--bg3); }

.header-cta {
  background: var(--accent) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}

.header-cta:hover { opacity: 0.85; background: var(--accent) !important; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  letter-spacing: 0.5px;
}

.lang-btn.active {
  background: var(--accent);
  color: #000;
}

.theme-toggle {
  width: 36px; height: 36px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

canvas#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-1 {
  width: 500px; height: 500px;
  background: rgba(0,255,136,0.08);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  animation: float1 8s ease-in-out infinite;
}

.glow-2 {
  width: 300px; height: 300px;
  background: rgba(124,58,237,0.1);
  bottom: 0; right: 10%;
  animation: float2 10s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-30px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 36px;
  font-weight: 500;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--accent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.5; box-shadow: 0 0 2px var(--accent); }
}

.hero-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.glitch::before {
  color: #ff0055;
  animation: glitch1 4s infinite;
  clip-path: polygon(0 25%, 100% 25%, 100% 45%, 0 45%);
}

.glitch::after {
  color: #00ffff;
  animation: glitch2 4s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%);
}

@keyframes glitch1 {
  0%,89%,100% { transform:translate(0); opacity:0; }
  90% { transform:translate(-4px,2px); opacity:0.9; }
  92% { transform:translate(4px,-1px); opacity:0.9; }
  94% { transform:translate(0); opacity:0; }
}

@keyframes glitch2 {
  0%,85%,100% { transform:translate(0); opacity:0; }
  86% { transform:translate(4px,3px); opacity:0.9; }
  88% { transform:translate(-4px,-2px); opacity:0.9; }
  90% { transform:translate(0); opacity:0; }
}

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

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(0,255,136,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,255,136,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 15px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-top: 72px;
  flex-wrap: wrap;
}

.stat-item {
  padding: 24px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── SECTIONS ─── */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
}

/* ─── SERVICES ─── */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.service-card {
  background: var(--bg2);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover { background: var(--bg3); }
.service-card:hover::before { opacity: 1; }

.service-card.popular {
  background: linear-gradient(135deg, rgba(0,255,136,0.05), rgba(0,212,255,0.03));
}

.service-card.popular::before { opacity: 1; }

.popular-badge {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 20px;
  opacity: 0.6;
}

.service-name {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.service-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.service-time {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.service-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── PROCESS ─── */
#process { background: var(--bg2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
  position: relative;
}

.process-step {
  padding: 40px 32px;
  position: relative;
}

.step-num {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: -10px;
  letter-spacing: -4px;
}


.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-arrow {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px;
  z-index: 1;
  opacity: 0.4;
}

/* ─── PORTFOLIO ─── */
#portfolio { background: var(--bg); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.portfolio-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,136,0.3);
  box-shadow: 0 20px 60px rgba(0,255,136,0.08);
}

.portfolio-screen {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #0d1f0d 0%, #051505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.portfolio-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg2));
  z-index: 1;
}

.screen-mockup {
  width: 85%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  position: relative;
  z-index: 0;
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.screen-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}

.screen-line {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 6px;
}

.portfolio-body { padding: 28px; }

.portfolio-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.portfolio-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.portfolio-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.portfolio-results { display: flex; gap: 20px; margin-bottom: 24px; }

.result-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
}

.result-label { font-size: 12px; color: var(--text-muted); }

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s;
}

.portfolio-link:hover { color: var(--accent-hover); gap: 10px; }

/* ─── REVIEWS ─── */
#reviews { background: var(--bg2); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s;
}

.review-card:hover { border-color: rgba(0,255,136,0.2); }

.review-quote {
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.review-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.review-name { font-size: 14px; font-weight: 700; }
.review-role { font-size: 12px; color: var(--text-muted); }

.review-stars { color: #fbbf24; font-size: 13px; margin-bottom: 4px; }

/* ─── WHY ─── */
#why { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,255,136,0.06), transparent);
  border-radius: 50%;
}

.why-card:hover { border-color: rgba(0,255,136,0.2); transform: translateY(-4px); }

.why-icon {
  width: 48px; height: 48px;
  background: rgba(0,255,136,0.07);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.plus-icon {
  font-size: 48px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1;
}

.why-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.why-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left { display: flex; flex-direction: column; gap: 32px; }

.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.3s;
}

.contact-card:hover { border-color: rgba(0,255,136,0.2); }

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(0,255,136,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-label { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.contact-val { font-size: 15px; font-weight: 600; }

.tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #229ED9;
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 30px rgba(34,158,217,0.2);
}

.tg-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.contact-form {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-title { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.08);
}

.form-group select option { background: var(--bg2); }

.form-group textarea { height: 120px; resize: none; }

.form-submit {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  box-shadow: 0 0 30px rgba(0,255,136,0.2);
}

.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 50px rgba(0,255,136,0.35);
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span { color: var(--accent); }

.footer-logo .logo-icon {
  width: 24px; height: 24px;
  font-size: 12px;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

.footer-copy { font-size: 13px; color: var(--text-muted); }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  header { width: calc(100% - 24px); top: 8px; padding: 0 16px; }
  nav { display: none; }
  .burger { display: flex; }

  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 12px; right: 12px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    gap: 4px;
    z-index: 99;
  }

  nav.open a {
    font-size: 15px;
    padding: 10px 14px;
  }

  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
