@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  /* Core Colors - Light & Bluish Corporate Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f4f7fb;
  
  --bg-card: #ffffff;
  --bg-card-hover: #fafbff;
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  /* Accent Colors - Professional Corporate Blue */
  --accent: #2563eb;
  --accent-glow: rgba(37, 99, 235, 0.15);
  --accent-dim: rgba(37, 99, 235, 0.08);
  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --gradient-text: linear-gradient(180deg, #1e293b 0%, #334155 100%);
  
  /* Borders */
  --border: #e2e8f0;
  --border-light: #cbd5e1;
  
  /* Typography */
  --font-heading: 'Urbanist', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Plus Jakarta Sans', monospace;
  
  --star: #f59e0b;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-primary);
  font-size: 16px;
}

::selection {
  background: var(--accent);
  color: #fff;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ─── BACKGROUND EFFECTS ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 20%, transparent 80%);
  pointer-events: none;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  animation: fadeDown 0.8s ease both;
}

.logo { display: flex; align-items: center; text-decoration: none; }
.logo-icon { width: 110px; height: 40px; display: flex; align-items: center; }
.logo-icon img { width: auto; height: 100%; object-fit: contain; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-secondary); text-decoration: none;
  font-weight: 700; transition: color 0.3s ease; position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--gradient-primary); transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.7rem 1.8rem;
  background: var(--bg-primary); border: 1px solid var(--border-light);
  color: var(--text-primary); border-radius: 100px; cursor: pointer;
  font-weight: 800; transition: all 0.3s ease; text-decoration: none;
}
.nav-cta:hover {
  background: var(--accent); color: #fff;
  border-color: var(--accent); transform: translateY(-2px);
  box-shadow: 0 10px 20px var(--accent-glow);
}

/* ─── HERO ─── */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 10rem 3rem 6rem; width: 100%;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 900;
  letter-spacing: -0.04em; margin-bottom: 1.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero h1 .line-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.25rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 600px; font-weight: 500; margin-bottom: 3.5rem;
  animation: fadeUp 1s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-actions { display: flex; gap: 1.5rem; animation: fadeUp 1s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both; }

.btn-primary {
  font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 1.2rem 2.8rem; background: var(--accent);
  color: #fff; border: none; border-radius: 100px; font-weight: 800;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--accent-glow);
}
.btn-primary:hover { 
  transform: translateY(-3px); box-shadow: 0 10px 30px var(--accent-glow); 
}

.btn-secondary {
  font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 1.2rem 2.8rem;
  background: transparent; border: 2px solid var(--accent);
  color: var(--accent); border-radius: 100px; font-weight: 800;
  text-decoration: none; transition: all 0.3s ease;
}
.btn-secondary:hover { 
  background: var(--accent-dim); transform: translateY(-3px);
}

.hero-metrics {
  display: flex; gap: 4rem; margin-top: 5rem; padding-top: 3.5rem;
  border-top: 1px solid var(--border);
  animation: fadeUp 1s 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.metric { display: flex; flex-direction: column; align-items: flex-start; }
.metric-value { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1; }
.metric-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; font-weight: 700; }

.hero-illustration {
  width: 100%; display: flex; justify-content: center; align-items: center;
  animation: fadeUp 1s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-illustration img {
  width: 100%; max-width: 600px; height: auto; object-fit: contain; 
  filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.08));
}


/* ─── SECTION COMMON ─── */
section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 8rem 3rem; }
.section-label {
  font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 1.5rem; font-weight: 800;
  color: var(--accent); display: inline-flex; align-items: center; gap: 0.8rem;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--gradient-primary);
}
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; letter-spacing: -0.04em; margin-bottom: 1.5rem; color: var(--text-primary); }
.section-desc { color: var(--text-secondary); font-size: 1.2rem; line-height: 1.7; max-width: 650px; font-weight: 500; margin-bottom: 5rem; }


/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary); opacity: 0; transition: opacity 0.4s ease;
}
.service-card:hover { 
  transform: translateY(-8px); 
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}
.service-card:hover::after { opacity: 1; }
.service-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--text-primary); }
.service-list { list-style: none; }
.service-list li {
  font-size: 1.05rem; color: var(--text-secondary); padding-left: 1.8rem; 
  position: relative; margin-bottom: 0.8rem; font-weight: 600;
}
.service-list li::before {
  content: ''; position: absolute; left: 0; top: 0.5rem; width: 8px; height: 8px;
  border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}


