/* ══════════════════════════════════════════════
   PALDRIVY — Design System: Dark Fintech Premium
   Gold #F59E0B · Violet #8B5CF6 · Navy #0F172A
   Font: Inter · Style: Vibrant Block-based
   ══════════════════════════════════════════════ */

/* ── 1. CSS TOKENS ── */
:root {
  /* Cores */
  --bg:          #0B1221;
  --bg-card:     #111827;
  --bg-card-2:   #1E293B;
  --bg-muted:    #162032;
  --border:      #1E2D45;
  --border-glow: rgba(245,158,11,.25);

  --gold:        #F59E0B;
  --gold-2:      #FBBF24;
  --gold-light:  #FDE68A;
  --gold-dim:    rgba(245,158,11,.12);

  --violet:      #8B5CF6;
  --violet-2:    #7C3AED;
  --violet-light:#C4B5FD;
  --violet-dim:  rgba(139,92,246,.12);

  --green:       #10B981;
  --green-dim:   rgba(16,185,129,.12);

  --text-1:      #F8FAFC;
  --text-2:      #CBD5E1;
  --text-3:      #64748B;

  /* Espacamento (8pt grid) */
  --s4:  4px;  --s8:  8px;  --s12: 12px; --s16: 16px;
  --s20: 20px; --s24: 24px; --s32: 32px; --s40: 40px;
  --s48: 48px; --s64: 64px; --s80: 80px; --s96: 96px;

  /* Bordas */
  --r-sm: 10px; --r: 16px; --r-lg: 24px; --r-xl: 32px;

  /* Sombras */
  --shadow-gold:   0 0 40px rgba(245,158,11,.15);
  --shadow-violet: 0 0 40px rgba(139,92,246,.20);
  --shadow-card:   0 4px 32px rgba(0,0,0,.45);
  --shadow-card-hover: 0 8px 48px rgba(0,0,0,.60);

  /* Transições */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms;  --t: 250ms;  --t-slow: 400ms;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── 3. TYPOGRAPHY ── */
h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--text-1);
}
h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: var(--text-1);
}
h3 { font-size: 1.1rem; font-weight: 600; color: var(--text-1); }
p  { color: var(--text-2); line-height: 1.7; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 50%, var(--violet-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold  { color: var(--gold); }
.violet{ color: var(--violet); }

/* ── 4. LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--s24); }
section { padding: var(--s96) 0; }
.section-label {
  display: inline-flex; align-items: center; gap: var(--s8);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-dim); border: 1px solid var(--border-glow);
  padding: var(--s4) var(--s12); border-radius: 100px;
  margin-bottom: var(--s16);
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto var(--s64); }
.section-header h2 { margin-bottom: var(--s16); }
.section-header p  { font-size: 1.05rem; }

/* ── 5. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s8);
  padding: 14px 28px; border-radius: var(--r); font-weight: 600; font-size: .95rem;
  transition: all var(--t) var(--ease); border: none; cursor: pointer;
  white-space: nowrap; touch-action: manipulation;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0B1221;
  box-shadow: 0 4px 20px rgba(245,158,11,.35), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,158,11,.5); }
.btn-gold:active{ transform: translateY(0); }

.btn-glass {
  background: rgba(255,255,255,.06); color: var(--text-1);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.2); }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--border-glow);
}
.btn-outline-gold:hover { background: var(--gold-dim); }

/* ── 6. NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,18,33,.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all var(--t) var(--ease);
}
nav.scrolled { background: rgba(11,18,33,.96); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img { height: 34px; }
.nav-logo-text { font-size: 1.35rem; font-weight: 800; }
.nav-logo-text em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: var(--s32); list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: var(--text-2);
  transition: color var(--t-fast) var(--ease); cursor: pointer;
}
.nav-links a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: var(--s12); }

/* Lang switcher */
.lang-switcher {
  display: flex; gap: 2px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 3px;
}
.lang-btn {
  padding: 5px 12px; border-radius: 8px; border: none;
  font-size: .78rem; font-weight: 700; cursor: pointer;
  color: var(--text-3); background: transparent;
  transition: all var(--t-fast) var(--ease);
}
.lang-btn.active { background: var(--gold); color: #0B1221; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--text-1); transition: all var(--t) var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none; flex-direction: column; gap: var(--s8);
  padding: var(--s16) var(--s24) var(--s24);
  background: rgba(11,18,33,.98); border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; color: var(--text-2); padding: var(--s12) 0; border-bottom: 1px solid var(--border); cursor: pointer; }

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

/* Grid pattern */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 80%);
}

