/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1a2233;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

:root {
  --navy: #0f1e38;
  --navy-light: #16294a;
  --orange: #f2701d;
  --orange-dark: #d8600f;
  --grey: #667085;
  --bg-soft: #f5f6f8;
  --radius: 14px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-small { padding: 11px 22px; font-size: 14px; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
  margin-left: 48px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 700;
  color: #c4cbdb;
  transition: color .15s ease;
}
.main-nav a:hover { color: #fff; }
.header-phone {
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 980px) { .main-nav { display: none; } }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: var(--navy-light);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(242,112,29,.20) 0%, rgba(242,112,29,0) 70%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 76px 24px 96px;
}
.hero-copy { order: 2; }
.hero-photo-wrap { order: 1; position: relative; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .6s ease forwards;
  animation-delay: .05s;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  animation: pulse 2.2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(32px, 3.4vw + 14px, 46px);
  line-height: 1.14;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: .16s;
}
.hero-title .hl { color: var(--orange); }
.hero-subtitle {
  font-size: 18px;
  line-height: 1.55;
  color: #c4cbdb;
  max-width: 460px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: .28s;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: .4s;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}
.hero-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s ease;
}
.hero-phone:hover .hero-phone-icon { background: var(--orange); }
.hero-messengers {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: .46s;
}
.msg-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .15s ease;
}
.msg-chip:hover { background: var(--orange); }

.trust-strip {
  display: flex; gap: 28px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .7s ease forwards;
  animation-delay: .52s;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num {
  display: flex; align-items: center; gap: 6px;
  font-size: 22px; font-weight: 800; color: #fff;
  font-variant-numeric: tabular-nums;
}
.trust-label { font-size: 13px; color: var(--grey); }
.trust-divider { width: 1px; background: rgba(255,255,255,.14); }

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.55);
  opacity: 0;
  animation: fadeScale .8s ease forwards;
  animation-delay: .3s;
}
.photo-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 16px 32px -12px rgba(15,30,56,.35);
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
.float-card.dispatch { left: -28px; bottom: 28px; animation-delay: 1.2s; }
.float-card.rating { right: -18px; top: 22px; background: var(--navy); color: #fff; animation-delay: 1.35s; }
.float-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(242,112,29,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card.rating .float-icon { background: rgba(242,112,29,.22); }
.float-title { font-size: 14px; font-weight: 800; line-height: 1.2; }
.float-sub { font-size: 12px; color: var(--grey); margin-top: 1px; }
.float-card.rating .float-sub { color: #c4cbdb; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(242,112,29,.55); }
  70% { box-shadow: 0 0 0 9px rgba(242,112,29,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,112,29,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(.96); }
  to { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-subtitle, .hero-cta, .hero-messengers,
  .trust-strip, .photo-frame, .float-card { animation: none; opacity: 1; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; padding: 44px 20px 56px; gap: 44px; }
  .hero-copy { order: 1; }
  .hero-photo-wrap { order: 2; }
  .photo-frame img { height: 280px; }
  .float-card { position: static; margin-top: 12px; display: inline-flex; }
  .float-card.rating { margin-left: 12px; }
  .hero::before { display: none; }
  .trust-strip { gap: 20px; }
  .header-phone { font-size: 14px; }
  .hero-title { font-size: 32px; }
}
@media (max-width: 420px) {
  .float-card { display: flex; width: fit-content; }
  .float-card.rating { margin-left: 0; margin-top: 10px; }
}

/* ===== Why us ===== */
.why-section {
  background: var(--bg-soft);
  padding: 88px 0;
}
.why-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.why-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border: 1px solid #e4e7ee;
  border-radius: 18px;
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px -18px rgba(15,30,56,.22);
  border-color: rgba(242,112,29,.35);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(242,112,29,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey);
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== Services ===== */
.services-section {
  background: #fff;
  padding: 88px 0;
}
.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.services-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  max-width: 560px;
}
.services-note {
  font-size: 14px;
  color: var(--grey);
  max-width: 260px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 20px;
}
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px -18px rgba(15,30,56,.4);
}
.service-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  padding: 32px;
}
.service-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  z-index: -2;
}
.service-card:hover .service-photo { transform: scale(1.06); }
.service-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,56,.15) 0%, rgba(15,30,56,.45) 40%, rgba(15,30,56,.97) 100%);
  z-index: -1;
}
.service-card-title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.service-card.featured .service-card-title { font-size: 26px; }
.service-card-text {
  font-size: 14px;
  line-height: 1.5;
  color: #eef0f6;
  margin-bottom: 16px;
  max-width: 420px;
  text-shadow: 0 1px 5px rgba(0,0,0,.4);
}
.service-card.featured .service-card-text { font-size: 15px; }
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  transition: background .18s ease, border-color .18s ease;
}
.service-card:hover .service-card-cta {
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .service-card.featured { grid-column: span 2; grid-row: span 1; }
  .services-section { padding: 56px 0; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .service-card.featured { grid-column: span 1; }
}

/* ===== Process ===== */
.process-section {
  background: var(--bg-soft);
  padding: 88px 0;
}
.process-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: start;
}
.process-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  max-width: 460px;
  margin-bottom: 44px;
}
.process-steps { position: relative; }
.process-step {
  position: relative;
  display: flex;
  gap: 20px;
  padding-bottom: 36px;
}
.process-step:last-child { padding-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.process-step:hover .step-num { background: var(--orange); }
.process-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, #cfd5e2 0, #cfd5e2 4px, transparent 4px, transparent 9px);
}
.step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey);
  max-width: 420px;
}
.process-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(15,30,56,.3);
}
.process-photo-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.process-photo-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(15,30,56,.82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .process-section { padding: 56px 0; }
  .process-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-photo-wrap { order: -1; }
  .process-photo-wrap img { height: 280px; }
}

