﻿:root {
  --navy: #064c86;
  --navy-dark: #062033;
  --blue-deep: #003f76;
  --orange: #ff6c1a;
  --orange-soft: #ffefe7;
  --ink: #263847;
  --muted: #6C7A87;
  --line: #e9eef3;
  --surface: #ffffff;
  --soft: #f7f9fb;
  --shadow: 0 18px 40px rgba(8, 37, 62, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
strong {
    font-weight: 600;
}
p {
  font-size: 14px;
}
img {
  display: block;
  width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
  padding: 25px 0 15px;
}
.site-header.header-fixed , .site-header.menu-open{
    background-color: #013b72;
}
.header-menu-btn {
    display: none;
}
.hamburger {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    position: relative;
    text-transform: uppercase;
}
.nav-icon {
    width: 38px;
    height: 26px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    cursor: pointer;
}
.nav-icon span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    height: 4px;
    width: 100%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

/* submenu */
/* Parent */
.has-submenu{
    position: relative;
}

/* Services + Arrow */
.submenu-toggle{
    display:flex;
    align-items:center;
    gap:6px;
}

.arrow{
    font-size:19px;
    transition:.3s;
    color: #fff;
    cursor:pointer;
}

/* Hide submenu by default */
.submenu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:999;
}

/* Show on desktop hover */
.has-submenu:hover .submenu{
    display:block;
}

/* Rotate arrow on desktop hover */
.has-submenu:hover .arrow{
    transform:rotate(180deg);
}

/* Submenu links */
.submenu a{
    display:block;
    padding:12px 15px;
    text-decoration:none;
}

/* Mobile */
@media(max-width:991px){

    .submenu{
        position:static;
        display:none;
        box-shadow:none;
        background:transparent;
    }

    .has-submenu.active .submenu{
        display:block;
    }

    .has-submenu.active .arrow{
        transform:rotate(180deg);
    }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 118px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links , .nav-links > div {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.88;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.nav-links a:hover{
  color:var(--orange);
}
.nav-links .submenu a{
  color: var(--blue-deep);
  padding: 6px 12px;
}
.nav-links .active {
  color: var(--orange);
  opacity: 1;
}
.nav-links .submenu a:hover{
  color: var(--orange);
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.nav-cta:hover{
  background-color: #fff;
  color: #013b72;
}
.menu-button {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  padding: 6px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 800px) 330px;
  align-items: start;
  justify-content: space-between;
  gap: 52px;
  min-height: 600px;
  padding-top: 122px;
}
.hero-copy {
  padding: 90px 0;
}
.eyebrow {
  width: fit-content;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0 0 16px;
  padding: 4px 12px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.eyebrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #FFFFFF;
  transform: skewX(-9deg);
  pointer-events: none;
}

.eyebrow.dark {
  color: #00407E;
}

.eyebrow.dark::before {
  border-color: #00407E;
}

.center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  /* max-width: 610px; */
  margin-bottom: 22px;
  font-size: clamp(34px, 3.45vw, 54px);
  line-height: 1.12;
  font-weight: 500;
  overflow-wrap: break-word;
}

h1 span {
  color: var(--orange);
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.18;
  font-weight: 500;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}

.hero-copy p:not(.eyebrow) {
  /* max-width: 610px; */
  color: #d9e8f4;
  font-size: 14px;
  line-height: 1.75;
}

.hero-grid > *,
.split > *,
.confidence-grid > *,
.ready-grid > *,
.investors-grid > * {
  min-width: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 21px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.btn.primary {
  color: #fff;
  background: var(--orange);
  transition:all 0.3s ease-in-out;
}

.btn.light {
  color: var(--navy);
  background: #fff;
  transition:all 0.3s ease-in-out;
}

.btn.outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  transition:all 0.3s ease-in-out;
}
.btn.primary:hover, .btn.outline:hover{
  background-color: #fff;
  color: var(--navy);
}
.btn.light:hover{
  background-color: #ff6c1a;
  color: #fff;
}
.hero-card {
    position: absolute;
    align-self: end;
    width: 327px;
    right: 30px;
    margin-bottom: 30px;
    padding: 24px 28px 26px 34px;
    background: var(--orange);
    box-shadow: 12px 12px 0 rgba(0, 28, 55, 0.48);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 27px;
  left: -13px;
  width: 19px;
  height: 19px;
  background: var(--orange);
  border: 4px solid #fff;
}

.hero-card h2 {
  /* max-width: 226px; */
  margin-bottom: 16px;
  color: #fff;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 500;
  overflow-wrap: break-word;
}

.hero-card ul {
  margin: 0;
  padding-left: 0;
  color: #fff7f2;
  line-height: 1.35;
  font-size: 14px;
  list-style: none;
}

.hero-card li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 24px;
}

.hero-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -1px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 0;
  padding: 58px max(20px, calc((100% - 1180px) / 2)) 62px;
  background: #f3f3f3;
}

