:root {
   --primary: #076fba;
   --primary-hover: #055b99;
   --primary-dark: #044d83;
   --light-blue: #eaf5fc;
   --very-light: #f5fafd;
   --navy: #082d46;
   --dark-navy: #061f31;
   --charcoal: #30373d;
   --text: #333b42;
   --body: #4b5660;
   --muted: #707b84;
   --soft: #f5f7f8;
   --border: #dde5ea;
   --white: #fff;
   --danger: #d83a35;
   --danger-hover: #b82e2a;
   --success: #27834b;
   --shadow: 0 18px 48px rgba(8, 45, 70, .12);
   --radius: 18px;
   --container: min(1180px, calc(100% - 36px));
}

* {
   box-sizing: border-box
}

html {
   scroll-behavior: smooth
}

body {
   margin: 0;
   font-family: Inter, Arial, sans-serif;
   color: var(--body);
   background: #fff;
   line-height: 1.7
}

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

a {
   color: var(--primary);
   text-decoration: none
}

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

button {
   cursor: pointer
}

.container {
   width: var(--container);
   margin-inline: auto
}

.skip-link {
   position: fixed;
   left: 16px;
   top: -70px;
   z-index: 9999;
   background: #fff;
   color: var(--navy);
   padding: 10px 14px;
   border-radius: 8px;
   box-shadow: var(--shadow)
}

.skip-link:focus {
   top: 16px
}

.topbar {
   background: var(--dark-navy);
   color: #d9e9f4;
   font-size: .82rem
}

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

.topbar-list {
   display: flex;
   align-items: center;
   gap: 22px
}

.topbar strong {
   color: #fff
}

.site-header {
   position: sticky;
   top: 0;
   z-index: 1000;
   background: rgba(255, 255, 255, .97);
   border-bottom: 1px solid rgba(221, 229, 234, .85);
   backdrop-filter: blur(12px)
}

.nav-wrap {
   height: 82px;
   display: flex;
   align-items: center;
   gap: 25px
}

.brand {
   display: flex;
   align-items: center;
   flex: 0 0 auto
}

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

.main-nav {
   margin-left: auto
}

.main-nav>ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: flex;
   align-items: center;
   gap: 5px
}

.main-nav a,
.nav-trigger {
   display: flex;
   align-items: center;
   gap: 6px;
   color: var(--text);
   font-weight: 700;
   font-size: .91rem;
   padding: 13px 11px;
   border-radius: 9px;
   background: none;
   border: 0
}

.main-nav a:hover,
.main-nav a.active,
.nav-trigger:hover,
.nav-item.open>.nav-trigger {
   color: var(--primary);
   background: var(--very-light)
}

.nav-item {
   position: relative
}

.dropdown {
   position: absolute;
   top: calc(100% + 12px);
   left: 0;
   width: 350px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 10px;
   box-shadow: var(--shadow);
   opacity: 0;
   visibility: hidden;
   transform: translateY(8px);
   transition: .2s
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
   opacity: 1;
   visibility: visible;
   transform: none
}

.dropdown a {
   padding: 11px 12px;
   border-radius: 8px
}

.header-actions {
   display: flex;
   align-items: center;
   gap: 12px
}

.header-phone {
   font-weight: 800;
   color: var(--navy);
   white-space: nowrap
}

.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 9px;
   border: 1px solid transparent;
   border-radius: 10px;
   padding: 13px 19px;
   font-weight: 800;
   line-height: 1.2;
   transition: .2s
}

.btn-primary {
   background: var(--primary);
   color: #fff
}

.btn-primary:hover {
   background: var(--primary-hover);
   color: #fff;
   transform: translateY(-1px)
}

.btn-outline {
   border-color: rgba(255, 255, 255, .5);
   color: #fff;
   background: rgba(255, 255, 255, .06)
}

.btn-outline:hover {
   background: #fff;
   color: var(--navy)
}

.btn-light {
   background: #fff;
   color: var(--navy)
}

.btn-light:hover {
   background: var(--light-blue)
}

.btn-danger {
   background: var(--danger);
   color: #fff
}

.btn-danger:hover {
   background: var(--danger-hover)
}

.menu-toggle {
   display: none;
   width: 44px;
   height: 44px;
   border: 1px solid var(--border);
   background: #fff;
   border-radius: 10px;
   color: var(--navy);
   font-size: 1.4rem
}

.mobile-actions {
   display: none
}

.hero {
   position: relative;
   min-height: 690px;
   display: grid;
   align-items: center;
   color: #fff;
   background-size: cover;
   background-position: center;
   isolation: isolate
}

.hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(6, 31, 49, .95) 0%, rgba(8, 45, 70, .76) 53%, rgba(8, 45, 70, .28) 100%);
   z-index: -1
}

.hero-content {
   max-width: 750px;
   padding: 100px 0
}

.eyebrow {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   text-transform: uppercase;
   letter-spacing: .17em;
   font-weight: 800;
   font-size: .78rem;
   color: var(--primary);
   margin-bottom: 16px
}

.hero .eyebrow {
   color: #8ed3ff
}

.eyebrow::before {
   content: "";
   width: 34px;
   height: 2px;
   background: currentColor
}

.hero h1,
.page-hero h1 {
   font-family: Manrope, Inter, sans-serif;
   font-size: clamp(2.5rem, 5.7vw, 5.25rem);
   line-height: 1.02;
   letter-spacing: -.045em;
   margin: 0 0 22px;
   color: #fff
}

.hero p {
   font-size: 1.15rem;
   max-width: 670px;
   color: #dcecf6
}

.hero-actions {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin: 28px 0
}

.hero-trust {
   display: flex;
   flex-wrap: wrap;
   gap: 12px 22px;
   margin-top: 30px;
   font-weight: 700;
   color: #eef8ff;
   font-size: .91rem
}

.hero-trust span::before {
   content: "✓";
   color: #8ed3ff;
   margin-right: 7px
}

.emergency-chip {
   margin-top: 26px;
   display: inline-flex;
   align-items: center;
   gap: 14px;
   padding: 13px 16px;
   background: rgba(216, 58, 53, .14);
   border: 1px solid rgba(255, 135, 130, .45);
   border-radius: 12px;
   color: #fff
}

.emergency-chip strong {
   display: block
}

.emergency-chip a {
   color: #fff;
   font-weight: 900
}

.pulse {
   width: 12px;
   height: 12px;
   background: #ff5b55;
   border-radius: 50%;
   box-shadow: 0 0 0 0 rgba(255, 91, 85, .5);
   animation: pulse 2s infinite
}

@keyframes pulse {
   70% {
      box-shadow: 0 0 0 13px rgba(255, 91, 85, 0)
   }

   100% {
      box-shadow: 0 0 0 0 rgba(255, 91, 85, 0)
   }
}

.trust-strip {
   border-bottom: 1px solid var(--border);
   background: #fff
}

.trust-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr)
}

.trust-item {
   padding: 24px 15px;
   text-align: center;
   font-weight: 800;
   color: var(--navy);
   font-size: .88rem;
   border-right: 1px solid var(--border)
}

