:root {
  --bg-dark: #04122b;
  --bg-dark-2: #07183b;
  --card: #ffffff;
  --text: #0d1732;
  --muted: #6f7890;
  --line: rgba(10, 23, 50, 0.12);
  --blue: #1f73ff;
  --green: #8ad930;
  --green-2: #62c23b;
  --soft-blue: #27b0ff;
  --gold: #f5b326;
  --shadow: 0 25px 50px rgba(2, 15, 42, 0.15);
  --shadow-dark: 0 30px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #f5f7fb;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.top-glow {
  position: fixed; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(39,176,255,.85), rgba(138,217,48,.85), transparent);
  z-index: 1000; pointer-events: none;
}

.site-header {
  position: relative; top: auto; z-index: 999;
  background: rgba(1, 10, 25, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 88px;
}
.brand img { width: 150px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: #fff; font-weight: 600; font-size: 15px; opacity: .88; position: relative; padding: 8px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--soft-blue)); border-radius: 999px; transition: .3s ease;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.menu-toggle { display: none; background: none; border: 0; padding: 0; width: 42px; height: 42px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; transition: .25s; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 18px; padding: 15px 24px; font-weight: 700; transition: .25s ease;
}
.btn span { transition: transform .25s ease; }
.btn:hover span { transform: translateX(4px); }
.btn-quote, .btn-primary {
  background: linear-gradient(90deg, var(--green), var(--soft-blue)); color: #fff;
  box-shadow: 0 12px 26px rgba(49, 175, 94, 0.22), 0 0 0 1px rgba(255,255,255,0.16) inset;
}
.btn-quote { padding: 14px 22px; border-radius: 16px; }
.btn-primary:hover, .btn-quote:hover, .btn-submit:hover, .btn-secondary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-outline {
  background: rgba(2,18,43,0.65); color: #fff; border: 1px solid rgba(80, 156, 255, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.btn-outline.light { background: transparent; }
.btn-secondary {
  color: #fff; background: linear-gradient(90deg, #1768ff, #2e83ff); box-shadow: 0 18px 30px rgba(31,115,255,.22);
}
.btn-submit {
  width: 100%; border: none; cursor: pointer; color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--green-2));
  padding: 16px 24px; border-radius: 14px; font-weight: 800;
}
.btn.wide { width: 100%; }
.btn.small { padding: 13px 22px; border-radius: 14px; }
.pulse { animation: pulseGlow 2.3s infinite; }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(138,217,48,.22), 0 12px 30px rgba(31,115,255,.18); }
  50% { box-shadow: 0 0 0 12px rgba(138,217,48,0), 0 18px 40px rgba(31,115,255,.28); }
}

