/* =========================================================
   Landing Pages — Page-scoped styles
   Scope: only applies when body has .landing-page
   ========================================================= */

/* ---------- Theme tokens / container ---------- */

.landing-page {
  --brand: #002128;      
  --brand-2: #012B55;      
  --accent: #DC4E20;       /* orange */
  --accent-2: #ff8a3a;     /* hover */
  --ink: #012B55;          /* headings */
  --muted: #333333;        /* body text */
  --line: #D2D2D2;         /* borders */
  --bg: #f6f8fb;           /* section bg */
  --card: #ffffff;         /* cards */	
  --shadow: 0 8px 24px rgba(16, 38, 73, .08);
}

.landing-page .lp-wrap {
  margin: 0 auto;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Poppins';
}

.orange-text {
	color: var(--accent);
}

/* ---------- Page-only header/footer tweaks (optional) ---------- */

.landing-page .lp-lang {
	background-color: var(--brand-2);
	background: var(--brand-2);
}


.landing-page .drop-down-show {
	border-radius: 0px;
}

.landing-page .lp-lang .trp-shortcode-switcher__wrapper {
	--text: #fff !important;
	--bg: var(--brand-2) !important;
	--border-radius: 0px !important;
	--font-size: 16px !important;
	--border: 0px solid #1438521a !important;
	max-height: 35px;
}

.landing-page .lp-lang .trp-shortcode-overlay {
	left: unset !important;
	right: 0px;
}

.landing-page .lp-lang .trp-language-item-name {
	font-size: 16px;
    font-weight: 700;
}

.landing-page .lp-lang .trp-language-item-name:hover {
	color: var(--accent);
}

.landing-page .lp-lang .trp-current-language-item__wrapper:not(.trp-hide-arrow) {
	padding-right: 0px;
}

.landing-page .cust-header--service {
	padding-top: 0px;
	padding-bottom: 0px;
}

.landing-page .container-header {
	padding-top: 16px;
	padding-bottom: 16px;
}

.landing-page .cust-header--service .get-quote-btn a {
	border-radius: 0px;
	padding: 16px;
	font-weight: 700;
    line-height: 19px;
}

/* CSS-only arrow after "Get a Quote" link */
.landing-page .cust-header--service .get-quote-btn > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff; /* ensure text + stroke are white */
}
.landing-page .cust-header--service .get-quote-btn > a::after{
  content: "";
  width: 17px;
  height: 17px;
  display: inline-block;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17' fill='none'><path d='M4.19141 11.8744L7.68387 8.38191L4.19141 4.88945M9.08085 11.8744L12.5733 8.38191L9.08085 4.88945' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}


.landing-page .cust-header--service .trp-language-item {
	padding: 8px;
}

.landing-page .cust-header--service .trp-shortcode-switcher {
	padding: 0px;
}

/* ---------- Utilities ---------- */
.landing-page .lp-section { 
	padding: 56px 0; 
	margin-left: auto;
	margin-right: auto;
}
.landing-page .lp-advantages .lp-section-title {
  font-size: 46px;
  line-height: 46px;
  font-weight: 700;
  margin: 0 0 45px 0;
  color: var(--ink);
}
.landing-page .lp-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: .82rem;
}
.landing-page .lp-muted { color: var(--muted); }
.landing-page .lp-note { font-size: .92rem; color: var(--muted); }

.landing-page .lp-btn {
  display: inline-block;
  padding: 15px 54px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 114.286% */
  text-transform: uppercase;
  border: 1px solid var(--accent);
}
.landing-page .lp-btn:hover { 
	background: var(--brand-2);
	border: 1px solid var(--accent);
}

.landing-page .lp-btn--ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.landing-page .lp-btn--ghost:hover { background: rgba(243,112,33,.08); }

/* Grid helpers */
.landing-page .lp-grid { display: grid; gap: 18px; }
.landing-page .lp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.landing-page .lp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.landing-page .lp-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Scroll strips (logos, industries) */
.landing-page .lp-scroll { display: flex; gap: 14px; overflow: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; }
.landing-page .lp-scroll > * { scroll-snap-align: start; }

/* Image helpers */
.landing-page .lp-img { width: 100%; height: auto; display: block; }
.landing-page .lp-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Cards */
.landing-page .lp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

/* =========================================================
   1) HERO
   ========================================================= */
