/* ===== Planet — LP Dev / alt services module ===== */

:root {
  --blue:      #0079ff;
  --navy:      #00113f;
  --ink:       #000000;
  --panel:     #f6f6f7;
  --line:      #c2c3ca;
  --line-soft: #e4e4e4;
  --card-line: rgba(209, 209, 209, 0.2);
  --card-shadow: 0 3px 10px 0 rgba(121, 121, 121, 0.15);

  --pad: 35px;            /* page side padding */
  --maxw: 1440px;         /* design frame width */
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

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

.page {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  height: 42px;
  padding: 0 18px;
  font-size: 18px;
  letter-spacing: -0.45px;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity .15s ease, background .15s ease, color .15s ease;
}
.btn--navy {
  background: var(--navy);
  color: #fff;
  font-weight: 500;
}
.btn--navy:hover { opacity: .9; }
.btn--outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  font-weight: 400;
}
.btn--outline:hover { border-color: var(--navy); }
.btn-arrow {
  width: 16px;
  height: 15px;
  /* recolor the monochrome arrow to white */
  filter: brightness(0) invert(1);
}

/* ---------- Top bar ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 33px var(--pad) 0;
}
.logo { height: 49px; width: auto; }

/* ---------- Hero ---------- */
.hero { padding: 0 var(--pad); }

.hero-title {
  margin: 41px 0 0;
  max-width: 1244px;
  font-weight: 500;
  font-size: 57px;
  line-height: 59px;
  letter-spacing: -1.14px;
  color: var(--navy);
}
.accent { color: var(--blue); }

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  margin-top: 37px;
  height: 540px;
  overflow: hidden;
  touch-action: pan-y;
}
.hero-slider-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform .6s cubic-bezier(.65, .05, .36, 1);
  will-change: transform;
}
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  pointer-events: none;
  user-select: none;
}

/* prev / next arrows */
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 17, 63, 0.18);
  transition: background .15s ease, color .15s ease;
}
.hero-slider-btn:hover { background: var(--navy); color: #fff; }
.hero-slider-btn svg { width: 20px; height: 20px; }
.hero-slider-btn--prev { left: 22px; }
.hero-slider-btn--next { right: 22px; }

/* dots */
.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background .2s ease, width .2s ease, border-radius .2s ease;
}
.hero-slider-dot:hover { background: rgba(255, 255, 255, 0.85); }
.hero-slider-dot.is-active {
  width: 28px;
  border-radius: 6px;
  background: var(--blue);
}

.hero-foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 58px;
}
.hero-copy {
  width: 860px;
  max-width: 100%;
}
.hero-lead {
  margin: 0;
  width: 100%;
  font-size: 29px;
  line-height: 36px;
  letter-spacing: -0.58px;
}
.hero-tagline {
  margin: 26px 0 0;
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  font-size: 29px;
  line-height: 36px;
  letter-spacing: -0.58px;
}

/* ---------- Services ---------- */
.services {
  margin-top: 95px;
  background: var(--panel);
  padding: 44px 0;
}
.services-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.services-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.services-intro {
  margin: 0;
  width: 837px;
  max-width: 100%;
  font-size: 29px;
  line-height: 36px;
  letter-spacing: -0.58px;
}

.cards {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 399px;
  padding: 26px 21px 0;
  background: #fff;
  border: 1px solid var(--card-line);
  box-shadow: var(--card-shadow);
}
.card-top {
  display: flex;
  align-items: center;
  gap: 9px;
}
.card-num {
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.3px;
}
.card-title {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.52px;
}
.card-arrow {
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  margin-left: auto;
}
.card-arrow img { width: 33px; height: 33px; }