.trust-item:last-child {
   border-right: 0
}

.trust-icon {
   display: block;
   color: var(--primary);
   font-size: 1.25rem;
   margin-bottom: 5px
}

.section {
   padding: 95px 0
}

.section-sm {
   padding: 70px 0
}

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

.section-blue {
   background: var(--very-light)
}

.section-dark {
   background: var(--navy);
   color: #d8e7f0
}

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

.section-head {
   max-width: 760px;
   margin-bottom: 42px
}

.section-head.center {
   text-align: center;
   margin-inline: auto
}

.section h2 {
   font-family: Manrope, Inter, sans-serif;
   font-size: clamp(2rem, 4vw, 3.5rem);
   line-height: 1.08;
   letter-spacing: -.035em;
   color: var(--navy);
   margin: 0 0 18px
}
.navycls{
   font-family: Manrope, Inter, sans-serif;
   font-size: clamp(2rem, 4vw, 3.5rem);
   line-height: 1.08;
   letter-spacing: -.035em;
   color: var(--white)!important;
   margin: 0 0 18px
}
.section h3 {
   font-family: Manrope, Inter, sans-serif;
   color: var(--white);
   line-height: 1.2
}

.lead {
   font-size: 1.1rem
}

.split {
   display: grid;
   grid-template-columns: 1.05fr .95fr;
   gap: 64px;
   align-items: center
}

.split.reverse {
   grid-template-columns: .95fr 1.05fr
}

.media-frame {
   position: relative;
   min-height: 520px;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: var(--shadow)
}

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

.media-frame::after {
   content: "";
   position: absolute;
   inset: auto 18px 18px auto;
   width: 115px;
   height: 115px;
   border: 2px solid rgba(255, 255, 255, .65);
   border-radius: 50%;
   opacity: .35
}

.image-note {
   position: absolute;
   left: 18px;
   bottom: 18px;
   z-index: 2;
   background: rgba(6, 31, 49, .86);
   color: #fff;
   padding: 12px 15px;
   border-radius: 10px;
   max-width: 290px;
   font-weight: 700;
   font-size: .86rem
}

.check-list {
   list-style: none;
   padding: 0;
   margin: 24px 0;
   display: grid;
   gap: 12px
}

.check-list li {
   position: relative;
   padding-left: 31px
}

.check-list li::before {
   content: "✓";
   position: absolute;
   left: 0;
   top: 1px;
   width: 22px;
   height: 22px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: var(--light-blue);
   color: var(--primary);
   font-weight: 900;
   font-size: .78rem
}

.button-row {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   margin-top: 25px
}

.text-link {
   font-weight: 800
}

.text-link::after {
   content: " →"
}

.service-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px
}

.service-card {
   display: grid;
   grid-template-columns: 220px 1fr;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 16px;
   overflow: hidden;
   transition: .25s;
   min-height: 315px
}

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

.service-card img {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.service-body {
   padding: 30px
}

.service-num {
   font-family: Manrope, sans-serif;
   color: var(--primary);
   font-weight: 900;
   font-size: 1.1rem;
   letter-spacing: .08em
}

.service-card h3 {
   font-size: 1.35rem;
   margin: 8px 0 10px
}

.service-card p {
   margin: 0 0 12px
}

.mini-list {
   margin: 12px 0 20px;
   padding-left: 18px;
   font-size: .91rem
}

.service-links {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   align-items: center
}

.service-links a {
   font-weight: 800
}

.system-flow {
   display: grid;
   grid-template-columns: repeat(7, 1fr);
   gap: 12px;
   position: relative;
   margin-top: 38px
}

.flow-node {
   min-height: 145px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 14px;
   padding: 22px 12px;
   text-align: center;
   position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   box-shadow: 0 9px 30px rgba(8, 45, 70, .06)
}

.flow-node:not(:last-child)::after {
   content: "→";
   position: absolute;
   right: -16px;
   top: 50%;
   transform: translateY(-50%);
   color: var(--primary);
   font-size: 1.4rem;
   font-weight: 900;
   z-index: 3
}

.flow-icon {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: var(--light-blue);
   display: grid;
   place-items: center;
   color: var(--primary);
   font-weight: 900;
   margin-bottom: 10px
}

.flow-node strong {
   color: var(--navy);
   font-size: .9rem
}

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

.why-item {
   padding: 30px;
   border: 1px solid rgba(255, 255, 255, .13);
   border-radius: 15px;
   background: rgba(255, 255, 255, .045)
}

.why-item .icon {
   color: #8ed3ff;
   font-size: 1.5rem
}

.why-item h3 {
   margin: 12px 0 8px
}

.industry-grid {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 15px
}

.industry-card {
   position: relative;
   height: 250px;
   border-radius: 14px;
   overflow: hidden;
   isolation: isolate
}

.industry-card img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: .4s
}

.industry-card::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(0deg, rgba(6, 31, 49, .9), rgba(6, 31, 49, .05) 70%);
   z-index: 0
}

.industry-card strong {
   position: absolute;
   z-index: 2;
   left: 18px;
   bottom: 17px;
   color: #fff;
   font-family: Manrope, sans-serif
}

.industry-card:hover img {
   transform: scale(1.05)
}

.timeline {
   display: grid;
   grid-template-columns: repeat(5, 1fr);
   gap: 0;
   margin-top: 40px
}

.timeline-step {
   position: relative;
   padding: 0 18px
}

.timeline-step:not(:last-child)::after {
   content: "";
   position: absolute;
   top: 25px;
   left: 65px;
   right: -20px;
   height: 2px;
   background: #b9d7eb
}

.step-num {
   width: 52px;
   height: 52px;
   border-radius: 50%;
   display: grid;
   place-items: center;
   background: var(--primary);
   color: #fff;
   font-weight: 900;
   position: relative;
   z-index: 1;
   box-shadow: 0 0 0 8px #eaf5fc
}

.timeline-step h3 {
   font-size: 1.05rem;
   margin: 22px 0 7px
}

.timeline-step p {
   font-size: .9rem
}

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

.feature {
   padding: 26px;
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 14px
}

.feature h3 {
   font-size: 1.05rem;
   margin: 8px 0
}

.feature .icon {
   color: var(--primary);
   font-size: 1.45rem
}

.before-after-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 24px
}

.ba {
   position: relative;
   height: 390px;
   border-radius: 16px;
   overflow: hidden;
   background: #dbe7ed;
   box-shadow: var(--shadow)
}

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

.ba .after {
   clip-path: inset(0 50% 0 0)
}

.ba input {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   opacity: 0;
   cursor: ew-resize;
   z-index: 5
}

.ba-line {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 50%;
   width: 3px;
   background: #fff;
   z-index: 4;
   pointer-events: none
}

.ba-line::before {
   content: "↔";
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: var(--primary);
   display: grid;
   place-items: center;
   color: #fff;
   font-weight: 900
}

