/* Services page specific entry file */
@import url('./common.css');

.services-hero{
  background:
    radial-gradient(circle at 78% 18%, rgba(37,99,235,.12), transparent 28%),
    linear-gradient(180deg,#fff,#F8FBFF);
}
.services-hero-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:54px;
  align-items:center;
}
.services-hero-copy .lead{max-width:640px;}
.services-hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.services-hero-panel{
  border-radius:34px;
  padding:26px;
  background:linear-gradient(135deg,#0B1F3A,#123966);
  box-shadow:0 30px 80px rgba(11,31,58,.18);
  color:white;
  position:relative;
  overflow:hidden;
}
.services-hero-panel:before{
  content:"";position:absolute;right:-80px;top:-80px;width:240px;height:240px;border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.16), transparent 70%);
}
.services-panel-top{display:flex;align-items:end;justify-content:space-between;gap:16px;margin-bottom:22px;position:relative;z-index:2}
.services-panel-top span{font-size:62px;line-height:.9;font-weight:900;letter-spacing:-.06em;color:#7DD3FC}
.services-panel-top strong{font-size:18px;color:#DCE7F3;text-transform:uppercase;letter-spacing:.08em}
.services-panel-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;position:relative;z-index:2}
.services-panel-grid article{
  min-height:112px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
}
.services-panel-grid b{display:block;font-size:12px;color:#7DD3FC;letter-spacing:.08em;margin-bottom:10px}
.services-panel-grid h3{font-size:20px;line-height:1.18;color:white}

.services-overview{background:#fff}
.services-overview-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:56px;align-items:start}
.services-overview-copy h2{margin-top:18px;margin-bottom:18px}
.services-overview-copy p{color:#64748B;max-width:520px}
.services-overview-rail{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.services-overview-rail article{
  border-radius:26px;padding:28px;background:#F8FBFF;border:1px solid rgba(226,232,240,.9);
  box-shadow:0 16px 34px rgba(11,31,58,.06)
}
.services-overview-rail span{
  display:inline-flex;padding:7px 11px;border-radius:999px;background:#EFF6FF;color:#2563EB;
  font-size:12px;font-weight:900;letter-spacing:.06em;text-transform:uppercase
}
.services-overview-rail h3{margin:14px 0 12px;font-size:24px;line-height:1.16}
.services-overview-rail p{margin:0;color:#64748B;line-height:1.75}

.services-stack{background:#fff;padding-top:24px}
.services-stack-list{display:grid;gap:24px}
.service-band{
  display:grid;grid-template-columns:.78fr 1.22fr;gap:28px;align-items:stretch;
  border:1px solid rgba(226,232,240,.9);border-radius:34px;padding:34px;
  background:linear-gradient(180deg,#fff,#FCFDFF);box-shadow:0 18px 44px rgba(11,31,58,.06)
}
.service-band.reverse{grid-template-columns:1.22fr .78fr}
.service-band.reverse .service-band-copy{order:2}
.service-band.reverse .service-band-panel{order:1}
.service-band-copy{display:flex;flex-direction:column;justify-content:center;padding-right:10px}
.service-no{
  display:inline-flex;align-self:flex-start;align-items:center;justify-content:center;
  min-width:62px;height:34px;padding:0 14px;border-radius:999px;background:#EFF6FF;color:#2563EB;
  font-size:13px;font-weight:900;letter-spacing:.08em;margin-bottom:18px
}
.service-band-copy h2{font-size:clamp(30px,3vw,48px);line-height:1.04;letter-spacing:-.05em;margin-bottom:18px}
.service-summary{font-size:18px;line-height:1.8;color:#64748B;max-width:520px;margin:0}
.service-band-panel{
  border-radius:28px;padding:26px 28px;background:linear-gradient(135deg,#0B1F3A,#123966);position:relative;overflow:hidden
}
.service-band:nth-child(2n) .service-band-panel{background:linear-gradient(135deg,#113B68,#1C5A95)}
.service-band-panel:before{
  content:"";position:absolute;right:-40px;bottom:-40px;width:180px;height:180px;border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
}
.service-band-panel .list{margin-top:0;position:relative;z-index:2}
.service-band-panel .list li{color:#E2E8F0;font-size:16px;line-height:1.8}
.service-band-panel .list li:before{background:#22D3EE;box-shadow:0 0 0 5px rgba(34,211,238,.14)}

.services-cta-section{background:#fff;padding-top:12px}
.services-cta-band{
  border-radius:36px;padding:52px 58px;display:grid;grid-template-columns:1fr auto;gap:36px;align-items:center;
  background:linear-gradient(135deg,#0B1F3A,#123966);box-shadow:0 26px 70px rgba(11,31,58,.16)
}
.services-cta-band h2{color:#fff;margin-top:18px;margin-bottom:16px;font-size:clamp(32px,3.3vw,50px)}
.services-cta-band p{margin:0;color:#C7D8EA;max-width:780px;line-height:1.8}
.services-cta-band .eyebrow{background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.18);color:#fff}

@media (max-width:1100px){
  .services-hero-grid,
  .services-overview-grid,
  .service-band,
  .service-band.reverse,
  .services-cta-band{grid-template-columns:1fr}
  .service-band.reverse .service-band-copy,
  .service-band.reverse .service-band-panel{order:initial}
}
@media (max-width:760px){
  .services-panel-grid,
  .services-overview-rail{grid-template-columns:1fr}
  .service-band{padding:24px;border-radius:26px}
  .service-band-panel{padding:22px}
  .services-cta-band{padding:34px 24px;border-radius:28px}
  .services-panel-top span{font-size:48px}
  .service-band-copy h2{font-size:32px}
}


/* v2: restore services page banner to full-width photographic hero */
.services-hero{
  position:relative;
  min-height:460px;
  display:flex;
  align-items:flex-end;
  background-image:
    linear-gradient(90deg, rgba(6,16,30,.76) 0%, rgba(6,16,30,.64) 30%, rgba(6,16,30,.38) 60%, rgba(6,16,30,.18) 100%),
    url('../assets/banner-services.jpg');
  background-size:cover;
  background-position:center center;
  border-bottom:none;
  overflow:hidden;
}
.services-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0) 18%, rgba(0,0,0,.08) 100%);
}
.services-hero .container{
  position:relative;
  z-index:2;
}
.services-hero-grid{
  grid-template-columns:1fr;
  gap:0;
  min-height:460px;
  align-items:end;
  padding:110px 0 72px;
}
.services-hero-copy{
  max-width:760px;
}
.services-hero-copy .page-banner-kicker,
.services-hero-copy .breadcrumb{
  display:inline-flex;
  align-items:center;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:14px;
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom:18px;
  box-shadow:none;
}
.services-hero-copy h1{
  color:#fff;
  font-size:clamp(48px,5.6vw,84px);
  line-height:.98;
  letter-spacing:-.06em;
  max-width:700px;
  margin-bottom:20px;
  text-shadow:0 8px 22px rgba(0,0,0,.22);
}
.services-hero-copy .lead{
  max-width:760px;
  color:rgba(255,255,255,.94);
  font-size:18px;
  line-height:1.8;
  margin:0;
}
.services-hero-actions,
.services-hero-panel{
  display:none !important;
}

@media (max-width:760px){
  .services-hero{
    min-height:380px;
    background-position:center center;
  }
  .services-hero-grid{
    min-height:380px;
    padding:96px 0 44px;
  }
  .services-hero-copy h1{
    font-size:clamp(36px,10vw,54px);
  }
  .services-hero-copy .lead{
    font-size:16px;
    line-height:1.7;
  }
}


/* v3: compact full-width animated CTA band */
.services-cta-section{
  background:#fff;
  padding-top:6px;
}
.services-cta-band{
  position:relative;
  overflow:hidden;
  width:100%;
  min-height:200px;
  border-radius:28px;
  padding:32px 44px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  background:#2563EB;
  box-shadow:0 20px 56px rgba(37,99,235,.22);
}
.services-cta-band:before,
.services-cta-band:after{
  content:"";
  position:absolute;
  pointer-events:none;
  opacity:.22;
}
.services-cta-band:before{
  width:220px;
  height:220px;
  right:-48px;
  top:-58px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.55) 0%, rgba(255,255,255,.18) 42%, rgba(255,255,255,0) 70%);
  animation:ctaFloatOne 7.5s ease-in-out infinite;
}
.services-cta-band:after{
  width:190px;
  height:82px;
  left:-18px;
  bottom:16px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  transform:rotate(-12deg);
  animation:ctaFloatTwo 6.2s ease-in-out infinite;
}
.services-cta-band > div{
  position:relative;
  z-index:2;
}
.services-cta-band > div:after{
  content:"";
  position:absolute;
  right:40px;
  top:8px;
  width:78px;
  height:78px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03));
  transform:rotate(18deg);
  animation:ctaFloatThree 8.8s ease-in-out infinite;
}
.services-cta-band h2{
  color:#fff;
  margin-top:12px;
  margin-bottom:12px;
  font-size:clamp(28px,3vw,48px);
  line-height:1.08;
  max-width:860px;
}
.services-cta-band p{
  margin:0;
  color:rgba(255,255,255,.90);
  max-width:840px;
  line-height:1.75;
  font-size:16px;
}
.services-cta-band .eyebrow{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.18);
  color:#fff;
}
.services-cta-band .btn-light{
  position:relative;
  z-index:2;
  background:#fff;
  color:#2563EB;
  border-color:#fff;
  box-shadow:0 12px 26px rgba(17,24,39,.12);
}
.services-cta-band .btn-light:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(17,24,39,.16);
}
@keyframes ctaFloatOne{
  0%,100%{transform:translate3d(0,0,0) scale(1);}
  50%{transform:translate3d(-10px,12px,0) scale(1.05);}
}
@keyframes ctaFloatTwo{
  0%,100%{transform:rotate(-12deg) translate3d(0,0,0);}
  50%{transform:rotate(-8deg) translate3d(12px,-8px,0);}
}
@keyframes ctaFloatThree{
  0%,100%{transform:rotate(18deg) translate3d(0,0,0);}
  50%{transform:rotate(10deg) translate3d(6px,10px,0);}
}
@media (max-width:1100px){
  .services-cta-band{
    grid-template-columns:1fr;
    min-height:auto;
    padding:30px 28px;
  }
  .services-cta-band > div:after{
    right:0;
    top:auto;
    bottom:-6px;
    width:62px;
    height:62px;
  }
}
@media (max-width:760px){
  .services-cta-band{
    min-height:auto;
    padding:28px 22px;
    border-radius:22px;
  }
  .services-cta-band h2{
    font-size:clamp(24px,8vw,36px);
  }
  .services-cta-band p{
    font-size:15px;
    line-height:1.7;
  }
  .services-cta-band:before{
    width:160px;height:160px;right:-34px;top:-36px;
  }
  .services-cta-band:after{
    width:120px;height:54px;left:-14px;bottom:12px;
  }
}


/* v4: hard override CTA to full-width compact blue band */
.services-cta-section > .container{
  max-width:none !important;
  width:100% !important;
  padding-left:40px !important;
  padding-right:40px !important;
}
.services-cta-section .services-cta-band{
  position:relative !important;
  overflow:hidden !important;
  width:100% !important;
  max-width:none !important;
  min-height:200px !important;
  height:200px !important;
  border-radius:22px !important;
  padding:28px 40px !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  gap:24px !important;
  align-items:center !important;
  background:#2563EB !important;
  box-shadow:0 18px 44px rgba(37,99,235,.20) !important;
}
.services-cta-section .services-cta-band::before,
.services-cta-section .services-cta-band::after{
  content:"";
  position:absolute;
  pointer-events:none;
}
.services-cta-section .services-cta-band::before{
  width:180px;
  height:180px;
  right:-36px;
  top:-42px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.38), rgba(255,255,255,.10) 42%, rgba(255,255,255,0) 72%);
  animation:ctaFloatOne 7s ease-in-out infinite;
}
.services-cta-section .services-cta-band::after{
  width:140px;
  height:140px;
  left:-28px;
  bottom:-44px;
  border-radius:28px;
  transform:rotate(-18deg);
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  animation:ctaFloatThree 8.5s ease-in-out infinite;
}
.services-cta-section .services-cta-band > div{position:relative;z-index:2;}
.services-cta-section .services-cta-band > div::after{
  content:"";
  position:absolute;
  right:24px;
  bottom:-10px;
  width:88px;
  height:32px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  transform:rotate(-10deg);
  animation:ctaFloatTwo 6s ease-in-out infinite;
}
.services-cta-section .services-cta-band h2{
  margin:0 0 10px !important;
  color:#fff !important;
  font-size:clamp(30px,2.9vw,48px) !important;
  line-height:1.08 !important;
  max-width:900px !important;
}
.services-cta-section .services-cta-band p{
  margin:0 !important;
  color:rgba(255,255,255,.92) !important;
  max-width:980px !important;
  font-size:16px !important;
  line-height:1.75 !important;
}
.services-cta-section .services-cta-band .btn-light{
  position:relative;z-index:2;
  align-self:center;
  background:#fff !important;
  border-color:#fff !important;
  color:#2563EB !important;
  box-shadow:0 12px 24px rgba(16,24,40,.12) !important;
}
@media (max-width:1024px){
  .services-cta-section > .container{padding-left:24px !important;padding-right:24px !important;}
  .services-cta-section .services-cta-band{
    height:auto !important;
    min-height:200px !important;
    grid-template-columns:1fr !important;
    padding:26px 24px !important;
  }
  .services-cta-section .services-cta-band > div::after{display:none;}
}
@media (max-width:640px){
  .services-cta-section > .container{padding-left:16px !important;padding-right:16px !important;}
  .services-cta-section .services-cta-band{
    min-height:auto !important;
    height:auto !important;
    padding:22px 18px !important;
  }
  .services-cta-section .services-cta-band h2{font-size:clamp(24px,8vw,34px) !important;}
  .services-cta-section .services-cta-band p{font-size:15px !important;line-height:1.7 !important;}
}


/* v5: CTA full viewport width, not container width */
.services-cta-section{
  width:100vw !important;
  max-width:100vw !important;
  min-height:200px !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding:0 !important;
  background:#2563EB !important;
  overflow:hidden !important;
  position:relative !important;
}
.services-cta-section::before,
.services-cta-section::after{
  content:"" !important;
  position:absolute !important;
  pointer-events:none !important;
  z-index:1 !important;
}
.services-cta-section::before{
  width:260px !important;
  height:260px !important;
  right:7vw !important;
  top:-92px !important;
  border-radius:50% !important;
  background:radial-gradient(circle, rgba(255,255,255,.30), rgba(255,255,255,.10) 44%, rgba(255,255,255,0) 72%) !important;
  animation:ctaFloatOne 7s ease-in-out infinite !important;
}
.services-cta-section::after{
  width:210px !important;
  height:82px !important;
  left:9vw !important;
  bottom:-24px !important;
  border-radius:999px !important;
  background:linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.04)) !important;
  transform:rotate(-10deg) !important;
  animation:ctaFloatTwo 6.2s ease-in-out infinite !important;
}
.services-cta-section > .container{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  position:relative !important;
  z-index:2 !important;
}
.services-cta-section .services-cta-band{
  width:100% !important;
  max-width:none !important;
  height:200px !important;
  min-height:200px !important;
  margin:0 !important;
  padding:0 clamp(36px, 10vw, 150px) !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:32px !important;
  overflow:hidden !important;
}
.services-cta-section .services-cta-band::before,
.services-cta-section .services-cta-band::after{
  display:none !important;
}
.services-cta-section .services-cta-band > div{
  position:relative !important;
  z-index:3 !important;
}
.services-cta-section .services-cta-band > div::after{
  content:"" !important;
  position:absolute !important;
  right:0 !important;
  top:18px !important;
  width:86px !important;
  height:86px !important;
  border-radius:24px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.03)) !important;
  transform:rotate(18deg) !important;
  animation:ctaFloatThree 8s ease-in-out infinite !important;
}
.services-cta-section .services-cta-band h2{
  margin:0 0 10px !important;
  max-width:980px !important;
  color:#fff !important;
  font-size:clamp(30px, 3vw, 48px) !important;
  line-height:1.08 !important;
}
.services-cta-section .services-cta-band p{
  margin:0 !important;
  max-width:980px !important;
  color:rgba(255,255,255,.92) !important;
  font-size:16px !important;
  line-height:1.7 !important;
}
.services-cta-section .services-cta-band .btn-light{
  position:relative !important;
  z-index:3 !important;
  background:#fff !important;
  color:#2563EB !important;
  border-color:#fff !important;
  white-space:nowrap !important;
  box-shadow:0 12px 24px rgba(15,23,42,.14) !important;
}
@media(max-width:960px){
  .services-cta-section,
  .services-cta-section .services-cta-band{
    height:auto !important;
    min-height:220px !important;
  }
  .services-cta-section .services-cta-band{
    grid-template-columns:1fr !important;
    padding:34px 24px !important;
  }
  .services-cta-section .services-cta-band > div::after{
    display:none !important;
  }
}
@media(max-width:640px){
  .services-cta-section,
  .services-cta-section .services-cta-band{
    min-height:auto !important;
  }
  .services-cta-section .services-cta-band{
    padding:28px 18px !important;
  }
  .services-cta-section .services-cta-band h2{
    font-size:clamp(24px,8vw,34px) !important;
  }
}


/* v6: make services CTA follow the global full-width rule */
.services-cta-section{
  width:100vw !important;
  max-width:100vw !important;
  min-height:200px !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding:0 !important;
  background:#2563EB !important;
  overflow:hidden !important;
  position:relative !important;
}
.services-cta-section > .container{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
}
.services-cta-section .services-cta-band{
  width:100% !important;
  max-width:none !important;
  height:200px !important;
  min-height:200px !important;
  margin:0 !important;
  padding:0 clamp(36px,10vw,150px) !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:32px !important;
}


/* ===== FINAL OVERRIDE: full-width compact CTA band across pages ===== */
.cta-full-section,
.services-cta-section,
.why-bottom-section{
  width:100vw !important;
  max-width:100vw !important;
  min-height:200px !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding:0 !important;
  background:#2563EB !important;
  overflow:hidden !important;
  position:relative !important;
  border-radius:0 !important;
}

.cta-full-section::before,
.services-cta-section::before,
.why-bottom-section::before{
  content:"" !important;
  position:absolute !important;
  width:260px !important;
  height:260px !important;
  right:7vw !important;
  top:-92px !important;
  border-radius:50% !important;
  background:radial-gradient(circle, rgba(255,255,255,.32), rgba(255,255,255,.10) 44%, rgba(255,255,255,0) 72%) !important;
  pointer-events:none !important;
  z-index:1 !important;
  animation:jlCtaFloatOne 7s ease-in-out infinite !important;
}

.cta-full-section::after,
.services-cta-section::after,
.why-bottom-section::after{
  content:"" !important;
  position:absolute !important;
  width:210px !important;
  height:82px !important;
  left:9vw !important;
  bottom:-24px !important;
  border-radius:999px !important;
  background:linear-gradient(90deg, rgba(255,255,255,.20), rgba(255,255,255,.05)) !important;
  pointer-events:none !important;
  z-index:1 !important;
  transform:rotate(-10deg) !important;
  animation:jlCtaFloatTwo 6.2s ease-in-out infinite !important;
}

.cta-full-section > .container,
.services-cta-section > .container,
.why-bottom-section > .container{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  position:relative !important;
  z-index:2 !important;
}

.cta-full-section .cta-band,
.services-cta-section .services-cta-band,
.why-bottom-section .why-bottom-band{
  width:100% !important;
  max-width:none !important;
  height:200px !important;
  min-height:200px !important;
  margin:0 !important;
  padding:0 clamp(36px, 10vw, 150px) !important;
  border-radius:0 !important;
  background:transparent !important;
  background-image:none !important;
  box-shadow:none !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  align-items:center !important;
  gap:32px !important;
  overflow:hidden !important;
  color:#fff !important;
}

.cta-full-section .cta-band::before,
.cta-full-section .cta-band::after,
.services-cta-section .services-cta-band::before,
.services-cta-section .services-cta-band::after,
.why-bottom-section .why-bottom-band::before,
.why-bottom-section .why-bottom-band::after{
  display:none !important;
}

.cta-full-section .cta-band > div,
.services-cta-section .services-cta-band > div,
.why-bottom-section .why-bottom-band > div{
  position:relative !important;
  z-index:3 !important;
}

.cta-full-section .cta-band > div::after,
.services-cta-section .services-cta-band > div::after,
.why-bottom-section .why-bottom-band > div::after{
  content:"" !important;
  position:absolute !important;
  right:24px !important;
  top:18px !important;
  width:86px !important;
  height:86px !important;
  border-radius:24px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  background:linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.03)) !important;
  transform:rotate(18deg) !important;
  pointer-events:none !important;
  animation:jlCtaFloatThree 8s ease-in-out infinite !important;
}