.card-desc {
  margin: 22px 0 24px;
  max-width: 281px;
  font-size: 17px;
  line-height: 23px;
  letter-spacing: -0.34px;
}
.card-img {
  flex: none;
  height: 211px;
  /* pull out to 10px from the card edge (card padding is 21px) */
  margin: auto -11px 9px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- By the numbers ---------- */
.numbers {
  padding: 46px var(--pad) 0;
  text-align: center;
}
.numbers-tag { display: inline-flex; }
.numbers-title {
  margin: 35px auto 0;
  max-width: 801px;
  font-size: 29px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.58px;
}

.stats {
  margin-top: 37px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.stats-row {
  display: flex;
  gap: 9px;
}
.stat {
  position: relative;
  flex: 1 1 0;
  min-height: 204px;
  padding: 31px 27px 40px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}
.stat--blue { background: var(--blue); }
.stat-label {
  font-size: 23px;
  line-height: 25px;
  letter-spacing: -0.46px;
}
.stat-value {
  font-size: 70px;
  line-height: 1;
  letter-spacing: -1.4px;
}
.stat-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--blue), rgba(0, 121, 255, 0.2));
}
.stat-bar--white {
  background: linear-gradient(90deg, #fff, rgba(0, 121, 255, 0.2));
}

/* ---------- Footer band ---------- */
.footer-band {
  margin: 49px var(--pad) 0;
  height: 441px;
  overflow: hidden;
}
.footer-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

/* ---------- Footer ---------- */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 33px var(--pad) 34px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-glyph { width: 69px;  height: 46px; }
.footer-word  { width: 117px; height: 47px; }
.footer-tag {
  margin-left: 6px;
  font-weight: 700;
  font-style: italic;
  font-size: 21px;
  letter-spacing: -0.42px;
}
.footer-legal {
  text-align: right;
  font-size: 17px;
  line-height: 23px;
  letter-spacing: -0.34px;
}
.footer-legal p { margin: 0; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .hero-title { font-size: 44px; line-height: 1.08; }
  .hero-title br { display: none; }
  .hero-lead, .services-intro { font-size: 24px; line-height: 1.3; width: 100%; }
  .hero-tagline { font-size: 24px; line-height: 1.3; }
  .hero-slider { height: 42vw; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-row { flex-wrap: wrap; }
  .stats-row .stat { flex: 1 1 280px !important; }
  .footer-band { height: 34vw; }
}

@media (max-width: 680px) {
  :root { --pad: 18px; }

  /* header: keep logo + button on one row, scaled to fit */
  .topbar { padding-top: 22px; gap: 12px; }
  .logo { height: 34px; }
  .btn { height: 38px; padding: 0 14px; font-size: 15px; gap: 8px; }

  .hero-title { margin-top: 28px; font-size: 30px; line-height: 1.1; }
  .hero-slider { height: 62vw; margin-top: 24px; }
  .hero-slider-btn { width: 42px; height: 42px; }
  .hero-slider-btn--prev { left: 12px; }
  .hero-slider-btn--next { right: 12px; }
  .hero-slider-dots { bottom: 14px; }
  .hero-foot { flex-direction: column; gap: 22px; margin-top: 28px; }
  .hero-lead, .services-intro { font-size: 21px; line-height: 1.35; }
  .hero-tagline { font-size: 21px; line-height: 1.35; margin-top: 20px; }

  .services { margin-top: 40px; padding: 28px 0; }
  .services-head { flex-direction: column; gap: 20px; }

  .cards { grid-template-columns: 1fr; gap: 16px; }
  .card { min-height: 0; padding: 22px 18px; }
  .card-img {
    margin: 20px 0 0;
    height: 200px;
  }

  .numbers { padding-top: 36px; }
  .numbers-title { font-size: 22px; }
  .stats-row { flex-direction: column; }
  .stat { min-height: 150px; padding: 22px 22px 30px; }
  .stat-value { font-size: 54px; }

  .footer-band { height: 64vw; margin-top: 32px; }
  .footer { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-legal { text-align: left; }
}

/* very narrow phones — stack the header */
@media (max-width: 380px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 14px; }
}
