/* =========================================================
   Hero  - dark image overlay (matches original)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  padding-top: 116px;
  padding-bottom: 80px; /* space for feature boxes overlap */
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
}
html.webp .hero__bg {
  background-image: url('../images/hero-bg.webp');
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  /* Subtle blue gradient from bottom */
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.82) 0%,
    rgba(13,27,66,0.88) 60%,
    rgba(24,99,220,0.35) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: 80px;
  width: 100%;
}

.hero__content {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,141,237,.18);
  border: 1px solid rgba(46,141,237,.35);
  color: var(--blue-mid);
  padding: 7px 16px;
  border-radius: var(--r);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2rem, 10vw, 7.5rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  letter-spacing: 0.14em;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,.35);
}

.hero__slogan {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.62);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.hero__divider {
  width: 48px;
  height: 2px;
  background: var(--blue-mid);
  border-radius: 1px;
  margin: 32px auto;
  opacity: 0.7;
}

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

.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.6);
}

.hero__trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
}

/* Hero right col */
.hero__visual {
  position: relative;
}

.hero__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero__float {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}

.hero__float--rating  { top: 24px; left: -32px; }
.hero__float--awards  { bottom: 24px; left: -32px; }

.hero__float-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__float-num {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--dark);
  line-height: 1;
}

.hero__float-lbl {
  font-size: var(--fs-xs);
  color: var(--body);
  line-height: 1.4;
  margin-top: 2px;
}

/* =========================================================
   Hero feature boxes (bottom bar)
   ========================================================= */
.hero__features {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 10;
}

.hero__features-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(10, 18, 35, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  overflow: hidden;
}

.hero-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  transition: background var(--ease);
  min-width: 0;
}

.hero-feat:hover {
  background: rgba(24,99,220,.12);
}

.hero-feat__sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.hero-feat__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  background: rgba(46,141,237,.15);
  border: 1px solid rgba(46,141,237,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  flex-shrink: 0;
  transition: all var(--ease);
}

.hero-feat:hover .hero-feat__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.hero-feat__body {
  min-width: 0;
}

.hero-feat__title {
  display: block;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-feat__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================================================
   Stats strip
   ========================================================= */
.stats {
  background: var(--blue);
  padding-block: 40px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats__item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.stats__item:last-child { border-right: none; }

.stats__num {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}

.stats__lbl {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.65);
}

/* =========================================================
   Services
   ========================================================= */
.services {
  position: relative;
  background: var(--dark-bg);
  padding-top: calc(var(--section-v) + 80px);
  overflow: hidden;
}

/* dot-grid */
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* blue glow top-right */
.services::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,99,220,.3) 0%, transparent 65%);
  pointer-events: none;
}

.services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.services .section-hd { position: relative; z-index: 1; }
.services .text-center { position: relative; z-index: 1; }

.svc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  transition: width 0.35s ease;
}

.svc-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(24,99,220,.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}

.svc-card:hover::before { width: 100%; }

.svc-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(24,99,220,.2);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  margin-bottom: 20px;
  transition: all var(--ease);
}

.svc-card:hover .svc-card__icon {
  background: var(--blue);
  color: #fff;
}

.svc-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 10px;
}

.svc-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.svc-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.svc-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
}

.svc-card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-mid);
  flex-shrink: 0;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--blue-mid);
  transition: gap var(--ease);
}

.svc-card__link:hover { gap: 10px; color: #fff; }

/* =========================================================
   Spotlight - featured service (grey / light)
   ========================================================= */
.spotlight__inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 72px;
  align-items: center;
}

.spotlight__text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.spotlight__title {
  font-size: clamp(1.75rem, 2.8vw, 2.4rem);
  font-weight: var(--fw-bold);
  color: var(--dark);
  line-height: 1.2;
  margin: 0;
}

.spotlight__body {
  font-size: var(--fs-base);
  color: var(--body);
  line-height: 1.85;
  margin: 0;
}

.spotlight__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0; margin: 0;
}

.spotlight__perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-sm);
  color: var(--dark);
  font-weight: var(--fw-semi);
}

.spotlight__perk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

/* Visual column */
.spotlight__visual { position: relative; }

.spotlight__img-wrap {
  position: relative;
  padding-bottom: 28px;
  padding-left: 28px;
}

.spotlight__img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  right: 28px; top: 28px;
  background: var(--blue);
  border-radius: var(--r-lg);
  opacity: .12;
}

.spotlight__img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.spotlight__stat-card {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 100px;
}

.spotlight__stat-num {
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--blue);
  line-height: 1;
}

.spotlight__stat-num sup {
  font-size: 1rem;
  vertical-align: super;
}

.spotlight__stat-lbl {
  font-size: .7rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--body);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .spotlight__inner     { grid-template-columns: 1fr; gap: 48px; }
  .spotlight__img-wrap  { order: -1; }
  .spotlight__stat-card { left: 8px; bottom: -4px; }
}

/* =========================================================
   CTA Mid - full-bleed quote banner with bg image + overlay
   ========================================================= */
