/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #ffffff;
  color: #111111;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --red:        #e01a1a;
  --red-dark:   #b81515;
  --red-glow:   rgba(224,26,26,0.35);
  --white:      #ffffff;
  --off-white:  #f5f5f5;
  --black:      #0a0a0a;
  --dark:       #111111;
  --dark-card:  #1a1a1a;
  --text:       #111111;
  --muted:      #666666;
  --border:     rgba(0,0,0,0.1);
  --border-d:   rgba(255,255,255,0.1);
  --radius:     6px;
  --container:  1200px;
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body:    'Barlow', sans-serif;
  --ff-accent:  'Barlow Condensed', sans-serif;
}

/* ── Helpers ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.red-text   { color: var(--red); }
.white      { color: #fff !important; }

.section-label {
  font-family: var(--ff-accent);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
}
.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 12px auto 0;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-title { margin-bottom: 0; }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
}
.btn-red:hover { background: var(--red-dark); box-shadow: 0 4px 20px var(--red-glow); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.btn-outline:hover { border-color: var(--red); box-shadow: 0 0 20px var(--red-glow); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid var(--border);
  color: var(--muted);
  border-radius: var(--radius);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline-dark:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--ff-accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color 0.25s;
}
nav.scrolled .nav-links a { color: var(--muted); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  font-family: var(--ff-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 9px 20px;
  background: var(--red);
  color: #fff !important;
  border-radius: var(--radius);
  transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
}
.btn-nav::after { display: none !important; }
.btn-nav:hover { background: var(--red-dark); box-shadow: 0 4px 16px var(--red-glow); transform: translateY(-1px); }

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}
nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — always hidden until .open */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-accent);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--muted);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }
.btn-nav-mobile {
  margin-top: 16px;
  padding: 12px 20px;
  background: var(--red);
  color: #fff !important;
  border-radius: var(--radius);
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-align: center;
}

/* ============================================================
   HERO  (dark cinematic)
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: #050505;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: #050505;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 120%;
  background: linear-gradient(135deg, transparent 40%, rgba(224,26,26,0.07) 60%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-logo {
  height: 88px; width: auto;
  margin: 0 auto 28px;
  animation: fadeDown 0.9s ease both;
}
.hero-label {
  font-family: var(--ff-accent);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
  animation: fadeDown 0.9s 0.15s ease both;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 10vw, 114px);
  line-height: 0.97;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
  animation: fadeDown 0.9s 0.3s ease both;
}
.hero-sub {
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.58);
  font-size: 17px;
  line-height: 1.7;
  animation: fadeDown 0.9s 0.45s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.9s 0.6s ease both;
}
.scroll-mouse {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}
.mouse-body {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.mouse-dot {
  width: 4px; height: 10px;
  background: var(--red);
  border-radius: 2px;
  animation: scrollDot 2s ease infinite;
}

/* ============================================================
   ABOUT  (white bg)
   ============================================================ */
#about {
  padding: 120px 0;
  background: var(--white);
}
.about-p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 18px;
}
.about-p:last-of-type { margin-bottom: 0; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 760px;
  margin-top: 60px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: 52px;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-desc {
  font-family: var(--ff-accent);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============================================================
   SERVICES  (dark bg)
   ============================================================ */
#services {
  padding: 120px 0;
  background: var(--dark);
}
#services .section-title { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,26,26,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { border-color: rgba(224,26,26,0.4); transform: translateY(-2px); box-shadow: 0 0 22px rgba(224,26,26,0.1); }
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 38px; height: 38px;
  color: var(--red);
  margin-bottom: 16px;
  transition: transform 0.3s;
}
.service-card:hover .svc-icon { transform: scale(1.1); }
.service-card h3 {
  font-family: var(--ff-accent);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f0f0f0;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s, opacity 0.4s;
}
.service-card:hover p { max-height: 80px; opacity: 1; }

/* ============================================================
   PORTFOLIO  (white bg)
   ============================================================ */