.section-dark { background: linear-gradient(180deg, #06142f, #041026); color: #fff; }
.section-light { background: #f5f7fb; }
.section-tag {
  text-transform: uppercase; letter-spacing: .18em; color: var(--green); font-size: 13px; font-weight: 800;
  margin: 0 0 10px; text-align: center;
}
.section-title {
  text-align: center; font-family: 'Inter', sans-serif; font-size: clamp(34px, 3.4vw, 54px);
  margin: 0 0 36px; line-height: 1.08;
}
.left-align { text-align: left; }

.hero { position: relative; overflow: hidden; padding: 36px 0 0; }
.hero-bg {
  position: absolute; inset: 0; background: url('../images/hero-bg.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,14,35,.93) 0%, rgba(3,14,35,.86) 37%, rgba(3,14,35,.36) 68%, rgba(3,14,35,.18) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr .85fr; gap: 42px; align-items: start;
  min-height: 790px; padding-top: 34px; padding-bottom: 200px;
}
.hero-copy { max-width: 660px; padding-top: 34px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .2em; color: var(--green); font-size: 15px; font-weight: 800; margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: clamp(54px, 6vw, 78px); line-height: .98; margin: 0 0 22px;
}
.hero h1 span { display: block; }
.accent-blue { color: var(--blue); }
.accent-green { color: var(--green); }
.hero-text {
  max-width: 560px; margin: 0 0 26px; color: rgba(255,255,255,.88); font-size: 20px; line-height: 1.65;
}
.hero-badges, .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-badges { margin-bottom: 24px; }
.rating-pill, .green-pill {
  border-radius: 999px; padding: 12px 18px; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}
.g-mark { font-weight: 900; color: #ff5945; background: #fff; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; }
.stars { color: var(--gold); letter-spacing: .14em; }
.rating-pill {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rating-pill::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -32%;
  width: 34%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.05) 25%, rgba(255,255,255,.45) 50%, rgba(255,255,255,.05) 75%, transparent 100%);
  transform: skewX(-18deg);
  animation: ratingPillSweep 4.8s linear infinite;
  pointer-events: none;
  z-index: -1;
}
.rating-pill .g-mark {
  animation: ratingBadgeBob 3.2s ease-in-out infinite;
}
.rating-pill strong {
  display: inline-block;
  animation: ratingNumberPulse 3s ease-in-out infinite;
}
.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0;
}
.rating-stars .star {
  position: relative;
  display: inline-block;
  transform-origin: center 75%;
  animation: starDance 5s ease-in-out infinite, starTwinkle 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1s), calc(var(--i) * 1s);
  will-change: transform, filter, opacity;
}
.rating-stars .star::after {
  content: "✦";
  position: absolute;
  top: -10px;
  right: -7px;
  font-size: .42em;
  color: #fff5bf;
  text-shadow: 0 0 10px rgba(255,241,163,.95);
  opacity: 0;
  transform: translate(0,0) scale(.2) rotate(0deg);
  animation: starSparkle 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1s);
  pointer-events: none;
}
@keyframes starDance {
  0%, 100% {
    transform: translateY(0) scale(.92) rotate(0deg);
  }
  8% {
    transform: translateY(-8px) scale(1.38) rotate(-8deg);
  }
  14% {
    transform: translateY(-2px) scale(1.08) rotate(5deg);
  }
  20%, 96% {
    transform: translateY(0) scale(.92) rotate(0deg);
  }
}
@keyframes starTwinkle {
  0%, 100%, 20%, 96% {
    opacity: .98;
    filter: drop-shadow(0 0 0 rgba(255,214,74,0));
    text-shadow: none;
  }
  8% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255,214,74,.9));
    text-shadow: 0 0 14px rgba(255,214,74,.85), 0 0 22px rgba(255,241,155,.72);
  }
  14% {
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(255,214,74,.5));
    text-shadow: 0 0 10px rgba(255,214,74,.58), 0 0 16px rgba(255,241,155,.48);
  }
}
@keyframes starSparkle {
  0%, 100%, 20%, 96% {
    opacity: 0;
    transform: translate(0,0) scale(.2) rotate(0deg);
  }
  7% {
    opacity: 1;
    transform: translate(2px,-4px) scale(1) rotate(18deg);
  }
  12% {
    opacity: .9;
    transform: translate(7px,-12px) scale(1.18) rotate(42deg);
  }
  18% {
    opacity: 0;
    transform: translate(10px,-15px) scale(.32) rotate(58deg);
  }
}