.stats article {
  min-height: 188px;
  padding: 36px 22px 28px;
  text-align: center;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 43, 75, 0.1);
  transition: all 0.3s ease-in-out;
}

.stats article:hover{
  transform: translate(0px, -10px);
}

.stats article:hover strong{
  color: var(--orange);
}
.stats strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.1;
}

.stat-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stat-value img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.stats span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.stats p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.split,
.confidence-grid,
.ready-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.split {
  padding: 120px 0 52px;
}

.split img,
.confidence img,
.ready img,
.investors img {
  aspect-ratio: 1.18 / 1;
  height: 100%;
  object-fit: cover;
}

.split p,
.confidence p,
.ready p,
.section-intro {
  color: var(--muted);
  line-height: 1.85;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 115px;
}

.feature-strip article {
  min-height: 250px;
  padding: 34px 28px;
  color: #d9ecfa;
  background: var(--blue-deep);
  transition: all 0.3s ease-in-out;
}
.feature-strip article:hover{
  transform: translate(0px, -10px);
}
.feature-strip .orange {
  background: var(--orange);
  color: #fff6ef;
}

.feature-strip span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.feature-strip h3 {
  color: #fff;
  font-size: 18px;
}

.feature-strip p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.75;
}

.confidence {
  padding: 0;
  background: var(--soft);
}

.ready {
  padding: 0;
  background: var(--soft);
}

.confidence-grid,
.ready-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.confidence-grid {
  width: 100%;
  display: grid;
  grid-template-columns:
minmax(20px, 1fr) minmax(0, 650px) minmax(420px, calc(43vw - 20px));
  gap: 62px;
  align-items: stretch;
  margin: 0;
}

.confidence-grid > div {
  grid-column: 2;
  padding: 104px 0;
}

.confidence h2 {
  /* max-width: 520px; */
  margin-bottom: 14px;
  font-size: clamp(32px, 2.65vw, 42px);
  line-height: 1.14;
}

.confidence p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 34px;
  line-height: 1.55;
}

.confidence-grid > img {
  grid-column: 3;
  justify-self: end;
  width: min(40vw, 640px);
  height: 100%;
  min-height: 545px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.ready-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 673px) minmax(420px, calc(41vw - 20px));
  gap: 62px;
  align-items: stretch;
  margin: 0;
}

.ready-grid > div {
  grid-column: 2;
  padding: 105px 0;
}

.ready h2 {
  /* max-width: 520px; */
  margin-bottom: 18px;
  font-size: clamp(32px, 2.65vw, 42px);
  line-height: 1.14;
}

.ready p:not(.eyebrow) {
  /* max-width: 570px; */
  margin-bottom: 28px;
  /* font-size: 13px; */
  line-height: 1.55;
}

.ready .btn {
  min-height: 48px;
  margin-bottom: 36px;
}

.ready-grid > img {
  grid-column: 3;
  justify-self: end;
  width: min(38vw, 580px);
  height: 100%;
  min-height: 650px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  margin-top: 34px;
}

