/* ============================================================

   DEFAULT PAGE TEMPLATE — banner + .default-css content area

   ============================================================ */


.default-main {
  background: #fff;
  color: #1a2240;
  overflow-x: clip;
}

/* --- Short top banner --- */
.default-banner {
  position: relative;
  padding: 40px 0;
  background: #7ACC0D;
  color: #09102e;
  overflow: hidden;
  isolation: isolate;
}

.default-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9, 16, 46, 0.08) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.default-banner>.container {
  position: relative;
  z-index: 2;
}

.default-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 130px;
}

.default-banner-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.default-banner-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(9, 16, 46, 0.75);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.default-banner-crumb a {
  color: rgba(9, 16, 46, 0.85);
  text-decoration: none;
}

.default-banner-crumb a:hover {
  color: #09102e;
}

.default-banner-crumb .sep {
  color: rgba(9, 16, 46, 0.4);
}

.default-banner h1 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #09102e;
  margin: 0;
  max-width: 640px;
}

/* Big standing rocket on the right — vertical, proud */
.default-banner-rocket {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  animation: drbHover 3.4s ease-in-out infinite;
}

.default-banner-rocket i {
  font-size: 118px;
  line-height: 1;
  color: #09102e;
  filter: drop-shadow(-5px 6px 0 rgba(9, 16, 46, 0.22)) drop-shadow(0 18px 28px rgba(9, 16, 46, 0.38));
  position: relative;
  z-index: 2;
}

.default-banner-rocket .drb-flame {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 46px;
  background: radial-gradient(ellipse at 50% 20%, #fff 0%, #fff 18%, #ffeaa7 40%, #ff7a00 75%, rgba(255, 122, 0, 0) 100%);
  border-radius: 50% 50% 40% 40% / 35% 35% 65% 65%;
  filter: blur(0.5px);
  opacity: 0.9;
  z-index: 1;
  animation: drbFlame 0.5s ease-in-out infinite alternate;
  transform-origin: 50% 0%;
}

@keyframes drbHover {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes drbFlame {
  from {
    transform: translateX(-50%) scaleY(0.9) scaleX(0.95);
    opacity: 0.85;
  }

  to {
    transform: translateX(-50%) scaleY(1.15) scaleX(1.05);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {

  .default-banner-rocket,
  .default-banner-rocket .drb-flame {
    animation: none;
  }
}

@media (max-width: 767px) {
  .default-banner {
    padding: 32px 0;
  }

  .default-banner-inner {
    gap: 20px;
    min-height: 100px;
  }

  .default-banner-rocket {
    width: 90px;
    height: 90px;
  }

  .default-banner-rocket i {
    font-size: 80px;
  }

  .default-banner-rocket .drb-flame {
    width: 22px;
    height: 32px;
  }
}

@media (max-width: 479px) {
  .default-banner-rocket {
    width: 72px;
    height: 72px;
  }

  .default-banner-rocket i {
    font-size: 64px;
  }
}

.default-banner p {
  display: none;
  margin: 0;
}

/* --- Main content section --- */
.default-section {
  padding: 80px 0 90px;
  background: #fff;
}

.default-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 60px;
  /* default align-items: stretch — sidebar column matches left content height so the sticky inner has room to move */
}

.default-css {
  max-width: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #2a3353;
  align-self: start;
}

/* --- Sticky sidebar (desktop/laptop only; disabled on mobile below) --- */
.default-sidebar {
  position: relative;
}

.default-sidebar-inner {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Shared sidebar block styles — DARK premium theme */
.sb-block {
  position: relative;
  background: radial-gradient(420px 260px at 100% 0%, rgba(122, 204, 13, 0.14), transparent 65%), linear-gradient(165deg, #0b1436 0%, #09102e 60%, #070d27 100%);
  border: 1px solid rgba(122, 204, 13, 0.22);
  border-radius: 16px;
  padding: 26px 24px;
  color: #e6ecf7;
  box-shadow: 0 22px 44px rgba(9, 16, 46, 0.22);
  overflow: hidden;
}

.sb-title {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.sb-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin: 0 0 16px;
}

/* CTA block — keep the dark base but add stronger gold/green accent */
.sb-cta {
  position: relative;
  padding: 28px 26px 26px;
  background: radial-gradient(420px 260px at 100% 0%, rgba(197, 240, 122, 0.32), transparent 62%), linear-gradient(160deg, #09102e 0%, #0a143a 60%, #09102e 100%);
  color: #fff;
  border: 1px solid rgba(122, 204, 13, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(9, 16, 46, 0.3);
}

.sb-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;
}

.sb-cta-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
  box-shadow: 0 0 8px #7ACC0D;
}

.sb-cta h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 10px;
}

.sb-cta p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
}

.sb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e !important;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 22px rgba(122, 204, 13, 0.35);
}

.sb-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(122, 204, 13, 0.5);
}

.sb-cta-btn i {
  font-size: 15px;
  transition: transform 0.22s ease;
}

.sb-cta-btn:hover i {
  transform: translateX(3px);
}

/* Contact form block (dark) */
.sb-form .gform_fields {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sb-form .gform_footer {
  margin-top: 4px;
}

.sb-field {
  display: flex;
  flex-direction: column;
}

.sb-field .ginput_container {
  display: block;
}

.sb-field label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c5f07a;
  margin-bottom: 6px;
}

.sb-field input,
.sb-field select,
.sb-field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.09);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.sb-field input::placeholder,
.sb-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.sb-field textarea {
  display: block;
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

.sb-field input:focus,
.sb-field select:focus,
.sb-field textarea:focus {
  border-color: #7ACC0D;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(122, 204, 13, 0.25);
}

.sb-submit {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7ACC0D 0%, #68b10a 100%);
  color: #09102e !important;
  font-weight: 800;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  margin-top: 6px;
  box-shadow: 0 10px 22px rgba(122, 204, 13, 0.35);
}

.sb-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(122, 204, 13, 0.5);
}

/* Services list (dark) */
.sb-svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-svc-list li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sb-svc-list li:last-child {
  border-bottom: 0;
}

.sb-svc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 6px;
  color: #e6ecf7 !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 14px;
  transition: padding-left 0.22s ease, color 0.22s ease;
}

.sb-svc-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(122, 204, 13, 0.16);
  color: #c5f07a;
  font-size: 14px;
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease;
}

.sb-svc-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  transition: color 0.22s ease, transform 0.22s ease;
}

.sb-svc-list a:hover {
  color: #c5f07a !important;
  padding-left: 10px;
}

.sb-svc-list a:hover .sb-svc-ic {
  background: #7ACC0D;
  color: #09102e;
}

