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

:root {
  --blue: #2AABE2;
  --blue-dark: #1a8fc4;
  --blue-light: #4dc0f0;
  --red: #CC2027;
  --red-light: #e02a30;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --gray-100: #f2f4f7;
  --gray-200: #e4e8ef;
  --gray-500: #6b7280;
  --gray-800: #1a1e2e;
  --black: #0d1117;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --content-max: 1200px;
  --nav-height: 76px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a, button, input { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: 96px; }

:focus-visible {
  outline: 3px solid rgba(42,171,226,0.35);
  outline-offset: 3px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  height: var(--nav-height);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  transition: var(--transition);
}
nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  transition: var(--transition);
  flex-shrink: 0;
}
nav.scrolled .nav-logo img { height: 40px; width: 40px; }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.05;
  color: var(--blue-dark);
  white-space: nowrap;
  max-width: 160px;
}
.nav-brand span { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-800);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--red-light) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.99);
  padding: 20px clamp(20px, 4vw, 32px) 28px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 3px solid var(--red);
  max-height: calc(100svh - var(--nav-height));
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gray-800);
  text-decoration: none;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  letter-spacing: 0.04em;
}
.mobile-menu a:last-child {
  border: none;
  color: var(--red);
  margin-top: 8px;
}
body.menu-open { overflow: hidden; }

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 28px) clamp(20px, 5vw, 48px) 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d2a3d 0%, #0a1e2e 60%, var(--black) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-img-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(55%, 860px);
  overflow: hidden;
}
.hero-img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: grayscale(20%);
}
.hero-img-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(13,42,61,0.95) 0%, rgba(13,42,61,0.7) 25%, transparent 72%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  padding: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.84;
  letter-spacing: -0.01em;
  color: white;
  margin-bottom: 22px;
  text-transform: uppercase;
}
h1 .accent {
  color: var(--red);
  display: block;
  margin-bottom: -0.04em;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary,
.btn-secondary {
  min-height: 56px;
  justify-content: center;
  text-align: center;
}
.btn-primary {
  background: var(--red);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 30px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(204,26,26,0.4);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,26,26,0.5);
}
.btn-primary:disabled {
  cursor: default;
  transform: none;
  box-shadow: none;
}
.btn-secondary {
  background: transparent;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 30px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { color: white; min-width: 0; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1;
  color: white;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-top: 6px;
  line-height: 1.4;
}

/* ─── SECTION SHARED ─── */
section {
  padding: clamp(72px, 9vw, 104px) clamp(20px, 5vw, 48px);
}
#services > *, #why > *, #gallery > *, #clients > *, #process > *, #quote > *, footer > * {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
/* Left-aligned sections: anchor h2 and label to the same left edge as the subheading */
#services > h2, #services > .section-label,
#gallery > h2, #gallery > .section-label,
#process > h2, #process > .section-label {
  margin-left: 0;
}
.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.82rem, 0.8vw, 0.9rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.3;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 20px;
}
h2 .blue { color: var(--blue); }
.section-intro {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 50px;
}
#services .section-intro,
#why .section-intro,
#gallery .section-intro,
#process .section-intro {
  margin: 0 auto 50px 0;
}
#clients .section-intro {
  margin-left: auto;
  margin-right: auto;
}

/* ─── TRUST BAR ─── */
#trust {
  background: #0d1f2d;
  padding: 34px clamp(20px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
.trust-icon { font-size: 1.4rem; }

/* ─── SERVICES ─── */
#services { background: var(--off-white); }
.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--red);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d2a3d, var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,87,184,0.25);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gray-800);
  line-height: 1.05;
}
.service-card p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.65; }

/* ─── WHY US ─── */
#why { background: white; }
#why .why-grid {
  width: min(100%, var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.why-image-stack { position: relative; min-width: 0; }
.why-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.why-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 52%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 6px solid white;
}
.why-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--red);
  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-lg);
}
.why-badge small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 10px;
  transition: var(--transition);
  cursor: default;
}
.why-point:hover { background: var(--gray-100); }
.why-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0d2a3d, var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
}
.why-point-text h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.why-point-text p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.6; }

