/* Option 3 - Aqua Teal - home page color theme only. Layout and functionality unchanged. */
:root {
  --brand-cyan: #22BFD1;
  --brand-cyan-2: #68D8DE;
  --brand-blue: #109FA6;
  --brand-blue-dark: #087D86;
  --navy: #07262F;
  --navy-2: #0B3541;
  --ink: #173239;
  --text: #425C62;
  --muted: #748B90;
  --line: #DCEBEA;
  --soft: #F5FCFC;
  --white: #ffffff;
  --brand-gradient: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-cyan) 100%);
  --dark-gradient: linear-gradient(135deg, #07262F 0%, #0B3541 100%);
  --shadow-sm: 0 10px 26px rgba(9, 54, 82, .08);
  --shadow: 0 20px 48px rgba(9, 54, 82, .13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

body.search-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.section {
  padding: 40px 0;
}

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

.section-dark {
  color: #fff;
  background: var(--dark-gradient);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  box-shadow: 0 0 16px rgba(16, 159, 166, .45);
}

/* Header */
.topbar {
  background: var(--navy);
  color: #DCEBEA;
  font-size: 12px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left span,
.topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar i {
  color: var(--brand-cyan);
}

.topbar-right a {
  transition: color .2s ease;
}

.topbar-right a:hover {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1500;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16, 50, 73, .08);
}

.header-main {
  max-height: 85px;
  opacity: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, .98);
  transition: max-height .35s ease, opacity .25s ease, transform .35s ease;
}

.header-main-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 220px;
  height: auto;
}

.header-quick-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
}

.header-info-item {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}

a.header-info-item:hover strong {
  color: var(--brand-blue);
}

.header-info-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 12px;
  color: var(--brand-blue);
  background: linear-gradient(145deg, #F5FCFC, #F5FCFC);
  border: 1px solid #DCEBEA;
  font-size: 18px;
}

.header-info-item small,
.header-info-item strong {
  display: block;
  line-height: 1.3;
}

.header-info-item small {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
}

.header-info-item strong {
  margin-top: 3px;
  font-size: 12px;
  color: var(--ink);
  transition: color .2s ease;
}

.nav-bar {
  background: var(--brand-gradient);
  box-shadow: 0 8px 24px rgba(171, 52, 17, .16);
}

.nav-shell {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
}

.main-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.main-nav>a,
.nav-drop-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 54px;
  padding: 0 17px;
  border: 0;
  color: rgba(255, 255, 255, .92);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.main-nav>a::after,
.nav-drop-toggle::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 3px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.main-nav>a:hover,
.main-nav>a.active,
.nav-drop-toggle:hover,
.nav-dropdown.open .nav-drop-toggle {
  color: #fff;
  background: rgba(5, 64, 95, .14);
}

.main-nav>a:hover::after,
.main-nav>a.active::after,
.nav-drop-toggle:hover::after,
.nav-dropdown.open .nav-drop-toggle::after {
  transform: scaleX(1);
}

.nav-drop-toggle i {
  font-size: 10px;
  transition: transform .2s ease;
}

.nav-dropdown {
  position: relative;
  display: flex;
}

.nav-dropdown:hover .nav-drop-toggle i,
.nav-dropdown:focus-within .nav-drop-toggle i,
.nav-dropdown.open .nav-drop-toggle i {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 265px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(8, 125, 134, .14);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(6, 35, 54, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  left: 24px;
  top: -7px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid rgba(8, 125, 134, .14);
  border-top: 1px solid rgba(8, 125, 134, .14);
  transform: rotate(45deg);
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 9px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  transition: .2s ease;
}

.nav-submenu a i {
  width: 25px;
  color: var(--brand-blue);
  font-size: 16px;
}

.nav-submenu a:hover {
  color: var(--brand-blue-dark);
  background: #F5FCFC;
  transform: translateX(2px);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.nav-search {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: .2s ease;
}

.nav-search:hover {
  background: rgba(255, 255, 255, .2);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-blue-dark);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(5, 74, 108, .12);
  transition: .2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(5, 74, 108, .2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #DCEBEA;
  background: #fff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--navy);
  transition: .25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.scrolled .header-main {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
}

.site-header.scrolled .nav-bar {
  box-shadow: 0 10px 28px rgba(5, 7, 28, .22);
}

/* Hero */
.hero {
  position: relative;
  min-height: 660px;
  background: var(--navy);
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .75s ease, visibility .75s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide>img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-slide:nth-child(2)>img {
  object-position: center 46%;
}

.hero-slide:nth-child(3)>img {
  object-position: 70% center;
}

.hero-slide.active>img {
  animation: heroZoom 8s ease-out both;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.09);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 20, 34, .95) 0%, rgba(4, 37, 58, .86) 43%, rgba(5, 54, 78, .46) 72%, rgba(5, 45, 67, .18) 100%);
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 75%);
}

.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}

.hero-copy {
  width: min(720px, 65%);
  color: #fff;
  transform: translateY(16px);
  opacity: 0;
}

.hero-slide.active .hero-copy {
  animation: heroCopyIn .75s .18s ease forwards;
}

@keyframes heroCopyIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
  color: #68D8DE;
  margin-bottom: 18px;
}

.hero-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--brand-cyan);
  box-shadow: 0 0 12px rgba(16, 159, 166, .40);
}

