@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #080A0E;
  --dark: #0D1117;
  --card: #111620;
  --border: rgba(255,255,255,0.07);
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --white: #F5F3EE;
  --muted: #8A8D94;
  --accent: #1A6EFF;
  --radius: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  background: rgba(8,10,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
  color: var(--black);
}
.nav-logo-text {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--white); letter-spacing: 0.01em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--black) !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; margin: 5px 0;
  transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,110,255,0.06) 0%, transparent 50%),
    var(--black);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  font-size: 12px; font-weight: 500; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero p {
  font-size: 18px; color: var(--muted); line-height: 1.7;
  max-width: 520px; margin-bottom: 40px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--gold);
  color: var(--black);
  font-size: 15px; font-weight: 600;
  border: none; border-radius: 8px; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-size: 15px; font-weight: 500;
  border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

.hero-stats {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 2; display: flex; flex-direction: column; gap: 20px;
  animation: fadeLeft 0.9s 0.4s ease both;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  min-width: 180px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.stat-card:hover { transform: translateX(-4px); border-color: rgba(201,168,76,0.2); }
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.stat-card .number {
  font-family: var(--font-display); font-size: 38px; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-card .label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ─── SECTION BASE ─── */
section { padding: 100px 5%; }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.02em;
}
.section-title em { font-style: normal; color: var(--gold); }

.section-desc {
  font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.7; margin-top: 16px;
}

.divider {
  height: 1px; background: var(--border); margin: 0;
}

/* ─── LOGOS STRIP ─── */
.logos-strip {
  background: var(--dark); padding: 48px 5%; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.logos-strip p { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 32px; }

.logos-row {
  display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.logos-row .logo-item {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,0.25); letter-spacing: 0.05em;
  transition: color 0.2s;
}
.logos-row .logo-item:hover { color: rgba(255,255,255,0.6); }

/* ─── SERVICES ─── */
.services { background: var(--dark); }

.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 60px;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.service-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border-color: rgba(201,168,76,0.25);
}

.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px;
}
.service-card:nth-child(2) .service-icon { background: rgba(26,110,255,0.1); border-color: rgba(26,110,255,0.2); }
.service-card:nth-child(3) .service-icon { background: rgba(52,199,89,0.1); border-color: rgba(52,199,89,0.2); }
.service-card:nth-child(4) .service-icon { background: rgba(255,159,10,0.1); border-color: rgba(255,159,10,0.2); }
.service-card:nth-child(5) .service-icon { background: rgba(255,55,95,0.1); border-color: rgba(255,55,95,0.2); }
.service-card:nth-child(6) .service-icon { background: rgba(100,210,255,0.1); border-color: rgba(100,210,255,0.2); }

.service-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.2;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

.service-card .tag {
  display: inline-block; margin-top: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); padding: 4px 10px; border-radius: 4px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.15);
}

/* ─── ABOUT ─── */
.about { background: var(--black); }

.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
}

/* Illustrative abstract image */
.about-img-wrap .img-art {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 30%, rgba(201,168,76,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(26,110,255,0.1) 0%, transparent 50%),
    linear-gradient(160deg, #111620 0%, #0a0c10 100%);
}

.about-img-wrap .img-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 28px;
}

.about-img-badge {
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px; border-radius: 10px;
  font-weight: 700; font-size: 14px;
}
.about-img-badge span { display: block; font-size: 11px; font-weight: 500; opacity: 0.7; margin-top: 2px; }

.about-float {
  position: absolute; top: 32px; right: -24px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.about-float .row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.about-float .dot { width: 8px; height: 8px; border-radius: 50%; }
.about-float .dot.g { background: #34C759; }
.about-float .dot.b { background: var(--accent); }
.about-float .dot.y { background: var(--gold); }

.about-text .checklist { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-text .checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--muted);
}
.about-text .checklist li::before {
  content: '✓'; color: var(--gold);
  font-weight: 700; font-size: 14px; margin-top: 2px; flex-shrink: 0;
}

/* ─── NUMBERS ─── */
.numbers {
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 50%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 5%;
}

.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}

.number-item {
  background: var(--dark); padding: 48px 32px; text-align: center;
  transition: background 0.2s;
}
.number-item:hover { background: var(--card); }
.number-item .n {
  font-family: var(--font-display); font-size: 52px; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.number-item .n sup { font-size: 28px; vertical-align: super; }
.number-item .l { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--dark); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 52px;
}

