/* ============================================
   VOLTA STUDIOS — STYLE.CSS
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0A0A0A;
  --accent: #FFE000;
  --text: #F0F0F0;
  --text-secondary: #888;
  --surface: #111111;
  --surface-light: #181818;
  --border: #1e1e1e;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; }

/* ---------- Grain Overlay ---------- */
.grain {
  position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
  z-index: 9999; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Custom Cursor ---------- */
.cursor { display: none; }

@media (pointer: fine) {
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; }
  .cursor-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: absolute; top: -4px; left: -4px; }
  .cursor-outline {
    width: 40px; height: 40px; border: 1px solid rgba(255,224,0,0.4); border-radius: 50%;
    position: absolute; top: -20px; left: -20px;
    transition: width 0.3s var(--ease), height 0.3s var(--ease), top 0.3s var(--ease), left 0.3s var(--ease), border-color 0.3s, background 0.3s;
  }
  .cursor.hovering .cursor-outline { width: 60px; height: 60px; top: -30px; left: -30px; border-color: var(--accent); }
  .cursor.explore .cursor-outline { width: 100px; height: 100px; top: -50px; left: -50px; background: rgba(255,224,0,0.08); border-color: var(--accent); }
  .cursor-text {
    position: absolute; top: -8px; left: -28px; width: 56px; text-align: center;
    font-family: var(--font-heading); font-size: 10px; font-weight: 600; letter-spacing: 2px;
    color: var(--accent); opacity: 0; transition: opacity 0.3s;
  }
  .cursor.explore .cursor-text { opacity: 1; }
  body * { cursor: none !important; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.85); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-size: 22px; font-weight: 700; letter-spacing: -0.5px; }
.nav-logo .dot { color: var(--accent); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; color: var(--text-secondary); transition: color 0.3s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 14px; font-weight: 600; padding: 10px 24px; background: var(--accent);
  color: var(--bg); border-radius: 100px; transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(255,224,0,0.3); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; padding: 4px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.mobile-link {
  font-family: var(--font-heading); font-size: 48px; font-weight: 700;
  opacity: 0; transform: translateY(30px); transition: opacity 0.4s, transform 0.4s var(--ease);
}
.mobile-menu.open .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-cta {
  font-size: 18px; font-weight: 600; padding: 16px 40px; background: var(--accent);
  color: var(--bg); border-radius: 100px; opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s 0.3s, transform 0.4s 0.3s var(--ease);
}
.mobile-menu.open .mobile-cta { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; overflow: hidden; }

#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }

.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 700px 600px at 15% 40%, rgba(255,224,0,0.07), transparent 70%),
    radial-gradient(ellipse 500px 500px at 85% 20%, rgba(255,224,0,0.04), transparent 70%),
    radial-gradient(ellipse 600px 400px at 60% 90%, rgba(255,224,0,0.03), transparent 70%);
}

.hero-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  padding: 160px 40px 100px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; min-height: 100vh;
}

.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px; opacity: 0;
}
.badge-pulse {
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,224,0,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,224,0,0); }
}

.hero-headline { font-size: clamp(36px, 5vw, 64px); letter-spacing: -2px; margin-bottom: 24px; line-height: 1.1; }
.hero-headline .char { display: inline-block; opacity: 0; transform: translateY(100%); }
.highlight { color: var(--accent); }

.hero-sub { font-size: clamp(16px, 1.8vw, 19px); color: var(--text-secondary); max-width: 480px; margin-bottom: 40px; opacity: 0; line-height: 1.7; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; }

/* Hero Laptop Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.laptop-mockup {
  position: relative; width: 100%; max-width: 520px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-6deg) rotateX(2deg) translateY(-12px); }
}

.laptop-screen {
  background: #1a1a1a; border-radius: 10px 10px 0 0; padding: 8px 8px 0;
  border: 1px solid #333; border-bottom: none;
  box-shadow: 0 50px 100px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.laptop-screen img { width: 100%; border-radius: 4px 4px 0 0; display: block; }

.laptop-base {
  height: 14px; background: linear-gradient(#2a2a2a, #1e1e1e);
  border-radius: 0 0 10px 10px; position: relative;
  border: 1px solid #333; border-top: none;
}
.laptop-notch {
  width: 60px; height: 4px; background: #3a3a3a; border-radius: 0 0 3px 3px;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
}

.mockup-glow {
  position: absolute; bottom: -40px; left: 5%; width: 90%; height: 80px;
  background: radial-gradient(ellipse, rgba(255,224,0,0.1), transparent 70%);
  filter: blur(40px); pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 16px; font-weight: 600;
  padding: 16px 36px; border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { box-shadow: 0 0 40px rgba(255,224,0,0.3); }
.btn-outline { border: 1px solid rgba(240,240,240,0.3); color: var(--text); background: transparent; }
.btn-outline:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-glow {
  background: var(--accent); color: var(--bg); font-size: 20px; padding: 20px 48px;
  box-shadow: 0 0 40px rgba(255,224,0,0.2), 0 0 80px rgba(255,224,0,0.08);
}
.btn-glow:hover { box-shadow: 0 0 60px rgba(255,224,0,0.4), 0 0 120px rgba(255,224,0,0.15); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 1;
}
.scroll-arrow {
  font-size: 20px; color: var(--accent); animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}
.scroll-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-secondary); }

/* ---------- Metrics ---------- */
.metrics {
  padding: 56px 40px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.metrics-inner {
  max-width: 900px; margin: 0 auto; display: flex;
  justify-content: space-between; align-items: center;
}
.metric { text-align: center; flex: 1; }
.metric-top { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.metric-value { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--text); }
.metric-suffix { font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--accent); }
.metric-label { display: block; font-size: 13px; color: var(--text-secondary); margin-top: 6px; letter-spacing: 0.5px; }
.metric-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ---------- Section Helpers ---------- */
.section-label { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-size: clamp(32px, 5vw, 52px); letter-spacing: -1px; margin-bottom: 20px; }
.accent-divider { max-width: 100px; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); margin: 0 auto; }