.sb-svc-list a:hover .sb-svc-arrow {
  color: #7ACC0D;
  transform: translate(2px, -2px);
}

/* Responsive — stack sidebar below on tablet/mobile */
@media (max-width: 991px) {
  .default-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .default-sidebar-inner {
    position: static;
  }
}

/* Headings H1–H6 */
.default-css h1,
.default-css h2,
.default-css h3,
.default-css h4,
.default-css h5,
.default-css h6 {
  font-family: 'Fraunces', 'Inter', serif;
  color: #09102e;
  letter-spacing: -0.32px;
  line-height: 1.2;
  font-weight: 700;
}

.default-css> :first-child {
  margin-top: 0;
}

.default-css h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
}

.default-css h2 {
  margin: 32px 0 12px;
  font-size: clamp(26px, 2.8vw, 34px);
}

.default-css h3 {
  margin: 26px 0 10px;
  font-size: clamp(22px, 2.3vw, 28px);
}

.default-css h4 {
  margin: 22px 0 10px;
  font-size: 20px;
}

.default-css h5 {
  margin: 18px 0 8px;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.36px;
  font-weight: 700;
  color: #3d4a82;
  font-family: 'Inter', sans-serif;
}

.default-css h6 {
  margin: 16px 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.96px;
  font-weight: 700;
  color: #568f00;
  font-family: 'Inter', sans-serif;
}

/* Paragraph */
.default-css p {
  margin: 0 0 1.2em;
  color: #4a5175;
}

/* Anchors */
.default-css a {
  color: #568f00;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.default-css a:hover {
  color: #09102e;
  text-decoration-thickness: 2.5px;
}

/* Strong */
.default-css strong {
  font-weight: 700;
  color: #09102e;
}

/* Horizontal rule */
.default-css hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(9, 16, 46, 0.18), transparent);
  margin: 2.4em 0;
}

/* Lists (ul + ol) */
.default-css ul,
.default-css ol {
  margin: 0 0 1.4em;
  padding-left: 1.5em;
}

.default-css ul li,
.default-css ol li {
  margin-bottom: 0.55em;
  line-height: 1.65;
  color: #3a4263;
}

.default-css ul li::marker {
  color: #7ACC0D;
  font-size: 1.1em;
}

.default-css ol li::marker {
  color: #568f00;
  font-weight: 700;
}

/* Nested lists */
.default-css ul ul,
.default-css ol ol,
.default-css ul ol,
.default-css ol ul {
  margin: 0.45em 0 0.55em;
}

/* Multi-column list variants */
.default-css ul.two-col,
.default-css ol.two-col {
  columns: 2;
  column-gap: 44px;
  padding-left: 1.5em;
}

.default-css ul.three-col,
.default-css ol.three-col {
  columns: 3;
  column-gap: 32px;
  padding-left: 1.5em;
}

.default-css ul.two-col li,
.default-css ol.two-col li,
.default-css ul.three-col li,
.default-css ol.three-col li {
  break-inside: avoid;
  page-break-inside: avoid;
}

@media (max-width: 767px) {

  .default-css ul.two-col,
  .default-css ol.two-col,
  .default-css ul.three-col,
  .default-css ol.three-col {
    columns: 1;
  }
}

/* Blockquote */
.default-css blockquote {
  margin: 1.6em 0;
  padding: 18px 24px;
  background: #fbfff2;
  border-left: 4px solid #7ACC0D;
  border-radius: 0 10px 10px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: #3a4263;
  font-size: 17px;
}

/* Inline / block code */
.default-css code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.9em;
  padding: 2px 7px;
  background: #f3f6ec;
  border-radius: 6px;
  color: #568f00;
}

/* Images — WordPress-style alignment classes */
.default-css img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  padding: 8px;
  background: #ffffff;
  border: 2px solid #7ACC0D;
  box-sizing: border-box;
}

.default-css .aligncenter,
.default-css img.aligncenter {
  display: block;
  margin: 1.6em auto;
  clear: both;
}

.default-css .alignleft,
.default-css img.alignleft {
  float: left;
  max-width: 45%;
  margin: 0.35em 1.8em 1em 0;
}

.default-css .alignright,
.default-css img.alignright {
  float: right;
  max-width: 45%;
  margin: 0.35em 0 1em 1.8em;
}

.default-css .alignnone,
.default-css img.alignnone {
  display: block;
  margin: 1.2em 0;
}

/* Auto-clear floats before new block-level sections so layout stays clean */
.default-css h1,
.default-css h2,
.default-css h3,
.default-css h4,
.default-css h5,
.default-css h6,
.default-css hr,
.default-css blockquote,
.default-css .dc-embed,
.default-css table {
  clear: both;
}

/* Manual clearfix helper (optional wrapper around image + text) */
.default-css .dc-clear::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 575px) {

  .default-css .alignleft,
  .default-css .alignright,
  .default-css img.alignleft,
  .default-css img.alignright {
    float: none;
    max-width: 100%;
    margin: 1.2em 0;
  }
}

/* Gallery showcase grid */
.default-css .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1.8em 0;
  clear: both;
}

.default-css .gallery-grid a,
.default-css .gallery-grid .gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #09102e;
  text-decoration: none !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.default-css .gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.default-css .gallery-grid a:hover,
.default-css .gallery-grid .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(9, 16, 46, 0.22);
}

.default-css .gallery-grid a:hover img,
.default-css .gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.default-css .gallery-grid .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 16, 46, 0.78) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  pointer-events: none;
}

.default-css .gallery-grid a:hover .gallery-item-overlay,
.default-css .gallery-grid .gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Gallery variants: bento layout */
.default-css .gallery-grid.gallery-bento {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
}

.default-css .gallery-grid.gallery-bento> :nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.default-css .gallery-grid.gallery-bento> :nth-child(6) {
  grid-column: span 2;
  aspect-ratio: auto;
}

.default-css .gallery-grid.gallery-bento>* {
  aspect-ratio: auto;
}

@media (max-width: 767px) {
  .default-css .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .default-css .gallery-grid.gallery-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .default-css .gallery-grid.gallery-bento> :nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .default-css .gallery-grid.gallery-bento> :nth-child(6) {
    grid-column: span 2;
  }
}

/* Image caption */
.default-css figure {
  margin: 1.6em 0;
}

.default-css figcaption {
  font-size: 13.5px;
  color: #6b7290;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Responsive YouTube / video embed */
.default-css .dc-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  margin: 1.8em 0;
  box-shadow: 0 22px 44px rgba(9, 16, 46, 0.12);
}

.default-css .dc-embed iframe,
.default-css .dc-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tables */
.default-css table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.8em 0;
  font-size: 15px;
  background: #ffffff;
  border: 1px solid rgba(9, 16, 46, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(9, 16, 46, 0.06);
}