.mini-grid span {
  position: relative;
  padding-left: 22px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.mini-grid span::before {
  content: "\25B4";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.confidence .mini-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.confidence .mini-grid span {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 12px 16px 12px 58px;
  color: var(--navy);
  border: 1px solid #dde3e8;
  background: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  transition: all 0.3s ease-in-out;
}
.confidence .mini-grid span:hover, .ready .mini-grid span:hover {
    background-color: #ededed;
}
.confidence .mini-grid span::before {
  content: "";
  left: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  background: url("assets/icon-investor-marker.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.ready .mini-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}

.ready .mini-grid span {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 12px 16px 12px 58px;
  color: var(--navy);
  border: 1px solid #dde3e8;
  background: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.ready .mini-grid span::before {
  content: "";
  left: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  background: url("assets/icon-investor-marker.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.ready .mini-grid span:last-child {
  grid-column: span 2;
}

.services,
.process,
.faq {
  padding: 105px 0;
  text-align: center;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 58px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 52px 18px;
}

.service-grid article {
  position: relative;
  display: flex;
  width: 260px;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  padding: 28px 10px 10px;
  background: #fff;
  box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.service-grid article:hover{
  background-color: #003f76;
}
.service-grid article:hover h3, .service-grid article:hover p{
  color:#fff;
}
.service-grid article:hover .service-grid ul{
  background-color: transparent;
}
/* .service-grid article::before {
  content: "";
  position: absolute;
  top: -56px;
  bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(9, 61, 99, 0.11) 18%, rgba(9, 61, 99, 0.06) 100%);
} */

.service-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 12px;
  background: rgba(9, 61, 99, 0.08);
  filter: blur(8px);
  z-index: -1;
}

.service-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  object-fit: contain;
}

.service-grid h3 {
  min-height: 54px;
  margin-bottom: 8px;
}

.service-grid article > p {
  min-height: 74px;
  margin: 0 8px 18px;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

.service-grid ul {
  width: 100%;
  min-height: 174px;
  margin: 0;
  padding: 22px 24px;
  color: #dceefa;
  list-style: none;
  text-align: left;
  background: var(--blue-deep);
  box-shadow: 0 8px 14px rgba(7, 43, 75, 0.16);
}

.service-grid li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.service-grid li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #fff;
}

.investors {
  padding: 96px 0 0;
  color: #dbeaf5;
    background-image: url('assets/investor-section-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.investors h2,
.investors h3 {
  color: #fff;
}

.investors-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px 70px;
  align-items: end;
}

.investors-intro {
  grid-column: 1 / -1;
  max-width: 1040px;
}

.investors p {
  line-height: 1.8;
}

.investors img {
  margin-top: 0;
  max-height: 422px;
  object-fit: cover;
}

.investors-image {
  margin-left: calc((min(1180px, 100vw - 40px) - 100vw) / 2);
}

.investor-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 38px;
  padding-bottom: 100px;
}

.investor-list h3 {
  grid-column: 1 / -1;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 400;
}

.investor-list span {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
  line-height: 1.6;
}

.investor-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url("assets/icon-investor-marker.png") center / contain no-repeat;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 86px 26px;
  /* max-width: 940px; */
  margin: 62px 0 0;
  text-align: center;
}

.steps article {
  position: relative;
  width: 270px;
  min-height: 170px;
  padding: 0 22px;
  transition: all 0.3s ease-in-out;
}
.steps article:hover{
  box-shadow:0 10px 15px -5px rgba(0, 0, 0, 0.2);
}
.steps article::before {
  content: "";
  position: absolute;
  top: 74px;
  right: -14px;
  width: 1px;
  height: 92px;
  background: linear-gradient(180deg, rgba(33, 52, 66, 0.12), rgba(33, 52, 66, 0.04));
}

.steps article:nth-child(4)::before,
.steps article:nth-child(7)::before {
  display: none;
}

.steps article::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -80px;
  width: 115px;
  height: 26px;
  border-top: 1px dashed rgba(33, 52, 66, 0.16);
  border-radius: 50% 50% 0 0;
}

.steps article:nth-child(4)::after,
.steps article:nth-child(7)::after {
  display: none;
}

/* .steps article h3::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -63px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8dee3;
} */

.steps article:nth-child(4) h3::before,
.steps article:nth-child(7) h3::before {
  display: none;
}

.steps b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: #fff;
  background: var(--orange);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}

.steps article:nth-child(even) b {
  background: var(--blue-deep);
}

.steps h3 {
  position: relative;
  margin-bottom: 10px;
  /* font-size: 18px; */
}

.steps p {
  color: var(--muted);
  line-height: 1.45;
}

.cta {
  padding: 110px 0;
  color: #fff;
  text-align: center;
  background-image: url('assets/speak-to-adoncrest-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 760px;
  margin: 0 auto;
  color: #e3f1fb;
  line-height: 1.85;
  margin-bottom: 1em;
}

.center-actions {
  justify-content: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 44px;
  text-align: left;
  counter-reset: faq-item;
}

details {
  counter-increment: faq-item;
  border: 1px solid var(--line);
  background: #fff;
}
details[open] {
border: 1px dotted #F76F1B;
}
summary {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  color: #151E27;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
}

summary::before {
  content: counter(faq-item) ".";
  flex: 0 0 24px;
  color: #151E27;
  font-size: 16px;
  font-weight: 500;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--orange);
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px 62px;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
}

.footer {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 82px 0 54px;
  color: #fff;
  background: #0b1e2c;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7, 26, 39, 0.88), rgba(7, 26, 39, 0.94)),
    radial-gradient(circle at 30% 15%, rgba(255, 255, 255, 0.08), transparent 28%),
    repeating-linear-gradient(150deg, rgba(255,255,255,0.065) 0 1px, transparent 1px 9px);
  opacity: 0.95;
}

.footer-texture {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(25deg, transparent 0 5px, rgba(255, 255, 255, 0.035) 5px 6px),
    repeating-linear-gradient(115deg, transparent 0 9px, rgba(255, 255, 255, 0.02) 9px 10px);
  mix-blend-mode: screen;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  min-height: 130px;
}

.footer-brand {
  display: block;
  width: 185px;
  /* margin-left: 90px; */
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-content {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  margin-top: 0;
  font-size: 13px;
  font-weight: 600;
}

.footer-links a:first-child, .footer-links a:hover {
  color: var(--orange);
}

.footer-tagline {
  position: relative;
  min-width: 510px;
  margin: 0;
  padding: 5px 18px 6px;
  color: var(--orange);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
}

.footer-tagline::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 108, 26, 0.7);
  transform: skewX(-8deg);
  pointer-events: none;
}

.footer small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 118px;
  bottom: 20px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #47555f;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
}
.back-top:hover {
    transform: translateY(-5px);
}
/* Inner pages */
.inner-page .footer-links a:first-child {
  color: inherit;
}