/* ---------- About ---------- */
.about { padding: 120px 40px; max-width: 1200px; margin: 0 auto; }
.about-text-reveal { margin-bottom: 80px; }
.about-statement { font-family: var(--font-heading); font-size: clamp(24px, 3.5vw, 42px); font-weight: 600; line-height: 1.35; letter-spacing: -1px; }
.about-statement .word { display: inline-block; overflow: hidden; }
.about-statement .word-inner { display: inline-block; opacity: 0.12; transition: opacity 0.3s; }
.about-statement .word-inner.active { opacity: 1; }

.about-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 40px 32px; transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.about-card:hover { border-color: rgba(255,224,0,0.3); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.about-card-icon { margin-bottom: 20px; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(255,224,0,0.08); border-radius: 12px; }
.about-card h3 { font-size: 22px; margin-bottom: 12px; }
.about-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Why Us ---------- */
.why-us { padding: 120px 40px; max-width: 1200px; margin: 0 auto; }
.why-header { margin-bottom: 64px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  position: relative; padding: 40px 32px 40px 36px; border-left: 2px solid var(--accent);
  background: var(--surface); border-radius: 0 16px 16px 0;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.why-card:hover { transform: translateY(-4px); background: var(--surface-light); }
.why-number {
  font-family: var(--font-heading); font-size: 56px; font-weight: 700;
  color: var(--accent); opacity: 0.12; line-height: 1; margin-bottom: 20px;
}
.why-card h3 { font-size: 22px; margin-bottom: 14px; }
.why-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Portfolio ---------- */
.portfolio { padding: 120px 0; overflow: hidden; }
.portfolio-header { max-width: 1200px; margin: 0 auto; padding: 0 40px 20px; }
.portfolio-sub { font-size: 17px; color: var(--text-secondary); margin-top: 8px; }

.portfolio-track-wrapper { overflow: hidden; }
.portfolio-track { display: flex; gap: 40px; padding: 40px 40px; width: max-content; will-change: transform; }

.project-card {
  flex-shrink: 0; width: 600px;
  transition: transform 0.5s var(--ease);
}
.project-card:hover { transform: translateY(-8px); }

.browser-frame {
  background: #151515; border-radius: 12px 12px 0 0; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border); border-bottom: none;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url { flex: 1; background: #0c0c0c; padding: 6px 14px; border-radius: 6px; font-size: 12px; color: var(--text-secondary); }

.project-image {
  overflow: hidden; border: 1px solid var(--border); border-top: none; position: relative;
}
.project-image img { width: 100%; height: 360px; object-fit: cover; object-position: top; transition: transform 0.7s var(--ease); }
.project-card:hover .project-image img { transform: scale(1.04); }

.project-info { padding: 28px 4px 0; }
.project-tag { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
.project-name { font-size: 28px; margin: 8px 0 8px; }
.project-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 8px; }
.project-location { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; opacity: 0.7; }
.project-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600;
  color: var(--accent); transition: gap 0.3s;
}
.project-link:hover { gap: 10px; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 120px 40px; background: var(--surface); }
.testimonials-container { max-width: 1200px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 40px 32px; transition: border-color 0.4s, transform 0.4s var(--ease);
}
.testimonial-card:hover { border-color: rgba(255,224,0,0.25); transform: translateY(-4px); }
.testimonial-stars { color: var(--accent); margin-bottom: 24px; font-size: 18px; letter-spacing: 4px; }
.testimonial-quote { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 28px; font-style: italic; opacity: 0.9; }
.testimonial-author { border-top: 1px solid var(--border); padding-top: 20px; }
.testimonial-name { font-weight: 600; font-size: 15px; display: block; }
.testimonial-title { font-size: 13px; color: var(--text-secondary); display: block; margin-top: 4px; }

/* ---------- Capabilities ---------- */
.capabilities { padding: 120px 40px; }
.capabilities-container { max-width: 1200px; margin: 0 auto; }
.capabilities-header { margin-bottom: 64px; }
.capabilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cap-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 28px; transition: border-color 0.3s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.cap-card:hover { border-color: rgba(255,224,0,0.25); transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.25); }
.cap-icon { margin-bottom: 20px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,224,0,0.06); border-radius: 10px; }
.cap-card h3 { font-size: 20px; margin-bottom: 10px; }
.cap-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ---------- Pricing ---------- */
.pricing { padding: 120px 40px; }
.pricing-container { max-width: 1200px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-subtitle { font-size: 17px; color: var(--text-secondary); margin-top: 8px; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 44px 36px; text-align: center; transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }

.price-card.popular {
  border: 2px solid var(--accent); position: relative; padding-top: 56px;
  background: linear-gradient(180deg, rgba(255,224,0,0.04) 0%, var(--surface) 50%);
}
.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--bg); font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 20px;
  border-radius: 0 0 10px 10px;
}
.price-tier { font-family: var(--font-heading); font-size: 16px; font-weight: 600; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 12px; }
.price-amount { font-family: var(--font-heading); font-size: 52px; font-weight: 700; margin-bottom: 16px; }
.price-plus { font-size: 28px; color: var(--text-secondary); }
.price-card.popular .price-amount { color: var(--accent); }
.price-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 28px; }
.price-features { list-style: none; text-align: left; margin-bottom: 32px; }
.price-features li {
  font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.price-features li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- Process ---------- */
.process { padding: 120px 40px; background: var(--surface); }
.process-container { max-width: 900px; margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps { display: flex; align-items: flex-start; gap: 0; }
.process-step { flex: 1; text-align: center; padding: 0 20px; }
.step-number {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 24px; font-weight: 700;
  background: var(--accent); color: var(--bg); border-radius: 50%; margin: 0 auto 20px;
}
.process-step h3 { font-size: 20px; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.step-connector { width: 60px; height: 2px; background: var(--border); margin-top: 28px; flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact { padding: 140px 40px; text-align: center; }
.contact-inner { max-width: 700px; margin: 0 auto; }
.contact-headline { font-size: clamp(36px, 6vw, 64px); letter-spacing: -2px; margin-bottom: 24px; }
.contact-sub { font-size: 18px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 48px; }
.contact-methods { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 48px; }
.contact-link {
  display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 500;
  padding: 16px 32px; border: 1px solid var(--border); border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.contact-link:hover { border-color: var(--accent); background: var(--surface); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 48px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.footer-logo { font-family: var(--font-heading); font-size: 22px; font-weight: 700; }
.footer-logo .dot { color: var(--accent); }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: color 0.3s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-copy { font-size: 13px; color: var(--text-secondary); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about-cards, .capabilities-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
  .laptop-mockup { max-width: 420px; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  body * { cursor: auto !important; }
  .cursor { display: none !important; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 24px; }

  .hero-inner { grid-template-columns: 1fr; padding: 140px 24px 80px; min-height: auto; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-headline { letter-spacing: -1px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: 2; margin-top: 20px; }
  .laptop-mockup { max-width: 360px; transform: perspective(1200px) rotateY(0) rotateX(2deg); }
  @keyframes mockupFloat {
    0%, 100% { transform: perspective(1200px) rotateY(0) rotateX(2deg) translateY(0); }
    50% { transform: perspective(1200px) rotateY(0) rotateX(2deg) translateY(-8px); }
  }
  .hero-badge { justify-content: center; }

  .metrics { padding: 40px 24px; }
  .metrics-inner { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .metric-divider { display: none; }
  .metric { min-width: 120px; }
  .metric-value { font-size: 28px; }

  .about { padding: 80px 24px; }
  .about-statement { font-size: 22px; }
  .about-cards, .capabilities-grid, .pricing-cards, .why-grid, .testimonials-grid { grid-template-columns: 1fr; }

  .why-us { padding: 80px 24px; }

  .portfolio-track { flex-direction: column; width: 100%; padding: 0 24px; }
  .project-card { width: 100%; }
  .portfolio-header { padding: 0 24px 40px; }
  .project-image img { height: 240px; }

  .testimonials { padding: 80px 24px; }
  .capabilities { padding: 80px 24px; }
  .pricing { padding: 80px 24px; }
  .process { padding: 80px 24px; }
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .step-connector { width: 2px; height: 40px; margin: 0; }
  .contact { padding: 80px 24px; }
  .contact-headline { font-size: 36px; }
  .contact-link { font-size: 15px; padding: 14px 24px; width: 100%; justify-content: center; }

  .footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .footer-bottom { text-align: center; }

  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .metrics-inner { gap: 20px; }
  .metric { min-width: 100px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .laptop-mockup { animation: none; transform: none; }
}