.default-css table th,
.default-css table td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(9, 16, 46, 0.06);
}

.default-css table tbody tr:last-child td {
  border-bottom: 0;
}

.default-css table th {
  background: linear-gradient(180deg, #09102e 0%, #0d1640 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}

.default-css table th:first-child {
  border-top-left-radius: 16px;
}

.default-css table th:last-child {
  border-top-right-radius: 16px;
}

.default-css table th+th {
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
}

.default-css table tbody tr {
  transition: background 0.2s ease;
}

.default-css table tbody tr:nth-child(even) td {
  background: #fbfaf5;
}

.default-css table tbody tr:hover td {
  background: rgba(122, 204, 13, 0.08);
}

.default-css table tbody td {
  color: #2a3353;
  font-weight: 500;
}

.default-css table tbody td:first-child {
  font-weight: 700;
  color: #09102e;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}

.default-css table tbody td:last-child {
  font-weight: 700;
  color: #568f00;
  font-family: 'Fraunces', serif;
  font-size: 16px;
}

@media (max-width: 575px) {
  .default-css table {
    font-size: 13.5px;
  }

  .default-css table th,
  .default-css table td {
    padding: 12px 14px;
  }

  .default-css table th {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .default-css table tbody td:first-child,
  .default-css table tbody td:last-child {
    font-size: 14.5px;
  }
}

/* --- FAQ section (dark premium theme) --- */
.default-faq {
  position: relative;
  padding: 90px 0 110px;
  background: radial-gradient(700px 460px at 15% 20%, rgba(122, 204, 13, 0.12), transparent 60%), radial-gradient(600px 420px at 90% 85%, rgba(80, 120, 255, 0.12), transparent 60%), linear-gradient(160deg, #09102e 0%, #0a143a 60%, #09102e 100%);
  color: #e6ecf7;
  overflow: hidden;
  isolation: isolate;
}

.default-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 15%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 15%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.default-faq>.container {
  position: relative;
  z-index: 2;
}

.default-faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.default-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(122, 204, 13, 0.18);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.default-faq-head h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 12px;
}

.default-faq-head p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}

.default-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.default-faq-item {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(122, 204, 13, 0.2);
  border-radius: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.default-faq-item:hover {
  border-color: rgba(122, 204, 13, 0.35);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.default-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.default-faq-item summary::-webkit-details-marker {
  display: none;
}

.default-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(122, 204, 13, 0.18);
  color: #c5f07a;
  font-size: 12px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.default-faq-item[open] {
  border-color: rgba(122, 204, 13, 0.55);
  background: linear-gradient(165deg, rgba(122, 204, 13, 0.08) 0%, rgba(122, 204, 13, 0.03) 100%);
  box-shadow: 0 16px 32px rgba(122, 204, 13, 0.15), 0 0 0 1px rgba(122, 204, 13, 0.25) inset;
}

.default-faq-item[open] .default-faq-icon {
  background: #7ACC0D;
  color: #09102e;
  transform: rotate(45deg);
}

.default-faq-item>div {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================================================ LOGO-DESIGN HERO — dark navy stripes, serif headline, mockup (reusable: .lh-hero block; per-page swap copy + visual) ============================================================ */
.lh-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0 90px;
  color: #fff;
  background: #050b22;
}

.lh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lh-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lh-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 78% 50%, rgba(34, 71, 178, 0.28), transparent 65%), linear-gradient(180deg, rgba(5, 11, 34, 0.55) 0%, rgba(5, 11, 34, 0.25) 45%, rgba(5, 11, 34, 0.92) 100%);
  pointer-events: none;
}

.lh-hero>.container {
  position: relative;
  z-index: 2;
}

.lh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

/* ---- LEFT COPY ---- */
.lh-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.4);
  border-radius: 999px;
  color: #c5f07a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.lh-hero-eyebrow i {
  font-size: 13px;
  color: #7ACC0D;
}

.lh-hero h1 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
  max-width: 640px;
}

.lh-hero h1 em {
  font-style: italic;
  font-weight: 700;
}

.lh-hero h1 .lh-rocket {
  display: inline-block;
  margin-left: 6px;
  transform: translateY(-4px);
  filter: drop-shadow(0 6px 14px rgba(122, 204, 13, 0.45));
}

.lh-hero p.lh-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(229, 236, 247, 0.82);
  margin: 0 0 34px;
  max-width: 540px;
}

.lh-hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.lh-cta-primary,
.lh-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 26px 0 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.lh-cta-primary {
  background: #7ACC0D;
  color: #09102e;
  box-shadow: 0 16px 36px rgba(122, 204, 13, 0.32);
}

.lh-cta-primary i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #09102e;
  color: #c5f07a;
  border-radius: 50%;
  font-size: 14px;
  margin-right: -10px;
}

.lh-cta-primary:hover {
  background: #c5f07a;
  color: #09102e;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(122, 204, 13, 0.45);
}

.lh-cta-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.lh-cta-ghost i {
  color: #c5f07a;
  font-size: 16px;
}

.lh-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(122, 204, 13, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- RIGHT VISUAL — tilted logo mockup card ---- */
.lh-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.lh-hero-mockup {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-10deg) rotateX(4deg) rotate(-2deg);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, 0 0 60px rgba(122, 204, 13, 0.08);
}

.lh-hero-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.lh-hero-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.18) 0%, transparent 35%, transparent 70%, rgba(34, 71, 178, 0.25) 100%);
  pointer-events: none;
  z-index: 2;
}

.lh-hero-visual::before,
.lh-hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.lh-hero-visual::before {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.35) 0%, transparent 65%);
  top: -40px;
  right: -60px;
  filter: blur(20px);
}

.lh-hero-visual::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 71, 178, 0.45) 0%, transparent 65%);
  bottom: -30px;
  left: -40px;
  filter: blur(20px);
}

/* ---- FEATURE CARDS BELOW HERO ---- */
.lh-feats {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lh-feat {
  position: relative;
  padding: 30px 28px 32px;
  border-radius: 18px;
  background: radial-gradient(420px 220px at 100% 0%, rgba(122, 204, 13, 0.10), transparent 70%), linear-gradient(160deg, rgba(20, 32, 78, 0.85) 0%, rgba(9, 16, 46, 0.85) 100%);
  border: 1px solid rgba(122, 204, 13, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.lh-feat:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 204, 13, 0.45);
}

.lh-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #1a2c66 0%, #0a1334 70%);
  border: 1px solid rgba(122, 204, 13, 0.35);
  color: #c5f07a;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px rgba(122, 204, 13, 0.06);
}

