:root {
  --bg-void:        #04060a;
  --bg-deep:        #080c14;
  --bg-surface:     rgba(12, 18, 32, 0.8);
  --bg-glass:       rgba(18, 26, 44, 0.65);
  --bg-glass-hover: rgba(26, 36, 58, 0.8);

  --border-subtle:  rgba(255, 255, 255, 0.07);
  --border-glow:    rgba(200, 180, 140, 0.25);
  --border-accent:  rgba(99, 102, 241, 0.35);

  --flare-gold:     #c9a44c;
  --flare-amber:    #d4a04a;

  --accent-indigo:  #6366f1;
  --accent-blue:    #3b82f6;
  --accent-cyan:    #06b6d4;
  --accent-teal:    #14b8a6;

  --text-bright:    #f1f5f9;
  --text-main:      #e2e8f0;
  --text-muted:     #94a3b8;
  --text-dim:       #64748b;

  --font-heading:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  --section-pad:    clamp(60px, 10vw, 120px);
  --container-max:  1200px;
}

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

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

body {
  background: var(--bg-void);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

#starfield { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.flare-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(200, 165, 80, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 25%, rgba(180, 130, 60, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(100, 140, 220, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 30% 30% at 5% 80%, rgba(80, 200, 180, 0.04) 0%, transparent 45%);
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; position: relative; z-index: 5; }
section { position: relative; z-index: 5; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 0 24px;
  background: rgba(4, 6, 10, 0.45);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  background: rgba(4, 6, 10, 0.82);
  backdrop-filter: blur(28px) saturate(2);
  -webkit-backdrop-filter: blur(28px) saturate(2);
  border-bottom: 1px solid rgba(200, 180, 140, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; height: 72px;
}

/* ── Text Wordmark Logo (the name IS the logo) ── */
.nav-logo {
  display: flex; align-items: baseline; gap: 6px;
  text-decoration: none; transition: opacity 0.3s ease;
}
.nav-logo:hover { opacity: 0.8; }

.logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-bright);
  letter-spacing: -0.03em;
}
.logo-sub {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Footer logo */
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px; transition: all 0.25s ease;
}
.nav-links a:hover { color: var(--text-bright); background: rgba(255,255,255,0.06); }

.nav-cta {
  background: linear-gradient(135deg, var(--flare-gold), var(--flare-amber)) !important;
  color: #0a0e18 !important; font-weight: 700 !important;
  padding: 9px 22px !important; border-radius: 8px !important; font-size: 13px !important;
  letter-spacing: 0.03em; transition: all 0.3s ease !important;
  box-shadow: 0 0 20px rgba(200, 165, 80, 0.15);
}
.nav-cta:hover {
  box-shadow: 0 0 30px rgba(200, 165, 80, 0.3) !important;
  transform: translateY(-1px); background: linear-gradient(135deg, #d4ad55, #dab050) !important;
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.3s ease; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: var(--section-pad) 24px;
}
.hero-content { max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200, 165, 80, 0.08); border: 1px solid rgba(200, 165, 80, 0.2);
  padding: 6px 16px; border-radius: 24px; font-size: 13px; font-weight: 600;
  color: var(--flare-gold); margin-bottom: 32px; letter-spacing: 0.05em;
  text-transform: uppercase; animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--flare-gold);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-heading); font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.035em;
  margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.4s both;
}
.hero h1 .text-gradient,
.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #c9c9c9 40%, var(--flare-gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero h1 .text-accent,
.text-accent {
  background: linear-gradient(135deg, var(--flare-gold), var(--flare-amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); color: var(--text-muted); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.7; animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--flare-gold), var(--flare-amber));
  color: #0a0e18; font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(200, 165, 80, 0.2); letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(200, 165, 80, 0.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); color: var(--text-main);
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 10px; border: 1px solid var(--border-subtle);
  cursor: pointer; text-decoration: none; transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px);
}

.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about { padding: var(--section-pad) 24px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--flare-gold);
  margin-bottom: 16px;
}
.section-label .label-line { width: 24px; height: 1px; background: var(--flare-gold); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 16px; }