.inner-page .footer-links .is-current {
  color: var(--orange);
}

.inner-banner {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  color: #fff;
  background: var(--navy-dark);
}

.inner-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/about-bg.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.inner-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 0;
}

.inner-banner h1 {
  max-width: 780px;
  margin-bottom: 22px;
  color: #fff;
}

.inner-banner p:not(.eyebrow) {
  max-width: 720px;
  color: #e3f1fb;
  line-height: 1.85;
}

.image-content-section {
  padding: 108px 0 0;
  background: #fff;
}

.image-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  justify-content: center;
}

.image-content-media img {
  width: 100%;
  /* height: 410px; */
  object-fit: cover;
}

.image-content-copy h2 {
  max-width: 540px;
  margin-bottom: 24px;
  line-height: 1.25;
}

.image-content-copy p:not(.eyebrow),
.edge-image-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
}

.image-content-section .image-content-copy p:not(.eyebrow) {
  margin-bottom: 18px;
  line-height: 1.45;
}

.metric-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 66px 0 0;
  text-align: left;
}
.metric-cards.five-column {
  grid-template-columns: repeat(5, minmax(0, 1fr));

}
.metric-cards article {
  display: grid;
  min-height: 150px;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 0 16px;
  align-items: start;
  padding: 30px 26px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(8, 37, 62, 0.1);
  transition: all 0.3s ease-in-out;
}
.metric-cards article:hover{
  transform: translate(0px, -10px);
}

.metric-cards .stat-value {
  display: contents;
}

.metric-cards .stat-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.metric-cards .stat-icon img {
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1);
}

.metric-cards strong {
  align-self: center;
  min-width: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  white-space: normal;
}
.metric-cards article:hover strong{
  color: var(--orange);
}

.metric-cards article > span {
  display: block;
  max-width: 137px;
  margin-top: 6px;
  color: #151E27;
  font-size: 18px;
  line-height: 1.32;
}

.card-section {
  padding: 105px 0;
  text-align: center;
  background: var(--soft);
}

.number-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.number-card-grid article {
  min-height: 255px;
  padding: 34px 24px 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 37, 62, 0.09);
  text-align: left;
}

.number-card-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.number-card-grid article:nth-child(even) > span {
  background: var(--blue-deep);
}

.number-card-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.edge-image-section {
  background: #fff;
}

.edge-image-grid {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) minmax(0, 650px) minmax(420px, calc(42vw - 20px));
  gap: 62px;
  align-items: stretch;
  margin: 0;
}

.edge-image-copy {
  grid-column: 2;
  padding: 105px 0;
}