.ba-label {
   position: absolute;
   top: 14px;
   z-index: 6;
   background: rgba(6, 31, 49, .8);
   color: #fff;
   padding: 6px 10px;
   border-radius: 6px;
   font-size: .75rem;
   font-weight: 800
}

.ba-label.before {
   left: 14px
}

.ba-label.after {
   right: 14px
}

.placeholder-image {
   display: grid;
   place-items: center;
   background: linear-gradient(135deg, #dfeaf0, #f7fbfd);
   color: var(--navy);
   text-align: center;
   padding: 30px;
   font-weight: 800
}

.emergency-band {
   background: var(--dark-navy);
   color: #fff;
   overflow: hidden
}

.emergency-inner {
   display: grid;
   grid-template-columns: 1.25fr .75fr;
   align-items: center;
   gap: 40px
}

.emergency-band h2 {
   color: #fff
}

.emergency-photo {
   min-height: 390px;
   position: relative
}

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

.emergency-badge {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   color: #ff8e89;
   font-weight: 900;
   text-transform: uppercase;
   letter-spacing: .1em;
   font-size: .78rem
}

.phone-big {
   display: block;
   color: #fff;
   font-family: Manrope, sans-serif;
   font-size: clamp(2rem, 4vw, 3.2rem);
   font-weight: 900;
   margin: 14px 0
}

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

.faq-item {
   border: 1px solid var(--border);
   border-radius: 12px;
   background: #fff;
   overflow: hidden
}

.faq-question {
   width: 100%;
   border: 0;
   background: #fff;
   color: var(--navy);
   font-weight: 800;
   text-align: left;
   padding: 19px 52px 19px 20px;
   position: relative
}

.faq-question::after {
   content: "+";
   position: absolute;
   right: 20px;
   font-size: 1.4rem;
   color: var(--primary)
}

.faq-item.open .faq-question::after {
   content: "−"
}

.faq-answer {
   display: none;
   padding: 0 20px 20px
}

.faq-item.open .faq-answer {
   display: block
}

.quote-wrap {
   display: grid;
   grid-template-columns: .85fr 1.15fr;
   gap: 42px;
   align-items: start
}

.contact-card {
   background: var(--navy);
   color: #dceaf2;
   border-radius: 18px;
   padding: 36px;
   position: sticky;
   top: 125px
}

.contact-card h2,
.contact-card h3 {
   color: #fff
}

.contact-card a {
   color: #fff
}

.contact-list {
   list-style: none;
   padding: 0;
   display: grid;
   gap: 16px
}

.contact-list li {
   border-bottom: 1px solid rgba(255, 255, 255, .12);
   padding-bottom: 14px
}

.form-card {
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 34px;
   box-shadow: var(--shadow)
}

.simple-enquiry-form {
   width: 100%;
   max-width: 920px;
   margin-inline: auto;
   padding: 26px;
}

.simple-enquiry-form .form-grid {
   gap: 14px;
}

.simple-enquiry-form .field input,
.simple-enquiry-form .field select {
   padding: 11px 12px;
}

.field-hint {
   display: block;
   margin-top: 6px;
   color: var(--muted);
   font-size: .78rem;
   line-height: 1.45;
}

.form-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 17px
}

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

.field label {
   display: block;
   color: var(--navy);
   font-weight: 800;
   font-size: .88rem;
   margin-bottom: 6px
}

.field input,
.field select,
.field textarea {
   width: 100%;
   border: 1px solid #cbd8df;
   border-radius: 9px;
   padding: 12px 13px;
   background: #fff;
   color: var(--text)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
   outline: 3px solid rgba(7, 111, 186, .15);
   border-color: var(--primary)
}

.field textarea {
   min-height: 135px;
   resize: vertical
}

.checkbox-row {
   display: flex;
   gap: 10px;
   align-items: flex-start
}

.checkbox-row input {
   margin-top: 5px
}

.form-status {
   display: none;
   margin-top: 14px;
   padding: 12px 14px;
   border-radius: 8px;
   font-weight: 700
}

.form-status.error {
   display: block;
   background: #fff0ef;
   color: #8b2521
}

.form-status.success {
   display: block;
   background: #eaf7ef;
   color: #1d6639
}

.page-hero {
   position: relative;
   min-height: 470px;
   display: grid;
   align-items: end;
   background-size: cover;
   background-position: center;
   color: #fff;
   isolation: isolate
}

.page-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(6, 31, 49, .96), rgba(8, 45, 70, .45));
   z-index: -1
}

.page-hero .container {
   padding-bottom: 65px
}

.page-hero h1 {
   max-width: 900px;
   font-size: clamp(2.4rem, 5vw, 4.6rem)
}

.page-hero p {
   max-width: 720px;
   color: #dbeaf3;
   font-size: 1.08rem
}

.breadcrumbs {
   display: flex;
   gap: 8px;
   flex-wrap: wrap;
   font-size: .86rem;
   margin-bottom: 18px;
   color: #c9deeb
}

.breadcrumbs a {
   color: #8ed3ff
}

.breadcrumbs span::before {
   content: "/";
   margin-right: 8px;
   color: #7b9aaa
}

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

.stat-card {
   padding: 25px;
   border: 1px solid var(--border);
   border-radius: 13px;
   background: #fff
}

.stat-card strong {
   font-family: Manrope, sans-serif;
   color: var(--primary);
   font-size: 1.4rem
}

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

.value-card {
   padding: 28px;
   border: 1px solid var(--border);
   border-radius: 14px;
   background: #fff
}

.value-card h3 {
   margin: 8px 0
}

.two-col-list {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 12px 40px
}

.process-list {
   counter-reset: step;
   display: grid;
   gap: 17px
}

.process-item {
   position: relative;
   padding: 24px 25px 24px 78px;
   border: 1px solid var(--border);
   border-radius: 14px;
   background: #fff
}

.process-item::before {
   counter-increment: step;
   content: counter(step, decimal-leading-zero);
   position: absolute;
   left: 20px;
   top: 22px;
   color: var(--primary);
   font-family: Manrope, sans-serif;
   font-size: 1.25rem;
   font-weight: 900
}

.process-item h3 {
   margin: 0 0 5px
}

.note {
   border-left: 4px solid var(--primary);
   background: var(--light-blue);
   padding: 18px 20px;
   border-radius: 0 10px 10px 0
}

.warning {
   border-left-color: var(--danger);
   background: #fff2f1
}

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

.related-card {
   border: 1px solid var(--border);
   border-radius: 13px;
   overflow: hidden;
   background: #fff
}

.related-card img {
   height: 170px;
   width: 100%;
   object-fit: cover
}

.related-card div {
   padding: 18px
}

.related-card h3 {
   font-size: 1.03rem;
   margin: 0 0 8px
}

.gallery-filter {
   display: flex;
   flex-wrap: wrap;
   gap: 9px;
   margin-bottom: 28px
}

.filter-btn {
   border: 1px solid var(--border);
   background: #fff;
   color: var(--navy);
   padding: 9px 14px;
   border-radius: 999px;
   font-weight: 800
}