.lh-feat h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.lh-feat p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(229, 236, 247, 0.72);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .lh-hero {
    padding: 80px 0 70px;
  }



  .lh-hero-visual {
    min-height: auto;
  }

  .lh-hero-mockup {
    max-width: 460px;
    transform: perspective(1200px) rotateY(-6deg) rotate(-1deg);
  }

  .lh-feats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 70px;
  }
.lh-feats> :last-child:nth-child(odd){
  grid-template-columns: 1fr;
  grid-column: 1 / 3;
  width: 100%;
  align-self: center;
}
.lh-incl-grid> :last-child:nth-child(odd){
  grid-template-columns: 1fr;
  grid-column: 1 / 3;
  width: 100%;
  align-self: center;
}


}

@media (max-width: 767px) {
  .lh-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
    .lh-incl-grid> :last-child:nth-child(odd) {
        grid-column: 1;
    }



  }

@media (max-width: 575px) {
  .lh-hero {
    padding: 60px 0 50px;
  }

  .lh-hero p.lh-hero-sub {
    font-size: 15.5px;
  }

  .lh-cta-primary,
  .lh-cta-ghost {
    height: 50px;
    padding: 0 22px;
    font-size: 12.5px;
  }

  .lh-cta-primary i {
    width: 28px;
    height: 28px;
  }

  .lh-feat {
    padding: 26px 22px;
  }



}

@media (max-width: 480px) {
    .lh-feats {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .lh-feats> :last-child:nth-child(odd) {
        grid-column: 1;
    }
.lh-cta-pill {
        font-size: 11px;
    }


}




/* ============================================================ SERVICE OVERVIEW — short intro paragraph, centered ============================================================ */
.lh-overview {
  position: relative;
  padding: 90px 0 80px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}

.lh-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9, 16, 46, 0.05) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.lh-overview>.container {
  position: relative;
  z-index: 2;
}

.lh-overview-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.lh-overview-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.4);
  border-radius: 999px;
  color: #3d7c00;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.lh-overview-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(122, 204, 13, 0.6);
}

.lh-overview h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #09102e;
  margin: 0 0 22px;
}

.lh-overview p {
  font-family: 'Inter', sans-serif;
  font-size: 17.5px;
  line-height: 1.75;
  color: #2a3353;
  margin: 0;
}

.lh-overview p strong {
  color: #09102e;
  font-weight: 700;
}

@media (max-width: 575px) {
  .lh-overview {
    padding: 60px 0 55px;
  }

  .lh-overview p {
    font-size: 15.5px;
  }
}

/* ============================================================ WHAT'S INCLUDED — numbered deliverable cards ============================================================ */
.lh-incl {
  position: relative;
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #f7faf2 0%, #eef5e1 100%);
  overflow: hidden;
  isolation: isolate;
}

.lh-incl::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9, 16, 46, 0.06) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lh-incl>.container {
  position: relative;
  z-index: 2;
}

.lh-incl-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lh-incl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid rgba(122, 204, 13, 0.45);
  border-radius: 999px;
  color: #3d7c00;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(122, 204, 13, 0.12);
}

.lh-incl-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
}

.lh-incl h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #09102e;
  margin: 0 0 12px;
}

.lh-incl-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5478;
  margin: 0;
}

.lh-incl-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lh-incl-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 38px 30px 32px;
  border: 1px solid rgba(9, 16, 46, 0.08);
  box-shadow: 0 18px 40px rgba(9, 16, 46, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.lh-incl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 100% 0%, rgba(122, 204, 13, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lh-incl-card>* {
  position: relative;
  z-index: 1;
}

.lh-incl-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 204, 13, 0.45);
  box-shadow: 0 28px 60px rgba(9, 16, 46, 0.12);
}

.lh-incl-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(9, 16, 46, 0.18);
  letter-spacing: 0.05em;
  z-index: 2;
}

.lh-incl-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7ACC0D 0%, #c5f07a 100%);
  color: #09102e;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 12px 24px rgba(122, 204, 13, 0.32);
}

.lh-incl-card h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 22px;
  color: #09102e;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.lh-incl-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: #4a5478;
  margin: 0 0 18px;
}

.lh-incl-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed rgba(9, 16, 46, 0.1);
  padding-top: 16px;
}

.lh-incl-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #2a3353;
  padding: 4px 0;
}

.lh-incl-card ul li i {
  color: #7ACC0D;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .lh-incl-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lh-incl {
    padding: 70px 0 80px;
  }
}

@media (max-width: 575px) {
  .lh-incl-card {
    padding: 32px 24px 28px;
  }
}

/* ============================================================ KEY BENEFITS — dark section, 4 icon-led benefit cards ============================================================ */
.lh-benefits {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(900px 500px at 0% 0%, rgba(122, 204, 13, 0.10), transparent 70%), radial-gradient(900px 500px at 100% 100%, rgba(34, 71, 178, 0.18), transparent 65%), linear-gradient(165deg, #0b1436 0%, #09102e 60%, #070d27 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.lh-benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lh-benefits>.container {
  position: relative;
  z-index: 2;
}

.lh-benefits-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lh-benefits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  border-radius: 999px;
  color: #c5f07a;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lh-benefits-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
  box-shadow: 0 0 8px #7ACC0D;
}

.lh-benefits h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 14px;
}

.lh-benefits-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(229, 236, 247, 0.72);
  margin: 0;
}

.lh-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.lh-benefit {
  position: relative;
  padding: 32px 26px 30px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(20, 32, 78, 0.65) 0%, rgba(9, 16, 46, 0.65) 100%);
  border: 1px solid rgba(122, 204, 13, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.lh-benefit::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(122, 204, 13, 0.18) 0%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.lh-benefit:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 204, 13, 0.5);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.lh-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.25) 0%, rgba(122, 204, 13, 0.08) 100%);
  border: 1px solid rgba(122, 204, 13, 0.4);
  color: #c5f07a;
  font-size: 26px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.lh-benefit h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.lh-benefit p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(229, 236, 247, 0.72);
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .lh-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .lh-benefits {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .lh-benefits-grid {
    grid-template-columns: 1fr;
  }

  .lh-benefit {
    padding: 28px 22px 26px;
  }
}

/* ============================================================ OUR PROCESS — 5-step connected timeline (light bg) ============================================================ */
.lh-process {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}

.lh-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9, 16, 46, 0.05) 1px, transparent 1.4px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lh-process>.container {
  position: relative;
  z-index: 2;
}

.lh-process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.lh-process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.45);
  border-radius: 999px;
  color: #3d7c00;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lh-process-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
}

.lh-process h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #09102e;
  margin: 0 0 14px;
}

