/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,30,46,0.45) 0%, rgba(10,30,46,0.15) 55%, rgba(10,30,46,0.05) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 25%, transparent 75%, rgba(10,30,46,0.25) 100%);
}

.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem 0;
}

.hero-grid {
  max-width: var(--max-w);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  color: #fff;
  max-width: 42rem;
}

/* ===== HUD Overlay ===== */
.hud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  animation: fadeUp 0.6s 0.6s cubic-bezier(0.22,1,0.36,1) both;
}

/* Corner brackets */
.hud-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 3;
}
.hud-tl { top: 5rem; left: 2rem; border-top: 2px solid rgba(61,165,217,0.5); border-left: 2px solid rgba(61,165,217,0.5); }
.hud-tr { top: 5rem; right: 2rem; border-top: 2px solid rgba(61,165,217,0.5); border-right: 2px solid rgba(61,165,217,0.5); }
.hud-bl { bottom: 6rem; left: 2rem; border-bottom: 2px solid rgba(61,165,217,0.5); border-left: 2px solid rgba(61,165,217,0.5); }
.hud-br { bottom: 6rem; right: 2rem; border-bottom: 2px solid rgba(61,165,217,0.5); border-right: 2px solid rgba(61,165,217,0.5); }

/* Scan line */
.hud-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(61,165,217,0.4) 50%, transparent 95%);
  box-shadow: 0 0 20px 2px rgba(42,143,191,0.15);
  animation: hudSweep 4s linear infinite;
  opacity: 0.6;
}

@keyframes hudSweep {
  0%   { top: 5rem; }
  100% { top: calc(100% - 6rem); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Top bar */
.hud-top {
  position: absolute;
  top: 6rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 3;
}

.hud-rec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ef4444;
  text-shadow: 0 0 4px rgba(239,68,68,0.4);
  animation: blink 1.2s step-end infinite;
}

.hud-rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239,68,68,0.6);
}

.hud-cam {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
}

.hud-compass {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hud-compass-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-light);
}

.hud-compass-bar {
  width: 60px;
  height: 3px;
  background: rgba(61,165,217,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.hud-compass-fill {
  width: 40%;
  height: 100%;
  background: var(--blue-light);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(61,165,217,0.5);
  transition: transform 0.5s;
}

.hud-compass-deg {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  min-width: 2rem;
}

/* Crosshair */
.hud-crosshair {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  z-index: 3;
}

.hud-cross-h {
  position: absolute;
  top: 50%;
  left: -10px;
  right: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,165,217,0.6) 30%, transparent 48%, transparent 52%, rgba(61,165,217,0.6) 70%, transparent);
}

.hud-cross-v {
  position: absolute;
  left: 50%;
  top: -10px;
  bottom: -10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(61,165,217,0.6) 30%, transparent 48%, transparent 52%, rgba(61,165,217,0.6) 70%, transparent);
}

.hud-cross-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(61,165,217,0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: crossPulse 3s ease-in-out infinite;
}

.hud-cross-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: var(--blue-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(61,165,217,0.8);
}

@keyframes crossPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Depth bar */
.hud-depth-bar {
  position: absolute;
  right: 3.5rem;
  top: 30%;
  bottom: 30%;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hud-depth-scale {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hud-depth-track {
  position: relative;
  width: 4px;
  background: rgba(61,165,217,0.15);
  border-radius: 2px;
}

.hud-depth-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(61,165,217,0.2), var(--blue-light));
  border-radius: 2px;
  transition: height 0.5s ease;
  box-shadow: 0 0 8px rgba(61,165,217,0.3);
}

.hud-depth-indicator {
  position: absolute;
  left: 12px;
  transform: translateY(-50%);
  background: rgba(8,24,38,0.8);
  border: 1px solid rgba(61,165,217,0.5);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
  transition: top 0.5s ease;
}

.hud-depth-indicator::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-right-color: rgba(61,165,217,0.5);
}

.hud-depth-indicator span {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--blue-light);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 6px rgba(61,165,217,0.4);
}

/* Bottom telemetry */
.hud-bottom {
  position: absolute;
  bottom: 7rem;
  left: 3rem;
  right: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 3;
}

.hud-telemetry {
  display: flex;
  gap: 2rem;
}

.hud-tele-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hud-tele-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

.hud-tele-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--blue-light);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 8px rgba(61,165,217,0.3);
}

.hud-coords {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  font-variant-numeric: tabular-nums;
}

/* ===== Hero Side — World Map ===== */
.hero-side {
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 620px;
  margin-right: -3rem;
  margin-top: -6rem;
  animation: fadeUp 0.8s 0.8s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-map {
  position: relative;
}

.hero-map-svg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  filter: none;
}

/* Map pins */
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 8px;
  height: 8px;
}

.map-pin-dot {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5cc8f0;
  box-shadow: 0 0 14px rgba(92,200,240,0.8);
  position: relative;
  z-index: 2;
}

.map-pin-dot {
  animation: dotGlow 2s ease-in-out infinite;
}

.map-pin.active .map-pin-dot {
  width: 9px;
  height: 9px;
  background: #4ade80;
  box-shadow: 0 0 14px rgba(74,222,128,0.7);
  animation: dotGlowGreen 2s ease-in-out infinite;
}

.map-pin.red .map-pin-dot {
  width: 10px;
  height: 10px;
  background: #f43f5e;
  box-shadow: 0 0 16px rgba(244,63,94,0.7);
  animation: dotGlowRed 2s ease-in-out infinite;
}

.map-pin.red .map-pin-ring {
  border-color: rgba(244,63,94,0.7);
}