.green-pill { color: #d7ffc3; border-color: rgba(138,217,48,.35); }
.hero-note { margin-top: 16px; color: rgba(255,255,255,.78); }

.hero-form-card {
  position: relative; background: rgba(255,255,255,.97); color: var(--text); border-radius: 28px; padding: 28px;
  box-shadow: var(--shadow-dark); border: 1px solid rgba(255,255,255,.55); backdrop-filter: blur(8px);
}
.hero-form-card h2 { margin: 0 0 18px; font-size: 42px; line-height: 1.08; color: #172135; }
.hero-form-card h2 span { color: var(--blue); }
.quote-form { display: grid; gap: 12px; }
.quote-form label {
  display: flex; align-items: center; gap: 12px; border: 1px solid rgba(11,28,55,.14); border-radius: 14px; padding: 0 14px; min-height: 54px;
  background: #fff;
}
.quote-form label span { font-size: 18px; opacity: .74; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; border: none; outline: none; background: transparent; color: #23314b; font-size: 15px;
}
.textarea-wrap { padding: 14px; align-items: flex-start !important; }
.quote-form textarea { resize: vertical; min-height: 110px; }
.secure-note, .form-success { text-align: center; margin: 0; }
.secure-note { color: #79839b; font-size: 13px; }
.form-success { display: none; color: #1c6d17; font-weight: 600; background: #eafadf; padding: 12px 14px; border-radius: 12px; }
.form-success.show { display: block; }

.hero-van {
  position: absolute; right: 29%; bottom: 82px; width: min(34vw, 480px); z-index: 3;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.42));
}
.spark {
  position: absolute; width: 10px; height: 10px; border-radius: 50%; background: radial-gradient(circle, rgba(195,255,125,1) 0%, rgba(105,255,178,.35) 35%, rgba(0,0,0,0) 72%);
  box-shadow: 0 0 22px rgba(138,217,48,.75); animation: twinkle 4s ease-in-out infinite;
}
.spark::before, .spark::after {
  content: ''; position: absolute; left: 50%; top: 50%; background: rgba(180,255,128,.9); transform: translate(-50%,-50%);
}
.spark::before { width: 2px; height: 24px; }
.spark::after { width: 24px; height: 2px; }
.spark-1 { top: 170px; left: 44%; animation-delay: .4s; }
.spark-2 { top: 320px; left: 67%; width: 14px; height: 14px; animation-delay: 1s; }
.spark-3 { top: 72px; right: 80px; animation-delay: 1.6s; }
.spark-a { position: absolute; right: 22%; top: 22%; }
.spark-b { position: absolute; right: 8%; top: 54%; width: 12px; height: 12px; }
.spark-c { position: absolute; right: 16%; bottom: 12%; width: 8px; height: 8px; }
@keyframes twinkle {
  0%,100% { transform: scale(.9); opacity: .65; }
  50% { transform: scale(1.18); opacity: 1; }
}

.stats-wrap { margin-top: -72px; position: relative; z-index: 9; }
.stats-grid {
  background: #fff; border-radius: 26px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; overflow: hidden;
}
.stat-item {
  padding: 34px 28px; display: flex; align-items: center; gap: 16px; position: relative;
}
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; width: 1px; height: 64px; background: rgba(10, 23, 50, 0.1); transform: translateY(-50%);
}
.stat-icon {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #e9f2ff; color: var(--blue); font-size: 26px;
}
.stat-icon.green { color: var(--green-2); background: #eff9e7; }
.stat-icon.gold { color: var(--gold); background: #fff8e3; }
.stat-icon.blue { color: var(--soft-blue); background: #eaf8ff; }
.stat-item strong { display: block; font-size: clamp(26px, 3vw, 38px); }
.stat-item p { margin: 6px 0 0; color: var(--muted); }

.services { padding: 88px 0 72px; }
.service-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
}
.service-card {
  background: #fff; border: 1px solid rgba(11,28,55,.08); border-radius: 22px; padding: 28px 20px 22px;
  box-shadow: 0 14px 26px rgba(10,23,50,.06); display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 35px rgba(10,23,50,.12); }
.service-icon {
  width: 72px; height: 72px; color: #1f73ff; display: grid; place-items: center; margin-bottom: 16px;
}
.service-icon svg { width: 64px; height: 64px; }
.service-card h3 { margin: 0 0 12px; font-size: 24px; line-height: 1.2; }
.service-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.55; font-size: 15px; }
.service-card a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(11,28,55,.14); color: var(--text); font-weight: 800;
}

.services-creative { position: relative; }
.offer-head {
  max-width: 980px;
  margin-bottom: 28px;
}
.offer-intro {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.offer-intro a,
.offer-service-card p a,
.offer-feature p a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(31,115,255,.26);
}
.offer-layout {
  display: grid;
  grid-template-columns: .92fr 1.5fr;
  gap: 22px;
  align-items: start;
}
.offer-feature {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: 28px;
  color: #fff;
  background: radial-gradient(circle at top left, rgba(96,166,255,.25), transparent 32%), linear-gradient(155deg, #071a40 0%, #0b2d66 55%, #1d6aff 100%);
  box-shadow: 0 24px 48px rgba(10,23,50,.18);
  overflow: hidden;
}
.offer-feature::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  box-shadow: -80px -35px 0 rgba(255,255,255,.06);
  pointer-events: none;
}
.offer-feature__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.offer-feature h3 {
  margin: 18px 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
}
.offer-feature p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.8;
}
.offer-feature p a {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.28);
}
.offer-feature__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.offer-feature__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.offer-feature__list li span {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-weight: 800;
}
.offer-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.offer-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  transition: transform .25s ease, background .25s ease;
}
.offer-inline-link:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); }
.offer-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.offer-service-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e2e9f0;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 36px rgba(33,71,114,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.offer-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31,115,255,.35);
  box-shadow: 0 24px 40px rgba(33,71,114,.14);
}
.offer-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.offer-service-card .service-icon {
  width: 78px;
  height: 78px;
  margin: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef5ff 0%, #f5fbff 100%);
  border: 1px solid #dbe7f3;
}
.offer-card-no {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .18em;
  color: #8aa0bb;
}
.offer-service-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.2;
}
.offer-service-card h3 a {
  color: #13203a;
  text-decoration: none;
}
.offer-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15.5px;
}
.offer-card-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--blue);
  font-weight: 800;
}
.offer-card-link span {
  transition: transform .25s ease;
}
.offer-service-card:hover .offer-card-link span {
  transform: translateX(4px);
}
.gallery-band { padding: 18px 0 34px; }