.hero h1 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 4.55vw, 66px);
  line-height: 1.06;
  letter-spacing: -.045em;
  max-width: 790px;
}

.hero h1 span {
  color: #68D8DE;
}

.hero p {
  margin: 0;
  max-width: 650px;
  font-size: 16px;
  color: #DCEBEA;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  font-size: 13px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 12px 28px rgba(34, 191, 209, .24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(34, 191, 209, .3);
}

.btn-light {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-light:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--brand-blue-dark);
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, .62);
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--brand-blue-dark);
  transform: translateY(-2px);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.hero-trust-row>div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust-row i {
  color: var(--brand-cyan);
  font-size: 20px;
}

.hero-trust-row strong,
.hero-trust-row small {
  display: block;
  line-height: 1.25;
}

.hero-trust-row strong {
  font-size: 12px;
  color: #fff;
}

.hero-trust-row small {
  margin-top: 2px;
  color: #DCEBEA;
  font-size: 10px;
}

.hero-mini-panel {
  width: 255px;
  flex: 0 0 255px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(7, 29, 49, .54);
  backdrop-filter: blur(16px);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  opacity: 0;
  transform: translateX(20px);
}

.hero-slide.active .hero-mini-panel {
  animation: heroPanelIn .75s .42s ease forwards;
}

@keyframes heroPanelIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mini-panel-label {
  display: block;
  margin-bottom: 12px;
  color: #68D8DE;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.mini-panel-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.mini-panel-item i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: rgba(8, 184, 216, .16);
  border: 1px solid rgba(8, 184, 216, .36);
  font-size: 16px;
}

.mini-panel-item strong,
.mini-panel-item small {
  display: block;
}

.mini-panel-item strong {
  font-size: 12px;
}

.mini-panel-item small {
  color: #DCEBEA;
  font-size: 10px;
}

.hero-mini-panel>a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  min-height: 38px;
  border-radius: 10px;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 11px;
  font-weight: 800;
}

.hero-orb {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(1px);
  opacity: .45;
}

.hero-orb-one {
  width: 170px;
  height: 170px;
  right: 12%;
  top: 14%;
  border: 1px solid rgba(104, 216, 222, .35);
  box-shadow: inset 0 0 60px rgba(8, 184, 216, .12);
  animation: floatOrb 7s ease-in-out infinite;
}

.hero-orb-two {
  width: 78px;
  height: 78px;
  right: 6%;
  bottom: 14%;
  background: rgba(8, 184, 216, .12);
  border: 1px solid rgba(104, 216, 222, .24);
  animation: floatOrb 5s ease-in-out infinite reverse;
}

@keyframes floatOrb {

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

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .45);
  background: rgba(7, 29, 49, .34);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  transition: .2s ease;
}

.hero-arrow:hover {
  background: var(--brand-cyan-2);
  border-color: var(--brand-cyan-2);
}

.hero-arrow.prev {
  left: 22px;
}

.hero-arrow.next {
  right: 22px;
}

.hero-dots {
  position: absolute;
  z-index: 6;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .55);
  padding: 0;
  transition: .25s ease;
}

.hero-dot.active {
  width: 30px;
  background: var(--brand-cyan);
}

/* Quick strip */
.quick-strip {
  position: relative;
  z-index: 8;
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-strip-grid>div {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 22px;
  position: relative;
}

.quick-strip-grid>div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: var(--line);
}

.quick-strip-grid i {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #ECFAFA;
  color: var(--brand-blue);
  font-size: 19px;
  transition: .25s ease;
}

.quick-strip-grid>div:hover i {
  color: #fff;
  background: var(--brand-gradient);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(34, 191, 209, .18);
}

.quick-strip-grid strong,
.quick-strip-grid small {
  display: block;
}

.quick-strip-grid strong {
  color: var(--ink);
  font-size: 12px;
}

.quick-strip-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

/* Global headings */
.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 11px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--brand-cyan);
}

.eyebrow.light {
  color: #68D8DE;
}

.section-heading h2,
.faq-intro h2,
.quote-copy h2,
.contact-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3.2vw, 44px);
  line-height: 1.16;
  letter-spacing: -.03em;
}

.section-heading h2 span,
.faq-intro h2 span,
.quote-copy h2 span {
  color: var(--brand-blue);
}

.section-heading p {
  color: var(--muted);
  margin: 14px auto 0;
}

.section-heading.align-left p {
  margin-left: 0;
}

.light-heading h2 {
  color: #fff;
}

.light-heading h2 span {
  color: #68D8DE;
}

.light-heading p {
  color: #DCEBEA;
}

.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.heading-row .section-heading {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 12px;
}

.text-link i {
  transition: transform .2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

/* About */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.03fr;
  gap: 68px;
  align-items: center;
}

.about-media {
  position: relative;
  padding: 16px 18px 44px 0;
}

.about-media::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -24px;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(8, 184, 216, .12), rgba(8, 124, 171, .04));
  z-index: -1;
}

.about-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.about-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: inherit;
  pointer-events: none;
}

.about-image-frame img {
  width: 100%;
  height: 455px;
  object-fit: cover;
  transition: transform .6s ease;
}

.about-media:hover .about-image-frame img {
  transform: scale(1.025);
}