/* Glow blobs */
.hero-glow-1 {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
  top: -100px; right: -200px; pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.10) 0%, transparent 70%);
  bottom: 0; left: -100px; pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s64); align-items: center; position: relative; z-index: 1;
}

/* Hero left */
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s8);
  background: var(--gold-dim); border: 1px solid var(--border-glow);
  border-radius: 100px; padding: 6px 16px;
  font-size: .8rem; font-weight: 600; color: var(--gold);
  margin-bottom: var(--s20);
}
.hero-badge svg { width: 14px; height: 14px; fill: currentColor; }

.hero h1 { margin-bottom: var(--s20); }
.hero-sub { font-size: 1.1rem; color: var(--text-2); margin-bottom: var(--s32); max-width: 500px; line-height: 1.7; }
.hero-btns { display: flex; gap: var(--s12); flex-wrap: wrap; margin-bottom: var(--s40); }

.hero-trust {
  display: flex; align-items: center; gap: var(--s16);
  padding-top: var(--s24); border-top: 1px solid var(--border);
}
.hero-trust-text { font-size: .78rem; color: var(--text-3); font-weight: 500; white-space: nowrap; }
.hero-avatars { display: flex; }
.hero-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--gold-dim), var(--violet-dim));
  overflow: hidden; margin-left: -8px; flex-shrink: 0;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-rating { display: flex; align-items: center; gap: 4px; font-size: .8rem; }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: -1px; }

/* Hero right */
.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-card), 0 0 0 1px var(--border), var(--shadow-gold);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,33,.85) 0%, rgba(11,18,33,.2) 50%, transparent 100%);
}

/* Earnings card floating on hero */
.hero-card {
  position: absolute; bottom: 24px; left: -32px;
  background: rgba(17,24,39,.90);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s16) var(--s20); width: 220px;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(245,158,11,.1);
}
.hero-card-label { font-size: .72rem; color: var(--text-3); font-weight: 500; margin-bottom: 4px; }
.hero-card-value { font-size: 1.65rem; font-weight: 800; color: var(--gold); font-variant-numeric: tabular-nums; margin-bottom: var(--s8); }
.hero-card-row { display: flex; justify-content: space-between; align-items: center; }
.hero-card-up { display: flex; align-items: center; gap: 4px; font-size: .78rem; color: var(--green); font-weight: 600; }
.hero-card-period { font-size: .72rem; color: var(--text-3); }
.hero-card-bars { display: flex; gap: 3px; align-items: flex-end; margin-top: var(--s12); height: 32px; }
.hero-card-bar { flex: 1; border-radius: 3px; background: var(--border); position: relative; }
.hero-card-bar.fill { background: linear-gradient(to top, var(--gold), var(--gold-2)); }
.hero-card-bar.fill-60 { height: 60%; }
.hero-card-bar.fill-80 { height: 80%; }
.hero-card-bar.fill-45 { height: 45%; }
.hero-card-bar.fill-90 { height: 90%; }
.hero-card-bar.fill-70 { height: 70%; }
.hero-card-bar.fill-100 { height: 100%; }
.hero-card-bar.fill-55 { height: 55%; }