.lh-process-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5478;
  margin: 0;
}

/* Steps row */
.lh-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.lh-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(122, 204, 13, 0.45) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.lh-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.lh-step-circle {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(122, 204, 13, 0.6);
  color: #09102e;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 26px;
  position: relative;
  box-shadow: 0 14px 28px rgba(122, 204, 13, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lh-step-circle i {
  font-size: 28px;
  color: #7ACC0D;
}

.lh-step:hover .lh-step-circle {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #7ACC0D 0%, #c5f07a 100%);
  color: #09102e;
}

.lh-step:hover .lh-step-circle i {
  color: #09102e;
}

.lh-step-num {
  position: absolute;
  top: -10px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #09102e;
  color: #c5f07a;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(9, 16, 46, 0.3);
}

.lh-step h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 17px;
  color: #09102e;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.lh-step p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a5478;
  margin: 0;
  padding: 0 4px;
}

@media (max-width: 991px) {
  .lh-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .lh-steps::before {
    display: none;
  }

  .lh-process {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .lh-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lh-step-circle {
    width: 64px;
    height: 64px;
  }

  .lh-step-circle i {
    font-size: 24px;
  }
}

/* ============================================================ PORTFOLIO — dark, logo design tiles (CSS-typography mockups) ============================================================ */
.lh-port {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(800px 400px at 100% 0%, rgba(122, 204, 13, 0.10), transparent 65%), radial-gradient(800px 400px at 0% 100%, rgba(34, 71, 178, 0.18), transparent 65%), linear-gradient(165deg, #07112f 0%, #050b22 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.lh-port>.container {
  position: relative;
  z-index: 2;
}

.lh-port-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lh-port-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  border-radius: 999px;
  color: #c5f07a;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lh-port-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
  box-shadow: 0 0 8px #7ACC0D;
}

.lh-port h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 14px;
}

.lh-port-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(229, 236, 247, 0.72);
  margin: 0;
}

.lh-port-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lh-port-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.lh-port-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 204, 13, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(122, 204, 13, 0.18);
}

.lh-port-mark {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 84px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

.lh-port-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lh-port-meta .cat {
  opacity: 0.65;
}

/* Per-tile color themes */
.lh-port-tile.t1 {
  background: linear-gradient(135deg, #0d2447 0%, #1a3d80 100%);
  color: #c5f07a;
}

.lh-port-tile.t2 {
  background: linear-gradient(135deg, #1f3520 0%, #3d6b1f 100%);
  color: #f5f7e8;
}

.lh-port-tile.t3 {
  background: linear-gradient(135deg, #fef3c7 0%, #facc15 100%);
  color: #422006;
}

.lh-port-tile.t4 {
  background: linear-gradient(135deg, #312e81 0%, #5b21b6 100%);
  color: #fce7f3;
}

.lh-port-tile.t5 {
  background: linear-gradient(135deg, #1c1917 0%, #44403c 100%);
  color: #f97316;
}

.lh-port-tile.t6 {
  background: linear-gradient(135deg, #fdf2f8 0%, #fbcfe8 100%);
  color: #831843;
}

@media (max-width: 991px) {
  .lh-port-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .lh-port {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .lh-port-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ RELATED BRANDING SERVICES — light, clickable cards ============================================================ */
.lh-related {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #f7faf2 0%, #eef5e1 100%);
  overflow: hidden;
  isolation: isolate;
}

.lh-related::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(9, 16, 46, 0.06) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lh-related>.container {
  position: relative;
  z-index: 2;
}

.lh-related-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lh-related-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(122, 204, 13, 0.12);
  border: 1px solid rgba(122, 204, 13, 0.45);
  border-radius: 999px;
  color: #3d7c00;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lh-related-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
}

.lh-related h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #09102e;
  margin: 0 0 14px;
}

.lh-related-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #4a5478;
  margin: 0;
}

.lh-related-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.lh-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(9, 16, 46, 0.08);
  padding: 28px 22px 24px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(9, 16, 46, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.lh-related-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7ACC0D 0%, #c5f07a 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.lh-related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 204, 13, 0.5);
  box-shadow: 0 24px 48px rgba(9, 16, 46, 0.1);
}

.lh-related-card:hover::before {
  transform: scaleX(1);
}

.lh-related-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7ACC0D 0%, #c5f07a 100%);
  color: #09102e;
  font-size: 22px;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(122, 204, 13, 0.25);
}

.lh-related-card h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 17px;
  color: #09102e;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.lh-related-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a5478;
  margin: 0 0 16px;
}

.lh-related-arrow {
  margin-top: auto;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d7c00;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}

.lh-related-card:hover .lh-related-arrow {
  gap: 12px;
}

.lh-related-card.is-current {
  background: linear-gradient(160deg, #f7faf2 0%, #eef5e1 100%);
  border-color: rgba(122, 204, 13, 0.45);
  pointer-events: none;
}

.lh-related-card.is-current::before {
  transform: scaleX(1);
}

.lh-related-card.is-current .lh-related-arrow {
  color: #3d7c00;
}

@media (max-width: 1199px) {
  .lh-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .lh-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lh-related {
    padding: 80px 0;
  }
}

@media (max-width: 479px) {
  .lh-related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ WHY CHOOSE GALAXYWING — dark, 5 reasons grid ============================================================ */
.lh-why {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(900px 500px at 50% 0%, rgba(122, 204, 13, 0.12), transparent 65%), linear-gradient(165deg, #0b1436 0%, #09102e 60%, #070d27 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.lh-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1.4px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lh-why>.container {
  position: relative;
  z-index: 2;
}

.lh-why-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lh-why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(122, 204, 13, 0.14);
  border: 1px solid rgba(122, 204, 13, 0.45);
  border-radius: 999px;
  color: #c5f07a;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lh-why-eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #7ACC0D;
  border-radius: 50%;
  box-shadow: 0 0 8px #7ACC0D;
}

.lh-why h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 14px;
}
i.bi.bi-headset {
    margin: 0 !important;
}
.lh-why-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(229, 236, 247, 0.72);
  margin: 0;
}

.lh-why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.lh-why-card {
  position: relative;
  padding: 30px 22px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(20, 32, 78, 0.6) 0%, rgba(9, 16, 46, 0.6) 100%);
  border: 1px solid rgba(122, 204, 13, 0.18);
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.lh-why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 204, 13, 0.5);
}

.lh-why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(122, 204, 13, 0.25) 0%, rgba(122, 204, 13, 0.06) 100%);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 24px;
}

.lh-why-card h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.lh-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(229, 236, 247, 0.7);
  margin: 0;
}