.edge-image-grid > img {
  grid-column: 3;
  justify-self: end;
  width: min(39vw, 610px);
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
}

.info-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.info-tile-grid span {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  padding: 12px 16px 12px 58px;
  color: var(--navy);
  border: 1px solid #dde3e8;
  background: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.info-tile-grid span::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  width: 24px;
  height: 24px;
  background: url("assets/icon-investor-marker.png") center / contain no-repeat;
  transform: translateY(-50%);
}
/* Reusable inner content sections */
.section-block {
  padding: 105px 0;
}

.soft-band {
  background: var(--soft);
}

.compact-heading {
  text-align: center;
}

.compact-heading h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.service-matrix-section {
  background: #fff;
}

.service-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 54px auto 0;
}

.service-matrix-grid article {
  min-height: 188px;
  padding: 35px 30px;
  color: #d9ecfa;
  background: var(--blue-deep);
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.service-matrix-grid article:hover{
  background-color: #00284a;
}
.service-matrix-grid article.is-orange {
  color: #fff6ef;
  background: var(--orange);
}
.service-matrix-grid article.is-orange:hover{
  background-color: #e55505;
}
.service-matrix-grid img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.service-matrix-grid h3 {
  margin-bottom: 0;
  color: #fff;

}

.service-matrix-grid p {
  margin-bottom: 0;
  color: inherit;
  line-height: 1.6;
}

.mission-vision-section {
  padding-bottom: 0;
}
.grid-color-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}
.service-matrix-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 44px;
  column-gap: 15px;
}

.mission-vision-grid article {
  min-height: 310px;
  display: flex;
  align-items: center;
  color: #fff;
    background-image: url('assets/mission-left-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission-vision-grid article:nth-child(2) {
  background-image: url('assets/mission-right-bg.png');

}

.shell-half {
  width: min(520px, calc(100% - 40px));
}

.right-half {
padding: 70px 0;
margin-left: auto;
margin-right: 40px;
text-align: center;
}

.left-half {
  margin-left: 40px;
    text-align: center;
}

.mission-vision-grid h3 {
  /* max-width: 420px; */
  color: #fff;
  font-size: 24px;
}

.mission-vision-grid p:not(.eyebrow) {
  /* max-width: 480px; */
  color: #dce9f2;
  line-height: 1.65;
}

.icon-values-section {
  background: #fff;
}

.icon-card-grid {
  display: grid;
  gap: 18px;
  margin-top: 52px;
}

.icon-card-grid.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.icon-card-grid article {
  min-height: 178px;
  padding: 26px 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 37, 62, 0.09);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.icon-card-grid article:hover{
  transform: translate(0px, -10px);
}
.icon-card-grid article:hover h3{
  color: var(--orange);
}
.icon-card-grid img {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.icon-card-grid h3 {
  margin-bottom: 10px;
}

.icon-card-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-list-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 45px;
  align-items: center;
}

.split-list-grid.reverse-media {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-list-grid > img {
  width: 100%;

  object-fit: cover;
}

.stacked-points {
  display: grid;
  gap: 3px;
}

.stacked-points article {
  position: relative;
  padding: 10px 35px 10px 60px;
  border: 1px solid #dde3e8;
  background: rgba(255, 255, 255, 0.35);
}

.stacked-points article::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url("assets/icon-investor-marker.png") center / contain no-repeat;
}

.stacked-points h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 16px;
}

.stacked-points p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.establish-cta {
  background-image: linear-gradient(rgba(0, 76, 134, 0.88), rgba(0, 76, 134, 0.9)), url("assets/investor-section-bg.png");
}

.single-column-faq {
  max-width: 780px;
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}
/* Business setup page sections */
.service-detail-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px 28px;
  margin-top: 58px;
}

