/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #1a1a1f;
  --surface: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.06);
  --text: #f0f0f0;
  --text-2: #8a8a9a;
  --text-3: #555566;
  --accent: #6c63ff;
  --accent-2: #00d4aa;
  --gradient: linear-gradient(135deg, #6c63ff 0%, #00d4aa 50%, #6c63ff 100%);
  --gradient-text: linear-gradient(135deg, #6c63ff, #00d4aa);
  --radius: 16px;
  --radius-sm: 8px;
  --nav-h: 72px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(10,10,11,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-bracket {
  color: var(--accent);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.25s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 20px !important;
  border-radius: 100px;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}

.nav-cta:hover {
  background: rgba(108,99,255,0.1) !important;
  border-color: rgba(108,99,255,0.3) !important;
  color: var(--text) !important;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.lang-toggle:hover {
  border-color: rgba(108,99,255,0.3);
  background: rgba(108,99,255,0.05);
}

.lang-opt {
  padding: 2px 4px;
  transition: color 0.25s;
}

.lang-opt.active {
  color: var(--text);
  background: linear-gradient(135deg, #6c63ff, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lang-sep {
  color: var(--text-3);
  opacity: 0.5;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  background-size: 200% 200%;
  color: #fff;
  animation: gradientShift 4s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,99,255,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: rgba(108,99,255,0.4);
  background: rgba(108,99,255,0.05);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(108,99,255,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(0,212,170,0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-2);
  font-weight: 500;
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,170,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,212,170,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-line:nth-child(2) > span { animation-delay: 0.15s; }
.reveal-line:nth-child(3) > span { animation-delay: 0.3s; }

@keyframes revealUp {
  to { transform: translateY(0); }
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -60px; }
  100% { top: 60px; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ===== SERVICES ===== */
.services { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108,99,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.service-card:hover {
  border-color: rgba(108,99,255,0.2);
  transform: translateY(-4px);
}

.service-card {
  grid-column: 1 / -1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(108,99,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 8px 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.service-benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.service-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,0.25) 0%, transparent 70%);
  border: 1.5px solid var(--accent);
  box-sizing: border-box;
}

.service-benefits li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.service-benefits strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 640px) {
  .service-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tags span {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(108,99,255,0.08);
  color: var(--accent);
  font-weight: 500;
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== PROJECTS ===== */
.projects {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  border-color: rgba(108,99,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.project-card.reverse { direction: rtl; }
.project-card.reverse > * { direction: ltr; }

.project-visual {
  position: relative;
}

.project-mockup {
  perspective: 800px;
}

.mockup-browser {
  background: var(--bg-3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .mockup-browser {
  transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
}

.mockup-dots {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.5;
}

.mockup-screen {
  padding: 24px;
  min-height: 220px;
  display: flex;
  gap: 16px;
}

.mockup-screen-img {
  padding: 0;
  min-height: 0;
  background: #0a0a0b;
}

.mockup-screen-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mockup 1 - Map */
.mockup-map {
  flex: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(108,99,255,0.15) 0%, rgba(0,212,170,0.1) 100%);
  position: relative;
  overflow: hidden;
}

.mockup-map::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(108,99,255,0.4) 0%, transparent 3%),
    radial-gradient(circle at 60% 60%, rgba(0,212,170,0.4) 0%, transparent 3%),
    radial-gradient(circle at 45% 30%, rgba(108,99,255,0.3) 0%, transparent 2%),
    radial-gradient(circle at 70% 45%, rgba(0,212,170,0.3) 0%, transparent 2%),
    radial-gradient(circle at 25% 70%, rgba(108,99,255,0.3) 0%, transparent 2%);
}

.mockup-sidebar {
  width: 100px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
}

/* Mockup 2 - Chart */
.mockup-chart {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-top: 20px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--gradient);
  opacity: 0.6;
  transition: opacity 0.3s;
  animation: chartGrow 1.5s ease-out forwards;
}

.project-card:hover .chart-bar { opacity: 1; }

@keyframes chartGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* Mockup 3 - Concert */
.mockup-concert {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.concert-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 60px;
}

.concert-wave span {
  width: 4px;
  border-radius: 2px;
  background: var(--gradient);
  animation: wave 1.2s ease-in-out infinite;
}

.concert-wave span:nth-child(1) { height: 20px; animation-delay: 0s; }
.concert-wave span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.concert-wave span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.concert-wave span:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.concert-wave span:nth-child(5) { height: 55px; animation-delay: 0.4s; }
.concert-wave span:nth-child(6) { height: 40px; animation-delay: 0.5s; }
.concert-wave span:nth-child(7) { height: 25px; animation-delay: 0.6s; }
.concert-wave span:nth-child(8) { height: 45px; animation-delay: 0.7s; }
.concert-wave span:nth-child(9) { height: 35px; animation-delay: 0.8s; }
.concert-wave span:nth-child(10) { height: 20px; animation-delay: 0.9s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.project-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}

.project-desc {
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-desc a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(108, 99, 255, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s, text-decoration-color 0.25s;
}

.project-desc a:hover {
  color: #8a82ff;
  text-decoration-color: #8a82ff;
}

.project-tech {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.project-tech span {
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-weight: 500;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s, gap 0.25s;
}

.project-link:hover {
  color: var(--accent);
  gap: 12px;
}

/* ===== ABOUT ===== */
.about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-bio p {
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-bio strong { color: var(--text); }

.about-timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  width: 48px;
}

.timeline-item strong {
  font-size: 0.9375rem;
  font-weight: 600;
}

.timeline-item p {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 2px;
}

.timeline-desc {
  margin-top: 8px !important;
  color: var(--text-2) !important;
  line-height: 1.6;
  max-width: 440px;
}

/* ===== CONTACT ===== */
.contact {
  text-align: center;
}

.contact-inner {
  position: relative;
  padding: 80px 40px;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-sub {
  color: var(--text-2);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.contact-actions { margin-bottom: 32px; }

.contact-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.contact-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-3);
  transition: color 0.25s;
  border-bottom: 1px solid transparent;
}

.contact-links a:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-2);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 48px;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 1.125rem;
  }

  .nav-toggle { display: flex; z-index: 100; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 32px;
  }

  .project-card.reverse { direction: ltr; }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider { display: none; }

  .hero-stats {
    flex-direction: column;
  }

  .contact-inner {
    padding: 48px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .about-grid {
    gap: 32px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .section {
    padding: 80px 0;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-links {
    flex-direction: column;
    gap: 16px;
  }
}