.about-badge {
  position: absolute;
  right: 2px;
  top: 38px;
  min-width: 126px;
  padding: 17px 18px;
  color: #fff;
  background: var(--brand-gradient);
  border: 5px solid #fff;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(7, 86, 125, .2);
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge strong {
  font-size: 28px;
  line-height: 1;
}

.about-badge span {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.about-floating-card {
  position: absolute;
  left: 34px;
  bottom: 3px;
  width: min(330px, calc(100% - 70px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.about-floating-card>i {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 18px;
}

.about-floating-card strong,
.about-floating-card small {
  display: block;
}

.about-floating-card strong {
  color: var(--ink);
  font-size: 12px;
}

.about-floating-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.about-content>p {
  margin: 0 0 15px;
  color: var(--muted);
}

.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0;
}

.about-feature-grid>div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  transition: .25s ease;
}

.about-feature-grid>div:hover {
  transform: translateY(-3px);
  border-color: #DCEBEA;
  box-shadow: var(--shadow-sm);
}

.about-feature-grid i {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--brand-blue);
  background: #ECFAFA;
  font-size: 17px;
}

.about-feature-grid strong,
.about-feature-grid small {
  display: block;
}

.about-feature-grid strong {
  color: var(--ink);
  font-size: 14px;
}

.about-feature-grid small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  margin-top: 2px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Products */
.products {
  position: relative;
  overflow: hidden;
}

.products::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 184, 216, .09), transparent 67%);
}

.product-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: -8px 0 34px;
}

.product-filter-btn {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid #DCEBEA;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  transition: .2s ease;
}

.product-filter-btn:hover,
.product-filter-btn.active {
  color: #fff;
  border-color: transparent;
  background: var(--brand-gradient);
  box-shadow: 0 8px 18px rgba(34, 191, 209, .16);
}

.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, opacity .25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.product-card.is-hidden {
  display: none;
}

.product-card.filter-pop {
  animation: filterPop .35s ease both;
}

@keyframes filterPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-image {
  position: relative;
  height: 225px;
  overflow: hidden;
  background: #DCEBEA;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 35, 52, .18));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.055);
}

.product-tag {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--brand-blue-dark);
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-body {
  position: relative;
  padding: 26px 23px 24px;
}

.product-icon {
  position: absolute;
  right: 21px;
  top: -26px;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 21px;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(34, 191, 209, .2);
}

.product-body h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 19px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  min-height: 64px;
}

.product-actions {
  margin-top: 17px;
  padding-top: 14px;
  border-top: 1px solid #DCEBEA;
}

.product-actions button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.product-actions button i {
  transition: transform .2s ease;
}

.product-actions button:hover i {
  transform: translateX(4px);
}

/* Stats */
.stats {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--brand-gradient);
}

.stats-pattern {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(circle at 20% 25%, #fff 0 1px, transparent 1.5px), radial-gradient(circle at 80% 75%, #fff 0 1px, transparent 1.5px);
  background-size: 28px 28px, 36px 36px;
}

.stats::before,
.stats::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
}

.stats::before {
  width: 230px;
  height: 230px;
  left: -90px;
  top: -100px;
}

.stats::after {
  width: 180px;
  height: 180px;
  right: -60px;
  bottom: -100px;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  position: relative;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px 18px;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 34px;
  bottom: 34px;
  width: 1px;
  background: rgba(255, 255, 255, .28);
}

.stat-item>i {
  margin-bottom: 8px;
  font-size: 20px;
  opacity: .85;
}

.stat-item strong {
  display: block;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.stat-item>span:last-child {
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .84;
  font-weight: 700;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 28px 25px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 184, 216, .1), transparent 70%);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #DCEBEA;
  box-shadow: var(--shadow);
}

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

.service-card:hover::after {
  transform: scale(1.25);
}

.service-card>i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--brand-blue);
  background: #ECFAFA;
  font-size: 23px;
  transition: .25s ease;
}

.service-card:hover>i {
  color: #fff;
  background: var(--brand-gradient);
  transform: rotate(-5deg) translateY(-2px);
}

.service-number {
  position: absolute;
  top: 22px;
  right: 23px;
  color: #DCEBEA;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.service-card h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 17px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  min-height: 76px;
}

.service-card button {
  margin-top: 17px;
  padding: 0;
  border: 0;
  color: var(--brand-blue);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.service-card button i {
  margin-left: 4px;
  transition: transform .2s ease;
}

.service-card button:hover i {
  transform: translate(2px, -2px);
}

/* Why */
.why {
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(8, 184, 216, .18);
  box-shadow: inset 0 0 80px rgba(8, 184, 216, .05);
}

.why-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  transition: .25s ease;
}

.why-item:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 230, 248, .28);
  background: rgba(255, 255, 255, .075);
}

.why-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #68D8DE;
  background: rgba(8, 184, 216, .12);
  border: 1px solid rgba(8, 184, 216, .24);
  font-size: 18px;
}

.why-item h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 13px;
}

.why-item p {
  margin: 0;
  color: #DCEBEA;
  font-size: 10px;
  line-height: 1.45;
}

.why-media {
  position: relative;
  min-height: 500px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 54px rgba(0, 0, 0, .22);
}

.why-media>img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.why-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 29, 49, .05) 30%, rgba(7, 29, 49, .72) 100%);
}

.why-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(6, 30, 48, .7);
  backdrop-filter: blur(12px);
}

.why-caption i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--brand-gradient);
}