#portfolio {
  padding: 120px 0;
  background: var(--white);
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--ff-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.filter-btn:hover { border-color: var(--red); color: var(--text); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.port-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.35s, box-shadow 0.35s;
}
.port-item:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.port-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.port-item:hover img { transform: scale(1.07); }
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  transition: background 0.35s;
}
.port-item:hover .port-overlay { background: rgba(0,0,0,0.28); }
.port-overlay h3 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 6px;
}
.port-overlay span {
  font-family: var(--ff-accent);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.08em;
}

/* ============================================================
   CLIENTS  (off-white bg)
   ============================================================ */
#clients {
  padding: 100px 0;
  background: var(--off-white);
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.client-card:hover { border-color: var(--red); box-shadow: 0 4px 14px rgba(224,26,26,0.07); }
.client-card span {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   WHY US  (white bg)
   ============================================================ */
#why-us {
  padding: 120px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  display: flex;
  gap: 18px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.why-card:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(224,26,26,0.07); }
.why-card svg { width: 30px; height: 30px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.why-card h3 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 6px;
}
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   AI GENERATOR  (dark bg)
   ============================================================ */
#generator {
  padding: 120px 0;
  background: var(--dark);
}
.gen-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(224,26,26,0.35);
  background: rgba(224,26,26,0.1);
  color: var(--red);
  border-radius: 50px;
  font-family: var(--ff-accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.gen-inner .section-title { color: #fff; margin-bottom: 14px; }
.gen-sub {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  margin-bottom: 32px;
}
.gen-row {
  display: flex;
  gap: 10px;
}
.gen-input {
  flex: 1;
  padding: 13px 18px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: #f0f0f0;
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}
.gen-input::placeholder { color: #555; }
.gen-input:focus { border-color: var(--red); }
.gen-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.gen-loading.show { display: flex; }
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.gen-result {
  display: none;
  margin-top: 24px;
  padding: 22px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: left;
}
.gen-result.show { display: block; }
.gen-result-label {
  font-family: var(--ff-accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 10px;
}
.gen-result p { font-size: 14px; color: #f0f0f0; line-height: 1.7; }

/* ============================================================
   CONTACT  (off-white bg)
   ============================================================ */
#contact {
  padding: 120px 0;
  background: var(--off-white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-link { transition: color 0.25s; }
.ci-link:hover { color: var(--red); }
.ci-icon {
  width: 42px; height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; color: var(--red); }
.ci-label {
  font-family: var(--ff-accent);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.ci-value { font-size: 14px; color: var(--text); line-height: 1.6; }

/* Social icons — light bg version */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.soc-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--white);
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
}
.soc-icon svg { width: 16px; height: 16px; }
.soc-icon:hover { border-color: var(--red); color: var(--red); background: rgba(224,26,26,0.05); transform: translateY(-2px); }

/* Social icons — dark bg version (footer) */
.soc-icon.dark {
  background: transparent;
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}
.soc-icon.dark:hover { border-color: var(--red); color: #fff; background: var(--red); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.form-field {
  width: 100%;
  padding: 13px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aaa; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,26,26,0.08);
}
.contact-form textarea { resize: none; height: 140px; }

.form-actions { display: flex; gap: 12px; }
.form-actions .btn-red { flex: 1; justify-content: center; }

/* ============================================================
   FOOTER  (dark bg)
   ============================================================ */
footer {
  padding: 64px 0 0;
  background: var(--black);
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 42px; width: auto; margin-bottom: 14px; }
.footer-brand > p {
  font-family: var(--ff-accent);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.footer-heading {
  font-family: var(--ff-accent);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--ff-accent);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.footer-col a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
  transition: color 0.25s;
}
a.footer-contact-item:hover { color: rgba(255,255,255,0.8); }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollDot {
  0%  { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(12px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid         { grid-template-columns: repeat(2, 1fr); }
  .clients-grid     { grid-template-columns: repeat(4, 1fr); }
  .contact-layout   { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand     { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .stats          { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .clients-grid   { grid-template-columns: repeat(3, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .form-actions   { flex-direction: column; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .gen-row        { flex-direction: column; }
  .hero-logo      { height: 64px; }
}

@media (max-width: 480px) {
  .services-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .clients-grid   { grid-template-columns: repeat(2, 1fr); }
}

