/* ================================================================
   Safe Hands Property Services
   Fonts: Bebas Neue (headings) · DM Sans (body)
   Brand: #0D1F52 navy  |  #6BBD24 green  |  #08111F dark
   ================================================================ */

:root {
  --blue:       #0D1F52;
  --blue-mid:   #1B3A8C;
  --blue-light: #2a52c8;
  --green:      #6BBD24;
  --green-dark: #569A1E;
  --dark:       #08111F;
  --dark-mid:   #0f1e38;
  --white:      #ffffff;
  --off-white:  #F5F7FC;
  --grey-100:   #e8eaf2;
  --grey-300:   #c4c9d8;
  --grey-500:   #7b829a;
  --grey-700:   #3d4257;
  --nav-h:      70px;
  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  24px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ───────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(255,255,255,0.6); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-500);
  max-width: 540px;
}
.section-desc--light { color: rgba(255,255,255,0.6); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin-left: auto; margin-right: auto; }
.section-header--light .section-title { color: var(--white); }

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--hero-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(107,189,36,0.45);
  font-size: 1rem;
  padding: 16px 34px;
}
.btn--hero-primary:hover { background: var(--green-dark); box-shadow: 0 12px 36px rgba(107,189,36,0.55); }

.btn--hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 1rem;
  padding: 14px 32px;
}
.btn--hero-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--hero-fb {
  background: rgba(24,119,242,0.2);
  color: var(--white);
  border: 1px solid rgba(24,119,242,0.5);
  font-size: 1rem;
  padding: 14px 28px;
}
.btn--hero-fb:hover { background: #1877f2; border-color: #1877f2; }

.btn--call {
  background: var(--green);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(107,189,36,0.35);
}
.btn--call:hover { background: var(--green-dark); transform: translateY(-1px); }

.btn--coverage {
  background: var(--white);
  color: var(--blue);
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--coverage:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--grey-100);
  box-shadow: 0 4px 24px rgba(8,17,31,0.1);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo img { height: 50px; width: auto; object-fit: contain; }

.nav__links {
  display: flex;
  gap: 32px;
  margin-right: auto;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--grey-700);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__links a:hover { color: var(--blue); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 28px 100px;
  background: var(--dark);
  overflow: hidden;
}

/* Diagonal line texture */
.hero__layer--stripe {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 48px,
    rgba(27,58,140,0.06) 48px,
    rgba(27,58,140,0.06) 49px
  );
}

/* Blue radial glow top-right */
.hero__layer--glow-blue {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 65%;
  height: 110%;
  background: radial-gradient(ellipse at center, rgba(13,31,82,0.9) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1) translate(0,0); opacity: 0.7; }
  50%       { transform: scale(1.08) translate(-2%, 2%); opacity: 1; }
}

/* Green radial glow bottom-left */
.hero__layer--glow-red {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(107,189,36,0.18) 0%, transparent 65%);
  animation: heroGlow 10s ease-in-out 2s infinite reverse;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

/* hero enters: staggered fade-up */
.hero__badge,
.hero__logo,
.hero__headline,
.hero__sub,
.hero__ctas,
.hero__landline {
  animation: heroFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) both;
}
.hero__badge      { animation-delay: 0.15s; }
.hero__logo       { animation-delay: 0.28s; }
.hero__headline   { animation-delay: 0.42s; }
.hero__sub        { animation-delay: 0.56s; }
.hero__ctas       { animation-delay: 0.68s; }
.hero__landline   { animation-delay: 0.78s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}

.hero__logo {
  max-width: 280px;
  margin: 0 auto 32px;
}

.hero__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.6rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__headline-line--1 {
  color: var(--white);
}
.hero__headline-line--2 {
  color: var(--green);
  -webkit-text-stroke: 0;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}

.hero__landline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
}
.hero__landline a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.hero__landline a:hover { color: var(--white); }

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out 1.5s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--blue);
  padding: 0 28px;
}

.trust-bar__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.trust-logo-wrap {
  background: var(--white);
  border-radius: 6px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
}
.trust-logo-wrap img {
  height: 34px;
  width: auto;
  display: block;
}

.hero__badge-logo {
  height: 22px;
  width: auto;
  background: var(--white);
  border-radius: 3px;
  padding: 2px 6px;
}