.why-caption strong,
.why-caption small {
  display: block;
}

.why-caption strong {
  font-size: 12px;
  color: #fff;
}

.why-caption small {
  margin-top: 2px;
  font-size: 10px;
  color: #DCEBEA;
}

.why-bubble {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  color: #fff;
  background: rgba(8, 124, 171, .74);
  backdrop-filter: blur(10px);
  animation: floatOrb 5s ease-in-out infinite;
}

.why-bubble span,
.why-bubble strong {
  display: block;
}

.why-bubble span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.why-bubble strong {
  font-size: 14px;
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.industry-item {
  min-height: 134px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  transition: .25s ease;
}

.industry-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand-blue);
  background: #ECFAFA;
  font-size: 19px;
  transition: .25s ease;
}

.industry-item span {
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}

.industry-item:hover {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.industry-item:hover i {
  color: #fff;
  background: var(--brand-gradient);
  transform: rotate(6deg);
}

/* Solutions */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: var(--shadow-sm);
}

.solution-card>img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  transition: transform .5s ease;
}

.solution-card:hover>img {
  transform: scale(1.06);
}

.solution-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 24, 39, .05) 30%, rgba(4, 24, 39, .92) 100%);
}

.solution-content {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  transform: translateY(14px);
  transition: transform .3s ease;
}

.solution-card:hover .solution-content {
  transform: translateY(0);
}

.solution-content>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  border-radius: 9px;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 10px;
  font-weight: 800;
}

.solution-content h3 {
  margin: 10px 0 6px;
  font-size: 17px;
}

.solution-content p {
  margin: 0;
  color: #DCEBEA;
  font-size: 10px;
  line-height: 1.5;
}

.solution-content button {
  margin-top: 12px;
  padding: 0;
  border: 0;
  color: #68D8DE;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: .3s ease;
}

.solution-card:hover .solution-content button {
  opacity: 1;
  transform: translateY(0);
}

/* Process */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8E2E1 12%, #C8E2E1 88%, transparent);
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 12px;
}

.process-step>i {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 19px;
  display: grid;
  place-items: center;
  border: 8px solid var(--soft);
  border-radius: 50%;
  color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 1px #DCEBEA, var(--shadow-sm);
  font-size: 24px;
  transition: .28s ease;
}

.process-step:hover>i {
  color: #fff;
  background: var(--brand-gradient);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  z-index: 3;
  top: -6px;
  right: calc(50% - 47px);
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 3px solid var(--soft);
  border-radius: 50%;
  color: #fff;
  background: var(--brand-blue);
  font-size: 8px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 13px;
}

.process-step p {
  margin: 0 auto;
  max-width: 180px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

/* Testimonials */
.testimonial-controls {
  display: flex;
  gap: 9px;
  flex: 0 0 auto;
}

.testimonial-controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #DCEBEA;
  border-radius: 11px;
  color: var(--brand-blue);
  background: #fff;
  transition: .2s ease;
}

.testimonial-controls button:hover {
  color: #fff;
  border-color: transparent;
  background: var(--brand-gradient);
  transform: translateY(-2px);
}

.testimonial-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 20px;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  scroll-snap-align: start;
  min-height: 286px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: .25s ease;
}

.testimonial-card:hover {
  border-color: #DCEBEA;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quote-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--brand-blue);
  background: #ECFAFA;
  font-size: 24px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #F5FCFC;
  color: #805b00;
  font-size: 10px;
  font-weight: 800;
}

.rating-pill i {
  color: #f5b400;
}

.testimonial-card>p {
  margin: 22px 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.75;
}

.client {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 17px;
  border-top: 1px solid #DCEBEA;
}

.client>span {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 10px;
  font-weight: 800;
}

.client strong,
.client small {
  display: block;
}

.client strong {
  color: var(--ink);
  font-size: 11px;
}

.client small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}

/* Brands */
.brands {
  padding: 48px 0;
  overflow: hidden;
}

.brands-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.brands-title::before,
.brands-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #DCEBEA;
}

.brand-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  width: max-content;
  display: flex;
  gap: 14px;
  animation: brandMarquee 26s linear infinite;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

@keyframes brandMarquee {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.brand-card {
  width: 150px;
  height: 74px;
  display: grid;
  place-items: center;
  padding: 15px 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.brand-card img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .64;
  transition: .25s ease;
}

.brand-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

/* Commitments */
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.commitment-grid article {
  position: relative;
  min-height: 205px;
  padding: 24px 18px 20px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: .25s ease;
}

.commitment-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(.35);
  transition: .25s ease;
}

.commitment-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.commitment-grid article:hover::before {
  transform: scaleX(1);
}

.commitment-grid i {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--brand-blue);
  background: #ECFAFA;
  font-size: 21px;
}

.commitment-grid h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 12px;
}

.commitment-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

/* Quote */
.quote-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--dark-gradient);
}

.quote-decoration {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(8, 184, 216, .14);
  pointer-events: none;
}

.quote-decoration-one {
  width: 320px;
  height: 320px;
  left: -120px;
  top: -120px;
  box-shadow: inset 0 0 90px rgba(8, 184, 216, .05);
}

.quote-decoration-two {
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -90px;
}

.quote-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.quote-copy h2 {
  color: #fff;
}

.quote-copy h2 span {
  color: #68D8DE;
}