/* Notification pill */
.hero-notif {
  position: absolute; top: 32px; right: -24px;
  background: rgba(17,24,39,.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 100px; padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 600; color: var(--text-1);
  box-shadow: var(--shadow-card);
  animation: floatY 3s ease-in-out infinite;
}
.hero-notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse  { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

/* ── 8. TICKER ── */
.ticker { padding: var(--s24) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: var(--bg-card); }
.ticker-track {
  display: flex; gap: var(--s40);
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: var(--s8);
  font-size: .85rem; font-weight: 600; color: var(--text-3);
  white-space: nowrap; transition: color var(--t) var(--ease);
}
.ticker-item:hover { color: var(--text-1); }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── 9. WORKERS ── */
.workers { background: var(--bg); padding: var(--s96) 0; }
.workers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s24); }

.worker-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--t) var(--ease);
  cursor: default;
}
.worker-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), var(--shadow-gold);
}
.worker-card-img {
  height: 200px; overflow: hidden; position: relative;
}
.worker-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.worker-card:hover .worker-card-img img { transform: scale(1.06); }
.worker-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 50%);
}
.worker-card-body { padding: var(--s24); }
.worker-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--border-glow); margin-bottom: var(--s12);
}
.worker-card h3 { margin-bottom: var(--s8); font-size: 1.05rem; }
.worker-card p  { font-size: .88rem; color: var(--text-3); line-height: 1.6; }
.worker-apps { display: flex; gap: 6px; flex-wrap: wrap; margin-top: var(--s16); }
.worker-app {
  font-size: .72rem; font-weight: 600; padding: 4px 10px;
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text-2);
  transition: all var(--t-fast) var(--ease);
}
.worker-app:hover { color: var(--gold); border-color: var(--border-glow); }

/* ── 10. FEATURES BENTO ── */
.features { background: var(--bg-muted); }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: var(--s16);
}
/* Bento layout: big, medium, small cards */
.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s32);
  transition: all var(--t) var(--ease);
  position: relative; overflow: hidden;
}
.bento-card::before {
  content: ''; position: absolute;
  inset: 0; border-radius: inherit;
  opacity: 0; transition: opacity var(--t) var(--ease);
  background: linear-gradient(135deg, var(--gold-dim), var(--violet-dim));
}
.bento-card:hover { border-color: var(--border-glow); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.bento-card:hover::before { opacity: 1; }

.bento-1  { grid-column: span 5; grid-row: span 2; }
.bento-2  { grid-column: span 7; }
.bento-3  { grid-column: span 7; }
.bento-4  { grid-column: span 4; }
.bento-5  { grid-column: span 4; }
.bento-6  { grid-column: span 4; }

.bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s20); position: relative; z-index: 1;
}
.bento-icon.gold   { background: var(--gold-dim);   color: var(--gold); }
.bento-icon.violet { background: var(--violet-dim); color: var(--violet); }
.bento-icon.green  { background: var(--green-dim);  color: var(--green); }
.bento-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.bento-card h3 { font-size: 1.05rem; margin-bottom: var(--s8); position: relative; z-index: 1; }
.bento-card p  { font-size: .88rem; color: var(--text-3); line-height: 1.65; position: relative; z-index: 1; }

/* Big bento card earnings visual */
.bento-1 h3 { font-size: 1.25rem; margin-bottom: var(--s12); }
.bento-1 p  { margin-bottom: var(--s24); }
.bento-metric-list { display: flex; flex-direction: column; gap: var(--s12); position: relative; z-index: 1; }
.bento-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s12) var(--s16); background: var(--bg-card-2);
  border: 1px solid var(--border); border-radius: var(--r-sm);
}
.bento-metric-label { font-size: .8rem; color: var(--text-3); }
.bento-metric-value { font-size: .95rem; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; }

/* Inline mini bar chart in bento */
.bento-sparkline {
  display: flex; align-items: flex-end; gap: 4px; height: 40px; margin-top: var(--s16); position: relative; z-index: 1;
}
.bento-bar {
  flex: 1; border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, var(--violet), var(--violet-light));
  opacity: .7; transition: opacity var(--t) var(--ease);
}
.bento-card:hover .bento-bar { opacity: 1; }