.service-detail-grid article {
  width: 350px;
  min-height: 360px;
  padding: 32px 24px 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 37, 62, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.service-detail-grid article:hover{
  transform: translate(0px, -10px);
}
.service-detail-grid article:hover h3{
  color: var(--orange);
}
.service-detail-grid article:hover .tag-row span{
  background-color: var(--orange);
}
.service-detail-grid article > img {
  width: 42px;
  height: 42px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.service-detail-grid h3 {
  min-height: 58px;
  margin-bottom: 14px;
}

.service-detail-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}

.tag-row span {
  padding: 5px 8px;
  color: #fff;
  background: var(--blue-deep);
  font-size: 10px;
  line-height: 1;
}

.timeline-section {
  color: #fff;
  background-size: cover;
  background-position: center;
}

.timeline-section h2,
.timeline-section .section-intro {
  color: #fff;
}

.timeline-section .section-intro {
  opacity: 0.82;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
  text-align: center;
}

.timeline-steps article {
  position: relative;
  padding-top: 46px;
}

.timeline-steps article:first-child::before {
  display: none;
}

.timeline-steps b {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  min-width: 78px;
  height: 34px;
  padding: 0 12px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font-size: 12px;
  font-weight: 500;
  transform: translateX(-50%);
}

.left-intro {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.single-column-list {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 28px;
}

.single-column-list span {
  min-height: 48px;
}

.orange-panel-card {
  align-self: stretch;
  background: var(--orange);
  box-shadow: 0 16px 30px rgba(8, 37, 62, 0.16);
}

.orange-panel-card > img {
  height: 300px;
  object-fit: cover;
}

.orange-panel-card > div {
  padding: 28px 32px 34px;
  color: #fff;
}

.orange-panel-card h3 {
  color: #fff;
  font-size: 18px;
}

.orange-panel-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.orange-panel-card li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.45;
}

.orange-panel-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
}

.icon-card-grid.six-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* max-width: 920px; */
  margin-left: auto;
  margin-right: auto;
}
.icon-card-grid.six-up article{
    max-width: 350px;
    margin: 0 auto;
}
.icon-card-grid.six-up article:hover{
  box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.2) !important;
}
.flat-icons article {
  box-shadow: none;
  background: transparent;
}

.flat-icons img {
  width: 44px;
  height: 44px;
}
/* Business setup timeline and advantage refinements */
.timeline-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.timeline-section .compact-heading {
  position: relative;
  z-index: 1;
}

.timeline-section h2 {
  max-width: 620px;
  font-size: 38px;
  line-height: 1.18;
}

.timeline-section .section-intro {
  max-width: 790px;
  margin-bottom: 0;
  font-size: 14px;
}

.timeline-steps {
  position: relative;
  gap: 26px;
  margin-top: 78px;
}

.timeline-steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 9%;
  right: 9%;
  border-top: 1px solid rgba(255,255,255,0.42);
}

.timeline-steps article {
  z-index: 1;
  padding-top: 56px;
}

.timeline-steps article:first-child::before {
  display: none;
}

.timeline-steps b {
  min-width: 96px;
  height: 48px;
  font-size: 16px;
}

.timeline-steps h3 {
  min-height: 44px;
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.25;
  color: #fff;

}

.timeline-steps p {
  max-width: 180px;
  margin: 0 auto;
}

.advantage-section {
  padding: 110px 0 118px;
  background: #fff;
}

.advantage-section .split-list-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  align-items: start;
}

.advantage-section h2 {
  max-width: 610px;
  font-size: 42px;
  line-height: 1.17;
}
.advantage-section p {
  color: #6C7A87;
}
.advantage-section .left-intro {
  max-width: 610px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.advantage-section .single-column-list span {
  min-height: 54px;
  padding-left: 64px;
  background: #fff;
}

.advantage-section .single-column-list span::before {
  left: 26px;
}

.orange-panel-card {
  max-width: 610px;
  justify-self: end;
}

.orange-panel-card > img {
  height: 355px;
  object-fit: cover;
}

.orange-panel-card > div {
  min-height: 420px;
  padding: 34px 42px 38px;
}

.orange-panel-card h3 {
  margin-bottom: 24px;
  font-size: 22px;
}

.orange-panel-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 34px;
  margin-bottom: 30px;
}

.orange-panel-card li {
  font-size: 13px;
  font-weight: 500;
}

.panel-btn {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--orange);
  background: #fff;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
}
.panel-btn:hover{
  background-color: var(--blue-deep);
  color: var(--surface);
}
/* Timeline curved connectors and overlay advantage card */
.timeline-steps {
  counter-reset: timeline-step;
}

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

.timeline-steps article {
  counter-increment: timeline-step;
}



.timeline-steps article:last-child::before {
  display: none;
}

.timeline-steps article::after {
  content: "";
  position: absolute;
    top: 10px;
    right: -70px;
    width: 110px;

  height: 34px;
  background: url("assets/dot-connector.png") center / contain no-repeat;
}

.timeline-steps article:last-child::after {
  display: none;
}