.quote-copy>p {
  color: #DCEBEA;
  margin: 17px 0 0;
  max-width: 520px;
}

.quote-benefits {
  display: grid;
  gap: 9px;
  margin: 25px 0;
}

.quote-benefits div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #DCEBEA;
  font-size: 11px;
}

.quote-benefits i {
  color: var(--brand-cyan);
  font-size: 16px;
}

.quote-contact {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 18px;
}

.quote-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-contact>a>i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: rgba(8, 184, 216, .13);
  border: 1px solid rgba(8, 184, 216, .3);
}

.quote-contact small,
.quote-contact strong {
  display: block;
}

.quote-contact small {
  color: #748B90;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.quote-contact strong {
  margin-top: 2px;
  color: #fff;
  font-size: 11px;
}

.quote-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .97);
  color: var(--text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.form-heading {
  margin-bottom: 21px;
}

.form-heading>span {
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.form-heading h3 {
  margin: 3px 0 4px;
  color: var(--ink);
  font-size: 22px;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: block;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid label>span {
    display: block;
    margin-bottom: 6px;
    color: #565a5b;
    font-size: 12px;
    font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #DCEBEA;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: .2s ease;
}

.form-grid input,
.form-grid select {
  height: 44px;
  padding: 0 12px;
}

.form-grid textarea {
  resize: vertical;
  min-height: 105px;
  padding: 11px 12px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--brand-cyan-2);
  box-shadow: 0 0 0 3px rgba(34, 191, 209, .09);
}

.form-grid .invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, .08);
}

.form-submit {
  margin-top: 17px;
  width: 100%;
  border: 0;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.form-note i {
  color: var(--brand-blue);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 90px;
}

.faq-intro h2 {
  margin-bottom: 13px;
}

.faq-intro p {
  color: var(--muted);
  margin: 0 0 24px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: .25s ease;
}

.faq-item.open {
  border-color: #C8E2E1;
  box-shadow: var(--shadow-sm);
}

.faq-item>button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 12px;
  font-weight: 800;
}

.faq-item>button i {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--brand-blue);
  background: #ECFAFA;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.faq-item.open>button i {
  color: #fff;
  background: var(--brand-gradient);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  color: #fff;
  background: var(--brand-gradient);
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .55) 1px, transparent 1px);
  background-size: 18px 18px;
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-cta-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 25px;
}

.contact-cta-inner>div:nth-child(2) {
  flex: 1;
}

.contact-cta span {
  display: block;
  color: #F5FCFC;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-cta h2 {
  max-width: 650px;
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  margin-top: 4px;
}

.contact-cta-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

/* Footer */
.footer {
  color: #DCEBEA;
  background: var(--navy);
  padding-top: 66px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .72fr .92fr 1.25fr;
  gap: 42px;
}

.footer-logo {
  width: 205px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.footer-about p {
  max-width: 320px;
  color: #748B90;
  font-size: 11px;
}

.footer-contact-mini {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #DCEBEA;
  font-size: 10px;
}

.footer-contact-mini i {
  color: var(--brand-cyan);
}

.footer h3 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 19px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-links a {
  color: #748B90;
  font-size: 10px;
  transition: .2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-contact a,
.footer-contact p {
  color: #748B90;
  font-size: 10px;
  margin: 0;
  transition: .2s ease;
}

.footer-contact i {
  color: var(--brand-cyan);
  margin-right: 7px;
}

.map-wrap {
  margin-top: 34px;
}

.map-wrap iframe {
  width: 100%;
  height: 190px;
  display: block;
  border: 0;
  border-radius: 16px 16px 0 0;
  filter: saturate(.72) contrast(.96);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 9px;
  color: #748B90;
}

.footer-bottom p a {
  color: #748B90;
}

.footer-home-link {
  color: #748B90;
  font-size: 9px;
}

.footer-home-link:hover {
  color: #fff;
}

/* Floating actions */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 1200;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 26px rgba(6, 31, 51, .2);
  font-size: 18px;
  transition: transform .2s ease;
}

.floating-actions a:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-actions a span {
  position: absolute;
  right: calc(100% + 9px);
  top: 50%;
  transform: translateY(-50%) translateX(5px);
  padding: 5px 8px;
  border-radius: 7px;
  color: #fff;
  background: var(--navy);
  font-size: 9px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  white-space: nowrap;
}

.floating-actions a:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.floating-call {
  background: var(--brand-blue);
}

.floating-whatsapp {
  background: #1db954;
}

.floating-whatsapp::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(29, 185, 84, .45);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(.9);
    opacity: .8;
  }

  75%,
  100% {
    transform: scale(1.32);
    opacity: 0;
  }
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 25px;
  z-index: 1200;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  border: 0;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(7, 29, 49, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Search */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: start center;
  padding: 10vh 20px 30px;
  background: rgba(3, 20, 33, .78);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-dialog {
  position: relative;
  width: min(680px, 100%);
  max-height: 80vh;
  overflow: auto;
  padding: 32px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
  transform: translateY(-14px) scale(.98);
  transition: .25s ease;
}

.search-overlay.open .search-dialog {
  transform: translateY(0) scale(1);
}

.search-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.search-dialog h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 28px;
  letter-spacing: -.03em;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 14px;
  border: 1px solid #DCEBEA;
  border-radius: 13px;
  background: #fffdfc;
}