.cta-mid {
  position: relative;
  background-image: url('../images/cta-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-block: 130px;
  overflow: hidden;
}

.cta-mid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 55, 0.88) 0%,
    rgba(15, 78, 181, 0.72) 100%
  );
}

.cta-mid__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.cta-mid__quote-mark {
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: .6;
  color: rgba(255,255,255,.12);
  user-select: none;
  display: block;
  margin-bottom: -16px;
}

.cta-mid__title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.3;
  margin: 0;
  max-width: 820px;
  font-style: italic;
  letter-spacing: -.01em;
}

.cta-mid__divider {
  width: 56px;
  height: 3px;
  background: var(--blue-mid);
  border-radius: 2px;
}

.cta-mid__inner .btn {
  min-width: 200px;
  justify-content: center;
  letter-spacing: .1em;
}

@media (max-width: 640px) {
  .cta-mid { padding-block: 90px; background-attachment: scroll; }
  .cta-mid__quote-mark { font-size: 6rem; }
  .cta-mid__inner .btn { width: 100%; }
}

/* =========================================================
   Why section  (dark image)
   ========================================================= */
.why {
  position: relative;
  overflow: hidden;
}

.why__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/about-img.jpg');
  background-size: cover;
  background-position: center;
}

.why__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(13,27,66,0.90) 50%,
    rgba(0,0,0,0.5) 100%
  );
}

.why__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: var(--section-v);
}

.why__text {}

.why-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: all var(--ease);
}

.why-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }

.why-item:hover {
  padding-left: 8px;
}

.why-item__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: rgba(46,141,237,.15);
  border: 1px solid rgba(46,141,237,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  flex-shrink: 0;
  transition: all var(--ease);
}

.why-item:hover .why-item__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.why-item__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semi);
  color: var(--white);
  margin-bottom: 3px;
}

.why-item__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* Right col (stat overlay) */
.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-stat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--ease);
  backdrop-filter: blur(4px);
}

.why-stat:hover {
  background: rgba(24,99,220,.2);
  border-color: rgba(46,141,237,.4);
}

.why-stat__num {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.why-stat__lbl {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* =========================================================
   Testimonials
   ========================================================= */
/* =========================================================
   Testimonials - CSS marquee (two rows, opposite directions)
   ========================================================= */
.testimonials {
  background: var(--white);
}

/* clip wrapper - handles horizontal overflow only, lets vertical show fully */
.tmarquee-clip {
  overflow: hidden;
}

/* marquee wrapper */
.tmarquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
  padding-bottom: 12px;
}

.tmarquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.tmarquee__track--left  { animation: marquee-left  40s linear infinite; }
.tmarquee__track--right { animation: marquee-right 40s linear infinite; }

.tmarquee__track:hover { animation-play-state: paused; }

/* fade edges */
.tmarquee__fade--left,
.tmarquee__fade--right {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.tmarquee__fade--left  { left: 0;  background: linear-gradient(to right,  var(--white), transparent); }
.tmarquee__fade--right { right: 0; background: linear-gradient(to left, var(--white), transparent); }

/* testimonial card */
.t-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 30px;
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.t-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-tint);
}

.t-card__stars {
  display: flex;
  gap: 2px;
  color: #F59E0B;
}

.t-card__text {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.t-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.t-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.t-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
}

/* =========================================================
   Awards - real badge images grouped by year
   ========================================================= */
.awards { padding-block: var(--section-v); }

.awards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.award-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.award-year__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--body);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
}

.award-year__badges {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.award-badge-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  transition: transform var(--ease), filter var(--ease);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.1));
}

.award-badge-img:hover {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 8px 16px rgba(24,99,220,.2));
}

@media (max-width: 900px) {
  .awards__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 480px) {
  .awards__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .award-badge-img { width: 80px; height: 80px; }
  .tmarquee__fade--left, .tmarquee__fade--right { width: 48px; }
}

/* =========================================================
   Social Proof - combined awards + testimonials slider
   ========================================================= */

/* ── Awards ── */
.sp-awards {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 0;
}

.sp-award-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  align-items: center;
  justify-items: center;
  padding-inline: 40px;
}

.sp-award-year {
  grid-column: 1 / -1;
  font-size: .68rem;
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--body);
}

.sp-awards__sep {
  width: 1px;
  height: 100px;
  background: var(--border);
  align-self: center;
  flex-shrink: 0;
}

.sp-award-img {
  width: 86px; height: 86px;
  object-fit: contain;
  transition: transform var(--ease), filter var(--ease);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.08));
}

.sp-award-img:hover {
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 6px 14px rgba(24,99,220,.2));
}

/* ── Slider wrapper ── */
.sp-slider {
  position: relative;
  padding: 0 52px 56px; /* side padding for arrow buttons, bottom for dots */
}

.sp-slider__viewport {
  overflow: hidden;
  padding-bottom: 4px;
  margin-bottom: -4px;
}

.sp-slider__track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

/* ── Cards ── */
.sp-card {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 3); /* 3 visible, 2 gaps of 24px */
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: var(--r-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
  transition: box-shadow var(--ease);
}