.landing-page .lp-hero-wrap {
   background: var(--brand-2);
   padding-top: 75px;
}
.landing-page .lp-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content:space-between;
  padding: 0px 0 96px var(--left);
}
.landing-page .lp-hero__panel {
  color: #fff;
  max-width: 445px;
  padding-left: 15px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}
/* Navy backdrop */
.ribbon {
  --cut: 35px;   /* how far the BOTTOM-RIGHT is inset */
  --padY: 6px;  /* height via padding */
	
  max-width: calc(180px + var(--left));
}

/* White ribbon with RIGHT edge slanting like `/` */
.ribbon__bar {
  background: #fff;
  padding: var(--padY) 0px var(--padY) var(--left);
  clip-path: polygon(
    0 0,                          /* top-left */
    100% 0,                       /* top-right (flush) */
    calc(100% - var(--cut)) 100%, /* bottom-right (inset) -> gives `/` */
    0 100%                        /* bottom-left */
  );
}

/* Centered heading */
.ribbon__text {
  display: block;
  color: var(--brand-2);
  font-size: 16px;
  padding-left: 15px;
  font-weight: 700;
}

.landing-page .lp-hero__title { 
	font-size: 72px; 
	line-height: 72px; 
	font-weight: 700;
	margin-bottom: 37px; 
	text-transform: uppercase;
}
.landing-page .lp-hero__sub { 
	color: #fff; 
	margin-bottom: 37px; 
}

.landing-page .lp-hero__media img { width: 100%; height: auto; }

/* =========================================================
   Breadcrumbs bar (service pages)
   ========================================================= */
.landing-page .lp-bc {
  /* brand vars */
  --lp-bc-navy: var(--brand-2);

  /* Make the far-right area transparent so only the navy wedge shows */
  background: linear-gradient(
    90deg,
    var(--accent) 0 calc(100% - 92px),
    transparent calc(100% - 92px) 100%
  );

  color: #fff;
  position: relative;
  overflow: hidden;
  max-width: calc(1150px + var(--left));
}

.landing-page .lp-bc__wrap {
  max-width: 1150px;
  margin-left: var(--left);
  padding: 24px 15px;
}

.landing-page .lp-bc__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.landing-page .lp-bc__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.landing-page .lp-bc__item:not(:last-child)::after {
  content: '›';
  opacity: .9;
  color: #fff;
}

.landing-page .lp-bc__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.landing-page .lp-bc__link:hover { opacity: .85; }

.landing-page .lp-bc__current {
  font-weight: 700;
  color: #fff;
}

/* angled right decorations */
.landing-page .lp-bc--decor::after,
.landing-page .lp-bc--decor::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  transform: skewX(-35deg);
  pointer-events: none;
  height: 75px;
}

/* navy wedge — keep width in sync with the gradient's 92px */
.landing-page .lp-bc--decor::after {
  right: 28px;
  width: 92px;
  background: var(--brand-2);
}

/* thin white strip just to the left of the navy */
.landing-page .lp-bc--decor::before {
  right: 113px;
  width: 16px;
  background: #fff;
}

/* optional small-screen tweaks */
@media (max-width: 640px){
  .landing-page .lp-bc__wrap { padding: 16px; }
  .landing-page .lp-bc__list { gap: 8px; }
}



/* =========================================================
   2) ADVANTAGES (Accordion cards)
   ========================================================= */
.landing-page .lp-advantages { 
	margin: 81px auto 81px auto; 
	padding: 0px 15px;
}

.landing-page .lp-adv-grid {
	display: grid; 
	grid-template-columns: repeat(2, 1fr); 
	gap: 20px 20px;
	align-items: start;
}

/* (optional) make each panel fill its column neatly */
.landing-page .lp-adv {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  align-self: start;

}

.landing-page .lp-adv__summary {
  list-style: none;
  display: grid;
  grid-template-columns: 58px 1fr 28px; /* icon | title | chevron */
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
}
.landing-page .lp-adv__summary::-webkit-details-marker { display: none; } /* hide default marker */

/* Icon tile */
.landing-page .lp-adv__icon {
  display: grid;
  place-items: center;
  height: 72px; width: 72px;
  background: var(--accent);
}
.landing-page .lp-adv__icon-img { 
	max-width: 32px !important; 
	max-height: 32px !important; 
	object-fit: contain; 
}
.landing-page .lp-adv__icon-fallback {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
}