.timeline-steps b {
  height: 52px;
  line-height: 1.05;
  width: max-content;
  padding: 10px 12px;
}

.timeline-steps b::after {
  content: "Step " counter(timeline-step);
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.82;
}

.orange-panel-card {
  display: flex;
  position: relative;
  min-height: 610px;
  padding: 0 10px 10px;
  overflow: hidden;
  background: #10283a;
}

.orange-panel-card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orange-panel-card > div {
  position: relative;
  z-index: 1;
  min-height: 0;
  background: var(--orange);
  align-self: flex-end;
}
.orange-panel-card .panel-list-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px 34px;
  margin-bottom: 30px;
}

.orange-panel-card .panel-check-list,
.orange-panel-card .panel-info-list {
  margin: 0;
  padding: 0;
}

.orange-panel-card .panel-check-list {
    display: flex;
    flex-direction: column;
  gap: 12px;
  list-style: none;
}

.orange-panel-card .panel-check-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.orange-panel-card .panel-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
}

.orange-panel-card .panel-info-list {
  display: grid;
  gap: 12px;
}

.orange-panel-card .panel-info-list span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
/* Contact page sections */
.compact-section {
  padding: 82px 0 0;
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-action-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px 40px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 37, 62, 0.1);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.contact-action-grid article:hover .small-outline-btn{
  background-color: var(--blue-deep);
  color: var(--surface);
}

.action-grid-title {
      display: flex;
    align-items: center;
    column-gap: 15px;
        margin-bottom: 30px;
}

.contact-action-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
}

.contact-action-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-action-grid h3 {
 margin-bottom: 0;
}

.contact-action-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 30px;
}

.small-outline-btn {
width: max-content;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    display: inline-block;
    background-color: #FFFFFF;
    padding: 15px 25px;
  color: var(--navy);
  border: 1px solid #b8cadd;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.contact-promise-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
 margin-top: 90px;
}

.contact-promise-strip span {
  position: relative;
  min-height: 62px;
 padding: 16px 22px 14px 50px; 
  color: #fff;
  background: var(--blue-deep);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.contact-promise-strip span:nth-child(even) {
    background: #161F28;
}

.contact-promise-strip span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 18px;
  width: 18px;
  height: 18px;
  background: url("assets/icon-investor-marker.png") center / contain no-repeat;
}

.contact-enquiry-section {
  background: #fff;
}

.contact-enquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: start;
}

.contact-form {
  padding: 34px 34px 28px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 37, 62, 0.11);
}

.contact-form > p {
  color: var(--muted);
  line-height: 1.65;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 500;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #dde3e8;
  background: #fff;
  font: inherit;
  font-size: 12px;
}

.form-grid textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.contact-form small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-side-panel {
  border: 8px solid #151e27;
  background: var(--orange);
}

.contact-side-panel > img {
  height: 210px;
  object-fit: cover;
}

.orange-contact-card {
  padding: 34px 36px;
  color: #fff;
  background: var(--orange);
}

.orange-contact-card h3 {
  color: #fff;
}

.orange-contact-card p,
.orange-contact-card small {
  color: #fff7f2;
  line-height: 1.65;
}
.orange-contact-card small {
display: inline-block;
}
.orange-contact-card ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.orange-contact-card li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.orange-contact-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
}

.orange-contact-card a {
  color: var(--orange);
  background: #FFFFFF;
  column-gap: 10px;
  padding: 15px 20px;
  margin: 20px 0;
}
.orange-contact-card a > img {
    height: auto;
    width: 20px;
}

.office-section {
  color: #fff;
  background-image: url("assets/our-office-bg.png");
  background-size: cover;
  background-position: center;
}

.office-section h2,
.office-section h3 {
  color: #fff;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin-top: 54px;
     text-align: left;
}

.office-grid img {
  width: 56px;
  height: 56px;
  margin: 0 0 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.office-grid p {
  color: #dce9f2;
  line-height: 1.6;
}

.icon-card-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.round-check {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
}

.orange-check {
  background: var(--orange);
}

.blue-check {
  background: var(--blue-deep);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: center;
}

.contact-map {
  min-height: 430px;
  background-size: auto, cover, cover;
  background-position: center;
  box-shadow: var(--shadow);
  align-self: stretch;
}

.location-grid p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.btn.dark-outline {
  color: var(--orange);
  border-color: var(--orange);
}