.cta-full-section .cta-band h2,
.services-cta-section .services-cta-band h2,
.why-bottom-section .why-bottom-band h2{
  margin:0 0 10px !important;
  max-width:980px !important;
  color:#fff !important;
  font-size:clamp(30px, 3vw, 48px) !important;
  line-height:1.08 !important;
  letter-spacing:-.04em !important;
}

.cta-full-section .cta-band p,
.services-cta-section .services-cta-band p,
.why-bottom-section .why-bottom-band p{
  margin:0 !important;
  max-width:980px !important;
  color:rgba(255,255,255,.92) !important;
  font-size:16px !important;
  line-height:1.7 !important;
}

.cta-full-section .cta-band .btn,
.cta-full-section .cta-band .btn-light,
.services-cta-section .services-cta-band .btn,
.services-cta-section .services-cta-band .btn-light,
.why-bottom-section .why-bottom-band .btn,
.why-bottom-section .why-bottom-band .btn-light{
  position:relative !important;
  z-index:3 !important;
  background:#fff !important;
  color:#2563EB !important;
  border-color:#fff !important;
  white-space:nowrap !important;
  box-shadow:0 12px 24px rgba(15,23,42,.14) !important;
}

@keyframes jlCtaFloatOne{
  0%,100%{transform:translate3d(0,0,0) scale(1);}
  50%{transform:translate3d(-10px,12px,0) scale(1.05);}
}
@keyframes jlCtaFloatTwo{
  0%,100%{transform:rotate(-10deg) translate3d(0,0,0);}
  50%{transform:rotate(-6deg) translate3d(14px,-8px,0);}
}
@keyframes jlCtaFloatThree{
  0%,100%{transform:rotate(18deg) translate3d(0,0,0);}
  50%{transform:rotate(10deg) translate3d(6px,10px,0);}
}