/* ─── WORK ─── */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.work-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px;
  overflow: hidden; transition: all 0.4s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.work-card:hover { 
  transform: translateY(-10px); border-color: var(--border-light);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.1); 
}

.work-preview {
  height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.work-preview--ic { background: radial-gradient(circle at top right, #3b82f6, #1e3a8a); }
.work-preview--sa { background: radial-gradient(circle at top right, #6366f1, #312e81); }
.work-preview::after {
  content: ''; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.work-preview-content { position: relative; z-index: 1; text-align: center; }
.work-preview-title { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.02em; text-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.work-preview-sub { font-family: var(--font-body); font-size: 0.9rem; color: rgba(255,255,255,0.9); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; }

.work-card-body { padding: 2.5rem; }
.work-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.5rem; }
.work-tag {
  font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.4rem 1rem; border-radius: 100px;
  border: 1px solid var(--border-light); color: var(--text-secondary); background: var(--bg-secondary); font-weight: 800;
}
.work-card-body p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; font-weight: 500; }

.work-metrics {
  display: flex; gap: 0; margin-bottom: 2rem;
  background: var(--bg-secondary); border-radius: 16px; border: 1px solid var(--border); overflow: hidden;
}
.work-metric {
  flex: 1; padding: 1.5rem; border-right: 1px solid var(--border); text-align: center;
}
.work-metric:last-child { border-right: none; }
.work-metric-value { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--accent); margin-bottom: 0.3rem; line-height: 1; }
.work-metric-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }

.work-stack { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.work-tech {
  font-size: 0.85rem; padding: 0.4rem 1rem; border-radius: 8px;
  border: 1px solid var(--accent-dim); color: var(--accent); background: var(--accent-dim); font-weight: 700;
}
.work-footer { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.work-link {
  font-family: var(--font-body); font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent); text-decoration: none; font-weight: 800;
  display: inline-flex; align-items: center; gap: 0.8rem; transition: all 0.3s ease;
}
.work-link:hover { color: var(--text-primary); gap: 1.2rem; }
.work-private { font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.05em; font-weight: 700; text-transform: uppercase; }


/* ─── TEAM ─── */
.team-section { padding: 8rem 3rem; background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; 
  padding: 3rem; transition: all 0.4s ease; display: flex; flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.team-card:hover { transform: translateY(-8px); border-color: var(--border-light); box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08); }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin-bottom: 1.5rem;
  overflow: hidden; border: 3px solid var(--bg-card); box-shadow: 0 0 0 3px var(--accent); padding: 4px; flex-shrink: 0;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; filter: grayscale(20%); transition: filter 0.3s ease; }
.team-card:hover .team-avatar img { filter: grayscale(0%); }
.team-card h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.3rem; color: var(--text-primary); }
.team-role { font-size: 0.95rem; color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }
.team-card .team-bio { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; font-weight: 500; }


/* ─── PROCESS ─── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; counter-reset: step; }
.process-step {
  position: relative; padding: 3rem 2rem; border: 1px solid var(--border); border-radius: 20px; 
  background: var(--bg-card); transition: all 0.4s ease;
  overflow: hidden; counter-increment: step;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.process-step::after {
  content: counter(step, decimal-leading-zero); position: absolute; bottom: -20px; right: 10px;
  font-size: 6rem; font-weight: 900; color: rgba(37, 99, 235, 0.05); line-height: 1; font-family: var(--font-heading);
  transition: all 0.4s ease; z-index: 0; pointer-events: none;
}
.process-step:hover { 
  transform: translateY(-5px); border-color: var(--accent); background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08);
}
.process-step:hover::after { color: rgba(37, 99, 235, 0.1); }
.step-num {
  font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem; font-weight: 800;
  position: relative; z-index: 1;
}
.process-step h4 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-primary); position: relative; z-index: 1; }
.process-step p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.6; position: relative; z-index: 1; font-weight: 500; }


/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 24px; 
  padding: 3rem; transition: all 0.4s ease; position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.testimonial-card:hover { border-color: var(--accent); box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08); }
.testimonial-stars { display: flex; gap: 0.4rem; margin-bottom: 2rem; }
.star { color: var(--star); font-size: 1.3rem; }
.testimonial-quote {
  font-family: var(--font-heading); font-size: 1.25rem; color: var(--text-primary); line-height: 1.8; font-weight: 600;
  margin-bottom: 2.5rem; position: relative; z-index: 1;
}
.testimonial-quote::before {
  content: '“'; position: absolute; left: -1.5rem; top: -1.5rem; font-size: 5rem; color: var(--border-light); font-weight: 900; line-height: 1; z-index: -1; font-family: serif; opacity: 0.5;
}
.testimonial-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 2rem; }
.testimonial-project { font-size: 0.95rem; color: var(--text-secondary); font-weight: 700; max-width: 70%; line-height: 1.5; }
.testimonial-date { font-size: 0.9rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }


/* ─── CTA SECTION ─── */
.cta-section {
  position: relative; z-index: 1; overflow: hidden;
  background: var(--bg-secondary); border-top: 1px solid var(--border);
  padding: 10rem 3rem;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center;
}
.cta-left { position: relative; z-index: 1; }
.cta-section .section-title { font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 1.5rem; line-height: 1.1; color: var(--text-primary); }
.cta-section .section-desc { font-size: 1.25rem; margin-bottom: 3.5rem; color: var(--text-secondary); max-width: 500px; font-weight: 500;}
.cta-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 4rem; }
.cta-trust-item {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.95rem; color: var(--text-secondary); font-weight: 700;
}
.cta-trust-dot { width: 10px; height: 10px; border-radius: 50%; background: #10b981; }

.cta-right { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; display: flex; align-items: center;
  gap: 1.5rem; transition: all 0.4s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.contact-card:hover { border-color: var(--accent); transform: translateX(10px); box-shadow: 0 15px 30px rgba(37, 99, 235, 0.08); }
.contact-card-icon {
  width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
  background: var(--accent-dim); border: 1px solid var(--accent-glow);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.contact-card-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2.5; }
.contact-card > div:not(.contact-card-icon) { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-card-label {
  font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); font-weight: 800;
}
.contact-card-value { font-size: 1.15rem; color: var(--text-primary); font-weight: 800; }
.contact-card-value a { color: var(--text-primary); text-decoration: none; transition: color 0.3s; }
.contact-card-value a:hover { color: var(--accent); }


/* ─── FOOTER ─── */
.site-footer {
  border-top: 1px solid var(--border); background: var(--bg-primary);
}
.footer-main {
  max-width: 1200px; margin: 0 auto; padding: 6rem 3rem 4rem;
  display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 5rem;
}
.footer-brand p {
  font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; font-weight: 500;
  max-width: 380px; margin: 2rem 0;
}
.social-icon {
  width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--border);
  background: var(--bg-secondary); display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-secondary); transition: all 0.3s ease;
}
.social-icon:hover { border-color: var(--accent); background: var(--accent); color: #fff; transform: translateY(-3px); }
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }
.footer-col h4 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-primary); margin-bottom: 2rem; font-weight: 900;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.footer-col ul li a { font-size: 1.05rem; color: var(--text-secondary); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1.5rem; }
.footer-contact-icon { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.footer-contact-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2.5; }
.footer-contact-item a, .footer-contact-item span { font-size: 1.05rem; color: var(--text-secondary); text-decoration: none; font-weight: 600; line-height: 1.5; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 3rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copyright { font-size: 0.95rem; color: var(--text-muted); font-weight: 600; }
.footer-bottom-links { display: flex; gap: 2.5rem; }
.footer-bottom-links a { font-size: 0.95rem; color: var(--text-muted); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ─── GLOW ORBS ─── */
.glow-orb { display: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-illustration { max-width: 500px; margin: 0 auto; }
  .hero h1 { font-size: clamp(3rem, 6vw, 4rem); }
  .hero-sub { margin: 0 auto 3rem; }
  .hero-actions { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .metric { align-items: center; text-align: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 2rem; }
  .nav-links { display: none; }
  .hero { padding: 8rem 2rem 5rem; }
  .hero-metrics { flex-direction: column; gap: 3rem; align-items: center; }
  section { padding: 6rem 2rem; }
  .services-grid, .work-grid, .team-grid, .testimonials-grid, .process-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
  .cta-right .contact-card:hover { transform: translateY(-5px) translateX(0); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .team-header { flex-direction: column; align-items: flex-start; }
}