/* ===== Fleet ===== */
.fleet-section {
  background: #fff;
  padding: 88px 0;
}
.fleet-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.fleet-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  max-width: 520px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.fleet-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e4e7ee;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -20px rgba(15,30,56,.25);
  border-color: rgba(242,112,29,.3);
}
.fleet-photo {
  width: 100%;
  aspect-ratio: 1402 / 1122;
  height: auto;
  object-fit: cover;
  background: var(--navy);
  display: block;
}
.fleet-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fleet-name {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.fleet-specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.fleet-spec {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 8px 14px;
}
.fleet-spec-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.fleet-spec-label {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.fleet-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 20px;
}
.fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}
.fleet-price-note { font-size: 13px; color: var(--grey); }

@media (max-width: 820px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-section { padding: 56px 0; }
}

/* ===== Pricing ===== */
.pricing-section {
  background: #fff;
  padding: 88px 0;
}
.pricing-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.pricing-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.pricing-note { font-size: 14.5px; color: var(--grey); }
.pricing-table {
  max-width: 760px;
  margin: 0 auto 32px;
  border: 1px solid #e4e7ee;
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  border-bottom: 1px solid #e4e7ee;
  transition: background .15s ease;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--bg-soft); }
.pricing-label { font-size: 15px; color: var(--navy); font-weight: 600; }
.pricing-value { font-size: 15.5px; font-weight: 800; color: var(--orange); white-space: nowrap; }
.pricing-cta { text-align: center; }

@media (max-width: 600px) {
  .pricing-section { padding: 56px 0; }
  .pricing-row { padding: 14px 18px; gap: 12px; }
  .pricing-label { font-size: 14px; }
}

/* ===== Reviews ===== */
.reviews-section {
  background: var(--bg-soft);
  padding: 88px 0;
}
.reviews-head { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.reviews-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -20px rgba(15,30,56,.25); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.review-name { font-size: 15px; font-weight: 800; color: var(--navy); }
.review-service { font-size: 12.5px; color: var(--grey); }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-text { font-size: 14.5px; line-height: 1.6; color: var(--grey); }

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-section { padding: 56px 0; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== Gallery ===== */
.gallery-section {
  background: var(--bg-soft);
  padding: 88px 0;
}
.gallery-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.gallery-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}
.gallery-item.big { grid-column: span 2; grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,30,56,0) 55%, rgba(15,30,56,.85) 100%);
  z-index: -1;
}
.gallery-item-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 1px 5px rgba(0,0,0,.4);
}
.gallery-item-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15,30,56,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}
.gallery-item:hover .gallery-item-zoom { opacity: 1; }
.gallery-item:hover .gallery-item-zoom { background: var(--orange); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,16,30,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: min(1000px, 92vw);
  max-height: 84vh;
  border-radius: 12px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.6);
}
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--orange); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 900px) {
  .gallery-section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.big { grid-column: span 2; grid-row: span 1; }
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
}

/* ===== FAQ ===== */
.faq-section {
  background: #fff;
  padding: 88px 0;
}
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 40px; }
.faq-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-item {
  border-bottom: 1px solid #e4e7ee;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.faq-question-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .2s ease, transform .25s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition: opacity .2s ease, transform .2s ease;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after { width: 2px; height: 12px; }
.faq-item.open .faq-toggle { background: var(--orange); transform: rotate(180deg); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: #fff; }
.faq-item.open .faq-toggle::after { opacity: 0; }
.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  padding: 0 4px 24px;
  max-width: 640px;
}

@media (max-width: 600px) {
  .faq-section { padding: 56px 0; }
  .faq-question-text { font-size: 16px; }
}

/* ===== Final CTA ===== */
.cta-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 88px 0;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(242,112,29,.22) 0%, rgba(242,112,29,0) 70%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.cta-title {
  font-size: clamp(28px, 2.4vw + 16px, 40px);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-subtitle { font-size: 17px; color: #c4cbdb; }
.cta-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.cta-field { margin-bottom: 16px; }
.cta-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cta-field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1.5px solid #e4e7ee;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s ease;
}
.cta-field input:focus { outline: none; border-color: var(--orange); }
.cta-submit {
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  border: none;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.cta-submit:hover { background: var(--orange-dark); transform: translateY(-1px); }
.cta-note { font-size: 12.5px; color: var(--grey); text-align: center; margin-top: 12px; }
.cta-success {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  padding: 20px 0;
}

@media (max-width: 900px) {
  .cta-section { padding: 56px 0; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Contacts ===== */
.contacts-section {
  background: #fff;
  padding: 88px 0;
}
.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contacts-title {
  font-size: clamp(26px, 2vw + 16px, 34px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.contacts-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 28px;
  max-width: 420px;
}
.contacts-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.contacts-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--bg-soft);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
  transition: background .15s ease, color .15s ease;
}
.contacts-chip:hover { background: var(--navy); color: #fff; }
.contacts-facts {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 32px;
}
.contacts-fact { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid #e4e7ee; }
.contacts-fact:last-child { border-bottom: none; }
.contacts-fact-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.contacts-fact-label { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--grey); margin-bottom: 2px; }
.contacts-fact-value { font-size: 15.5px; font-weight: 700; color: var(--navy); }

@media (max-width: 900px) {
  .contacts-section { padding: 56px 0; }
  .contacts-inner { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #8a93a6;
}