.about-text h2 {
  font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 20px; color: var(--text-bright);
}
.about-text h2 .highlight {
  background: linear-gradient(135deg, var(--flare-gold), var(--flare-amber));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-text p { color: var(--text-muted); font-size: 16px; margin-bottom: 16px; line-height: 1.8; }

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.stat-item {
  text-align: center; padding: 20px 12px; background: var(--bg-glass);
  backdrop-filter: blur(12px); border: 1px solid var(--border-subtle);
  border-radius: 14px; transition: all 0.3s ease;
}
.stat-item:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.stat-value {
  font-family: var(--font-mono); font-size: 28px; font-weight: 800;
  background: linear-gradient(135deg, var(--flare-gold), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.about-visual { display: flex; flex-direction: column; gap: 16px; }

.tech-card {
  background: var(--bg-glass); backdrop-filter: blur(16px); border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 24px; transition: all 0.3s ease;
}
.tech-card:hover { border-color: var(--border-glow); background: var(--bg-glass-hover); transform: translateY(-2px); }
.tech-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.tech-icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.tech-icon.gold { background: rgba(200, 165, 80, 0.15); }
.tech-icon.blue { background: rgba(59, 130, 246, 0.15); }
.tech-icon.teal { background: rgba(20, 184, 166, 0.15); }
.tech-card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-bright); }
.tech-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════ */
.services { padding: var(--section-pad) 24px; }

.services-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.services-header h2 {
  font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 16px; color: var(--text-bright);
}
.services-header p { color: var(--text-muted); font-size: 16px; }

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

.service-card {
  background: var(--bg-glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: 20px; padding: 36px 28px; transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 20px 20px 0 0; opacity: 0; transition: opacity 0.35s ease;
}
.service-card.card-ai-system::before { background: linear-gradient(90deg, #f59e0b, #e11d48); }
.service-card.card-gold::before      { background: linear-gradient(90deg, var(--flare-gold), var(--flare-amber)); }
.service-card.card-blue::before      { background: linear-gradient(90deg, var(--accent-blue), var(--accent-indigo)); }
.service-card.card-teal::before      { background: linear-gradient(90deg, var(--accent-teal), var(--accent-cyan)); }
.service-card.card-custom::before    { background: linear-gradient(90deg, #a78bfa, #ec4899); }

.service-badge-pill {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--flare-gold), var(--flare-amber));
  color: #0a0e18; font-family: var(--font-mono); font-size: 10px; font-weight: 800;
  padding: 3px 9px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.06em;
}

.service-card:hover {
  border-color: var(--border-glow); background: var(--bg-glass-hover);
  transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid;
  place-items: center; font-size: 24px; margin-bottom: 20px;
}
.service-icon.gold   { background: rgba(200, 165, 80, 0.12); border: 1px solid rgba(200, 165, 80, 0.2); }
.service-icon.blue   { background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(59, 130, 246, 0.2); }
.service-icon.teal   { background: rgba(20, 184, 166, 0.12); border: 1px solid rgba(20, 184, 166, 0.2); }
.service-icon.custom { background: rgba(167, 139, 250, 0.12); border: 1px solid rgba(167, 139, 250, 0.2); }

.service-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--text-bright); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--flare-gold); font-weight: 700; font-size: 12px; }

.service-price {
  font-family: var(--font-mono); font-size: 14px; color: var(--text-dim);
  padding-top: 16px; border-top: 1px solid var(--border-subtle);
}
.service-price strong { color: var(--flare-gold); font-size: 18px; }

.custom-quote-link {
  color: #c084fc; text-decoration: none; font-weight: 600;
  font-family: var(--font-heading); font-size: 15px; transition: color 0.3s ease;
}
.custom-quote-link:hover { color: #e9d5ff; }

/* ══════════════════════════════════════════
   CTA / CONTACT BANNER
   ══════════════════════════════════════════ */
.cta-banner { padding: var(--section-pad) 24px; }

.cta-card {
  background: linear-gradient(135deg, rgba(200, 165, 80, 0.06), rgba(12, 18, 32, 0.9)),
    radial-gradient(ellipse at 30% 50%, rgba(200, 165, 80, 0.08) 0%, transparent 60%);
  border: 1px solid rgba(200, 165, 80, 0.15); border-radius: 24px;
  padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200, 165, 80, 0.06) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.cta-card h2 {
  font-family: var(--font-heading); font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; line-height: 1.2; letter-spacing: -0.03em;
  margin-bottom: 16px; color: var(--text-bright); position: relative;
}
.cta-card p { color: var(--text-muted); font-size: 16px; max-width: 520px; margin: 0 auto 32px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-email {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-family: var(--font-mono); font-size: 14px;
  margin-top: 24px; position: relative;
}
.cta-email a { color: var(--flare-gold); text-decoration: none; transition: color 0.3s ease; }
.cta-email a:hover { color: #e0c068; }

/* ══════════════════════════════════════════
   FOOTER — lifted up, maximum visibility & safety margin
   ══════════════════════════════════════════ */
.footer {
  padding: 48px 24px clamp(90px, 14vh, 140px);
  margin-top: 40px;
  border-top: 1px solid rgba(200, 180, 140, 0.2);
  background: rgba(6, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 5;
}

.footer-inner {
  max-width: var(--container-max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--text-dim); }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 13px; transition: color 0.25s ease; }
.footer-links a:hover { color: var(--flare-gold); }

.footer-status {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-dim); font-family: var(--font-mono);
}
.footer-status .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); animation: pulse 2s infinite;
}

/* ══════════════════════════════════════════
   PORTFOLIO PAGE
   ══════════════════════════════════════════ */
.portfolio-hero { padding: 140px 24px 40px; position: relative; z-index: 5; }
.portfolio-title {
  font-family: var(--font-heading); font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.035em; margin-bottom: 16px;
}
.portfolio-subtitle { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-muted); max-width: 600px; line-height: 1.7; }