@media(max-width:960px){
  .cta-full-section,
  .services-cta-section,
  .why-bottom-section,
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    height:auto !important;
    min-height:220px !important;
  }
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    grid-template-columns:1fr !important;
    padding:34px 24px !important;
  }
  .cta-full-section .cta-band > div::after,
  .services-cta-section .services-cta-band > div::after,
  .why-bottom-section .why-bottom-band > div::after{
    display:none !important;
  }
}

@media(max-width:640px){
  .cta-full-section,
  .services-cta-section,
  .why-bottom-section,
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    min-height:auto !important;
  }
  .cta-full-section .cta-band,
  .services-cta-section .services-cta-band,
  .why-bottom-section .why-bottom-band{
    padding:28px 18px !important;
  }
  .cta-full-section .cta-band h2,
  .services-cta-section .services-cta-band h2,
  .why-bottom-section .why-bottom-band h2{
    font-size:clamp(24px,8vw,34px) !important;
  }
}


/* ===== Final override: services page panels use #2563EB gradient ===== */
.service-band-panel{
  background:linear-gradient(135deg, #2563EB 0%, #3B82F6 45%, #60A5FA 100%) !important;
  box-shadow:0 18px 40px rgba(37,99,235,.22) !important;
}
.service-band:nth-child(2n) .service-band-panel{
  background:linear-gradient(135deg, #1D4ED8 0%, #2563EB 42%, #60A5FA 100%) !important;
}
.service-band-panel:before{
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 70%) !important;
}
.service-band-panel .list li{
  color:#ffffff !important;
}
.service-band-panel .list li:before{
  background:#BAE6FD !important;
  box-shadow:0 0 0 5px rgba(186,230,253,.18) !important;
}

/* if the hero side panel is ever shown again, keep it in the same color system */
.services-hero-panel{
  background:linear-gradient(135deg, #1D4ED8 0%, #2563EB 45%, #60A5FA 100%) !important;
  box-shadow:0 24px 60px rgba(37,99,235,.22) !important;
}
.services-panel-grid article{
  background:rgba(255,255,255,.10) !important;
  border:1px solid rgba(255,255,255,.14) !important;
}


/* restored services page motion */
.service-band-panel{
  background-size:180% 180% !important;
  animation:jlServiceGradient 8s ease-in-out infinite;
}
.services-panel-grid article{
  animation:jlTinyFloat 5.5s ease-in-out infinite;
}
.services-panel-grid article:nth-child(2n){animation-delay:.4s}
.services-panel-grid article:nth-child(3n){animation-delay:.8s}

@keyframes jlServiceGradient{
  0%,100%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
}
@keyframes jlTinyFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-5px);}
}