.video-testimonials {
  padding: 24px 0 40px;
}
.video-testimonial-head {
  max-width: 860px;
  margin-bottom: 24px;
}
.video-testimonial-intro {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.video-testimonial-wrap {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 22px;
  align-items: start;
}
.video-playlist-panel,
.video-player-panel {
  background: #fff;
  border: 1px solid rgba(11,28,55,.08);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(33,71,114,.08);
}
.video-playlist-panel {
  padding: 20px;
}
.video-playlist-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.video-playlist-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}
.video-playlist-head span {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}
.video-playlist-list {
  display: grid;
  gap: 12px;
}
.video-playlist-item {
  width: 100%;
  padding: 10px;
  border: 1px solid #e2e9f0;
  border-radius: 20px;
  background: #f8fbff;
  display: grid;
  grid-template-columns: 108px minmax(0,1fr) 40px;
  align-items: center;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.video-playlist-item:hover,
.video-playlist-item.is-active {
  transform: translateY(-2px);
  border-color: rgba(31,115,255,.26);
  background: #fff;
  box-shadow: 0 14px 24px rgba(33,71,114,.10);
}
.video-playlist-thumb {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dfe8f2;
}
.video-playlist-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-playlist-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.video-playlist-copy strong {
  color: #13203a;
  font-size: 15px;
  line-height: 1.4;
}
.video-playlist-copy small {
  color: var(--muted);
  line-height: 1.5;
}
.video-playlist-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ebf4ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.video-player-panel {
  padding: 18px;
}
.video-player-shell {
  background: #081426;
  border-radius: 24px;
  padding: 12px;
}
.video-player-embed {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-player-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-player-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 6px 2px;
}
.video-now-playing {
  margin: 0 0 6px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.video-player-meta h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.15;
}
.video-player-meta p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.gallery-grid {
  position: relative; display: grid; grid-template-columns: .65fr 1fr .26fr; align-items: center; gap: 28px;
  background: linear-gradient(90deg, #051028, #071b43 70%, #03122d);
  border-radius: 28px; padding: 34px; box-shadow: var(--shadow-dark);
}
.gallery-copy h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.06; margin: 0 0 16px; }
.gallery-copy p { color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.7; margin: 0 0 22px; }
.gallery-image-wrap img { border-radius: 20px; border: 1px solid rgba(255,255,255,.18); }
.gallery-shapes { min-height: 240px; position: relative; }

.commit-review { padding: 34px 0 52px; }
.commit-grid {
  display: grid; grid-template-columns: 1.45fr .75fr; gap: 22px;
}
.commit-card, .review-card {
  border-radius: 28px; background: #fff; box-shadow: 0 16px 30px rgba(10,23,50,.08); position: relative; overflow: hidden;
}
.commit-card {
  background: linear-gradient(135deg, #051028, #072257 75%); color: #fff; padding: 32px 34px; min-height: 380px;
}
.commit-card h2 { max-width: 620px; font-size: clamp(34px, 3.5vw, 54px); line-height: 1.08; margin: 0 0 18px; }
.commit-card ul { margin: 0 0 24px; padding: 0; list-style: none; }
.commit-card li { margin-bottom: 12px; position: relative; padding-left: 28px; color: rgba(255,255,255,.9); }
.commit-card li::before { content: '✔'; position: absolute; left: 0; top: 0; color: var(--green); }
.commit-van { position: absolute; right: 18px; bottom: 8px; width: min(38%, 360px); filter: drop-shadow(0 20px 34px rgba(0,0,0,.42)); }
.dot-orbit {
  position: absolute; right: 120px; top: 60px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,131,255,.35) 1px, transparent 1px); background-size: 12px 12px; opacity: .55;
}
.review-card { padding: 34px 28px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.review-icon { font-size: 36px; color: var(--blue); }
.stars.large { color: var(--gold); font-size: 28px; letter-spacing: .14em; }
.review-card h3 { font-size: clamp(30px, 3vw, 44px); margin: 6px 0 10px; }
.review-card p { color: var(--muted); max-width: 340px; line-height: 1.65; }
.review-people { display: flex; margin-top: 16px; }
.review-people span {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--green)); margin-left: -8px; border: 3px solid #fff;
}
.review-people span:first-child { margin-left: 0; }
.review-small { font-size: 14px; margin-top: 12px; }