.portfolio-card {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.portfolio-card:hover { transform: scale(1.02); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.portfolio-card.large { grid-row: span 2; }

.portfolio-img {
  width: 100%; height: 100%; min-height: 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

/* Generated abstract project visuals */
.portfolio-card:nth-child(1) .portfolio-img {
  background: linear-gradient(135deg, #0D1B3E, #1A3A6E, #0F2850);
  min-height: 460px;
}
.portfolio-card:nth-child(2) .portfolio-img {
  background: linear-gradient(135deg, #1A1200, #3D2B00, #261900);
}
.portfolio-card:nth-child(3) .portfolio-img {
  background: linear-gradient(135deg, #001A12, #003322, #001A12);
}
.portfolio-card:nth-child(4) .portfolio-img {
  background: linear-gradient(135deg, #1A001E, #380040, #200025);
}

.portfolio-img .art-shape {
  position: absolute; border-radius: 50%;
  opacity: 0.35;
}

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 55%);
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.portfolio-info .cat { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.portfolio-info h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; }

/* ─── PROCESS ─── */
.process { background: var(--black); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}

.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 0;
}

.step {
  text-align: center; padding: 0 24px; position: relative; z-index: 1;
}

.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--gold);
  margin: 0 auto 24px;
  position: relative;
}
.step-num::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px solid rgba(201,168,76,0.15);
}

.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--dark); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}

.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.15); }
.testi-card::before {
  content: '"'; position: absolute; top: 12px; right: 24px;
  font-family: var(--font-display); font-size: 80px; color: rgba(201,168,76,0.06); line-height: 1;
}

.testi-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testi-stars span { color: var(--gold); font-size: 14px; }

.testi-card p { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--black);
}
.testi-author h4 { font-size: 14px; font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ─── TEAM ─── */
.team { background: var(--black); }

.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 52px;
}

.team-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.2); }

.team-photo {
  height: 200px; position: relative; overflow: hidden;
}
.team-photo .ph-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 56px; font-weight: 900;
  color: rgba(255,255,255,0.15);
}

.team-card:nth-child(1) .ph-bg { background: linear-gradient(135deg, #0D1B3E, #1A3A6E); }
.team-card:nth-child(2) .ph-bg { background: linear-gradient(135deg, #1A1200, #3D2B00); }
.team-card:nth-child(3) .ph-bg { background: linear-gradient(135deg, #001A12, #003322); }
.team-card:nth-child(4) .ph-bg { background: linear-gradient(135deg, #1A001E, #380040); }

.team-info { padding: 20px 16px; }
.team-info h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-info .role { font-size: 12px; color: var(--gold); letter-spacing: 0.05em; }
.team-info p { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.team-socials { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.team-socials a {
  width: 32px; height: 32px; border-radius: 6px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 14px; text-decoration: none; color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.team-socials a:hover { border-color: var(--gold); color: var(--gold); }

/* ─── CTA ─── */
.cta-section {
  background: var(--dark); padding: 100px 5%;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.cta-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px; margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; line-height: 1.1; margin-bottom: 20px;
}
.cta-inner h2 em { font-style: normal; color: var(--gold); }

.cta-inner p { font-size: 17px; color: var(--muted); margin-bottom: 40px; }

.cta-form {
  display: flex; gap: 12px; max-width: 440px; margin: 0 auto;
}
.cta-form input {
  flex: 1; padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--white); font-size: 14px; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
}
.cta-form input::placeholder { color: var(--muted); }
.cta-form input:focus { border-color: rgba(201,168,76,0.4); }

/* ─── FOOTER ─── */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 72px 5% 40px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}

.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 16px; line-height: 1.7; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; color: var(--muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 20px; color: var(--white); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom .dots { display: flex; gap: 6px; }
.footer-bottom .dots span { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.footer-bottom .dots span:first-child { background: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { position: static; transform: none; flex-direction: row; flex-wrap: wrap; margin-top: 48px; animation: fadeUp 0.8s 0.4s ease both; }
  .hero { flex-direction: column; align-items: flex-start; padding-bottom: 60px; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-float { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.large { grid-row: span 1; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-form { flex-direction: column; }
  .hero-stats { flex-direction: row; }
}

@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }
}