/* ─── GALLERY ─── */
#gallery { background: var(--gray-800); color: white; }
#gallery h2 { color: white; }
#gallery .section-intro {
  color: rgba(255,255,255,0.6);
  max-width: 720px;
}
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
}
.gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 4 / 3;
  min-width: 0;
  box-shadow: 0 8px 26px rgba(0,0,0,0.2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 300;
  transition: var(--transition);
  line-height: 1;
}
.lightbox-close:hover { color: var(--red); }
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.1);
  padding: 8px 20px;
  border-radius: 100px;
  max-width: calc(100vw - 40px);
  text-align: center;
}

/* ─── CLIENTS ─── */
#clients { background: var(--off-white); text-align: center; }
.clients-intro { max-width: 600px; margin: 0 auto 44px; color: var(--gray-500); }
.clients-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.client-chip {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.client-chip:hover {
  background: #0d2a3d;
  color: white;
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

/* ─── PROCESS ─── */
#process { background: var(--off-white); }
.process-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  position: relative;
  margin-top: 20px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0d2a3d;
  color: white;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid white;
  box-shadow: var(--shadow);
}
.step-num.red { background: var(--red); }
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-step p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

/* ─── QUOTE CTA ─── */
#quote {
  background: linear-gradient(135deg, #0d1f2d 0%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpolygon points='50 0 100 25 100 75 50 100 0 75 0 25'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px;
}
#quote h2 { color: white; position: relative; z-index: 1; }
#quote p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.quote-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: left;
}
.form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field-wide { grid-column: 1 / -1; }
.quote-form label {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  min-width: 0;
  width: 100%;
  padding: 16px 18px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.quote-form select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.7) 50%), linear-gradient(135deg, rgba(255,255,255,0.7) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.quote-form select option {
  background: var(--gray-800);
  color: white;
}
.quote-form textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.5;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
}
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
#quote .btn-primary {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  min-height: 58px;
  margin-top: 2px;
}
.quote-trust {
  margin-top: 18px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 64px clamp(20px, 5vw, 48px) 32px;
}
.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 60px; margin-bottom: 16px; border-radius: 6px; background: white; }
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-contact-item span:first-child {
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--red); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  #why .why-grid { grid-template-columns: 1fr; }
  .why-img-accent { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-steps::before { display: none; }
}

@media (max-width: 900px) {
  .quote-form { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }

  nav,
  nav.scrolled {
    padding: 0 20px;
    height: var(--nav-height);
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-brand { font-size: 1rem; }

  section { padding: 72px 20px; }
  .section-label {
    font-size: 0.82rem;
    gap: 8px;
    margin-bottom: 10px;
  }
  .section-label::before { width: 22px; }
  h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1;
    margin-bottom: 16px;
  }
  .section-intro,
  #services .section-intro,
  #why .section-intro,
  #gallery .section-intro,
  #process .section-intro {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 36px;
  }
  #clients .section-intro {
    margin-left: auto;
    margin-right: auto;
  }
  #hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 28px) 20px 56px;
  }
  .hero-content { width: 100%; }
  .hero-img-overlay { width: 100%; opacity: 0.16; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  #trust {
    gap: 20px;
    padding: 28px 20px;
  }
  .trust-item {
    font-size: 0.85rem;
    width: calc(50% - 10px);
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .why-badge { left: 0; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .trust-item { width: 100%; }
  .client-chip {
    width: 100%;
    border-radius: 18px;
  }
  .lightbox-caption {
    bottom: 16px;
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  h1 {
    font-size: clamp(2.6rem, 12vw, 3rem);
    line-height: 0.86;
  }
  .process-steps { grid-template-columns: 1fr; }
  .why-img-main { height: 340px; }
  .hero-badge {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