.cta-band { padding: 24px 0 68px; position: relative; overflow: hidden; }
.cta-band::after {
  content: ''; position: absolute; right: -80px; bottom: -40px; width: 380px; height: 380px;
  border-radius: 50%; border: 2px solid rgba(138,217,48,.18);
}
.cta-band::before {
  content: ''; position: absolute; right: -20px; bottom: 20px; width: 280px; height: 280px;
  border-radius: 50%; border: 2px solid rgba(39,176,255,.2);
}
.cta-grid {
  background: linear-gradient(135deg, #051028 0%, #071c45 55%, #06142f 100%);
  border-radius: 28px; padding: 34px; display: grid; grid-template-columns: 1.1fr .8fr; gap: 26px; align-items: center;
}
.cta-left h2 { font-size: clamp(42px, 4.2vw, 60px); margin: 0 0 24px; }
.cta-left h2 span { color: var(--blue); }
.cta-icons {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; color: #fff; font-weight: 600;
}
.cta-icons div {
  display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9);
}
.cta-icons span { color: var(--green); font-size: 24px; }
.cta-box {
  background: rgba(6, 18, 45, 0.88); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: 28px;
  box-shadow: var(--shadow-dark);
}
.cta-box h3 { text-align: center; color: #fff; font-size: 28px; margin: 0 0 18px; }
.cta-box .btn { margin-top: 12px; }

.service-areas { padding: 12px 0 120px; }
.area-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.area-pills span {
  padding: 12px 18px; border-radius: 999px; background: #fff; color: var(--text); border: 1px solid rgba(11,28,55,.08);
  box-shadow: 0 8px 20px rgba(10,23,50,.06); font-weight: 700;
}

.floating-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 999;
  width: min(760px, calc(100% - 26px)); padding: 8px; border-radius: 999px;
  display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 6px; background: rgba(4, 16, 38, .92); border: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(12px);
  box-shadow: 0 18px 44px rgba(0,0,0,.32);
}
.floating-bar a {
  min-height: 70px; display: flex; align-items: center; justify-content: center; flex-direction: column;
  color: #fff; border-radius: 999px; text-align: center; font-size: 14px;
}
.floating-bar a span { color: rgba(255,255,255,.76); font-size: 13px; }
.floating-bar a strong { font-size: 15px; }
.floating-call {
  background: linear-gradient(90deg, rgba(138,217,48,.14), rgba(39,176,255,.14));
  position: relative; flex-direction: row !important; gap: 12px; padding: 0 20px;
}
.call-circle {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-size: 22px;
  background: linear-gradient(90deg, var(--green), var(--soft-blue)); box-shadow: 0 0 0 10px rgba(138,217,48,.08);
}
.chat-badge {
  position: fixed; right: 22px; bottom: 112px; z-index: 995; background: #fff; color: var(--text);
  padding: 14px 18px; border-radius: 18px; box-shadow: 0 14px 26px rgba(10,23,50,.18); font-weight: 700;
}