.portfolio-content { padding: 40px 24px 60px; position: relative; z-index: 5; }

.portfolio-filters { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-chip {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle);
  color: var(--text-muted); font-family: var(--font-heading); font-size: 14px;
  font-weight: 600; padding: 8px 20px; border-radius: 24px; cursor: pointer; transition: all 0.25s ease;
}
.filter-chip:hover { background: rgba(255,255,255,0.08); color: var(--text-bright); }
.filter-chip.active {
  background: rgba(200, 165, 80, 0.12); border-color: rgba(200, 165, 80, 0.35); color: var(--flare-gold);
}

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

.project-card {
  background: var(--bg-glass); backdrop-filter: blur(16px); border: 1px solid var(--border-subtle);
  border-radius: 20px; padding: 32px 28px; transition: all 0.35s ease; position: relative;
}
.project-card:hover {
  border-color: var(--border-glow); background: var(--bg-glass-hover);
  transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.project-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--flare-gold), var(--flare-amber));
  color: #0a0e18; font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.05em;
}
.project-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.project-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid;
  place-items: center; font-size: 20px; flex-shrink: 0;
}
.project-icon.gold { background: rgba(200, 165, 80, 0.15); }
.project-icon.blue { background: rgba(59, 130, 246, 0.15); }
.project-icon.teal { background: rgba(20, 184, 166, 0.15); }
.project-header h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text-bright); line-height: 1.3; }
.project-tag { font-size: 12px; color: var(--text-dim); font-family: var(--font-mono); }
.project-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.project-metrics { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.metric {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle);
  border-radius: 10px; padding: 10px 14px; text-align: center; flex: 1; min-width: 80px;
}
.metric-value { font-family: var(--font-mono); font-size: 18px; font-weight: 800; color: var(--flare-gold); display: block; }
.metric-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }

.project-stack { display: flex; gap: 6px; flex-wrap: wrap; }
.project-stack span {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-subtle);
  color: var(--text-dim); font-family: var(--font-mono); font-size: 11px;
  padding: 3px 8px; border-radius: 6px;
}

.portfolio-cta { margin-top: 20px; }

/* ══════════════════════════════════════════
   SCROLL REVEAL & ANIMATIONS
   ══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }

/* ══════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════ */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(4, 6, 10, 0.97); backdrop-filter: blur(24px); z-index: 99;
  flex-direction: column; justify-content: center; align-items: center; gap: 12px; padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-main); text-decoration: none; font-size: 20px; font-weight: 600;
  font-family: var(--font-heading); padding: 14px 32px; border-radius: 10px;
  transition: all 0.25s ease; width: 100%; max-width: 320px; text-align: center;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); }
.mobile-menu .mobile-close {
  position: absolute; top: 24px; right: 24px; background: none; border: none;
  color: var(--text-muted); font-size: 28px; cursor: pointer; padding: 8px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .project-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .project-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 320px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .logo-main { font-size: 18px; }
  .logo-sub { font-size: 12px; }
  .portfolio-filters { gap: 6px; }
  .filter-chip { font-size: 12px; padding: 6px 14px; }
}