.filter-btn.active,
.filter-btn:hover {
   background: var(--primary);
   color: #fff;
   border-color: var(--primary)
}

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

.project-card {
   border: 1px solid var(--border);
   border-radius: 15px;
   overflow: hidden;
   background: #fff
}

.project-card .project-img {
   height: 250px;
   position: relative
}

.project-card img {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.project-placeholder {
   position: absolute;
   inset: 0;
   display: grid;
   place-items: center;
   background: linear-gradient(135deg, #dcebf4, #f8fcfe);
   padding: 25px;
   text-align: center;
   color: var(--navy);
   font-weight: 900
}

.project-body {
   padding: 22px
}

.tag {
   display: inline-flex;
   padding: 5px 9px;
   border-radius: 999px;
   background: var(--light-blue);
   color: var(--primary);
   font-size: .74rem;
   font-weight: 900
}

.project-body h3 {
   margin: 10px 0 5px
}

.legal {
   max-width: 900px
}

.legal h2 {
   font-size: 1.65rem;
   margin-top: 36px
}

.draft-notice {
   border: 1px solid #e8c35d;
   background: #fff9e8;
   padding: 18px;
   border-radius: 12px;
   color: #654b00
}

.map-frame {
   border: 0;
   width: 100%;
   min-height: 430px;
   border-radius: 16px
}

.cta {
   background: linear-gradient(135deg, var(--primary), var(--primary-hover));
   color: #fff;
   border-radius: 20px;
   padding: 48px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px
}

.cta h2 {
   color: #fff;
   margin-bottom: 8px
}

.cta p {
   margin: 0;
   color: #eaf7ff;
   max-width: 700px
}

.footer {
   background: var(--dark-navy);
   color: #bad0dd;
   padding: 70px 0 25px
}

.footer-grid {
   display: grid;
   grid-template-columns: 1.4fr .8fr 1fr 1.1fr;
   gap: 42px
}

.footer-logo-wrap {
   display: inline-block;
   background: #fff;
   border-radius: 9px;
   padding: 11px 14px
}

.footer-logo-wrap img {
   width: 210px
}

.footer h3 {
   color: #fff;
   font-size: 1rem;
   margin-top: 0
}

.footer ul {
   list-style: none;
   padding: 0;
   margin: 0;
   display: grid;
   gap: 8px
}

.footer a {
   color: #c6d8e3
}

.footer a:hover {
   color: #fff
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, .1);
   margin-top: 45px;
   padding-top: 20px;
   display: flex;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
   font-size: .86rem
}

.floating-actions {
   display: none
}

.reveal {
   opacity: 0;
   transform: translateY(18px);
   transition: opacity .6s, transform .6s
}

.reveal.visible {
   opacity: 1;
   transform: none
}

@media(max-width:1120px) {
   .header-phone {
      display: none
   }

   .main-nav a,
   .nav-trigger {
      padding: 12px 8px;
      font-size: .84rem
   }

   .service-card {
      grid-template-columns: 180px 1fr
   }

   .industry-grid {
      grid-template-columns: repeat(3, 1fr)
   }

   .system-flow {
      grid-template-columns: repeat(4, 1fr)
   }

   .flow-node:not(:last-child)::after {
      display: none
   }

   .project-grid {
      grid-template-columns: repeat(2, 1fr)
   }
}

@media(max-width:900px) {
   .topbar {
      display: none
   }

   .site-header {
      top: 0
   }

   .nav-wrap {
      height: 72px
   }

   .brand img {
      width: 185px
   }

   .main-nav,
   .header-actions {
      display: none
   }

   .menu-toggle {
      display: grid;
      place-items: center;
      margin-left: auto
   }

   .mobile-actions {
      display: flex;
      gap: 8px
   }

   .mobile-actions .btn {
      padding: 10px 12px;
      font-size: .8rem
   }

   .main-nav.mobile-open {
      display: block;
      position: fixed;
      inset: 72px 0 0;
      background: #fff;
      padding: 18px;
      overflow: auto
   }

   .main-nav.mobile-open>ul {
      display: grid;
      align-items: stretch
   }

   .main-nav.mobile-open a,
   .main-nav.mobile-open .nav-trigger {
      width: 100%;
      justify-content: space-between;
      font-size: 1rem;
      padding: 15px
   }

   .main-nav.mobile-open .dropdown {
      position: static;
      width: 100%;
      box-shadow: none;
      border: 0;
      border-left: 3px solid var(--primary);
      border-radius: 0;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      margin-left: 10px
   }

   .main-nav.mobile-open .nav-item.open .dropdown {
      display: block
   }

   .hero {
      min-height: 640px
   }

   .hero-content {
      padding: 80px 0
   }

   .trust-grid {
      grid-template-columns: repeat(3, 1fr)
   }

   .trust-item:nth-child(3) {
      border-right: 0
   }

   .split,
   .split.reverse,
   .quote-wrap,
   .emergency-inner {
      grid-template-columns: 1fr
   }

   .media-frame {
      min-height: 440px
   }

   .service-grid {
      grid-template-columns: 1fr
   }

   .why-grid,
   .feature-grid,
   .values-grid {
      grid-template-columns: repeat(2, 1fr)
   }

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

   .timeline-step {
      padding-left: 72px
   }

   .timeline-step:not(:last-child)::after {
      left: 25px;
      top: 52px;
      bottom: -25px;
      width: 2px;
      height: auto;
      right: auto
   }

   .step-num {
      position: absolute;
      left: 0;
      top: 0
   }

   .timeline-step h3 {
      margin-top: 0
   }

   .industry-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .system-flow {
      grid-template-columns: repeat(2, 1fr)
   }

   .before-after-grid {
      grid-template-columns: 1fr
   }

   .stat-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .footer-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .contact-card {
      position: static
   }

   .related-grid {
      grid-template-columns: repeat(2, 1fr)
   }
}

@media(max-width:620px) {
   :root {
      --container: min(100% - 26px, 1180px)
   }

   .section {
      padding: 70px 0
   }

   .section-sm {
      padding: 55px 0
   }

   .mobile-actions .quote-mobile {
      display: none
   }

   .brand img {
      width: 168px
   }

   .hero {
      min-height: 710px;
      background-position: 62% center
   }

   .hero h1,
   .page-hero h1 {
      font-size: 2.45rem
   }

   .hero p {
      font-size: 1rem
   }

   .hero-actions .btn {
      width: 100%
   }

   .hero-trust {
      display: grid
   }

   .trust-grid {
      grid-template-columns: repeat(2, 1fr)
   }

   .trust-item:nth-child(odd) {
      border-right: 1px solid var(--border)
   }

   .trust-item:nth-child(even) {
      border-right: 0
   }

   .split {
      gap: 35px
   }

   .media-frame {
      min-height: 330px
   }

   .service-card {
      grid-template-columns: 1fr
   }

   .service-card img {
      height: 220px
   }

   .service-body {
      padding: 23px
   }

   .why-grid,
   .feature-grid,
   .values-grid,
   .stat-grid,
   .related-grid,
   .project-grid {
      grid-template-columns: 1fr
   }

   .industry-grid {
      grid-template-columns: 1fr
   }

   .industry-card {
      height: 230px
   }

   .system-flow {
      grid-template-columns: 1fr
   }

   .flow-node:not(:last-child)::after {
      display: block;
      content: "↓";
      right: auto;
      left: 50%;
      top: auto;
      bottom: -24px
   }

   .form-grid {
      grid-template-columns: 1fr
   }

   .field.full {
      grid-column: auto
   }

   .form-card {
      padding: 22px
   }

   .cta {
      padding: 30px;
      display: block
   }

   .cta .button-row {
      margin-top: 25px
   }

   .footer-grid {
      grid-template-columns: 1fr
   }

   .footer-bottom {
      display: block
   }

   .floating-actions {
      display: flex;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 990;
      gap: 9px
   }

   .floating-actions a {
      flex: 1;
      box-shadow: 0 8px 30px rgba(0, 0, 0, .2)
   }

   .floating-actions .btn {
      padding: 12px 10px
   }

   .page-hero {
      min-height: 430px
   }

   .two-col-list {
      grid-template-columns: 1fr
   }

   .ba {
      height: 310px
   }
}

@media(prefers-reduced-motion:reduce) {
   * {
      scroll-behavior: auto !important;
      animation: none !important;
      transition: none !important
   }

   .reveal {
      opacity: 1;
      transform: none
   }
}

/* =========================================================
   Human-finish update: compact header + purposeful motion
   ========================================================= */
body {
   overflow-x: hidden
}

.topbar .container,
.site-header .container {
   width: min(1480px, calc(100% - 40px))
}

.topbar .container {
   min-height: 32px
}

.topbar {
   font-size: .77rem;
   letter-spacing: .01em
}

.topbar-list {
   gap: 28px
}

.site-header {
   transition: box-shadow .28s ease, background-color .28s ease, transform .28s ease
}

.site-header.scrolled {
   background: rgba(255, 255, 255, .985);
   box-shadow: 0 10px 34px rgba(8, 45, 70, .10)
}

.nav-wrap {
   height: 70px;
   gap: 14px
}

.brand img {
   width: 188px;
   transition: transform .35s ease, filter .35s ease
}

.brand:hover img {
   transform: translateY(-1px);
   filter: saturate(1.07)
}

.main-nav>ul {
   gap: 0
}

.main-nav a,
.nav-trigger {
   position: relative;
   font-size: .84rem;
   padding: 10px 8px;
   border-radius: 8px;
   white-space: nowrap;
   transition: color .22s ease, background-color .22s ease, transform .22s ease
}

.main-nav>ul>li>a::after,
.main-nav>ul>li>.nav-trigger::after {
   content: "";
   position: absolute;
   left: 10px;
   right: 10px;
   bottom: 4px;
   height: 2px;
   background: var(--primary);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform .25s ease;
   border-radius: 999px
}

.main-nav>ul>li>a:hover::after,
.main-nav>ul>li>a.active::after,
.main-nav>ul>li>.nav-trigger:hover::after,
.nav-item.open>.nav-trigger::after {
   transform: scaleX(1)
}

.header-actions {
   gap: 9px
}

.header-phone {
   font-size: .9rem;
   letter-spacing: -.015em
}

.header-actions .btn {
   padding: 11px 15px;
   font-size: .84rem;
   white-space: nowrap;
   border-radius: 9px
}

.dropdown {
   top: calc(100% + 9px);
   width: 330px;
   transform: translateY(10px) scale(.985);
   transform-origin: top left;
   transition: opacity .22s ease, visibility .22s ease, transform .22s ease
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.open .dropdown {
   transform: translateY(0) scale(1)
}

.dropdown a {
   white-space: normal;
   line-height: 1.35
}

.btn {
   position: relative;
   overflow: hidden;
   isolation: isolate;
   box-shadow: 0 0 0 rgba(8, 45, 70, 0);
   transition: transform .24s ease, box-shadow .24s ease, background-color .24s ease, color .24s ease, border-color .24s ease
}

.btn::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .28) 48%, transparent 76%);
   transform: translateX(-125%);
   transition: transform .65s ease;
   z-index: -1
}