.cred-card__logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cred-card__logo img {
  max-height: 64px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

/* ── SERVICES ──────────────────────────────────────────────── */
.services {
  padding: 96px 0;
  background: var(--off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1.5px solid var(--grey-100);
  box-shadow: 0 2px 8px rgba(8,17,31,0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(8,17,31,0.1);
  border-color: var(--blue-mid);
}

.svc-card:hover .svc-card__icon-wrap {
  background: var(--green);
}

.svc-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 13px;
  transition: background var(--transition);
}

.svc-card__icon-wrap svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
}

.svc-card__body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.1;
}

.svc-card__body p {
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1.5;
}

/* stagger service card reveal */
.services__grid .svc-card:nth-child(1)  { transition-delay: 0.05s; }
.services__grid .svc-card:nth-child(2)  { transition-delay: 0.10s; }
.services__grid .svc-card:nth-child(3)  { transition-delay: 0.15s; }
.services__grid .svc-card:nth-child(4)  { transition-delay: 0.20s; }
.services__grid .svc-card:nth-child(5)  { transition-delay: 0.25s; }
.services__grid .svc-card:nth-child(6)  { transition-delay: 0.30s; }
.services__grid .svc-card:nth-child(7)  { transition-delay: 0.35s; }
.services__grid .svc-card:nth-child(8)  { transition-delay: 0.40s; }
.services__grid .svc-card:nth-child(9)  { transition-delay: 0.45s; }
.services__grid .svc-card:nth-child(10) { transition-delay: 0.50s; }

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-section {
  padding: 96px 0;
  background: var(--dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--dark-mid);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,17,31,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery__item:hover .gallery__item__overlay { opacity: 1; }

.gallery__placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: rgba(255,255,255,0.3);
}

.gallery__placeholder-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.gallery__placeholder span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.25);
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox__stage {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}
.lightbox__stage img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox__caption {
  margin-top: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.2); }

.lightbox__close { top: 20px; right: 20px; font-size: 1.8rem; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ── CREDENTIALS ──────────────────────────────────────────── */
.credentials {
  padding: 96px 0;
  background: var(--off-white);
}

.credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cred-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1.5px solid var(--grey-100);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.cred-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(8,17,31,0.08);
}

.cred-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 16px;
}
.cred-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
}

.cred-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 10px;
}
.cred-card p {
  font-size: 0.88rem;
  color: var(--grey-500);
  line-height: 1.65;
}

/* ── COVERAGE ─────────────────────────────────────────────── */
.coverage {
  background: var(--blue);
  padding: 96px 28px;
}

.coverage__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage__text .section-label { color: rgba(255,255,255,0.5); }

.coverage__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

.coverage__text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.coverage__text strong { color: var(--white); }

.coverage__map-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.coverage__map-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(107,189,36,0.4);
}
.coverage__map-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
}

.coverage__map-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.coverage__map-areas span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer { background: var(--dark); }

.footer__top {
  padding: 80px 0 60px;
  text-align: center;
}

.footer__logo-wrap { margin-bottom: 32px; }
.footer__logo {
  max-width: 220px;
  margin: 0 auto;
}

.footer__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 48px;
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.footer__contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.footer__contact-card:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
}

.footer__contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  transition: background var(--transition);
}
.footer__contact-card:hover .footer__contact-icon {
  background: rgba(255,255,255,0.2);
}
.footer__contact-icon svg { width: 100%; height: 100%; stroke: var(--white); }

.footer__contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer__contact-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .credentials__grid { grid-template-columns: repeat(2, 1fr); }
  .coverage__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__contacts { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__inner { flex-direction: column; gap: 0; }
  .trust-divider { width: 60px; height: 1px; margin: 0 auto; }
  .trust-item { padding: 14px 24px; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 24px 28px 32px;
    border-bottom: 1px solid var(--grey-100);
    box-shadow: 0 12px 32px rgba(8,17,31,0.12);
    gap: 22px;
    z-index: 999;
  }
  .nav__links.open a { font-size: 1.1rem; }
  .nav__burger { display: flex; }

  .hero__logo { max-width: 220px; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr; }
  .footer__contacts { grid-template-columns: 1fr 1fr; }
  .footer__bottom .container { flex-direction: column; gap: 6px; text-align: center; }

  .lightbox__nav--prev { left: 4px; }
  .lightbox__nav--next { right: 4px; }
}

@media (max-width: 420px) {
  .footer__contacts { grid-template-columns: 1fr; }
  .trust-item { font-size: 0.82rem; }
}