.site-footer {
  background: #041026; color: #fff; padding: 60px 0 120px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .9fr .9fr .9fr 1fr; gap: 26px;
}
.footer-brand img { width: 170px; margin-bottom: 16px; }
.footer-brand p, .site-footer li, .site-footer a { color: rgba(255,255,255,.76); }
.site-footer h4 { margin: 12px 0 14px; font-size: 20px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.socials a:hover { transform: translateY(-2px); background: rgba(255,255,255,.16); color: #fff; }
.socials svg { width: 19px; height: 19px; display: block; }
.footer-address { line-height: 1.55; }
.footer-bottom {
  margin-top: 34px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; align-items: center;
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.7); }
.footer-bottom div { display: flex; gap: 18px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 240px; }
  .offer-layout { grid-template-columns: 1fr; }
  .offer-feature { position: relative; top: 0; }
  .video-testimonial-wrap { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; }
  .hero-van { right: 28px; width: min(46vw, 430px); bottom: 96px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-shapes { display: none; }
  .commit-grid, .cta-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-icons { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .desktop-quote { display: none; }
  .offer-service-grid { grid-template-columns: 1fr; }
  .video-playlist-item { grid-template-columns: 92px minmax(0,1fr) 36px; }
  .video-player-meta { flex-direction: column; align-items: flex-start; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 20px; right: 20px; background: rgba(2, 14, 34, .96); border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px; padding: 18px; flex-direction: column; align-items: flex-start; gap: 8px; display: none;
  }
  .main-nav.show { display: flex; }
  .main-nav a::after { bottom: 0; }
  .hero h1 { font-size: clamp(42px, 12vw, 60px); }
  .hero-text { font-size: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-van { position: relative; right: auto; bottom: auto; width: min(100%, 460px); margin: 0 auto 0; }
  .hero-grid { padding-bottom: 50px; }
  .floating-bar { grid-template-columns: 1fr; gap: 8px; border-radius: 28px; padding: 12px; bottom: 14px; }
  .floating-bar a { min-height: 62px; }
  .chat-badge { bottom: 254px; }
  .site-footer { padding-bottom: 290px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1200px); }
  .offer-feature, .offer-service-card { padding: 20px; border-radius: 22px; }
  .video-testimonials { padding: 18px 0 28px; }
  .video-playlist-panel, .video-player-panel { border-radius: 22px; }
  .video-playlist-panel, .video-player-panel { padding: 16px; }
  .video-playlist-head h3 { font-size: 24px; }
  .video-playlist-item { grid-template-columns: 80px minmax(0,1fr); }
  .video-playlist-play { display: none; }
  .video-player-meta h3 { font-size: 24px; }
  .video-testimonial-intro { font-size: 16px; line-height: 1.7; }
  .offer-feature h3 { font-size: 30px; }
  .offer-service-card h3 { font-size: 22px; }
  .offer-intro { font-size: 16px; line-height: 1.7; }
  .offer-service-card__top { gap: 14px; }
  .offer-service-card .service-icon { width: 68px; height: 68px; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 130px; }
  .hero { padding-top: 14px; }
  .hero-copy { padding-top: 12px; }
  .hero-text { line-height: 1.55; }
  .hero-form-card h2 { font-size: 34px; }
  .hero-form-card { padding: 20px; border-radius: 24px; }
  .stats-wrap { margin-top: 0; padding-top: 16px; }
  .stats-grid { gap: 1px; background: transparent; box-shadow: none; }
  .stat-item { border-radius: 20px; background: #fff; }
  .stat-item::after { display: none !important; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card h3 { font-size: 22px; }
  .gallery-grid, .cta-grid, .commit-grid { padding: 22px; }
  .cta-icons { grid-template-columns: 1fr; }
  .service-areas { padding-bottom: 136px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom div { flex-wrap: wrap; }
  .chat-badge { right: 12px; padding: 12px 16px; }
}

/* Quote popup shared across all pages */
.quote-modal{position:fixed;inset:0;z-index:5000;display:none;align-items:center;justify-content:center;padding:20px;background:rgba(2,10,25,.78);backdrop-filter:blur(10px)}
.quote-modal.is-open{display:flex}.quote-modal__dialog{position:relative;width:min(820px,100%);max-height:min(92vh,900px);overflow:auto;background:#fff;border-radius:28px;padding:30px;box-shadow:0 30px 90px rgba(0,0,0,.38);animation:quoteModalIn .28s ease both}
.quote-modal__close{position:absolute;top:14px;right:14px;width:42px;height:42px;border:0;border-radius:50%;background:#eef4fb;color:#071c45;font-size:26px;line-height:1;cursor:pointer;display:grid;place-items:center}
.quote-modal__eyebrow{margin:0 0 6px;color:var(--blue);font-size:13px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.quote-modal h2{margin:0 50px 8px 0;color:#071c45;font-size:clamp(28px,4vw,42px)}.quote-modal__intro{margin:0 0 22px;color:#52627a}
.quote-modal .page-form{display:grid;gap:15px}.quote-modal .form-grid{display:grid;gap:14px}.quote-modal .two-col{grid-template-columns:repeat(2,minmax(0,1fr))}.quote-modal label{display:grid;gap:7px;color:#14233d;font-weight:700;font-size:14px}.quote-modal input,.quote-modal select,.quote-modal textarea{width:100%;border:1px solid #d8e1ec;border-radius:12px;padding:13px 14px;background:#f9fbfe;color:#14233d;font:inherit}.quote-modal input:focus,.quote-modal select:focus,.quote-modal textarea:focus{outline:3px solid rgba(39,176,255,.16);border-color:var(--blue)}.quote-modal .btn-submit{width:100%;border:0;cursor:pointer}.quote-modal .form-fine-print{margin:0;text-align:center;color:#6b778b;font-size:12px}.quote-modal .form-success{display:none;margin:0;padding:12px 14px;border-radius:12px;background:#edf9e8;color:#255f17;font-weight:700}.quote-modal .form-success.show{display:block}
body.quote-modal-open{overflow:hidden}@keyframes quoteModalIn{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1;transform:none}}

/* Creative service-area map */
.coverage-map{position:relative;margin-top:28px;min-height:350px;border-radius:30px;overflow:hidden;background:linear-gradient(145deg,#06142f,#0a2d58);box-shadow:0 24px 60px rgba(5,20,47,.18);isolation:isolate}.coverage-map:before{content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(to bottom,black,transparent 92%)}.coverage-map:after{content:"";position:absolute;width:420px;height:420px;border:1px solid rgba(39,176,255,.22);border-radius:50%;left:50%;top:52%;transform:translate(-50%,-50%);box-shadow:0 0 0 70px rgba(39,176,255,.04),0 0 0 140px rgba(138,217,48,.025)}
.coverage-map__copy{position:absolute;left:34px;top:32px;z-index:3;max-width:330px;color:#fff}.coverage-map__copy small{color:var(--green);font-weight:800;letter-spacing:.12em;text-transform:uppercase}.coverage-map__copy h3{font-size:clamp(28px,4vw,46px);margin:8px 0}.coverage-map__copy p{color:rgba(255,255,255,.72);margin:0}
.map-pin{position:absolute;z-index:4;display:flex;align-items:center;gap:8px;color:#fff;font-weight:800;font-size:13px}.map-pin i{position:relative;width:22px;height:22px;border-radius:50% 50% 50% 0;background:linear-gradient(135deg,var(--green),var(--blue));transform:rotate(-45deg);box-shadow:0 0 0 7px rgba(39,176,255,.12),0 10px 20px rgba(0,0,0,.25)}.map-pin i:after{content:"";position:absolute;width:7px;height:7px;border-radius:50%;background:#fff;left:7.5px;top:7.5px}.map-pin b{padding:7px 10px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:rgba(4,16,38,.72);backdrop-filter:blur(6px)}.map-pin--1{left:58%;top:20%}.map-pin--2{left:72%;top:37%}.map-pin--3{left:54%;top:54%}.map-pin--4{left:79%;top:66%}.map-pin--5{left:38%;top:70%}.map-pin--6{left:64%;top:80%}.coverage-map__route{position:absolute;inset:0;z-index:2;width:100%;height:100%}.coverage-map__route path{fill:none;stroke:rgba(138,217,48,.55);stroke-width:2;stroke-dasharray:8 10;animation:mapRoute 16s linear infinite}@keyframes mapRoute{to{stroke-dashoffset:-180}}
.area-pills{margin-top:18px}.area-pills span{position:relative;padding-left:38px}.area-pills span:before{content:"";position:absolute;left:15px;top:50%;width:13px;height:13px;border-radius:50% 50% 50% 0;background:linear-gradient(135deg,var(--green),var(--blue));transform:translateY(-62%) rotate(-45deg)}
@media(max-width:700px){.quote-modal{padding:10px}.quote-modal__dialog{padding:24px 16px 20px;border-radius:22px}.quote-modal .two-col{grid-template-columns:1fr}.coverage-map{min-height:500px}.coverage-map__copy{left:22px;right:22px;top:24px}.map-pin--1{left:14%;top:45%}.map-pin--2{left:55%;top:42%}.map-pin--3{left:24%;top:58%}.map-pin--4{left:60%;top:62%}.map-pin--5{left:12%;top:76%}.map-pin--6{left:55%;top:82%}.map-pin b{font-size:11px}}


/* === Performance-focused CTA + mobile stats fixes === */
.stat-item > div {
  min-width: 0;
  flex: 1 1 auto;
}
.stat-item p {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-item {
    padding: 20px 18px;
    align-items: flex-start;
    gap: 14px;
  }
  .stat-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
  }
  .stat-item strong {
    font-size: 26px;
    line-height: 1.1;
  }
  .stat-item p {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.45;
  }
}


/* Compact quick-quote modal */
.quote-modal__dialog{width:min(620px,100%);max-height:min(92vh,760px);padding:26px 28px}
.quote-modal__intro{margin-bottom:14px;line-height:1.55}
.quote-modal__trust{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 16px}
.quote-modal__trust span{display:inline-flex;align-items:center;min-height:30px;padding:6px 10px;border-radius:999px;background:#f1f7ff;border:1px solid #dce9f7;color:#24486f;font-size:12px;font-weight:800}
.quote-modal .page-form{gap:12px}
.quote-modal input,.quote-modal select{padding:12px 13px}
.quote-modal .btn-submit{min-height:52px}
@media(max-width:700px){.quote-modal__dialog{padding:22px 16px 18px}.quote-modal h2{font-size:30px;margin-right:44px}.quote-modal__trust{gap:6px}.quote-modal__trust span{font-size:11px;padding:5px 8px}}


/* === Compact full quote form: mobile viewport fit === */
.quote-modal__trust{
  display:flex;
  flex-wrap:wrap;
  gap:7px 12px;
  margin:0 0 14px;
  color:#3a6c35;
  font-size:12px;
  font-weight:700;
}
.quote-modal .compact-full-quote-form textarea{
  min-height:64px;
  resize:vertical;
}
@media(max-width:700px){
  .quote-modal{
    padding:6px;
    align-items:center;
  }
  .quote-modal__dialog{
    width:min(100%,560px);
    max-height:calc(100dvh - 12px);
    padding:16px 12px 12px;
    border-radius:18px;
    overflow:auto;
    overscroll-behavior:contain;
  }
  .quote-modal__close{
    top:8px;
    right:8px;
    width:34px;
    height:34px;
    font-size:22px;
  }
  .quote-modal__eyebrow{
    margin-bottom:2px;
    font-size:10px;
    letter-spacing:.09em;
  }
  .quote-modal h2{
    margin:0 38px 3px 0;
    font-size:23px;
    line-height:1.08;
  }
  .quote-modal__intro{
    margin:0 0 7px;
    font-size:12px;
    line-height:1.35;
  }
  .quote-modal__trust{
    gap:4px 8px;
    margin-bottom:8px;
    font-size:10.5px;
    line-height:1.2;
  }
  .quote-modal .page-form{
    gap:7px;
  }
  .quote-modal .form-grid{
    gap:7px;
  }
  .quote-modal .two-col{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .quote-modal label{
    gap:3px;
    min-width:0;
    font-size:10.5px;
    line-height:1.15;
  }
  .quote-modal input,
  .quote-modal select,
  .quote-modal textarea{
    min-width:0;
    border-radius:9px;
    padding:8px 9px;
    font-size:12px;
    line-height:1.15;
  }
  .quote-modal input,
  .quote-modal select{
    height:36px;
  }
  .quote-modal .compact-full-quote-form textarea{
    min-height:48px;
    height:48px;
    padding-top:7px;
  }
  .quote-modal .btn-submit{
    min-height:39px;
    padding:9px 14px;
    font-size:13px;
    border-radius:10px;
  }
  .quote-modal .form-fine-print{
    font-size:9.5px;
    line-height:1.25;
  }
}
@media(max-width:360px){
  .quote-modal__dialog{padding:14px 10px 10px}
  .quote-modal .two-col{gap:5px}
  .quote-modal input,.quote-modal select,.quote-modal textarea{font-size:11px;padding-left:7px;padding-right:7px}
  .quote-modal__trust{font-size:9.5px}
}


/* === Video testimonials alignment + local YouTube fallback === */
.video-testimonial-head {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}
.video-testimonial-head .section-tag,
.video-testimonial-head .section-title {
  text-align: left;
}
.video-testimonial-wrap {
  grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
  align-items: stretch;
}
.video-playlist-panel,
.video-player-panel {
  min-height: 100%;
}
.video-playlist-panel {
  display: flex;
  flex-direction: column;
}
.video-playlist-list {
  flex: 1 1 auto;
}
.video-player-panel {
  display: flex;
  flex-direction: column;
}
.video-player-shell {
  flex: 0 0 auto;
}
.video-player-meta {
  flex: 1 1 auto;
  align-items: flex-start;
}
.video-player-meta > div {
  min-width: 0;
  flex: 1 1 auto;
}
.video-player-meta .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.video-player-embed {
  min-height: 430px;
}
.video-local-fallback {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #071426;
  color: #fff;
}
.video-local-fallback[hidden] {
  display: none !important;
}
.video-local-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-local-fallback__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,16,38,.18), rgba(4,16,38,.84));
}
.video-local-fallback__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  gap: 10px;
}
.video-local-play {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #1168db;
  font-size: 24px;
  padding-left: 4px;
  box-shadow: 0 14px 34px rgba(0,0,0,.26);
}
.video-local-fallback__content strong {
  margin-top: 8px;
  font-size: 24px;
}
.video-local-fallback__content small {
  max-width: 480px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  font-size: 14px;
}
.video-local-fallback__content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 6px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #102142;
  text-decoration: none;
  font-weight: 800;
}
@media (max-width: 1180px) {
  .video-testimonial-wrap {
    grid-template-columns: 1fr;
  }
  .video-player-embed {
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .video-testimonial-head,
  .video-testimonial-head .section-tag,
  .video-testimonial-head .section-title {
    text-align: left;
  }
  .video-playlist-item {
    min-height: 90px;
  }
  .video-player-meta .btn {
    width: 100%;
  }
  .video-local-fallback__content {
    padding: 18px;
  }
  .video-local-fallback__content strong {
    font-size: 20px;
  }
  .video-local-fallback__content small {
    font-size: 13px;
  }
}

/* Video testimonial playback + alignment final polish */
.video-testimonial-wrap { align-items: stretch; }
.video-playlist-panel, .video-player-panel { height: 100%; }
.video-player-panel { display: flex; flex-direction: column; }
.video-player-shell { flex: 0 0 auto; }
.video-player-meta { margin-top: auto; }
.video-local-fallback { position:absolute; inset:0; overflow:hidden; border-radius:18px; background:#091426; }
.video-local-fallback > img { width:100%; height:100%; object-fit:cover; opacity:.28; }
.video-local-fallback__shade { position:absolute; inset:0; background:linear-gradient(180deg,rgba(4,14,32,.42),rgba(4,14,32,.88)); }
.video-local-fallback__content { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:28px; color:#fff; }
.video-local-fallback__content h3 { margin:12px 0 8px; font-size:26px; }
.video-local-fallback__content p { max-width:520px; margin:0; color:rgba(255,255,255,.84); line-height:1.65; }
.video-local-play { width:58px; height:58px; border-radius:50%; display:grid; place-items:center; background:#fff; color:#1366d8; font-size:20px; }
.video-local-note { margin-top:14px; padding:8px 12px; border:1px solid rgba(255,255,255,.2); border-radius:999px; background:rgba(255,255,255,.08); font-size:13px; }
@media (max-width: 640px) {
  .video-local-fallback__content { padding:18px; }
  .video-local-fallback__content h3 { font-size:21px; }
  .video-local-fallback__content p { font-size:14px; }
}


/* FormSubmit delivery states */
.form-error { display:none; margin:10px 0 0; color:#b42318; font-size:14px; line-height:1.45; }
.form-error.show { display:block; }
form button[type="submit"]:disabled { opacity:.68; cursor:wait; pointer-events:none; }