.btn:hover::before {
   transform: translateX(125%)
}

.btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(8, 45, 70, .16)
}

.hero,
.page-hero {
   overflow: hidden
}

.hero .container,
.page-hero .container {
   position: relative;
   z-index: 2
}

.hero::after,
.page-hero::after {
   content: "";
   position: absolute;
   inset: -20% -35%;
   z-index: 1;
   pointer-events: none;
   background: linear-gradient(110deg, transparent 35%, rgba(142, 211, 255, .035) 44%, rgba(255, 255, 255, .12) 49%, rgba(142, 211, 255, .035) 54%, transparent 63%);
   transform: translateX(-46%);
   animation: heroSweep 9s cubic-bezier(.45, 0, .25, 1) infinite
}

@keyframes heroSweep {

   0%,
   24% {
      transform: translateX(-46%)
   }

   64%,
   100% {
      transform: translateX(46%)
   }
}

.hero-content>* {
   opacity: 0;
   transform: translateY(22px);
   animation: heroEnter .72s cubic-bezier(.22, .75, .22, 1) forwards
}

.hero-content>*:nth-child(1) {
   animation-delay: .08s
}

.hero-content>*:nth-child(2) {
   animation-delay: .18s
}

.hero-content>*:nth-child(3) {
   animation-delay: .30s
}

.hero-content>*:nth-child(4) {
   animation-delay: .42s
}

.hero-content>*:nth-child(5) {
   animation-delay: .54s
}

.hero-content>*:nth-child(6) {
   animation-delay: .66s
}

.page-hero .breadcrumbs,
.page-hero .eyebrow,
.page-hero h1,
.page-hero p,
.page-hero .button-row {
   opacity: 0;
   transform: translateY(18px);
   animation: heroEnter .68s cubic-bezier(.22, .75, .22, 1) forwards
}

.page-hero .breadcrumbs {
   animation-delay: .06s
}

.page-hero .eyebrow {
   animation-delay: .13s
}

.page-hero h1 {
   animation-delay: .21s
}

.page-hero p {
   animation-delay: .31s
}

.page-hero .button-row {
   animation-delay: .41s
}

@keyframes heroEnter {
   to {
      opacity: 1;
      transform: none
   }
}

.eyebrow::before {
   transform-origin: left;
   animation: eyebrowLine .8s .18s cubic-bezier(.22, .75, .22, 1) both
}

@keyframes eyebrowLine {
   from {
      transform: scaleX(0)
   }

   to {
      transform: scaleX(1)
   }
}

.reveal {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity .72s cubic-bezier(.22, .75, .22, 1), transform .72s cubic-bezier(.22, .75, .22, 1);
   transition-delay: var(--reveal-delay, 0ms)
}

.reveal.visible {
   opacity: 1;
   transform: none
}