.sp-card:hover { box-shadow: var(--shadow); }

.sp-card__quote {
  position: absolute;
  top: 16px; right: 22px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--blue-tint);
  pointer-events: none;
  user-select: none;
}

.sp-card__stars { display: flex; gap: 2px; }

.sp-card__text {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.sp-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.sp-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.sp-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--dark);
}

/* ── Prev / Next buttons ── */
.sp-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px)); /* offset for dots */
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--ease);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.sp-slider__btn:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.sp-slider__btn:disabled {
  opacity: .3;
  cursor: default;
}

.sp-slider__btn--prev { left: 0; }
.sp-slider__btn--next { right: 0; }

/* ── Dots ── */
.sp-slider__dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.sp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: all var(--ease);
}

.sp-dot.is-active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .sp-card { flex: 0 0 calc((100% - 24px) / 2); }
  .sp-award-group { padding-inline: 24px; }
}

@media (max-width: 640px) {
  .sp-card { flex: 0 0 100%; }
  .sp-awards { gap: 16px; }
  .sp-awards__sep { display: none; }
  .sp-award-group { padding-inline: 10px; }
  .sp-award-img { width: 68px; height: 68px; }
  .sp-slider { padding-inline: 40px; }
}

/* =========================================================
   Blog preview
   ========================================================= */
.blog-preview {
  background: var(--dark-bg);
}

.blog-preview .post-card {
  border-color: rgba(255,255,255,.07);
}

.blog-preview .post-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  border-color: transparent;
}

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

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--ease);
}

.post-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
  transform: translateY(-3px);
}

.post-card__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blue-tint);
  display: block;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card__thumb img { transform: scale(1.04); }

.post-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  opacity: 0.4;
}

.post-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.post-card__date {
  font-size: var(--fs-xs);
  color: var(--muted);
}

.post-card__cat {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--blue);
  background: var(--blue-tint);
  padding: 3px 10px;
  border-radius: 50px;
}

.post-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color var(--ease);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card:hover .post-card__title { color: var(--blue); }

.post-card__excerpt {
  font-size: var(--fs-sm);
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--ease);
  margin-top: auto;
  align-self: flex-start;
}

.post-card__link:hover { gap: 9px; }

/* =========================================================
   CTA
   ========================================================= */
/* ── CTA Contact ── */
.cta-contact {
  background: #fff;
  padding-block: 100px;
  position: relative;
  overflow: hidden;
}

.cta-contact__bg-glow {
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,99,220,.06) 0%, transparent 68%);
  pointer-events: none;
}

/* Header */
.cta-contact__header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.cta-contact__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.cta-contact__title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-contact__sub {
  font-size: var(--fs-md);
  color: var(--body);
  line-height: 1.8;
  margin: 0;
}

/* Info bar */
.cta-contact__info-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--off-white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}

.cta-info-item:nth-child(2n) { border-right: none; }
.cta-info-item:nth-last-child(-n+2) { border-bottom: none; }
.cta-info-item:hover { background: #f0f4ff; }

.cta-info-item__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(24,99,220,.18);
  border: 1px solid rgba(24,99,220,.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}

.cta-info-item__label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: var(--fw-semi);
  margin-bottom: 3px;
}

.cta-info-item__value {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--dark);
}

.cta-info-item__value a {
  color: var(--dark);
  transition: color var(--ease);
}

.cta-info-item__value a:hover { color: var(--blue); }

/* Map + Form */
.cta-contact__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.cta-contact__map {
  border-radius: 16px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
}

.cta-contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  min-height: 420px;
}

.cta-contact__form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}

.cta-contact__form-hd {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cta-contact__form-title {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--heading);
  margin-bottom: 4px;
}

.cta-contact__form-sub {
  font-size: var(--fs-sm);
  color: var(--body);
  margin: 0;
}

/* ── Drone video button (overlaid on map) ── */
.cta-contact__map {
  position: relative;
}

.drone-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #2563eb 0%, #1741a6 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.55), 0 0 0 0 rgba(37, 99, 235, 0.4);
  animation: drone-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  z-index: 2;
}

@keyframes drone-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,99,235,0.55), 0 0 0 0   rgba(37,99,235,0.4); }
  60%  { box-shadow: 0 4px 20px rgba(37,99,235,0.55), 0 0 0 14px rgba(37,99,235,0); }
  100% { box-shadow: 0 4px 20px rgba(37,99,235,0.55), 0 0 0 0   rgba(37,99,235,0); }
}

.drone-btn:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.65);
  animation: none;
}

.drone-btn__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.drone-btn svg {
  flex-shrink: 0;
}

/* ── Drone modal lightbox ── */
.drone-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drone-modal[hidden] {
  display: none;
}

.drone-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 15, 35, 0.88);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.drone-modal__box {
  position: relative;
  z-index: 1;
  width: min(92vw, 960px);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
}

.drone-modal__video {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.drone-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s;
}

.drone-modal__close:hover {
  background: rgba(0,0,0,0.85);
}