/* Title row */
.landing-page .lp-adv__title {
  font-weight: 700;
  color: var(--ink);
  padding: 20px 0 20px 20px;
  font-size: 16px;
  line-height: 1;
}

/* Chevron */
.landing-page .lp-adv__chev {
  width: 12px; height: 12px;
  margin-right: 20px;
  border: 2px solid var(--accent);
  border-left: 0; border-top: 0;
  transform: rotate(45deg);
  justify-self: end;
  transition: transform .18s ease;
}

/* Content (collapsed by default) */
.landing-page .lp-adv__content {
  display: none;
  padding: 20px; /* indent under title, aligned with text */
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  line-height: 24px;
}

/* Open state */
.landing-page .lp-adv[open] .lp-adv__summary { 
	border-bottom-color: var(--line); 
	background: var(--accent);
}
.landing-page .lp-adv[open] .lp-adv__chev { 
	transform: rotate(45deg);
	color: #fff;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.landing-page .lp-adv[open] .lp-adv__title {
	color: #fff;
}

.landing-page .lp-adv[open] .lp-adv__content { display: block; }

/* Note below the grid */
.landing-page .lp-adv-note {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 18px;
  color: var(--muted);
}

.landing-page .lp-adv-note p {
	font-size: 12px;
}
.landing-page .lp-adv-note a { 
	color: var(--accent);  
	text-decoration: underline !important;
}

/* =========================================================
   OUR PROCESS / HOW IT WORKS (title + text + button + steps)
   ========================================================= */

