/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'Bebas Neue';
  src: url('/assets/fonts/bebas-neue.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --red: #E8345C;
  --red-bg: #D6234A;
  --red-glow: rgba(214, 35, 74, 0.3);
  --green: #2D8C3C;
  --green-dark: #1a5c26;
  --navy: #1B2A4A;
  --white: #f0f0f0;
  --gray: #999;
  --gray-dark: #8a8a8a;
  --font-display: 'Bebas Neue', 'Bebas Neue Fallback', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 88px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon {
  width: 180px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links-left { justify-content: flex-end; }
.nav-links-right { justify-content: flex-start; }

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); }

.nav-phone-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  color: var(--red);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.nav-phone-bar:hover { color: #ff5a7d; background: rgba(232,52,92,0.06); }

.nav-phone-bar svg { width: 16px; height: 16px; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 110;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 5rem 1.5rem 3rem;
  z-index: 105;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.nav-open .nav-mobile-menu {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-mobile-close svg { width: 22px; height: 22px; }
.nav-mobile-close:hover { background: rgba(232,52,92,0.15); border-color: var(--red); color: var(--red); }

.nav-mobile-logo {
  width: 64px;
  height: 64px;
  margin-top: 0.5rem;
}

.nav-mobile-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: auto 0;
}
.nav-mobile-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 0.5rem 1rem;
}
.nav-mobile-links a:hover { color: var(--red); }

.nav-mobile-phone {
  color: var(--red) !important;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(232,52,92,0.4);
  border-radius: 999px;
}
.nav-mobile-phone svg { width: 24px; height: 24px; flex: 0 0 24px; }

body.nav-open { overflow: hidden; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  background: url('/assets/img/hero-poster.webp') center/cover no-repeat;
}
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s; }
.hero-video.is-playing { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.25rem 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(214, 35, 74, 0.12);
  border: 1px solid rgba(214, 35, 74, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gray);
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: var(--red-bg);
  color: #fff;
  box-shadow: 0 0 30px var(--red-glow);
}

.btn-primary:hover {
  background: #e0294f;
  box-shadow: 0 0 50px var(--red-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
}

.btn svg { width: 18px; height: 18px; }

/* ========== SERVICES ========== */
.services { padding: 6rem 0; position: relative; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.service-card--search-recovery { background-image: linear-gradient(180deg, var(--bg-card) 30%, rgba(10,10,10,0.85) 100%), url('/assets/img/deer-recovery-aerial.webp'); }
.service-card--inspections     { background-image: linear-gradient(180deg, var(--bg-card) 30%, rgba(10,10,10,0.85) 100%), url('/assets/img/drone-truck-field.webp'); }
.service-card--agriculture     { background-image: linear-gradient(180deg, var(--bg-card) 30%, rgba(10,10,10,0.85) 100%), url('/assets/img/drone-field.webp'); }
.service-card--mapping         { background-image: linear-gradient(180deg, var(--bg-card) 30%, rgba(10,10,10,0.85) 100%), url('/assets/img/mapping-desk.webp'); }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  background-color: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(214, 35, 74, 0.08);
  color: var(--red);
}

.service-card-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.service-card ul { display: flex; flex-direction: column; gap: 0.5rem; }

.service-card li {
  font-size: 0.88rem;
  color: var(--gray);
  padding-left: 1.1rem;
  position: relative;
}

.service-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.service-card--inspections .service-card-icon { background: rgba(27, 42, 74, 0.2); color: #4a7cc9; }
.service-card--inspections::before { background: #4a7cc9; }
.service-card--inspections li::before { background: #4a7cc9; }

.service-card--agriculture .service-card-icon { background: rgba(45, 140, 60, 0.1); color: var(--green); }
.service-card--agriculture::before { background: var(--green); }
.service-card--agriculture li::before { background: var(--green); }

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step { text-align: center; position: relative; }

.step::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: calc(2rem);
  height: 2px;
  background: linear-gradient(90deg, rgba(214,35,74,0.4), transparent);
}

.step:last-child::after { display: none; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(214, 35, 74, 0.1);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 280px;
  margin: 0 auto;
}

/* ========== ABOUT ========== */
.about { padding: 6rem 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-card);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(10,10,10,0.6));
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.about-text p strong { color: var(--white); }

.trust-badges { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
  padding: 6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.contact-info p { color: var(--gray); margin-bottom: 2rem; }

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
}

.contact-phone svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  background: rgba(214,35,74,0.1);
  border-radius: 50%;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-group select option { background: var(--bg-dark); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-full { grid-column: 1 / -1; }

.form-submit { margin-top: 1rem; }

.form-submit .btn { width: 100%; justify-content: center; }

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand { display: flex; align-items: center; gap: 1rem; }

.footer-brand-text { font-size: 0.8rem; color: var(--gray-dark); }

.footer-brand-text strong {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

.footer-center { text-align: center; }

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gray-dark);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-dark);
  margin-top: 0.25rem;
}

.footer-socials { display: flex; gap: 0.75rem; }

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray);
  transition: all 0.2s;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(214,35,74,0.1);
}

.footer-socials svg { width: 16px; height: 16px; }