.search-input-wrap i {
  color: var(--brand-blue);
}

.search-input-wrap input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.search-result {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  text-align: left;
  transition: .2s ease;
}

.search-result:hover {
  border-color: #C8E2E1;
  background: #F5FCFC;
  transform: translateX(2px);
}

.search-result span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.search-result small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
  text-transform: capitalize;
}

.search-result i {
  color: var(--brand-blue);
}

.search-empty {
  padding: 20px 4px;
  color: var(--muted);
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 2600;
  left: 50%;
  bottom: 30px;
  transform: translate(-50%, 20px);
  max-width: min(420px, calc(100% - 32px));
  padding: 11px 15px;
  border-radius: 10px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .2);
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  text-align: center;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, .61, .36, 1);
}

[data-reveal="up"] {
  transform: translateY(24px);
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* ===== Final responsive + interaction refinement v31 ===== */
section[id] {
  scroll-margin-top: 76px;
}

.site-header {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header-main {
  transform: none;
  will-change: max-height, opacity;
  transition: max-height .24s cubic-bezier(.4, 0, .2, 1), opacity .18s ease;
}

.site-header.scrolled .header-main {
  max-height: 0;
  opacity: 0;
  transform: none;
  pointer-events: none;
}

.site-header.scrolled .nav-bar {
  box-shadow: 0 10px 28px rgba(5, 7, 28, .22), 0 1px 0 rgba(255, 255, 255, .1);
}

.hero-slider {
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.hero-slider.is-dragging {
  cursor: grabbing;
}

.hero-slider.is-dragging * {
  cursor: grabbing !important;
}

.hero-slider.is-dragging .hero-copy {
  pointer-events: none;
}

.testimonial-viewport {
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-inline: contain;
}

.testimonial-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.testimonial-track {
  align-items: stretch;
}

.testimonial-card {
  height: auto;
}

.brand-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-inline: contain;
}

.brand-marquee::-webkit-scrollbar {
  display: none;
}

.brand-marquee.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.brand-track {
  animation: none !important;
}

/* Modern process timeline */
.process {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F5FCFC 0%, #F5FCFC 100%);
}

.process::before,
.process::after {
  content: \"\";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}

.process::before {
  width: 360px;
  height: 360px;
  left: -180px;
  top: 20px;
  background: radial-gradient(circle, rgba(8, 184, 216, .12), transparent 68%);
}

.process::after {
  width: 420px;
  height: 420px;
  right: -230px;
  bottom: -130px;
  background: radial-gradient(circle, rgba(8, 124, 171, .10), transparent 68%);
}

.process .container {
  position: relative;
  z-index: 1;
}

.process .section-heading {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}

.process-shell {
  position: relative;
  padding: 18px;
  border: 1px solid #DCEBEA;
  border-radius: 30px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 24px 60px rgba(8, 73, 106, .10);
  backdrop-filter: blur(12px);
}

.process-track-label {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px 14px;
  color: var(--ink);
}

.process-track-label>span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

.process-track-label>span i {
  color: var(--brand-cyan);
}

.process-track-label small {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--brand-blue-dark);
  background: #F5FCFC;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.process-grid {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
}

.process-grid::before {
  left: 9%;
  right: 9%;
  top: 56px;
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 124, 171, .12), var(--brand-cyan), rgba(8, 124, 171, .12));
}

.process-step {
  position: relative;
  min-width: 0;
  min-height: 236px;
  padding: 22px 18px 20px;
  text-align: left;
  border: 1px solid #DCEBEA;
  border-radius: 21px;
  background: linear-gradient(180deg, #fff 0%, #fffdfc 100%);
  box-shadow: 0 8px 22px rgba(9, 54, 82, .055);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.process-step::before {
  content: \"\";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(.28);
  transform-origin: left;
  transition: transform .3s ease;
}

.process-step:hover {
  transform: translateY(-7px);
  border-color: #DCEBEA;
  box-shadow: 0 18px 36px rgba(8, 79, 113, .12);
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step>i {
  position: relative;
  width: 58px;
  height: 58px;
  margin: 0 0 26px;
  border: 0;
  border-radius: 16px;
  color: var(--brand-blue);
  background: linear-gradient(145deg, #F5FCFC, #F5FCFC);
  box-shadow: inset 0 0 0 1px #DCEBEA, 0 9px 20px rgba(8, 124, 171, .10);
  font-size: 22px;
}

.process-step:hover>i {
  color: #fff;
  background: var(--brand-gradient);
  transform: translateY(-3px) rotate(-4deg);
}

.step-number {
  top: 18px;
  right: 16px;
  min-width: 34px;
  height: 24px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--brand-gradient);
  box-shadow: 0 7px 16px rgba(8, 124, 171, .2);
  font-size: 9px;
  letter-spacing: .04em;
}

.process-step-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-blue);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.35;
}

.process-step p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.65;
}

.process-support-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 14px 16px 0;
  border-top: 1px solid #DCEBEA;
}

.process-support-bar>span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
}

.process-support-bar>span i {
  color: var(--brand-cyan);
  font-size: 14px;
}

.process-support-bar>a {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue-dark);
  font-size: 10px;
  font-weight: 800;
}

.process-support-bar>a i {
  transition: transform .2s ease;
}

.process-support-bar>a:hover i {
  transform: translateX(3px);
}