.media-frame img,
.service-card img,
.related-card img,
.project-card img {
   transition: transform .75s cubic-bezier(.22, .75, .22, 1), filter .55s ease
}

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

.service-card {
   position: relative;
   transition: transform .32s cubic-bezier(.22, .75, .22, 1), box-shadow .32s ease, border-color .32s ease
}

.service-card::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 0;
   height: 3px;
   background: var(--primary);
   z-index: 2;
   transition: width .45s cubic-bezier(.22, .75, .22, 1)
}

.service-card:hover::before {
   width: 100%
}

.service-card:hover img {
   transform: scale(1.055);
   filter: saturate(1.06)
}

.service-card:hover {
   transform: translateY(-7px);
   box-shadow: 0 24px 54px rgba(8, 45, 70, .14)
}

.industry-card {
   box-shadow: 0 8px 24px rgba(8, 45, 70, .08);
   transition: transform .32s ease, box-shadow .32s ease
}

.industry-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 20px 42px rgba(8, 45, 70, .16)
}

.industry-card strong {
   transform: translateY(0);
   transition: transform .3s ease
}

.industry-card:hover strong {
   transform: translateY(-4px)
}

.flow-node,
.why-item,
.feature,
.value-card,
.process-item,
.related-card,
.project-card,
.stat-card {
   transition: transform .3s cubic-bezier(.22, .75, .22, 1), box-shadow .3s ease, border-color .3s ease, background-color .3s ease
}

.flow-node:hover,
.feature:hover,
.value-card:hover,
.process-item:hover,
.related-card:hover,
.project-card:hover,
.stat-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 18px 42px rgba(8, 45, 70, .11);
   border-color: #b5d7ec
}

.why-item:hover {
   transform: translateY(-5px);
   background: rgba(255, 255, 255, .075);
   border-color: rgba(142, 211, 255, .38)
}

.related-card:hover img,
.project-card:hover img {
   transform: scale(1.045)
}

.trust-item {
   transition: background-color .25s ease, color .25s ease, transform .25s ease
}

.trust-item:hover {
   background: var(--very-light);
   color: var(--primary);
   transform: translateY(-2px)
}

.faq-answer {
   display: grid;
   grid-template-rows: 0fr;
   padding: 0 20px;
   transition: grid-template-rows .3s ease, padding .3s ease
}

.faq-answer>* {
   overflow: hidden;
   margin-top: 0;
   margin-bottom: 0
}

.faq-item.open .faq-answer {
   display: grid;
   grid-template-rows: 1fr;
   padding: 0 20px 20px
}

.faq-item {
   transition: border-color .25s ease, box-shadow .25s ease
}

.faq-item.open {
   border-color: #abd2ea;
   box-shadow: 0 12px 32px rgba(8, 45, 70, .08)
}

.faq-question {
   transition: color .2s ease, background-color .2s ease
}

.faq-item.open .faq-question {
   color: var(--primary);
   background: var(--very-light)
}

.scroll-progress {
   position: fixed;
   left: 0;
   top: 0;
   height: 3px;
   width: 0;
   background: linear-gradient(90deg, var(--primary), #34b4e8);
   z-index: 2500;
   box-shadow: 0 0 12px rgba(7, 111, 186, .36);
   pointer-events: none
}

@media(max-width:1360px) {
   .header-phone {
      display: none
   }

   .site-header .container {
      width: min(1240px, calc(100% - 32px))
   }

   .main-nav a,
   .nav-trigger {
      font-size: .82rem;
      padding-inline: 7px
   }

   .header-actions .btn {
      padding-inline: 13px
   }
}

@media(max-width:1100px) {
   .topbar {
      display: none
   }

   .site-header {
      top: 0
   }

   .nav-wrap {
      height: 70px
   }

   .brand img {
      width: 178px
   }

   .main-nav,
   .header-actions {
      display: none
   }

   .menu-toggle {
      display: grid;
      place-items: center;
      margin-left: auto
   }

   .mobile-actions {
      display: flex;
      gap: 8px
   }

   .mobile-actions .btn {
      padding: 10px 12px;
      font-size: .8rem
   }

   .main-nav.mobile-open {
      display: block;
      position: fixed;
      inset: 70px 0 0;
      background: #fff;
      padding: 18px;
      overflow: auto
   }

   .main-nav.mobile-open>ul {
      display: grid;
      align-items: stretch
   }

   .main-nav.mobile-open a,
   .main-nav.mobile-open .nav-trigger {
      width: 100%;
      justify-content: space-between;
      font-size: 1rem;
      padding: 15px
   }

   .main-nav.mobile-open>ul>li>a::after,
   .main-nav.mobile-open>ul>li>.nav-trigger::after {
      display: none
   }

   .main-nav.mobile-open .dropdown {
      position: static;
      width: 100%;
      box-shadow: none;
      border: 0;
      border-left: 3px solid var(--primary);
      border-radius: 0;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      margin-left: 10px
   }

   .main-nav.mobile-open .nav-item.open .dropdown {
      display: block
   }
}

@media(max-width:620px) {
   .site-header .container {
      width: min(100% - 24px, 1180px)
   }

   .nav-wrap {
      height: 66px
   }

   .brand img {
      width: 160px
   }

   .main-nav.mobile-open {
      inset: 66px 0 0
   }

   .hero::after,
   .page-hero::after {
      animation-duration: 12s
   }

   .btn:hover {
      transform: none
   }
}

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

   .hero::after,
   .page-hero::after,
   .hero-content>*,
   .page-hero .breadcrumbs,
   .page-hero .eyebrow,
   .page-hero h1,
   .page-hero p,
   .page-hero .button-row,
   .eyebrow::before {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important
   }

   .scroll-progress {
      display: none
   }
}

/* Editorial details that avoid the repeated-template look */
.media-frame::after {
   inset: auto 18px 18px auto;
   width: 82px;
   height: 82px;
   border: 0;
   border-right: 3px solid rgba(7, 111, 186, .82);
   border-bottom: 3px solid rgba(7, 111, 186, .82);
   border-radius: 0;
   opacity: .9
}

.service-card:nth-child(even) {
   grid-template-columns: 1fr 220px
}

.service-card:nth-child(even) img {
   order: 2
}

.service-card:nth-child(even) .service-body {
   order: 1
}

.trust-icon {
   height: 30px;
   display: grid;
   place-items: center;
   margin-bottom: 7px
}

.trust-icon svg {
   width: 25px;
   height: 25px;
   fill: none;
   stroke: currentColor;
   stroke-width: 1.8;
   stroke-linecap: round;
   stroke-linejoin: round
}

.scroll-cue {
   position: absolute;
   right: 0;
   bottom: 30px;
   display: flex;
   align-items: center;
   gap: 11px;
   color: rgba(255, 255, 255, .82);
   font-size: .76rem;
   font-weight: 800;
   letter-spacing: .11em;
   text-transform: uppercase
}

