/* ============================================================
   EIDEVS — home.css  (homepage-specific styles)
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Hero orb decorations ── */
.hero-orb-1 {
  width: 560px; height: 560px;
  top: -120px; left: -160px;
}
.hero-orb-2 {
  width: 440px; height: 440px;
  bottom: -80px; right: -80px;
}

/* ── Hero Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 123, 0, 0.07);
  border: 1px solid rgba(255, 123, 0, 0.22);
  border-radius: 100px;
  padding: 7px 18px 7px 10px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
  animation: status-pulse 2s ease-out infinite;
}

@keyframes status-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.hero-badge span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
}

/* ── Hero Title ── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* ── Hero Tagline (typewriter area) ── */
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 24px;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-tagline-static { color: var(--text-secondary); }

.hero-tagline-dynamic {
  color: var(--accent-orange);
  font-weight: 600;
  position: relative;
}

.hero-tagline-dynamic .tw-cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--accent-orange);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.75s step-end infinite;
}

/* ── Hero Description ── */
.hero-desc {
  font-size: clamp(14.5px, 1.6vw, 17px);
  color: var(--text-secondary);
  line-height: 1.82;
  margin-bottom: 38px;
  max-width: 500px;
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* ── Hero Micro Stats ── */
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--glass-border);
}

.hero-stat-item {}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  display: block;
}
.hero-stat-num .hl { color: var(--accent-orange); }

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-top: 5px;
  display: block;
}

/* ── Hero Visual (right column) ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Floating badges around the device */
.float-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  padding: 9px 16px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.float-badge i { color: var(--accent-orange); font-size: 13px; }

.float-badge-1 {
  top: 18%; left: -10%;
  animation: badge-float 4s ease-in-out infinite;
}
.float-badge-2 {
  bottom: 22%; left: -6%;
  animation: badge-float 4s ease-in-out 1.4s infinite;
}
.float-badge-3 {
  top: 10%; right: -4%;
  animation: badge-float 4s ease-in-out 0.8s infinite;
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Browser Device Mockup ── */
.hero-device {
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    0 0 0 1px rgba(255,123,0,0.08),
    0 40px 100px rgba(0,0,0,0.65),
    0 0 80px rgba(255,123,0,0.06);
  animation: device-float 6s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes device-float {
  0%, 100% { transform: translateY(0) rotate(-0.8deg); }
  50%       { transform: translateY(-14px) rotate(-0.8deg); }
}

.device-chrome {
  background: #111226;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.chrome-dots {
  display: flex;
  gap: 6px;
}

.chrome-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.chrome-dot.red    { background: #ff5f57; }
.chrome-dot.yellow { background: #ffbd2e; }
.chrome-dot.green  { background: #28c940; }

.chrome-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--text-muted);
}
.chrome-url-bar i { font-size: 9px; color: #2ecc71; }

/* ── Fake Website Screen ── */
.device-screen {
  background: var(--bg-deep);
  aspect-ratio: 16 / 10.2;
  position: relative;
  overflow: hidden;
}

/* Fake website nav */
.fake-nav {
  height: 30px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}
.fake-nav-logo { width: 40px; height: 8px; background: var(--accent-orange); border-radius: 2px; opacity: 0.9; }
.fake-nav-spacer { flex: 1; }
.fake-nav-links { display: flex; gap: 8px; }
.fake-nav-link { width: 22px; height: 5px; background: rgba(255,255,255,0.18); border-radius: 2px; }
.fake-nav-btn { width: 32px; height: 13px; background: var(--accent-orange); border-radius: 3px; opacity: 0.85; }

/* Fake hero area */
.fake-hero {
  padding: 18px 16px 14px;
  background: linear-gradient(135deg, rgba(255,123,0,0.06), rgba(26,63,168,0.08));
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fake-h1-bar  { height: 10px; background: rgba(255,255,255,0.8); border-radius: 3px; width: 70%; animation: fake-shimmer 2.5s ease-in-out infinite; }
.fake-h1-bar2 { height: 10px; background: rgba(255,255,255,0.5); border-radius: 3px; width: 50%; animation: fake-shimmer 2.5s ease-in-out 0.2s infinite; }
.fake-p-bar   { height: 5px;  background: rgba(255,255,255,0.22); border-radius: 2px; width: 85%; margin-top: 4px; }
.fake-p-bar2  { height: 5px;  background: rgba(255,255,255,0.14); border-radius: 2px; width: 62%; }
.fake-hero-ctas { display: flex; gap: 8px; margin-top: 8px; }
.fake-cta-1 { height: 16px; width: 56px; background: var(--accent-orange); border-radius: 3px; opacity: 0.9; }
.fake-cta-2 { height: 16px; width: 50px; background: rgba(255,255,255,0.1); border-radius: 3px; border: 1px solid rgba(255,255,255,0.14); }

/* Fake cards row */
.fake-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 16px;
}
.fake-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fake-card-icon { width: 16px; height: 16px; border-radius: 50%; background: var(--accent-orange); opacity: 0.7; margin-bottom: 3px; }
.fake-card:nth-child(2) .fake-card-icon { background: var(--accent-gold); }
.fake-card:nth-child(3) .fake-card-icon { background: #7499ff; }
.fake-card-line  { height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.fake-card-line2 { height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; width: 70%; }

@keyframes fake-shimmer {
  0%, 100% { opacity: 0.8; }
  50%       { opacity: 1; }
}

/* ── Hero code decoration (background, decorative) ── */
.hero-code-deco {
  position: absolute;
  right: 52%;
  bottom: 8%;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(255,123,0,0.1);
  line-height: 1.9;
  pointer-events: none;
  white-space: pre;
  z-index: 0;
  user-select: none;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-section {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.015);
  overflow: hidden;
  position: relative;
}

/* Left/right fade masks */
.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-section::before { left: 0;  background: linear-gradient(90deg, var(--bg-void), transparent); }
.marquee-section::after  { right: 0; background: linear-gradient(-90deg, var(--bg-void), transparent); }

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.marquee-item i { color: var(--accent-orange); font-size: 13px; }
.marquee-item:hover { color: var(--text-secondary); }

.marquee-sep {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-orange);
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--glass-border);
}

.stat-block {
  background: var(--bg-card);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  transition: background var(--t-mid);
}
.stat-block:hover { background: var(--bg-surface); }

.stat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
  transition: width var(--t-mid);
}
.stat-block:hover::before { width: 80px; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.stat-number.orange { color: var(--accent-orange); }
.stat-number.gold   { color: var(--accent-gold); }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.stat-icon {
  font-size: 22px;
  color: var(--accent-orange);
  opacity: 0.5;
  margin-bottom: 4px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: var(--section-padding) 0; }

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

/* Desktop: grid. Mobile: horizontal scroll row */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.service-card:hover {
  border-color: rgba(255,123,0,0.25);
  transform: translateY(-8px);
  box-shadow: 0 24px 72px rgba(0,0,0,0.45);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: rgba(255,123,0,0.08);
  border: 1px solid rgba(255,123,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 21px;
  color: var(--accent-orange);
  transition: background var(--t-mid), transform var(--t-mid);
}
.service-card:hover .service-icon-wrap {
  background: rgba(255,123,0,0.14);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Service card number (decorative) */
.service-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
}

/* ============================================================
   FEATURED WORKS (Homepage preview)
   ============================================================ */
.works-preview { padding: var(--section-padding) 0; }

.works-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.works-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Work Card ── */
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-mid), border-color var(--t-mid), box-shadow var(--t-mid);
  position: relative;
  cursor: pointer;
}
.work-card:hover {
  border-color: rgba(255,123,0,0.3);
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.5);
}

/* Thumbnail */
.work-thumb {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}

.work-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  display: block;
}
.work-card:hover .work-thumb-img { transform: scale(1.07); }

/* Placeholder gradient (used when no image is provided) */
.work-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.work-card:hover .work-thumb-placeholder { transform: scale(1.06); }

/* Hover overlay on thumb */
.work-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3,3,13,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-mid);
}
.work-card:hover .work-thumb-overlay { opacity: 1; }