/* Alignment hardening */
.product-grid>*,
.service-grid>*,
.industry-grid>*,
.solution-grid>*,
.commitment-grid>* {
  min-width: 0;
}

.heading-row>*,
.split-layout>*,
.why-layout>*,
.quote-grid>*,
.faq-layout>*,
.footer-grid>* {
  min-width: 0;
}

.section-heading p {
  max-width: 720px;
}

.section-heading:not(.align-left) p {
  margin-left: auto;
  margin-right: auto;
}


/* Orange + navy reference-inspired theme polish */
.topbar {
  background: linear-gradient(90deg, #109FA6 0%, #109FA6 65%, #07262F 65%, #07262F 100%);
  color: #fff;
}

.topbar i,
.topbar-right a:hover {
  color: #fff;
}

.topbar-right {
  color: #fff;
}

.site-header {
  box-shadow: 0 2px 12px rgba(7, 10, 34, .08);
}

.header-main {
  background: rgba(255, 255, 255, .995);
}

.header-info-icon {
  color: #109FA6;
  background: #F5FCFC;
  border-color: #DCEBEA;
}

.nav-bar {
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 10, 34, .08);
  border-top: 1px solid #DCEBEA;
}

.main-nav>a,
.nav-drop-toggle {
  color: #151725;
}

.main-nav>a::after,
.nav-drop-toggle::after {
  background: #109FA6;
}

.main-nav>a:hover,
.main-nav>a.active,
.nav-drop-toggle:hover,
.nav-dropdown.open .nav-drop-toggle {
  color: #109FA6;
  background: #F5FCFC;
}

.nav-search {
  border-color: #DCEBEA;
  color: #109FA6;
  background: #fff;
}

.nav-search:hover {
  background: #F5FCFC;
}

.nav-cta {
  color: #fff;
  background: #109FA6;
  box-shadow: 0 9px 22px rgba(16, 159, 166, .22);
}

.nav-cta:hover {
  background: #087D86;
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 159, 166, .30);
}

.site-header.scrolled .nav-bar {
  box-shadow: 0 10px 28px rgba(7, 10, 34, .14);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 8, 28, .96) 0%, rgba(12, 14, 34, .88) 43%, rgba(25, 20, 28, .52) 72%, rgba(29, 19, 22, .22) 100%);
}

.hero-kicker,
.hero h1 span {
  color: #68D8DE;
}

.hero-kicker::before {
  background: #109FA6;
  box-shadow: 0 0 12px rgba(16, 159, 166, .45);
}

.btn-primary {
  background: #109FA6;
  border-color: #109FA6;
  box-shadow: 0 12px 24px rgba(16, 159, 166, .22);
}

.btn-primary:hover {
  background: #087D86;
  border-color: #087D86;
  box-shadow: 0 14px 28px rgba(16, 159, 166, .28);
}

.hero-dots button.active,
.testimonial-dots button.active {
  background: #109FA6;
}

.quick-strip {
  border-bottom-color: #DCEBEA;
}

.section-heading h2 span,
.eyebrow,
.about-badge strong,
.process-step-no {
  color: #109FA6;
}

.process-card:hover,
.product-card:hover,
.service-card:hover {
  border-color: rgba(16, 159, 166, .35);
}

.floating-whatsapp {
  box-shadow: 0 12px 26px rgba(29, 185, 84, .25);
}

.scroll-progress {
  background: linear-gradient(90deg, #109FA6, #68D8DE);
  box-shadow: 0 0 16px rgba(16, 159, 166, .45);
}

@media (max-width: 767px) {
  .topbar {
    background: #07262F;
  }
}

/* ===== Client refinement v34: imagery, testimonials, brands, FAQ, footer ===== */
.hero-slide>img {
  filter: saturate(.96) contrast(1.03);
}

.hero-slide:nth-child(1)>img {
  object-position: 62% center;
}

.hero-slide:nth-child(2)>img {
  object-position: 50% 48%;
}

.hero-slide:nth-child(3)>img {
  object-position: 68% center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(6, 8, 28, .97) 0%, rgba(9, 11, 30, .91) 40%, rgba(23, 20, 28, .58) 68%, rgba(29, 19, 22, .26) 100%);
}

.solution-card {
  min-height: 410px;
  border: 1px solid rgba(255, 255, 255, .04);
}

.solution-card>img {
  height: 410px;
  filter: saturate(.92) contrast(1.02);
}

.solution-card:nth-child(1)>img {
  object-position: center;
}

.solution-card:nth-child(2)>img {
  object-position: center 42%;
}

.solution-card:nth-child(3)>img {
  object-position: center 45%;
}

.solution-card:nth-child(4)>img {
  object-position: center;
}

.solution-overlay {
  background: linear-gradient(180deg, rgba(7, 10, 34, .02) 18%, rgba(7, 10, 34, .28) 48%, rgba(7, 10, 34, .96) 100%);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: inherit;
  pointer-events: none;
}

.testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #F5FCFC 100%);
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -170px;
  top: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 159, 166, .10), transparent 68%);
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-track {
  gap: 18px;
  padding: 4px 2px 16px;
}