.scroll-cue::after {
   content: "";
   width: 54px;
   height: 1px;
   background: rgba(255, 255, 255, .55);
   transform-origin: left;
   animation: scrollCue 1.8s ease-in-out infinite
}

@keyframes scrollCue {

   0%,
   100% {
      transform: scaleX(.35);
      opacity: .45
   }

   50% {
      transform: scaleX(1);
      opacity: 1
   }
}

@media(max-width:1120px) {
   .service-card:nth-child(even) {
      grid-template-columns: 180px 1fr
   }

   .service-card:nth-child(even) img {
      order: 0
   }

   .service-card:nth-child(even) .service-body {
      order: 0
   }
}

@media(max-width:620px) {
   .service-card:nth-child(even) {
      grid-template-columns: 1fr
   }

   .service-card:nth-child(even) img {
      order: 0
   }

   .scroll-cue {
      display: none
   }
}

/* =========================================================
   About page redesign — editorial, technical and human-built
   ========================================================= */
.btn-ghost-dark {
   background: #fff;
   color: var(--navy);
   border-color: #c8d9e4
}

.btn-ghost-dark:hover {
   background: var(--very-light);
   color: var(--primary);
   border-color: #a9cee5
}

.about-hero-modern {
   position: relative;
   overflow: hidden;
   padding: 76px 0 84px;
   background: linear-gradient(135deg, #f7fbfe 0%, #eef7fc 54%, #fff 100%);
   border-bottom: 1px solid var(--border)
}

.about-hero-modern::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(90deg, rgba(7, 111, 186, .035) 1px, transparent 1px), linear-gradient(rgba(7, 111, 186, .035) 1px, transparent 1px);
   background-size: 42px 42px;
   mask-image: linear-gradient(90deg, #000, transparent 72%);
   pointer-events: none
}

.about-hero-grid {
   display: grid;
   grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
   gap: 68px;
   align-items: center;
   position: relative;
   z-index: 1
}

.about-hero-copy .breadcrumbs {
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 34px;
   font-size: .83rem;
   font-weight: 700;
   color: var(--muted)
}

.about-hero-copy .breadcrumbs a {
   color: var(--primary)
}

.about-hero-copy .breadcrumbs span::before {
   content: "/";
   margin-right: 10px;
   color: #a5b3bd
}

.about-hero-copy h1 {
   font-family: Manrope, Inter, sans-serif;
   font-size: clamp(3rem, 5vw, 5rem);
   line-height: 1.02;
   letter-spacing: -.05em;
   color: var(--navy);
   margin: 0 0 24px;
   max-width: 760px
}

.about-hero-copy .lead {
   font-size: 1.22rem;
   line-height: 1.65;
   color: #304856;
   max-width: 690px
}

.about-hero-copy>p:not(.lead) {
   max-width: 650px
}

.about-hero-points {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-top: 30px
}

.about-hero-points span {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 9px 12px;
   border: 1px solid #cfe3ef;
   background: rgba(255, 255, 255, .76);
   border-radius: 999px;
   font-size: .8rem;
   font-weight: 800;
   color: var(--navy)
}

.about-hero-points span::before {
   content: "";
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--primary);
   box-shadow: 0 0 0 4px rgba(7, 111, 186, .1)
}

.about-hero-visual {
   position: relative;
   min-height: 600px;
   border-radius: 30px 8px 30px 8px;
   overflow: hidden;
   box-shadow: 0 30px 70px rgba(8, 45, 70, .18);
   isolation: isolate
}

.about-hero-visual::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, transparent 45%, rgba(6, 31, 49, .5) 100%);
   z-index: 1
}

.about-hero-visual img {
   width: 100%;
   height: 100%;
   position: absolute;
   inset: 0;
   object-fit: cover;
   object-position: center;
   filter: saturate(.88) contrast(1.03);
   transition: transform 1s cubic-bezier(.22, .75, .22, 1)
}

.about-hero-visual:hover img {
   transform: scale(1.035)
}

.about-visual-label {
   position: absolute;
   left: 28px;
   right: 28px;
   bottom: 26px;
   z-index: 2;
   display: flex;
   align-items: end;
   justify-content: space-between;
   gap: 24px;
   color: #fff;
   padding-top: 18px;
   border-top: 1px solid rgba(255, 255, 255, .48)
}

.about-visual-label strong {
   font-family: Manrope, sans-serif;
   font-size: 1.15rem
}

.about-visual-label span {
   font-size: .82rem;
   font-weight: 700;
   color: #d7ecf8
}

.about-system-section {
   padding-top: 110px
}

.about-system-grid {
   display: grid;
   grid-template-columns: .9fr 1.1fr;
   gap: 72px;
   align-items: center
}

.compact-checks {
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 13px 26px
}

.compact-checks li {
   font-size: .94rem
}

.system-illustration-card {
   position: relative;
   padding: 34px;
   background: #fff;
   border: 1px solid #cfe1ec;
   border-radius: 22px;
   box-shadow: 0 24px 55px rgba(8, 45, 70, .09);
   overflow: hidden
}

.system-illustration-card::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 5px;
   height: 100%;
   background: linear-gradient(var(--primary), #42b8e9)
}

.system-illustration-card img {
   width: 100%;
   max-height: 360px;
   object-fit: contain
}

.system-caption {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: 8px;
   margin-top: 18px;
   padding-top: 18px;
   border-top: 1px solid var(--border)
}

.system-caption span {
   text-align: center;
   font-size: .72rem;
   text-transform: uppercase;
   letter-spacing: .08em;
   font-weight: 800;
   color: var(--muted)
}

.about-method-section {
   position: relative;
   overflow: hidden
}

.about-method-section::after {
   content: "";
   position: absolute;
   right: -130px;
   bottom: -150px;
   width: 440px;
   height: 440px;
   border: 1px solid rgba(7, 111, 186, .12);
   border-radius: 50%;
   box-shadow: 0 0 0 60px rgba(7, 111, 186, .03), 0 0 0 120px rgba(7, 111, 186, .02)
}

.about-method-list {
   position: relative;
   z-index: 1;
   border-top: 1px solid #cfdde6
}

.about-method-item {
   display: grid;
   grid-template-columns: 90px 1fr;
   gap: 34px;
   padding: 30px 4px;
   border-bottom: 1px solid #cfdde6;
   align-items: start
}

.about-method-item>span {
   font-family: Manrope, sans-serif;
   font-size: 1.2rem;
   font-weight: 900;
   color: var(--primary);
   padding-top: 4px
}

.about-method-item h3 {
   color: var(--navy) !important;
   font-size: 1.35rem;
   margin: 0 0 8px
}

.about-method-item p {
   margin: 0;
   max-width: 820px
}

.about-method-item:hover {
   background: linear-gradient(90deg, rgba(7, 111, 186, .045), transparent);
   padding-left: 18px;
   padding-right: 18px
}

.about-capability-grid {
   display: grid;
   grid-template-columns: .92fr 1.08fr;
   gap: 74px;
   align-items: center
}

.about-photo-panel {
   position: relative;
   min-height: 590px
}