@keyframes dotGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(92,200,240,0.5); transform: scale(1); }
  50% { box-shadow: 0 0 24px 6px rgba(92,200,240,1); transform: scale(1.5); }
}

@keyframes dotGlowGreen {
  0%, 100% { box-shadow: 0 0 6px rgba(74,222,128,0.4); transform: scale(1); }
  50% { box-shadow: 0 0 24px 6px rgba(74,222,128,1); transform: scale(1.5); }
}

@keyframes dotGlowRed {
  0%, 100% { box-shadow: 0 0 8px rgba(244,63,94,0.4); transform: scale(1); }
  50% { box-shadow: 0 0 28px 8px rgba(244,63,94,1); transform: scale(1.6); }
}

.map-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  border: 2px solid rgba(61,165,217,0.7);
  animation: pinPulse 2s ease-out infinite;
}

.map-pin-ring.r2 {
  animation-delay: 1s;
}

.map-pin.active .map-pin-ring {
  border-color: rgba(74,222,128,0.7);
}

@keyframes pinPulse {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

.map-pin-label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.5625rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-eyebrow-line {
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: var(--blue-light);
  animation: lineGrow 0.6s 0.3s cubic-bezier(0.22,1,0.36,1) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 60px rgba(10,30,46,0.6);
}

.hero-title em {
  font-style: italic;
  color: var(--blue-light);
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 40px rgba(42,143,191,0.3);
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 34rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: var(--sand);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 4px 20px rgba(196,169,125,0.3);
}

.hero-cta:hover {
  background: #d4b98d;
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(196,169,125,0.45);
  transform: translateY(-1px);
}

.hero-cta-ghost {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}

.hero-cta-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s;
}

.hero-cta-ghost:hover {
  color: #fff;
}

.hero-cta-ghost:hover::after {
  background: rgba(255,255,255,0.7);
}

/* Hero bottom bar */
.hero-bottom {
  position: relative;
  padding: 0 3rem 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  color: #fff;
}

.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.15);
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  margin-bottom: 0.125rem;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.25);
  transform-origin: top;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== Services ===== */
.services {
  padding: 6rem 3rem;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.services-path {
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  height: calc(100% - 12rem);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

.services-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
  max-width: 48rem;
}

.services-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
}

.services-title em {
  font-style: italic;
  color: var(--blue);
}

/* Service row — 12-col alternating grid */
.service-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.service-row:last-child {
  margin-bottom: 0;
}

.col-2 { grid-column: span 2; }
.col-5 { grid-column: span 5; }
.col-10 { grid-column: span 10; }

.service-number {
  font-size: 8rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(12, 45, 72, 0.1);
  background: linear-gradient(180deg, rgba(42,143,191,0.12) 0%, rgba(12,45,72,0.06) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.6s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row:hover .service-number {
  background: linear-gradient(180deg, rgba(42,143,191,0.25) 0%, rgba(42,143,191,0.1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: translateY(-8px) scale(1.05);
}

.number-right {
  text-align: right;
}

.service-heading {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.service-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row:hover .service-heading::after {
  width: 3rem;
}

.service-text {
  color: #666;
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Image cards */
.service-img-wrap {
  border-radius: 0;
  overflow: hidden;
  height: 280px;
  position: relative;
  background: transparent;
  box-shadow: 0 4px 24px rgba(10,30,46,0.08);
  transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-img-wrap:hover {
  box-shadow:
    0 8px 40px rgba(61,165,217,0.2),
    0 0 0 1px rgba(61,165,217,0.08);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-img-wrap:hover img {
  transform: scale(1.06);
}

/* ===== About ===== */
.about {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  position: relative;
  z-index: 1;
}

.about-title {
  font-family: var(--font-display);
  font-size: 3.75rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 3rem;
}

.about-title .accent {
  color: var(--blue);
}

.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #666;
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(10,30,46,0.08);
  border-bottom: 1px solid rgba(10,30,46,0.08);
}

.about-value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: rgba(42,143,191,0.06);
  border: 1px solid rgba(42,143,191,0.12);
  border-radius: 4px;
}

.about-value-icon {
  color: var(--blue);
  font-size: 0.5rem;
}

.about-paragraph-small {
  color: #666;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 2rem;
  transition: gap 0.3s;
}

.about-link:hover {
  gap: 1rem;
}

/* About images collage */
.about-images {
  position: relative;
  height: 700px;
}

.about-img-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 50%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-img-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 50%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-img-top img,
.about-img-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.about-badge .badge-iso {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.about-badge .badge-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.about-badge .badge-label {
  font-size: 0.875rem;
  color: #666;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 7rem 1.5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-side {
    display: none;
  }

  .hud-crosshair,
  .hud-depth-bar,
  .hud-corner {
    display: none;
  }

  .hud-top {
    top: 5.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }

  .hud-compass {
    display: none;
  }

  .hud-bottom {
    bottom: auto;
    top: 6.5rem;
    left: 1.5rem;
    right: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .hud-telemetry {
    display: none;
  }

  .hud-coords {
    display: none;
  }

  .hero-desc br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .hero-bottom {
    padding: 0 1.5rem 2rem;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .hero-scroll {
    display: none;
  }

  .services {
    padding: 4rem 1.5rem;
  }

  .services-intro {
    margin-bottom: 3rem;
  }

  .services-title {
    font-size: 2.25rem;
  }

  .services-path {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    margin-bottom: 3.5rem;
  }

  .col-2, .col-5, .col-10 {
    grid-column: span 1;
  }

  .service-number {
    font-size: 6rem;
  }

  .service-heading {
    font-size: 2rem;
  }

  .about {
    padding: 5rem 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }

  .about-images {
    height: 400px;
  }

  .about-title {
    font-size: 2.5rem;
  }
}