.landing-page .lp-process {
  margin: 63px auto 0px auto;
  padding: 0 15px 79px 15px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.landing-page .lp-process__wrap {
	background: var(--brand-2);
	padding: 14px 15px 14px var(--left);
}

/* Header layout: title/text on the left, CTA on the right */
.landing-page .lp-process__hd {
  max-width: 295px;
  max-height: 295px;
}

.landing-page .lp-related__hd p {
	max-width: 831px;
	margin-left: auto;
	margin-right: auto;
}

.landing-page .lp-process__hd-main { 
	min-width: 0; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.landing-page .lp-sec-eyebrow {
  display: inline-block;
  color: #fff;
  text-transform: capitalize;
  padding-left: 15px;
  font-weight: 700;
  font-size: 16px;
	
}

.landing-page .lp-sec-title, .landing-page .lp-trust__title, .landing-page .lp-coverage__title,
.lp-section-title {
  font-size: 38px;
  line-height: 48px;
  color: var(--ink);
  font-weight: 700;
}

.landing-page .lp-trust__title, .landing-page .lp-coverage__title, .lp-section-title  {
  margin-bottom: 25px;
}

.landing-page .lp-coverage__title {
	color: #fff;
}

.landing-page .lp-sec-sub {
  color: var(--muted);
  max-width: 270px;
}

.landing-page .lp-sec-sub p { 
	margin: 0;
	font-weight: 500;
	line-height: 25px;
}

/* Steps grid */
.landing-page .lp-steps {
  display: flex;
  gap: 21px;
}

/* Step cards */
.landing-page .lp-step {
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  width: 295px;
  height: 295px;
}

/* Number badge */
.landing-page .lp-step__badge {
  display: inline-grid;
  place-items: center;
  width: 40px; 
  height: 40px;
  background: var(--brand-2);
  color: #fff;
  font-weight: 700;
  font-size: 23px;
}

.landing-page .lp-step__content {
	max-width: 249px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 21px;
}

/* Optional icon square */
.landing-page .lp-step__icon {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  margin-bottom: 20px;
}
.landing-page .lp-step__icon-img {
  width: 20px; height: 20px; object-fit: contain;
}

/* Title + body */
.landing-page .lp-step__title {
  font-weight: 700;
  color: var(--ink);
  font-size: 22px;
  line-height: 22px;
}
.landing-page .lp-step__body {
  color: var(--muted);
  margin-top: 24px;
}
.landing-page .lp-step__body p { 
	margin: 0; 
	font-size: 14px;
	color: var(--muted);
	line-height: 24px;
}

/* =========================================================
   INDUSTRIES — Slider with edge peeks (0.3) + 4 main
   ========================================================= */

.landing-page .lp-industries { margin: 64px 0 64px 0; }
.landing-page .lp-industries__hd { text-align: center; margin-bottom: 18px; }
.landing-page .lp-industries__hd h2 {
	color: var(--ink, #012B55);
	text-align: center;
	font-size: 38px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
	margin-bottom: 25px;
}
.landing-page .lp-industries__hd p {
	max-width: 831px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
	color: var(--muted);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 52px;
}

.landing-page .lp-ind-slider { position: relative; }
.landing-page .lp-ind-slider.lp-ind--bottom-controls { display: grid; grid-template-rows: auto auto; row-gap: 16px; }

.landing-page .lp-ind-viewport { overflow: hidden; position: relative; }
.landing-page .lp-ind-track { list-style: none; display: flex; gap: 22px; margin: 0;  }

.landing-page .lp-ind-card { 
	display: block; 
	background: #fff; 
	overflow: hidden; 
	text-decoration: none; 
	color: inherit; 
}

.landing-page .lp-ind-card__media { width: 100%; max-height: 520px; overflow: hidden; }
.landing-page .lp-ind-card__media .lp-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.landing-page .lp-ind-card__cap { 
	background: var(--brand-2); 
	color: #fff; 
	text-align: center;
	/* Body/Poppins/Bold */
	font-family: Poppins;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 25px; /* 156.25% */
	padding-bottom: 12px;
	padding-top: 12px;
}

.landing-page .lp-ind-slide {
	max-width: 438px;
}

/* States for peek sizing */
.landing-page .lp-ind-slide.is-main .lp-ind-card__media { height: 363px; }
.landing-page .lp-ind-slide.is-peek .lp-ind-card__media { 
	height: 274px; 
	margin-top: 45px;
}


/* Bottom controls */
.landing-page .lp-ind-controls { 
	display: flex; 
	align-items: center; 
	justify-items: center; 
	justify-content: center;
	gap: 10px; 
}
.landing-page .lp-ind-dots { display: inline-flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.landing-page .lp-ind-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #d6dde7; cursor: pointer; padding: 0; transition: transform .12s ease, background .15s ease, box-shadow .15s ease; margin-top: auto;
    margin-bottom: auto;}
.landing-page .lp-ind-dots button:hover { transform: scale(1.08); }
.landing-page .lp-ind-dots button[aria-current="true"] { 
	background: var(--accent); 
	width: 16px;
	height: 16px;
}

.landing-page .lp-ind-nav { 
	width: 42px; 
	height: 42px; 
	background: #fff; 
	color: var(--accent); 
	display: grid; 
	place-items: center; 
	cursor: pointer; 
}
.landing-page .lp-ind-nav:hover { color: var(--accent-2); }
.landing-page .lp-ind-nav:disabled { opacity: .45; cursor: default; transform: none; box-shadow: none; }

/* No-JS fallback */
.landing-page .lp-ind-grid-fallback { margin-top: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.landing-page .no-js { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #fff; }

@media (prefers-reduced-motion: reduce){
  .landing-page .lp-ind-nav, .landing-page .lp-ind-dots button, .landing-page .lp-ind-track { transition: none !important; }
   .lp-ind-slide .lp-ind-card__figure { transition: none !important; }
}

/* Smooth grow/shrink; GPU-friendly */
.lp-ind-slide .lp-ind-card__figure{
  transition: transform 160ms cubic-bezier(.22,.7,.3,1), opacity 140ms ease-out;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

/* Default non-active: smaller & dimmer */
.owl-item:not(.active) .lp-ind-slide .lp-ind-card__figure{
  transform: translateY(8px) scale(.90);
  opacity: .80;
}

/* 4 mains (active): full size */
.owl-item.active .lp-ind-slide .lp-ind-card__figure{
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Side peeks: shrink toward inner edges so 23px looks consistent */
.owl-item:not(.active):has(+ .owl-item.active) .lp-ind-slide .lp-ind-card__figure{
  transform-origin: right center;
  transform: translateY(5px) scale(0.85);
  opacity: .92;
}
.owl-item.active:has(+ :not(.active)) + .owl-item .lp-ind-slide .lp-ind-card__figure{
  transform-origin: left center;
  transform: translateY(5px) scale(0.85);
  opacity: .92;
}

/* ---- Native Owl dots mounted inside .lp-ind-dots ---- */
.lp-ind-dots { display:flex; gap:10px; justify-content:center; align-items:center; padding:8px 0; margin:0; }
.lp-ind-dots .owl-dot { list-style:none; border:0; background:none; padding:0; }
.lp-ind-dots .owl-dot span{
   display:block; border-radius:50%;
}
.lp-ind-dots .owl-dot:hover span{ transform: scale(1.12); }
.lp-ind-dots .active  { 
	background:var(--accent) !important;
	transform: translateY(0px) scale(1.5);
} 

/* keeps layout height stable during init */
.lp-ind-dots:empty { min-height:16px; }

/* =========================================================
   TRUST — Layout & Styles (matches the provided screenshot)
   ========================================================= */

.landing-page .lp-trust {
  padding: 60px 15px 60px 15px;
}


.landing-page .lp-trust__left {
	max-width: 496px;
}

.landing-page .lp-trust__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr; /* left text a bit wider */
  gap: 40px 60px;
  align-items: start;
}

/* ---------- LEFT ---------- */

.landing-page .lp-trust__text {
  margin: 0 0 40px;
  color: var(--muted);
  line-height: 25px;
}

.landing-page .lp-logos-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 22px;
  align-items: center;
  margin: 10px 0 24px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.landing-page .lp-logo { height: 48px; width: auto; }

/* ---------- RIGHT (Testimonial slider) ---------- */
.landing-page .lp-trust__right {
  position: relative;
  min-height: 380px;
}

/* orange frame behind the card */
.landing-page .lp-testi-frame {
    position: absolute;
    right: calc(-1 * var(--left));
    top: -44px;
    left: 34px;
    height: 100%;
    bottom: 0px;
    background: var(--accent);
    border-radius: 0;
    z-index: 0;
}

/* viewport & track */
.landing-page .lp-testi-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 380px;
}
.landing-page .lp-testi-track {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  transition: transform .28s ease;
  will-change: transform;
}
.landing-page .lp-testi-slide { flex: 0 0 100%; }

/* testimonial card */
.landing-page .lp-testi-card {
  background: #fff;
  border: 4px solid var(--accent);
  padding: 59px 39px 79px 39px;
  min-height: 320px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  margin: 0px;
  height: 100%;
}

.landing-page .lp-testi-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--accent);
  margin-bottom: 49px;
}

.landing-page .lp-testi-stars svg { 
	width: 24px;
	height: 24px;
}

.landing-page .lp-testi-quote {
	margin: 0px;
}

.landing-page .lp-testi-quote p {
  margin: 0;
  color: var(--brand-2, #012B55);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}


.landing-page .lp-testi-quote p strong { font-weight: 700; }
.landing-page .lp-testi-meta {
  margin-top: 14px;
  font-weight: 700;
  color: #0d2b4a;
}
.landing-page .lp-testi-role { color: #2d3d4f; font-weight: 600; }

/* nav buttons bottom-right, navy squares */
.landing-page .lp-testi-nav {
    display: flex;
    justify-content: end;
}
.landing-page .lp-testi-btn {
  width: 43px; height: 44px;
  border: 0; 
  background: var(--brand-2);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: opacity .15s ease, transform .08s ease;
}

.landing-page .lp-testi-btn svg {
	height: 24px;
	width: 24px;
}
.landing-page .lp-testi-btn:hover { opacity: .92; }
.landing-page .lp-testi-btn:disabled { opacity: .5; cursor: default; transform: none; }

/* =========================================================
   COVERAGE BANNER — photo BG + dark overlay + 2 CTAs
   ========================================================= */
.landing-page .lp-coverage {
  margin: 12px 0 72px;
  overflow: hidden;
  /* Background image set inline via style attribute; include the overlay above */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.landing-page .lp-coverage__inner{
  /* generous vertical padding to match the mock */
  padding-top: 65px;
  padding-bottom: 65px;
  display: grid;
  justify-items: center;
  gap: 18px;
}

/* Buttons row */
.landing-page .lp-coverage__actions{
  display: inline-grid;
  grid-auto-flow: column;
  gap: 14px;
}

/* Secondary (outlined, dark navy) */
.landing-page .lp-btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.9);
  color: #fff;
}
.landing-page .lp-btn--ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

/* =========================================================
   7) FAQ (accordion)
   ========================================================= */
.landing-page .lp-faq { 
	padding: 0 15px 0 15px;
	max-width: 870px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 72px;
}
.landing-page .lp-faq-list { display: grid; gap: 30px; }
.landing-page .lp-faq-item {
  background: #fff;
  overflow: hidden;
}

.landing-page .lp-faq .lp-faq-title {
	color: var(--accent, #DC4E20);
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 22px; /* 100% */
	margin-bottom: 30px;
}
.landing-page .lp-faq-item__q {
  width: 100%;
  text-align: left;
  padding: 10px 0px;
  background: #fff;
  border: 0;
  cursor: pointer;
  position: relative;
  color: var(--brand, #002128);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 171.429% */
  border-bottom: 2px solid var(--accent);
}
.landing-page .lp-faq-item__q:after {
    content: '+';
    position: absolute;
    right: 0px;
    top: 50%;
    font-size: 18px;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--accent);
}
.landing-page .lp-faq-item.is-open .lp-faq-item__q:after { content: '–'; }

.landing-page .lp-faq-item__a { 
	display: none; 
	padding: 10px 0; 
	color: var(--brand); 
	color: var(--brand, #002128);
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 171.429% */
}
.landing-page .lp-faq-item.is-open .lp-faq-item__a { display: block; }

/* =========================================================
   8) RELATED SERVICES (cards) — matches the provided mock
   ========================================================= */
.landing-page .lp-related {
  position: relative;
  padding: 49px 15px 0px 15px;
  border-top: 1px solid var(--line);
  margin-left: auto;
  margin-right: auto;
}
.landing-page .bg-section {
  /* Navy band behind the card row */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 240px;                  /* tune to your design */
  background: var(--ink);            /* deep navy */
  z-index: 0;
}

/* Header */
.landing-page .lp-related__hd{
  text-align: center;
  padding-top: 0px;
  padding-bottom:0px;	
}

.landing-page .lp-section-title .accent{ color: var(--accent, #CF5A32); }
.landing-page .lp-related__lead{
  margin: 0 auto 14px;
  color: #586979;
  max-width: 70ch;
  line-height: 1.6;
}

/* Grid */
.landing-page .lp-grid{
  display: grid;
  gap: 28px;
  position: relative;
  z-index: 1; /* keep above the navy band */
}
.landing-page .lp-grid--related{ 
	padding-top: 0px;
	padding-left: 15px;
	padding-right: 15px;
    margin-top: 96px;
	grid-template-columns: repeat(3, 1fr); 
}

.landing-page .lp-related-card__figure {
	margin-bottom: 0px;
}

/* Card */
.landing-page .lp-related-card{
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
}
.landing-page .lp-related-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16,38,73,.12);
}
.landing-page .lp-related-card__media{
  width: 100%;
  overflow: hidden;
}
.landing-page .lp-related-card .lp-cover{
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.landing-page .lp-related-card__cap{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
	border: 1px solid #D9D9D9;
background: #FFF;
}
.landing-page .lp-related-card__title{
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-2);
}
.landing-page .lp-related-card__cta{
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Bottom CTA */
.landing-page .lp-related__cta{
  position: relative;
  z-index: 1;
  display: grid;
  justify-content: center;
}

/* =========================================================
   9) FOOTER CTA
   ========================================================= */
.landing-page .bottom-footer-wrapper-service {
	background: #001021;
}

.footer-service .top-footer-wrapper {
	padding-bottom: 0px;
}

.footer-service .form-group .form-control {
	border-radius: 0px;
}

.footer-service .footer-link-list li a {
	text-transform: capitalize;
	color: #D7EBFF;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 156.25% */
margin-bottom: 10px;
}

.footer-row-service .footer-col:nth-child(2) {
	width: 26%;
}


.footer-row-service .footer-col:nth-child(3) {
	width: 15%;
}

.footer-service  .footer-link-list {
	padding-right: 0px;
}

.top-footer-wrapper-service > .container-service:nth-child(1) {
	padding-bottom:40px;
}

.footer-service  .container-service:nth-child(2) p {
	font-size: 12px;
}


.footer-col-service .contact-email,
.footer-row-service .footer-col:nth-child(3) span, .footer-service .contact-list li span,
.footer-service .contact-list li a {
		color: #D7EBFF !important;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 156.25% */
}

/* =========================================================
   Breadcrumb (if you render one inside the page area)
   ========================================================= */
.landing-page .lp-breadcrumb {
  font-size: .92rem; color: var(--muted); margin: 12px 0 16px;
}
.landing-page .lp-breadcrumb a { color: var(--muted); text-decoration: none; }
.landing-page .lp-breadcrumb a:hover { text-decoration: underline; }

/* =========================================================
   Accessibility & reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  .landing-page .lp-btn,
  .landing-page .lp-related-card,
  .landing-page .lp-adv__chev { transition: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media screen and (min-width: 880px) {
	.landing-page {
		--left: calc((100vw - 980px) / 2);
	}
	.landing-page .lp-section {
		max-width: 980px;
	}
}

@media screen and (min-width: 992px) {
	.landing-page {
		--left: calc((100vw - 1230px) / 2);
	}
	.landing-page .lp-section {
		max-width: 1230px;
	}
	.ribbon__text, .landing-page .lp-hero__panel, .landing-page .lp-sec-eyebrow  {
		padding-left: 20px;
	}
	.landing-page .lp-bc__wrap, .landing-page .lp-advantages, .landing-page .lp-process {
		padding-left: 20px;
		padding-right: 20px;
	}
	
}

@media screen and (min-width: 1441px) {
	.landing-page {
		--left: calc((100vw - 1400px) / 2);
	}
	.landing-page .lp-section {
		max-width: 1400px;
	}
	.ribbon__text, .landing-page .lp-hero__panel, .landing-page .lp-sec-eyebrow  {
		padding-left: 15px;
	}
	.landing-page .lp-bc__wrap, .landing-page .lp-advantages, .landing-page .lp-process {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media screen and (min-width: 2130px) {
	max-height: 420px;
}

@media (max-width: 1920px) {
	.landing-page .lp-ind-card__media {
		max-height: 430px;
	}
}

@media (max-width: 1700px) {
    .landing-page .lp-ind-card__media {
        max-height: 380px;
    }
}

@media screen and (max-width: 1480px) {
	.landing-page .lp-ind-card__media {
        max-height: 350px;
    }
}


@media screen and (max-width: 1380px) {
    .landing-page .lp-ind-card__media {
        max-height: 320px;
    }
}

@media screen and (max-width: 1440px) {
	.landing-page .lp-step {
		width: 285px;
        height: 285px;
	}
	.landing-page .lp-process__hd {
		max-height: 285px;
	}
	.landing-page .lp-trust {
		padding-left:20px;
		padding-right:20px;
	}
	
}

@media (max-width: 1230px) {
	.ribbon {
		max-width: 180px;
	}
	.landing-page .lp-bc__wrap {
		margin-left: 0px;
	}
	.landing-page .lp-bc {
		max-width: 85%;
	}
	.landing-page .lp-testi-frame {
		right: 0px;
	}
}

@media (max-width: 1220px) {
    .landing-page .lp-step {
        width: 275px;
        height: 275px;
    }
	.landing-page .lp-process__hd {
		max-height: 275px;
	}
}

@media (max-width: 1170px) {
	.landing-page .lp-process {
		flex-direction: column;
		align-items: center;
        justify-content: center;
		gap: 30px;
	}
	.landing-page .lp-step {
        width: 295px;
        height: 295px;
    }
	.landing-page .lp-process__hd {
		max-width: 831px;
	}
	.landing-page .lp-process__hd-main {
		gap: 20px;
	}
	.landing-page .lp-sec-sub {
		max-width: 100%;
	}
	.landing-page .lp-sec-title, .landing-page .lp-sec-sub, .lp-process__hd-cta {
		text-align: center;
	}
}

@media (max-width: 1024px){
  .landing-page .lp-adv-grid { grid-template-columns: 1fr; }
  .landing-page .lp-grid--steps { grid-template-columns: repeat(2, 1fr); }
  .landing-page .lp-grid--related { grid-template-columns: repeat(2, 1fr); }
  .landing-page .lp-trust__grid { 
	  display: flex;
	  flex-direction:column;
	  
	}
	.landing-page .lp-trust__left {
		max-width: 100%;
		margin-bottom: 45px;
	}
	.lp-trust__right {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.landing-page .lp-testi-frame {
        right: -60px;
    }
}

@media (max-width: 995px) {
	.landing-page .lp-hero__title {
		font-size: 62px;
		line-height: 62px;
	}
}

@media (max-width: 992px) {
	.landing-page .lp-hero__panel {
		padding-left: 30px;
	}
	.landing-page .lp-hero__panel {
		padding-right: 30px;
	}
	.landing-page .lp-bc__wrap {
		padding: 20px 30px;
	}
	.landing-page .lp-process, .landing-page .lp-trust,
	.landing-page .lp-faq, .landing-page .lp-coverage__inner {
		padding-right: 30px;
		padding-left: 30px;
	}
	.landing-page .lp-faq {
		max-width: 900px;
	}
	.landing-page .lp-testi-frame {
        right: -30px;
    }
}

@media (max-width: 960px) {
	.landing-page .lp-step {
        width: 275px;
        height: 275px;
    }
}

@media (max-width: 900px) {
	.landing-page .lp-step {
        width: 295px;
        height: 295px;
    }
	.landing-page .lp-steps {
		flex-wrap: wrap;
		justify-content: center;
	}
	
}

@media (max-width: 879px) {
	.landing-page .lp-hero-wrap {
		padding-bottom: 75px;
	}
	.landing-page .lp-advantages {
		margin-top: 75px;
		margin-bottom: 75px;
	}
}

@media (max-width: 840px) {
    .landing-page .lp-hero__title {
        font-size: 52px;
        line-height: 52px;
    }
	.landing-page .lp-hero__panel {
		max-width: 380px;
	}
}

@media (max-width: 767px) {
	.landing-page .lp-hero {
		flex-direction: column-reverse;
	}
	
	.landing-page .lp-hero__media img {
		max-width: 80% !important;
		margin-left: auto;
	}
	.landing-page .lp-hero__panel {
        max-width: 100%;
    }
	.landing-page .lp-hero__panel {
		margin-top: 0px;
	}
	
	.landing-page .lp-hero-wrap, .landing-page .lp-trust {
		padding-bottom: 45px;
		padding-top: 45px;
	}
	.landing-page .lp-advantages, .landing-page .lp-industries {
		margin-top: 45px;
		margin-bottom: 45px;
	}
	.landing-page .lp-process {
		margin-top: 45px;
		padding-bottom: 45px;
	}
	.lp-trust__right {
		width: 100%;
	}
}

@media (max-width: 640px) {
  .landing-page .lp-grid--steps,
  .landing-page .lp-grid--related { grid-template-columns: 1fr; }
  .landing-page .lp-industry-card { min-width: 78%; }
	.landing-page .lp-hero__title {
		font-size: 35px;
        line-height: 35px;
		margin-bottom: 20px;
	}
	.landing-page .lp-advantages .lp-section-title, 
	.landing-page .lp-sec-title, .landing-page .lp-trust__title, .landing-page .lp-coverage__title,
	.landing-page .lp-industries__hd h2 {
		font-size: 30px;
        line-height: 34px;
	}
	.landing-page .lp-hero__sub {
		margin-bottom: 20px;
	}
	.landing-page .lp-hero {
		gap: 20px;
	}
	.landing-page .lp-btn { 
		width: 100%; 
		max-width: 320px; 
		text-align: center;
	}
	.landing-page .lp-industries__hd p {
		margin-bottom: 25px;
	}
}

@media (max-width: 540px) {
	.landing-page .lp-bc {
        max-width: 100%;
	}
	.landing-page .lp-testi-stars {
		margin-bottom: 25px;
	}
	.landing-page .lp-testi-card {
		padding: 25px;
	}
	.landing-page .lp-coverage__actions {
		width: 100%;
	}
	.landing-page .lp-coverage__actions {
    grid-auto-flow: row;

	}
	.landing-page .lp-coverage__inner {
    padding-top: 36px;
		padding-bottom: 36px;}
	
}

@media (max-width: 440px) {
	.landing-page .lp-bc--decor::after  {
        width: 37px;
		right: 26px;
	}
	.landing-page .lp-bc--decor::before {
		right: 62px;
		width: 7px;
	}
	.landing-page .lp-bc {
        background: linear-gradient(90deg, var(--accent) 0 calc(100% - 45px), transparent calc(100% - 45px) 100%);
    }
	
	.landing-page .lp-step {
        width: 100%;
        height: calc(100vw - 60px);
    }
	
}