.about-photo-panel img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 8px 28px 8px 28px;
   filter: saturate(.9) contrast(1.05);
   box-shadow: 0 25px 60px rgba(8, 45, 70, .14)
}

.photo-accent {
   position: absolute;
   right: -20px;
   bottom: -20px;
   width: 150px;
   height: 150px;
   border-right: 4px solid var(--primary);
   border-bottom: 4px solid var(--primary);
   z-index: 2
}

.capability-points {
   display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
   gap: 0;
   margin-top: 30px;
   border-top: 1px solid var(--border);
   border-left: 1px solid var(--border)
}

.capability-points article {
   padding: 26px;
   border-right: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
   background: #fff
}

.capability-points article:nth-child(1) {
   border-radius: 0
}

.capability-points h3 {
   margin: 0 0 7px;
   font-size: 1.05rem
}

.capability-points p {
   margin: 0;
   font-size: .91rem
}

.about-values-dark {
   background: linear-gradient(135deg, #061f31, #0a3b5c);
   color: #dceaf3;
   position: relative;
   overflow: hidden
}

.about-values-dark::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
   background-size: 32px 32px
}

.section-head.light {
   position: relative;
   z-index: 1
}

.section-head.light h2 {
   color: #fff
}

.section-head.light .eyebrow {
   color: #8ed3ff
}

.about-values-row {
   position: relative;
   z-index: 1;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   border-top: 1px solid rgba(255, 255, 255, .18);
   border-bottom: 1px solid rgba(255, 255, 255, .18)
}

.about-values-row article {
   padding: 34px 30px;
   border-right: 1px solid rgba(255, 255, 255, .18);
   min-height: 260px
}

.about-values-row article:last-child {
   border-right: 0
}

.about-values-row article>span {
   font-family: Manrope, sans-serif;
   font-size: .85rem;
   letter-spacing: .12em;
   color: #8ed3ff;
   font-weight: 900
}

.about-values-row h3 {
   color: #fff;
   font-size: 1.2rem;
   margin: 32px 0 10px
}

.about-values-row p {
   margin: 0;
   color: #cadde8;
   font-size: .92rem
}

.about-contact-section {
   background: #fff;
   padding-top: 78px;
   padding-bottom: 78px
}

.about-contact-card {
   display: grid;
   grid-template-columns: 1.25fr .9fr auto;
   gap: 34px;
   align-items: center;
   padding: 38px 42px;
   border: 1px solid #cfe0ea;
   background: linear-gradient(110deg, #f8fcff, #eef7fc);
   border-radius: 18px;
   box-shadow: 0 20px 50px rgba(8, 45, 70, .08)
}

.about-contact-card h2 {
   font-size: clamp(1.8rem, 3vw, 2.65rem);
   margin-bottom: 10px
}

.about-contact-card p {
   margin: 0
}

.about-contact-details {
   display: grid;
   gap: 7px;
   font-size: .9rem
}

.about-contact-details a {
   font-weight: 800
}

.about-contact-details span {
   color: var(--muted)
}

.floating-actions {
   left: auto;
   right: 18px
}

.floating-actions .btn {
   min-width: 112px
}

@media(max-width:1050px) {

   .about-hero-grid,
   .about-system-grid,
   .about-capability-grid {
      grid-template-columns: 1fr;
      gap: 44px
   }

   .about-hero-visual {
      min-height: 520px
   }

   .about-system-grid>div:first-child {
      max-width: 800px
   }

   .system-illustration-card {
      max-width: 900px
   }

   .about-photo-panel {
      min-height: 500px
   }

   .about-values-row {
      grid-template-columns: repeat(2, 1fr)
   }

   .about-values-row article:nth-child(2) {
      border-right: 0
   }

   .about-values-row article:nth-child(-n+2) {
      border-bottom: 1px solid rgba(255, 255, 255, .18)
   }

   .about-contact-card {
      grid-template-columns: 1fr auto
   }

   .about-contact-details {
      grid-column: 1/2
   }

   .about-contact-card>.btn {
      grid-row: 1/3;
      grid-column: 2/3
   }
}

@media(max-width:720px) {
   .about-hero-modern {
      padding: 42px 0 58px
   }

   .about-hero-copy .breadcrumbs {
      margin-bottom: 24px
   }

   .about-hero-copy h1 {
      font-size: clamp(2.45rem, 12vw, 3.55rem)
   }

   .about-hero-copy .lead {
      font-size: 1.05rem
   }

   .about-hero-visual {
      min-height: 430px;
      border-radius: 22px 6px 22px 6px
   }

   .about-visual-label {
      left: 20px;
      right: 20px;
      bottom: 18px;
      align-items: start;
      flex-direction: column;
      gap: 3px
   }

   .about-system-section {
      padding-top: 74px
   }

   .compact-checks {
      grid-template-columns: 1fr
   }

   .system-illustration-card {
      padding: 22px 18px
   }

   .system-caption {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 12px
   }

   .about-method-item {
      grid-template-columns: 50px 1fr;
      gap: 16px;
      padding: 24px 0
   }

   .about-method-item:hover {
      padding-left: 0;
      padding-right: 0
   }

   .about-photo-panel {
      min-height: 410px
   }

   .photo-accent {
      right: -9px;
      bottom: -10px;
      width: 90px;
      height: 90px
   }

   .capability-points {
      grid-template-columns: 1fr
   }

   .about-values-row {
      grid-template-columns: 1fr
   }

   .about-values-row article,
   .about-values-row article:nth-child(2) {
      border-right: 0;
      border-bottom: 1px solid rgba(255, 255, 255, .18)
   }

   .about-values-row article:last-child {
      border-bottom: 0
   }

   .about-contact-card {
      grid-template-columns: 1fr;
      padding: 30px 24px
   }

   .about-contact-details,
   .about-contact-card>.btn {
      grid-column: auto;
      grid-row: auto
   }

   .about-contact-card>.btn {
      width: 100%
   }
}

/* Local project imagery and secure-form additions */
.work-gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.work-gallery-item{margin:0;background:#fff;border:1px solid rgba(14,48,63,.12);border-radius:18px;overflow:hidden;box-shadow:0 12px 34px rgba(8,35,49,.08)}
.work-gallery-item img{display:block;width:100%;height:280px;object-fit:cover}
.work-gallery-item figcaption{padding:15px 17px 17px;font-weight:700;color:var(--ink,#153244);line-height:1.45}
.hp-field{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important}
.form-status{margin-top:14px;font-weight:700;line-height:1.45}
.form-status.success{color:#176b43}
.form-status.error{color:#a32828}
@media(max-width:900px){.work-gallery{grid-template-columns:repeat(2,minmax(0,1fr))}.work-gallery-item img{height:240px}}
@media(max-width:620px){.work-gallery{grid-template-columns:1fr}.work-gallery-item img{height:230px}}


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

   *,
   *::before,
   *::after {
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
      scroll-behavior: auto !important
   }

   .reveal {
      opacity: 1 !important;
      transform: none !important
   }
}