@media (max-width: 1199px) {
  .lh-why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .lh-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lh-why {
    padding: 80px 0;
  }
}

@media (max-width: 479px) {
  .lh-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================ TESTIMONIAL + FAQ — split section (left = slider, right = FAQ) ============================================================ */
.lh-tcq {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(720px 420px at 5% 0%, rgba(122, 204, 13, 0.10), transparent 60%), linear-gradient(165deg, #0b1436 0%, #09102e 60%, #050a1f 100%);
  color: #e6ecf7;
  overflow: hidden;
  isolation: isolate;
}

.lh-tcq>.container {
  max-width: 1320px;
}

.lh-tcq-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.lh-tcq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;    width: max-content;
}

.lh-tcq-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 8px #7ACC0D;
}

.lh-tcq h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.0vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
}

.lh-tcq h2 em {
  font-style: italic;
  font-weight: 600;
}

/* ---- LEFT: Testimonial slider ---- */
.lh-test {
  background: radial-gradient(420px 260px at 0% 0%, rgba(122, 204, 13, 0.18), transparent 60%), linear-gradient(160deg, #14205a 0%, #0d1645 50%, #0a1130 100%);
  border: 1px solid rgba(122, 204, 13, 0.22);
  border-radius: 24px;
  padding: 38px 38px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.lh-test-marker {
  font-family: 'Fraunces', serif;
  font-size: 80px;
  line-height: 0.6;
  color: rgba(122, 204, 13, 0.25);
  margin-bottom: 6px;
  user-select: none;
}

.lh-test-track {
  position: relative;
  flex: 1 0 auto;
  min-height: 230px;
}

.lh-test-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lh-test-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lh-test-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: #fff;
  margin: 0 0 22px;
}

.lh-test-stars {
  color: #ffc83d;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.lh-test-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lh-test-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1a2050 center/cover no-repeat;
  border: 2px solid rgba(122, 204, 13, 0.5);
  flex-shrink: 0;
}

.lh-test-name {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
  margin: 0 0 2px;
}

.lh-test-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.lh-test-controls {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.lh-test-dots {
  display: flex;
  gap: 8px;
}

.lh-test-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.22s ease, width 0.22s ease;
}

.lh-test-dot.is-active {
  background: #7ACC0D;
  width: 40px;
}

.lh-test-arrows {
  display: flex;
  gap: 10px;
}

.lh-test-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(122, 204, 13, 0.5);
  color: #c5f07a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.lh-test-arrow:hover {
  background: #7ACC0D;
  color: #09102e;
  transform: translateY(-2px);
}

/* ---- RIGHT: FAQ accordion ---- */
.lh-faq {
  background: radial-gradient(420px 260px at 100% 0%, rgba(122, 204, 13, 0.12), transparent 65%), linear-gradient(160deg, #0d1645 0%, #0a1130 50%, #070d27 100%);
  border: 1px solid rgba(122, 204, 13, 0.22);
  border-radius: 24px;
  padding: 38px 36px 32px;
  display: flex;
  flex-direction: column;
}

.lh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lh-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(122, 204, 13, 0.18);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.lh-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lh-faq-item summary::-webkit-details-marker {
  display: none;
}

.lh-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.lh-faq-item:hover {
  border-color: rgba(122, 204, 13, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.lh-faq-item[open] {
  border-color: rgba(122, 204, 13, 0.55);
  background: linear-gradient(165deg, rgba(122, 204, 13, 0.08) 0%, rgba(122, 204, 13, 0.02) 100%);
}

.lh-faq-item[open] .lh-faq-icon {
  background: #7ACC0D;
  color: #09102e;
  transform: rotate(45deg);
}

.lh-faq-item>div {
  padding: 0 20px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(229, 236, 247, 0.78);
}

.lh-faq-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(122, 204, 13, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.lh-faq-foot span {
  font-size: 13px;
  color: rgba(229, 236, 247, 0.7);
}

.lh-faq-foot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #7ACC0D;
  color: #09102e;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}

.lh-faq-foot a:hover {
  background: #c5f07a;
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  section.lh-cta {
    padding: 0;
  }

  section.lh-fc .lh-fc-grid {
    gap: 0 !important;
  }

  section.lh-fc {
    padding: 0;
  }

  .lh-feats {
      margin-top: 60px;
  }
}

@media (max-width: 991px) {
  .lh-tcq-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lh-tcq {
    padding: 80px 0;
  }

  .lh-test,
  .lh-faq {
    padding: 30px 26px;
  }
}

@media (max-width: 767px) {

.lh-test-track {
    min-height: 330px;
}


}

/* ============================================================ FINAL CTA — full-width banner w/ cta_bg.jpg ============================================================ */
.lh-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #1f2bc6;
  color: #fff;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.lh-cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/banners/cta_bg.jpg') center center / cover no-repeat;
  z-index: 0;
}

.lh-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(31, 43, 198, 0.55) 0%, rgba(31, 43, 198, 0.20) 50%, rgba(31, 43, 198, 0) 100%); */
  pointer-events: none;
}

.lh-cta>.container {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 90px;
}

.lh-cta-inner {
  max-width: 640px;
}

.lh-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lh-cta-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #c5f07a;
  border-radius: 50%;
  box-shadow: 0 0 8px #c5f07a;
}

.lh-cta h2 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 32px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.lh-cta h2 em {
  font-style: italic;
  font-weight: 600;
  color: #c5f07a;
}

.lh-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 8px 0 22px;
  background: #fff;
  color: #09102e;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(9, 16, 46, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lh-cta-pill .lh-cta-spark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7ACC0D 0%, #c5f07a 100%);
  color: #09102e;
  font-size: 14px;
  margin-right: -6px;
}

.lh-cta-pill .lh-cta-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #09102e;
  color: #c5f07a;
  font-size: 16px;
  margin-left: 4px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.lh-cta-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px rgba(9, 16, 46, 0.4);
  background: #f7faf2;
}

.lh-cta-pill:hover .lh-cta-arrow {
  background: #7ACC0D;
  color: #09102e;
  transform: rotate(-12deg);
}

.lh-cta-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.lh-cta-trust .stars {
  color: #ffc83d;
  letter-spacing: 2px;
  font-size: 14px;
}

.lh-cta-trust b {
  color: #fff;
}