/* ========== MOBILE STICKY CTA ========== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(214,35,74,0.2);
  padding: 0.75rem 1.25rem;
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--red-bg);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.mobile-cta svg { width: 20px; height: 20px; }

/* ========== /GALLERY/ PAGE ========== */
.gl-hero {
  padding: 8rem 0 2rem;
  background: radial-gradient(ellipse at top, rgba(232,52,92,0.08), transparent 60%);
}
.gl-eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.gl-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin-bottom: 1rem;
}
.gl-lead {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray);
}

.gl-grid-wrap { padding: 2rem 0 6rem; }
.gl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.gl-tile {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-card);
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
}
.gl-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.gl-tile:hover img { transform: scale(1.04); filter: brightness(1.05); }
.gl-tile:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.gl-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(10,10,10,0.72);
  border: 2px solid rgba(255,255,255,0.85);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.gl-play svg { width: 22px; height: 22px; margin-left: 3px; }
.gl-tile--video:hover .gl-play { background: var(--red-bg); transform: translate(-50%,-50%) scale(1.08); }

.gl-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.gl-lightbox.is-open { opacity: 1; visibility: visible; }
.gl-lb-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.gl-lb-close svg { width: 22px; height: 22px; }
.gl-lb-close:hover { background: rgba(232,52,92,0.2); border-color: var(--red); color: var(--red); }
.gl-lb-content {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gl-lb-content img,
.gl-lb-content video {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .gl-grid { grid-template-columns: repeat(2, 1fr); gap: 0.35rem; }
  .gl-play { width: 44px; height: 44px; }
  .gl-play svg { width: 18px; height: 18px; }
  .gl-lightbox { padding: 0.75rem; }
  .gl-lb-content video, .gl-lb-content img { max-height: 80vh; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-inner { grid-template-columns: 1fr auto 1fr; gap: 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.08em; }
  .nav-logo-icon { width: 140px; }
}

@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: 1fr auto auto;
    min-height: 64px;
    padding: 0.5rem 1.25rem;
  }
  .nav-links { display: none; }
  .nav-phone-bar { display: none; }
  .nav-hamburger { display: block; }
  .nav-logo { justify-content: flex-start; }
  .nav-logo-icon { width: 130px; }

  .hero-content { padding: 6rem 1.25rem 3rem; }
  .hero h1 { font-size: 3rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-ctas .btn-primary { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .step::after { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { aspect-ratio: 1/1; max-height: 420px; margin: 0 auto; width: 100%; max-width: 420px; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-phone { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }

  .mobile-cta { display: block; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-badges { flex-direction: column; }
}

/* ========== SHARED PAGE STYLES (sa- prefix) ========== */
.sa-hero {
  padding: 8rem 0 2rem;
  background: radial-gradient(ellipse at top, rgba(232,52,92,0.08), transparent 60%);
}
.sa-eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.sa-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
}
.sa-title em { color: var(--red); font-style: normal; }
.sa-lead {
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--gray);
}

.sa-why {
  --c-env: #ff6b35;
  --c-wet: #3ed9b5;
  --c-for: #6dbf7d;
  --c-pro: #b36bff;
}
.sa-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.sa-why-grid > .sa-why,
.sa-why-grid > div {
  background: var(--bg-card);
  border-left: 3px solid var(--gray-dark);
  border-radius: 0 4px 4px 0;
  padding: 1.1rem 1.2rem;
}
.sa-why-grid > .sa-why.env,
.sa-why-grid > .env { border-color: var(--c-env); }
.sa-why-grid > .sa-why.wet,
.sa-why-grid > .wet { border-color: var(--c-wet); }
.sa-why-grid > .sa-why.for,
.sa-why-grid > .for { border-color: var(--c-for); }
.sa-why-grid > .sa-why.pro,
.sa-why-grid > .pro { border-color: var(--c-pro); }
.sa-why-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.35rem;
}
.sa-why.env .sa-why-tag, .env .sa-why-tag { color: var(--c-env); }
.sa-why.wet .sa-why-tag, .wet .sa-why-tag { color: var(--c-wet); }
.sa-why.for .sa-why-tag, .for .sa-why-tag { color: var(--c-for); }
.sa-why.pro .sa-why-tag, .pro .sa-why-tag { color: var(--c-pro); }
.sa-why-grid > .sa-why h3,
.sa-why-grid > div h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.sa-why-grid > .sa-why p,
.sa-why-grid > div p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.sa-cta { padding: 4rem 0 6rem; }
.sa-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(214,35,74,0.12), rgba(232,52,92,0.04));
  border: 1px solid rgba(232,52,92,0.25);
  border-radius: 12px;
  padding: 2.25rem 2.5rem;
}
.sa-cta-eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.sa-cta-inner h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.sa-cta-inner p { color: var(--gray); max-width: 500px; }
.sa-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
  min-width: 220px;
}

@media (max-width: 900px) {
  .sa-why-grid { grid-template-columns: 1fr 1fr; }
  .sa-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .sa-why-grid { grid-template-columns: 1fr; }
  .sa-title { font-size: 2.4rem; }
}