.work-thumb-overlay span {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--accent-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
}

/* Card body */
.work-body {
  padding: 24px 26px 26px;
}

.work-category {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.work-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.work-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   WHY EIDEVS
   ============================================================ */
.why-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.why-inner {
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 88px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(255,123,0,0.04) 0%, transparent 60%);
}

/* inner orb */
.why-inner::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,123,0,0.09), transparent 70%);
  pointer-events: none;
}

.why-header {
  max-width: 540px;
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 30px 24px;
  transition: background var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.why-card:hover {
  background: rgba(255,123,0,0.05);
  border-color: rgba(255,123,0,0.22);
  transform: translateY(-5px);
}

.why-card-icon {
  font-size: 26px;
  color: var(--accent-orange);
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  padding: var(--section-padding) 0;
  text-align: center;
}

.cta-band-inner {
  border: 1px solid rgba(255,123,0,0.22);
  border-radius: var(--r-xl);
  padding: clamp(64px, 9vw, 100px) clamp(28px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg,
    rgba(255,123,0,0.07) 0%,
    rgba(26,63,168,0.08) 60%,
    transparent 100%
  );
}

/* Glow at top */
.cta-band-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 280px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

/* Background orb */
.cta-band-inner::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,123,0,0.05), transparent 60%);
  pointer-events: none;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}

.cta-band-desc {
  font-size: clamp(14.5px, 1.7vw, 18px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative; z-index: 1;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

.cta-band-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative; z-index: 1;
}
.cta-band-note i { color: #2ecc71; font-size: 11px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { order: -1; }
  .hero-device { max-width: 420px; margin: 0 auto; }
  .float-badge-1 { left: -4%; top: 5%; }
  .float-badge-2 { left: -4%; bottom: 5%; }
  .float-badge-3 { right: -4%; top: 5%; }
  .hero-code-deco { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .works-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header, .works-preview-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Horizontal scroll for services on mobile */
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .services-grid::-webkit-scrollbar { height: 3px; }
  .services-grid::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 2px; }

  .service-card {
    min-width: 240px;
    scroll-snap-align: start;
  }

  /* Horizontal scroll for featured works on mobile */
  .works-preview-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .works-preview-grid::-webkit-scrollbar { height: 3px; }
  .works-preview-grid::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 2px; }

  .work-card {
    min-width: 280px;
    scroll-snap-align: start;
  }

  .hero-stats { gap: 24px; }
  .why-inner { padding: 36px 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .float-badge { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-block { padding: 28px 16px; }
}