@media (max-width: 767px) {
  .lh-cta {
    min-height: 420px;
  }

  .lh-cta>.container {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .lh-cta-bg::after {
    background: linear-gradient(180deg, rgba(31, 43, 198, 0.65) 0%, rgba(31, 43, 198, 0.45) 100%);
  }

  .lh-cta-pill {
    height: 52px;    padding: 0 8px 0 10px;
    font-size: 11px;flex-shrink: 0;
  }

  .lh-cta-pill .lh-cta-arrow {
    width: 38px;
    height: 38px;
  }

  .lh-cta-trust {
    flex-wrap: wrap;
    gap: 8px 14px;
  }
}

/* ============================================================ FORM SECTION — image left + Gravity Forms-styled form right ============================================================ */
.lh-fc {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(720px 420px at 5% 0%, rgba(122, 204, 13, 0.10), transparent 60%), linear-gradient(165deg, #0b1436 0%, #09102e 60%, #050a1f 100%);
  color: #e6ecf7;
  overflow: hidden;
  isolation: isolate;
}

.lh-fc>.container {
  max-width: 1320px;
}

.lh-fc-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}

/* Shared eyebrow / heading (matches other sections) */
.lh-fc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(122, 204, 13, 0.16);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #c5f07a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 14px;    width: max-content;
}

.lh-fc-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ACC0D;
  box-shadow: 0 0 8px #7ACC0D;
}

.lh-fc h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.0vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 16px;
}

.lh-fc h2 em {
  font-style: italic;
  font-weight: 600;
}

/* ---- LEFT: image showcase ---- */
.lh-fc-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 560px;
  background: #0a1130;
}

.lh-fc-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lh-fc-visual-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(229, 236, 247, 0.78);
  margin: 0 0 26px;
}

.lh-fc-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  background: #0a1130;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.lh-fc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lh-fc-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 16, 46, 0.35) 100%);
  pointer-events: none;
}

.lh-fc-perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.lh-fc-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(229, 236, 247, 0.85);
}