.testimonial-card {
  position: relative;
  min-height: 332px;
  padding: 24px 24px 22px;
  border: 1px solid #DCEBEA;
  border-radius: 22px;
  background: linear-gradient(155deg, #fff 0%, #fffdfc 100%);
  box-shadow: 0 10px 28px rgba(30, 18, 14, .045);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #109FA6, #68D8DE);
  transform: scaleX(.25);
  transform-origin: left;
  transition: transform .3s ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 116px;
  right: -54px;
  bottom: -54px;
  border-radius: 50%;
  background: rgba(16, 159, 166, .045);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(16, 159, 166, .28);
  box-shadow: 0 20px 42px rgba(50, 22, 11, .09);
  transform: translateY(-6px);
}

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

.testimonial-top {
  position: relative;
  z-index: 1;
}

.quote-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #109FA6;
  background: #F5FCFC;
  box-shadow: inset 0 0 0 1px #DCEBEA;
  font-size: 25px;
}

.rating-pill {
  padding: 7px 10px;
  border: 1px solid #f6e5b8;
  background: #F5FCFC;
}

.testimonial-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 17px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #748B90;
  background: #F5FCFC;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em;
}

.testimonial-label i {
  color: #109FA6;
  font-size: 11px;
}

.testimonial-card>p {
  position: relative;
  z-index: 1;
  min-height: 84px;
  margin: 16px 0 22px;
  color: #454855;
  font-size: 12px;
  line-height: 1.72;
}

.client {
  position: relative;
  z-index: 1;
  min-height: 64px;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #DCEBEA;
}

.client-avatar {
  position: relative;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #109FA6, #68D8DE);
  box-shadow: 0 0 0 4px #F5FCFC, 0 7px 18px rgba(16, 159, 166, .16);
  font-size: 10px;
  font-weight: 800;
}

.client-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client strong {
  font-size: 11.5px;
}

.client small {
  margin-top: 3px;
  font-size: 9.5px;
}

.client-arrow {
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #109FA6;
  background: #F5FCFC;
  font-size: 11px;
  transition: .25s ease;
}

.testimonial-card:hover .client-arrow {
  color: #fff;
  background: #109FA6;
  transform: translate(2px, -2px);
}

.testimonial-controls button {
  border-color: #DCEBEA;
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(20, 13, 10, .035);
}

/* Original brand colours are intentionally visible in the normal state. */
.brand-card {
  background: #fff;
  box-shadow: 0 5px 16px rgba(22, 14, 11, .025);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.brand-card img {
  filter: none !important;
  opacity: 1 !important;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 159, 166, .24);
  box-shadow: 0 13px 26px rgba(22, 14, 11, .07);
}

.brand-card:hover img {
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.045);
}

.faq-layout {
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
}

.faq-intro {
  top: 86px;
}

.faq-visual {
  position: relative;
  height: 278px;
  margin: 23px 0 18px;
  overflow: hidden;
  border-radius: 22px;
  background: #0B3541;
  box-shadow: 0 18px 40px rgba(18, 11, 9, .10);
}

.faq-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}

.faq-visual:hover img {
  transform: scale(1.045);
}

.faq-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 10, 34, .04) 28%, rgba(7, 10, 34, .76) 100%);
}

.faq-visual-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  color: #fff;
  background: rgba(7, 10, 34, .72);
  backdrop-filter: blur(10px);
}

.faq-visual-badge>i {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: #109FA6;
  font-size: 18px;
}

.faq-visual-badge strong,
.faq-visual-badge small {
  display: block;
}

.faq-visual-badge strong {
  font-size: 11px;
}

.faq-visual-badge small {
  margin-top: 2px;
  color: #DCEBEA;
  font-size: 9px;
}

.faq-call {
  width: 100%;
  max-width: 260px;
}

.footer-about p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact-mini a {
  font-size: 12px;
}

.footer h3 {
  font-size: 15px;
}

.footer-links a {
  font-size: 12px;
  line-height: 1.5;
}

.footer-contact a,
.footer-contact p {
  font-size: 12px;
  line-height: 1.55;
}

.footer-bottom p,
.footer-home-link {
  font-size: 10.5px;
}




@media (max-width: 767px) {
  .service-card {
    text-align: center;
  }

  .service-card .service-number {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card > i {
    /*display: block;*/
    margin: 0 auto 15px;
    text-align: center;
  }

  .service-card h3,
  .service-card p {
    text-align: center;
  }

  .service-card button {
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}


@media (max-width: 767px) {

  .quick-strip-grid {
    text-align: center;
  }

  .quick-strip-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .quick-strip-grid > div > i {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-strip-grid > div > span {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .quick-strip-grid > div strong,
  .quick-strip-grid > div small {
    display: block;
    width: 100%;
    text-align: center;
  }
}
/* Solutions heading alignment refinement */
.solutions .heading-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.solutions .heading-row .section-heading,
.solutions .heading-row .section-heading.align-left {
  width: min(820px, 100%);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.solutions .heading-row .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

.solutions .heading-row .text-link {
  justify-content: center;
  margin: 0 auto;
}
.about-badge strong {
    color: #ffffff !important;
}
.nav-drop-toggle.active { color: #fff; background: rgba(255, 255, 255, .16); }


.footer-bottom p a {
    color: #dfdfdf;
}

.footer-bottom p {
 
    color: #e9e9e9;
}


.footer-about p {
    
    color: #e1e1e1;
  
}

.footer-links a {
    color: #e3e3e3;
}

.footer-contact a, .footer-contact p {
    color: #e4e5e5;
}