/* ── 11. STATS ── */
.stats { background: var(--bg); padding: var(--s80) 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card); padding: var(--s48) var(--s40);
  text-align: center;
}
.stat-num {
  font-size: clamp(2.4rem, 5vw, 3.5rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-variant-numeric: tabular-nums;
}
.stat-suffix { font-size: clamp(1.4rem, 3vw, 2rem); }
.stat-label { margin-top: var(--s8); font-size: .9rem; color: var(--text-3); font-weight: 500; }

/* ── 12. HOW IT WORKS ── */
.how { background: var(--bg-muted); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s24); position: relative;
}
.steps::after {
  content: '';
  position: absolute; top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-glow), var(--border), var(--border-glow), transparent);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s20);
  font-size: 1.1rem; font-weight: 800; color: #0B1221;
  box-shadow: 0 0 0 8px var(--gold-dim), var(--shadow-gold);
}
.step h3 { margin-bottom: var(--s8); font-size: .98rem; }
.step p   { font-size: .84rem; color: var(--text-3); line-height: 1.6; }

/* ── 13. GALLERY ── */
.gallery { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 260px 260px;
  gap: var(--s12);
  border-radius: var(--r-xl); overflow: hidden;
}
.g-item { overflow: hidden; position: relative; cursor: default; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,18,33,.6), transparent);
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g1 { grid-column: span 3; grid-row: span 2; }
.g2 { grid-column: span 3; }
.g3 { grid-column: span 3; }

/* ── 14. CTA ── */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--bg-card); padding: var(--s96) 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(139,92,246,.08) 0%, transparent 60%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: var(--s16); }
.cta-inner p { max-width: 560px; margin: 0 auto var(--s40); font-size: 1.05rem; }
.store-row { display: flex; gap: var(--s12); justify-content: center; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: var(--s12);
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: var(--s12) var(--s20);
  transition: all var(--t) var(--ease);
  min-width: 160px;
}
.store-btn:hover { border-color: var(--border-glow); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-btn-text small { display: block; font-size: .7rem; color: var(--text-3); font-weight: 500; margin-bottom: 2px; }
.store-btn-text strong { font-size: .95rem; font-weight: 700; color: var(--text-1); }

/* ── 15. FOOTER ── */
footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: var(--s64) 0 var(--s32);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s40); padding-bottom: var(--s48);
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: .88rem; color: var(--text-3); margin-top: var(--s16); line-height: 1.65; }
.footer-logo { display: flex; align-items: center; gap: var(--s8); margin-bottom: var(--s16); }
.footer-logo img { height: 30px; }
.footer-logo span { font-size: 1.25rem; font-weight: 800; }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-col h4 { font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: var(--s16); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s8); }
.footer-col a { font-size: .88rem; color: var(--text-3); transition: color var(--t-fast) var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s16); padding-top: var(--s32);
}
.footer-copy { font-size: .8rem; color: var(--text-3); }
.footer-socials { display: flex; gap: var(--s16); }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all var(--t-fast) var(--ease);
}
.footer-social:hover { color: var(--gold); border-color: var(--border-glow); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ── 16. SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── 17. RESPONSIVE ── */
@media (max-width: 1024px) {
  .bento-1 { grid-column: span 12; grid-row: span 1; }
  .bento-2, .bento-3 { grid-column: span 6; }
  .bento-4, .bento-5, .bento-6 { grid-column: span 4; }
}
@media (max-width: 900px) {
  .hero-grid      { grid-template-columns: 1fr; }
  .hero-visual    { display: none; }
  .workers-grid   { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .stats-grid     { grid-template-columns: 1fr; background: none; border: none; gap: var(--s12); }
  .stat-item      { border-radius: var(--r); border: 1px solid var(--border); }
  .steps          { grid-template-columns: repeat(2, 1fr); }
  .steps::after   { display: none; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .g1             { grid-column: span 2; grid-row: span 1; }
  .g2, .g3        { grid-column: span 1; }
  .nav-links, .nav-right .btn { display: none; }
  .nav-hamburger  { display: flex; }
  .bento-4, .bento-5, .bento-6 { grid-column: span 6; }
}
@media (max-width: 640px) {
  section { padding: var(--s64) 0; }
  .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 12; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .g1, .g2, .g3 { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
}

/* ── 18. ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