.cta-full-section .cta-band,
.services-cta-section .services-cta-band,
.why-bottom-section .why-bottom-band {
    width: 100% !important;
    max-width: 1180px !important;
    height: 200px !important;
    min-height: 200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 32px !important;
    overflow: hidden !important;
    color: #fff !important;
}
/* final CTA band override */
.cta-full-section,
.services-cta-section,
.why-bottom-section{
    width:100% !important;
    min-height:200px !important;
    padding:0 !important;
    margin:0 !important;
    background:#2563eb !important;
    background-image:radial-gradient(circle at 86% 24%,rgba(255,255,255,.18) 0 58px,transparent 60px),linear-gradient(90deg,#2563eb 0%,#2563eb 100%) !important;
    position:relative !important;
    overflow:hidden !important;
}
.cta-full-section::before,
.services-cta-section::before,
.why-bottom-section::before{
    content:"" !important;
    position:absolute !important;
    left:8.5% !important;
    bottom:-48px !important;
    width:210px !important;
    height:86px !important;
    border-radius:26px !important;
    background:rgba(255,255,255,.14) !important;
    transform:rotate(-10deg) !important;
    pointer-events:none !important;
}
.cta-full-section::after,
.services-cta-section::after,
.why-bottom-section::after{
    content:"" !important;
    position:absolute !important;
    right:27.5% !important;
    top:70px !important;
    width:82px !important;
    height:82px !important;
    border-radius:18px !important;
    border:1px solid rgba(255,255,255,.28) !important;
    background:rgba(255,255,255,.08) !important;
    transform:rotate(18deg) !important;
    pointer-events:none !important;
}
.cta-full-section .container,
.services-cta-section .container,
.why-bottom-section .container{
    height:200px !important;
}
.cta-full-section .cta-band,
.services-cta-section .services-cta-band,
.why-bottom-section .why-bottom-band{
    width:100% !important;
    max-width:1180px !important;
    height:200px !important;
    min-height:200px !important;
    margin:0 auto !important;
    padding:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    background-image:none !important;
    box-shadow:none !important;
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:32px !important;
    overflow:hidden !important;
    color:#fff !important;
    position:relative !important;
    z-index:1 !important;
}
.cta-full-section .cta-band h2,
.services-cta-section .services-cta-band h2,
.why-bottom-section .why-bottom-band h2{
    color:#fff !important;
    font-size:clamp(26px,2.2vw,36px) !important;
    line-height:1.18 !important;
    margin:0 0 12px !important;
    text-shadow:0 2px 12px rgba(0,0,0,.15) !important;
}
.cta-full-section .cta-band p,
.services-cta-section .services-cta-band p,
.why-bottom-section .why-bottom-band p{
    color:rgba(255,255,255,.92) !important;
    max-width:850px !important;
    margin:0 !important;
    line-height:1.8 !important;
}
.cta-full-section .cta-band .btn,
.cta-full-section .cta-band .btn-light,
.services-cta-section .services-cta-band .btn,
.services-cta-section .services-cta-band .btn-light,
.why-bottom-section .why-bottom-band .btn,
.why-bottom-section .why-bottom-band .btn-light{
    background:#fff !important;
    color:#0755ff !important;
    border-color:#fff !important;
    box-shadow:0 12px 24px rgba(15,23,42,.14) !important;
    white-space:nowrap !important;
}
@media(max-width:960px){
  .cta-full-section,.services-cta-section,.why-bottom-section{min-height:220px !important;}
  .cta-full-section .container,.services-cta-section .container,.why-bottom-section .container{height:auto !important;}
  .cta-full-section .cta-band,.services-cta-section .services-cta-band,.why-bottom-section .why-bottom-band{height:auto !important;min-height:220px !important;grid-template-columns:1fr !important;padding:34px 24px !important;}
}
@media(max-width:640px){
  .cta-full-section .cta-band,.services-cta-section .services-cta-band,.why-bottom-section .why-bottom-band{min-height:220px !important;padding:28px 18px !important;}
}

.logo-mark{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
}
.logo-mark:after{display:none !important;}
.logo-mark img{
  width:44px !important;
  height:44px !important;
  display:block !important;
  object-fit:contain !important;
}
.logo-mark svg{display:none !important;}
@media(max-width:640px){.logo-mark img{width:38px !important;height:38px !important;}}

.logo-mark img{
  width:70% !important;
  height:70% !important;
  object-fit:contain !important;
  margin:auto !important;
}

/* logo frame restore, image 70% */
.brand .logo-mark{
  width:44px !important;
  height:44px !important;
  border-radius:15px !important;
  background:linear-gradient(135deg,var(--navy),var(--blue)) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:white !important;
  box-shadow:0 16px 36px rgba(11,31,58,.22) !important;
  overflow:hidden !important;
  position:relative !important;
}
.home-page .header.header-overlay .logo-mark{
  background:rgba(255,255,255,.12) !important;
  box-shadow:0 18px 36px rgba(0,0,0,.18) !important;
  border:1px solid rgba(255,255,255,.18) !important;
}
.sub-page .header.header-overlay .logo-mark{
  background:linear-gradient(135deg,var(--navy),var(--blue)) !important;
  box-shadow:0 16px 36px rgba(11,31,58,.22) !important;
}
.brand .logo-mark:after{display:none !important;}
.brand .logo-mark img,
.home-page .header.header-overlay .logo-mark img,
.sub-page .header.header-overlay .logo-mark img,
.footer .logo-mark img{
  width:30.8px !important;
  height:30.8px !important;
  max-width:70% !important;
  max-height:70% !important;
  object-fit:contain !important;
  margin:auto !important;
  position:relative !important;
  z-index:2 !important;
}
@media(max-width:640px){
  .brand .logo-mark{width:38px !important;height:38px !important;}
  .brand .logo-mark img,
  .home-page .header.header-overlay .logo-mark img,
  .sub-page .header.header-overlay .logo-mark img,
  .footer .logo-mark img{width:26.6px !important;height:26.6px !important;}
}
/* Logo white background override */
.brand .logo-mark,
.home-page .header.header-overlay .logo-mark,
.sub-page .header.header-overlay .logo-mark,
.footer .logo-mark{
  background:#fff !important;
  background-color:#fff !important;
  border:1px solid rgba(11,31,58,.10) !important;
  box-shadow:0 10px 24px rgba(11,31,58,.14) !important;
}
.brand .logo-mark:after,
.home-page .header.header-overlay .logo-mark:after,
.sub-page .header.header-overlay .logo-mark:after,
.footer .logo-mark:after{display:none !important;}
/* Brand one-line name override */
.brand > span:not(.logo-mark){
  white-space:nowrap !important;
  line-height:1.15 !important;
  letter-spacing:0 !important;
}
.brand > span:not(.logo-mark) small{
  display:inline !important;
  font-size:inherit !important;
  letter-spacing:0 !important;
}
@media(max-width:640px){
  .brand > span:not(.logo-mark){font-size:13px !important;}
}