.lh-fc-perks li i {
  color: #7ACC0D;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---- RIGHT: Gravity Forms-styled form on white card ---- */
.lh-fc-form {
  background: #fff;
  border-radius: 24px;
  padding: 38px 36px 32px;
  color: #2a3353;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.lh-fc-form .lh-fc-eyebrow {
  background: rgba(122, 204, 13, 0.12);
  border-color: rgba(122, 204, 13, 0.35);
  color: #568f00;
}

.lh-fc-form .lh-fc-eyebrow::before {
  box-shadow: none;
}

.lh-fc-form h2 {
  color: #09102e;
}

.lh-fc-form-sub {
  font-family: 'Inter', sans-serif;
  color: #5b6b75;
  font-size: 14.5px;
  line-height: 1.6;
  margin: -6px 0 22px;
}

.lh-fc-form .gform_wrapper {
  margin: 0;
}

.lh-fc-form .gform_fields {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lh-fc-form .gfield {
  display: flex;
  flex-direction: column;
}

.lh-fc-form .gfield--full {
  grid-column: 1 / -1;
}

.lh-fc-form .gfield label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #09102e;
  margin-bottom: 6px;
}

.lh-fc-form .gfield .ginput_container {
  display: block;
}

.lh-fc-form .gfield input,
.lh-fc-form .gfield select,
.lh-fc-form .gfield textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #09102e;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.lh-fc-form .gfield input::placeholder,
.lh-fc-form .gfield textarea::placeholder {
  color: #8a96a4;
}

.lh-fc-form .gfield textarea {
  display: block;
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.lh-fc-form .gfield input:focus,
.lh-fc-form .gfield select:focus,
.lh-fc-form .gfield textarea:focus {
  border-color: #7ACC0D;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(122, 204, 13, 0.18);
}

.lh-fc-form .gform_footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.lh-fc-form .gform_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #09102e;
  color: #c5f07a;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 12px 26px rgba(9, 16, 46, 0.25);
}

.lh-fc-form .gform_button:hover {
  background: #7ACC0D;
  color: #09102e;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(122, 204, 13, 0.4);
}

.lh-fc-trust {
  font-size: 12.5px;
  color: #5b6b75;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.lh-fc-trust i {
  color: #7ACC0D;
}

@media (max-width: 991px) {
  .lh-fc {
    padding: 80px 0;
  }

  .lh-fc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lh-fc-perks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {

  .lh-fc-visual,
  .lh-fc-form {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .lh-fc-form .gform_fields {
    grid-template-columns: 1fr;
  }

  .lh-fc-img-wrap {
    min-height: 220px;
  }
}

/* ============================================================ KEY FEATURES — center the last row when 6 cards in 4-col grid (4 + 2 layout, row-2 cards 5 & 6 centered in middle columns) ============================================================ */
@media (min-width: 1100px) {
  .lh-benefit:nth-child(5) {
    grid-column: 2 / span 1;
  }

  .lh-benefit:nth-child(6) {
    grid-column: 3 / span 1;
  }
}

/* ============================================================ INDUSTRY-SPECIFIC SERVICES — 5-card responsive grid override 3 + 2 layout on desktop with row 2 centered; auto-fit otherwise ============================================================ */
.lh-incl-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-content: center;
}

@media (min-width: 1200px) {
  .lh-incl-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .lh-incl-card:nth-child(1),
  .lh-incl-card:nth-child(2),
  .lh-incl-card:nth-child(3) {
    grid-column: span 2;
  }

  .lh-incl-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .lh-incl-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* ============================================================ INTRO / OVERVIEW — challenges + solutions split (under intro) ============================================================ */
.lh-overview-split {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.lh-overview-col {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(9, 16, 46, 0.08);
  box-shadow: 0 18px 40px rgba(9, 16, 46, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lh-overview-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(9, 16, 46, 0.10);
}

.lh-overview-col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.lh-overview-col.is-challenges::before {
  background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.lh-overview-col.is-solutions::before {
  background: linear-gradient(90deg, #7ACC0D 0%, #c5f07a 100%);
}

.lh-overview-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.lh-overview-col-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.lh-overview-col.is-challenges .lh-overview-col-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.lh-overview-col.is-solutions .lh-overview-col-icon {
  background: linear-gradient(135deg, #7ACC0D 0%, #c5f07a 100%);
  color: #09102e;
  box-shadow: 0 8px 18px rgba(122, 204, 13, 0.30);
}

.lh-overview-col-head h3 {
  font-family: 'Fraunces', 'Inter', serif;
  font-weight: 700;
  font-size: 22px;
  color: #09102e;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.lh-overview-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lh-overview-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #2a3353;
  text-align: left;
}

.lh-overview-col ul li>i {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 3px;
}

.lh-overview-col.is-challenges ul li>i {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.lh-overview-col.is-solutions ul li>i {
  background: rgba(122, 204, 13, 0.18);
  color: #3d7c00;
}

@media (max-width: 767px) {
  .lh-overview-split {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .lh-overview-col {
    padding: 28px 24px;
  }
}

/* ============================================================ HERO LIGHT-THEME OPT-IN — pastel-flow bg + photo on right. Add `lh-hero--light` to the .lh-hero element to enable. Default theme stays dark navy (defined earlier in this file). ============================================================ */
.lh-hero.lh-hero--light {
  background: #fdfafa;
  color: #09102e;
  padding: 110px 0 110px;
}

.lh-hero.lh-hero--light .lh-hero-bg {
  background: url('../images/banners/71-backgrund-service-light-1.webp') center center / cover no-repeat, linear-gradient(180deg, #fff 0%, #fdf6f5 100%);
}

.lh-hero.lh-hero--light .lh-hero-bg::after {
  background: radial-gradient(800px 500px at 0% 50%, rgba(255, 255, 255, 0.55), transparent 70%), linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, rgba(253, 250, 250, 0) 60%, rgba(253, 250, 250, 0.4) 100%);
}

.lh-hero.lh-hero--light .lh-hero-eyebrow {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(122, 204, 13, 0.45);
  color: #3d7c00;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(9, 16, 46, 0.06);
}

.lh-hero.lh-hero--light .lh-hero-eyebrow i {
  color: #7ACC0D;
}

.lh-hero.lh-hero--light h1 {
  color: #09102e;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.03;
}

.lh-hero.lh-hero--light h1 em {
  font-style: italic;
  font-weight: 600;
}

.lh-hero.lh-hero--light p.lh-hero-sub {
  color: #5b6b75;
  max-width: 520px;
  font-size: 17.5px;
}

.lh-hero.lh-hero--light .lh-hero-visual {
  min-height: auto;
}

.lh-hero.lh-hero--light .lh-hero-visual::before,
.lh-hero.lh-hero--light .lh-hero-visual::after {
  display: none;
}

.lh-hero.lh-hero--light .lh-hero-mockup {
  max-width: 620px;
  border-radius: 28px;
  transform: none;
  box-shadow: 0 40px 80px -15px rgba(9, 16, 46, 0.25), 0 12px 30px rgba(9, 16, 46, 0.10);
}

.lh-hero.lh-hero--light .lh-hero-mockup::before {
  background: none;
}

.lh-hero.lh-hero--light .lh-cta-ghost {
  color: #09102e;
  border-color: rgba(9, 16, 46, 0.22);
}

.lh-hero.lh-hero--light .lh-cta-ghost i {
  color: #7ACC0D;
}

.lh-hero.lh-hero--light .lh-cta-ghost:hover {
  background: rgba(9, 16, 46, 0.04);
  border-color: rgba(122, 204, 13, 0.6);
  color: #09102e;
}

.lh-hero.lh-hero--light .lh-cta-primary {
  box-shadow: 0 18px 42px rgba(122, 204, 13, 0.28);
}

/* Hide the 3 feature cards under the hero grid (reference doesn't show them) */
.lh-hero.lh-hero--light .lh-feats {
  display: none;
}

@media (max-width: 991px) {
  .lh-hero.lh-hero--light {
    padding: 80px 0 80px;
  }

  .lh-hero.lh-hero--light h1 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .lh-hero.lh-hero--light .lh-hero-mockup {
    max-width: 100%;
  }
}

/* ============================================================ FORM SECTION OVERRIDE — edge-to-edge image left, form right (matches gw-tc pattern from development pages) ============================================================ */
.lh-fc {
  padding: 0;
}

.lh-fc>.container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.lh-fc-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 640px;
}

.lh-fc-visual {
  border-radius: 0;
  min-height: 100%;
  border: none;
}

.lh-fc-form {
  border-radius: 0;
  padding: 60px clamp(30px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 991px) {
  .lh-fc-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .lh-fc-visual {
    min-height: 320px;
  }

  .lh-fc-form {
    padding: 40px 26px;
  }
}

/* ============================================================ MOBILE POLISH — consistent tuning for branding + industry pages ============================================================ */
@media (max-width: 767px) {

  /* Hero CTAs: stack vertically and full-width */
  .lh-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .lh-cta-primary,
  .lh-cta-ghost {
    width: 100%;
    justify-content: center;
    height: 52px;
    padding: 0 22px;
  }

  /* Section padding tightened uniformly */
  .lh-overview,
  .lh-incl,
  .lh-benefits,
  .lh-process,
  .lh-port,
  .lh-related,
  .lh-why,
  .lh-tcq {
    padding: 64px 0;
  }

  /* Section heading sizes capped */
  .lh-overview h2,
  .lh-incl h2,
  .lh-benefits h2,
  .lh-process h2,
  .lh-port h2,
  .lh-related h2,
  .lh-why h2,
  .lh-tcq h2,
  .lh-fc h2 {
    font-size: clamp(26px, 6.6vw, 34px);
    line-height: 1.2;
  }

  /* Card padding tighter */
  .lh-incl-card {
    padding: 28px 22px;
  }

  .lh-benefit {
    padding: 26px 22px 24px;
  }

  .lh-why-card {
    padding: 26px 20px;
  }

  /* Form CTA full width on mobile */
  .lh-cta-pill {
    width: 100%;
    justify-content: center;
    height: 54px;
  }

  .lh-cta {
    min-height: 400px;
  }

  .lh-cta>.container {
    padding-top: 56px;
    padding-bottom: 56px;
  }



  /* FAQ tighter padding */
  .lh-faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
  }

  .lh-faq-item>div {
    padding: 0 18px 16px;
    font-size: 13.5px;
  }

  /* Testimonial card tighter */
  .lh-test-quote {
    font-size: 17px;
  }
}

@media (max-width: 480px) {


  .lh-hero p.lh-hero-sub {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .lh-hero-eyebrow {
    font-size: 10.5px;
    padding: 5px 10px 5px 8px;
    letter-spacing: 0.14em;
  }

  .lh-incl-card {
    padding: 26px 20px;
  }

  .lh-incl-num {
    font-size: 12px;
    top: 18px;
    right: 20px;
  }

  .lh-port-mark {
    font-size: clamp(38px, 12vw, 60px) !important;
  }

  .lh-port-tile {
    aspect-ratio: 4 / 3.4;
    padding: 22px 20px;
  }

  .lh-step-circle {
    width: 64px;
    height: 64px;
  }

  .lh-step-circle i {
    font-size: 22px;
  }

  .lh-step h3 {
    font-size: 16px;
  }

  .lh-step p {
    font-size: 13px;
  }

  .lh-fc-form {
    padding: 36px 22px !important;
  }

  .lh-fc-form h2 {
    font-size: clamp(24px, 6.6vw, 32px) !important;
  }

  .lh-faq-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .lh-faq-foot a {
    width: 100%;
    justify-content: center;
  }
}