:root {
  --brand: #0c7da9;
  --brand-dark: #075875;
  --accent: #8cbf41;
  --accent-dark: #668f2f;
  --ink: #1e293b;
  --muted: #64748b;
  --line: #dbe4ea;
  --surface: #f6f9fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--brand-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

img {
  max-width: 100%;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.mobile-nav-toggle:focus-visible {
  outline: 3px solid rgba(140, 191, 65, 0.55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
  color: var(--white);
}

@keyframes animate-preloader {
  to {
    transform: rotate(360deg);
  }
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: 18px;
  z-index: 996;
  width: 42px;
  height: 42px;
  background: var(--brand);
  border-radius: 6px;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(12, 125, 169, 0.28);
}

.back-to-top i {
  font-size: 28px;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#topbar {
  min-height: 42px;
  padding: 0;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 14px;
  overflow: visible;
}

.topbar-note,
.topbar-links {
  gap: 16px;
}

.topbar-note i {
  color: #b6df72;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
}

.topbar-links a:hover {
  color: var(--white);
}

#header {
  height: 86px;
  background: rgba(255, 255, 255, 0.96);
  transition: all 0.35s ease;
  z-index: 997;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

#header.fixed-top {
  height: 78px;
}

#header .logo img {
  width: auto;
  max-height: 66px;
}

.scrolled-offset {
  margin-top: 78px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  border-radius: 6px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--brand);
}

.navbar .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(12, 125, 169, 0.2);
}

.navbar .nav-cta:hover,
.navbar .nav-cta.active {
  color: var(--white);
  background: var(--brand-dark);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 18px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 210px;
}

.navbar .dropdown ul a {
  padding: 10px 18px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.mobile-nav-toggle {
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 6px;
  font-size: 30px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.3s;
}

.mobile-nav-toggle.bi-x {
  color: var(--white);
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(15, 23, 42, 0.86);
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 22px;
  right: 22px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  inset: 68px 16px 16px;
  padding: 14px;
  background: var(--white);
  overflow-y: auto;
  border-radius: 8px;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 13px 14px;
  font-size: 16px;
  color: var(--ink);
}

.navbar-mobile .nav-cta {
  margin: 10px 0 0;
  justify-content: center;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 8px 0 8px 12px;
  padding: 8px 0;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

section {
  padding: 86px 0;
  overflow: hidden;
  scroll-margin-top: 96px;
}

.section-bg {
  background: var(--surface);
}

.section-title {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title.text-start {
  margin: 0 0 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
}

.section-title p:last-child {
  margin: 18px auto 0;
  font-size: 17px;
}

.service-starting-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  color: var(--brand-dark);
  background: rgba(140, 191, 65, 0.14);
  border: 1px solid rgba(140, 191, 65, 0.28);
  border-radius: 6px;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary-codein {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-primary-codein:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-codein {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-codein:hover {
  background: var(--white);
  color: var(--brand-dark);
}

.btn-soft-codein {
  color: var(--brand-dark);
  background: rgba(12, 125, 169, 0.1);
  border-color: rgba(12, 125, 169, 0.16);
}

.btn-soft-codein:hover {
  color: var(--white);
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.hero {
  position: relative;
  min-height: clamp(640px, 78vh, 820px);
  display: flex;
  align-items: center;
  padding: 128px 0 82px;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 31, 43, 0.94) 0%, rgba(4, 31, 43, 0.82) 46%, rgba(4, 31, 43, 0.48) 100%),
    linear-gradient(135deg, rgba(12, 125, 169, 0.28), rgba(140, 191, 65, 0.18));
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
}

.hero .eyebrow {
  color: #d9f5a4;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: 650px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-metrics div {
  padding: 18px 20px 0 0;
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 34px;
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero-delivery {
  margin-left: auto;
  max-width: 370px;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-delivery span {
  display: block;
  margin-bottom: 15px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-delivery ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-delivery li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.hero-delivery i {
  color: var(--accent-dark);
  font-size: 20px;
  line-height: 1.3;
}

.capability-band {
  position: relative;
  z-index: 3;
  margin-top: -46px;
  padding: 0;
  overflow: visible;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.capability-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.capability-item:last-child {
  border-right: 0;
}

.capability-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--brand);
  background: rgba(12, 125, 169, 0.1);
  border-radius: 8px;
  font-size: 22px;
}

.capability-item strong,
.capability-item span {
  display: block;
}

.capability-item strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.capability-item span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.image-frame {
  position: relative;
}

.image-frame::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  background: var(--accent);
  border-radius: 8px;
  z-index: -1;
}

.image-frame img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about p {
  font-size: 16px;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.about-points i {
  color: var(--brand);
  font-size: 22px;
}

.about-points span {
  font-weight: 700;
}

.service-card,
.process-step,
.why-item,
.contact-panel,
.contact-form {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  min-height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 8px 8px 0 0;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(12, 125, 169, 0.35);
  box-shadow: var(--shadow);
}

.service-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--brand);
  border-radius: 8px;
  font-size: 26px;
}

.service-card h3,
.process-step h3,
.why-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
}

.service-card p,
.process-step p,
.why-item p {
  margin-bottom: 18px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 21px;
  color: var(--ink);
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.products {
  background:
    linear-gradient(135deg, rgba(12, 125, 169, 0.08), rgba(140, 191, 65, 0.08)),
    var(--white);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-card + .product-card {
  margin-top: 24px;
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #e5eaf0;
}

.product-media img {
  width: min(100%, 460px);
  height: auto;
  object-fit: contain;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
}

.product-content p {
  max-width: 700px;
  margin: 16px 0 0;
  font-size: 17px;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.product-features div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.product-features i {
  color: var(--brand);
  font-size: 22px;
}

.product-features span {
  color: var(--ink);
  font-weight: 800;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.process-step {
  padding: 26px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.process-step p {
  margin-bottom: 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 16px;
}

.industry-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 154px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-item:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 191, 65, 0.55);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.industry-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: var(--brand);
  font-size: 28px;
  background: rgba(12, 125, 169, 0.08);
  border-radius: 8px;
}

.industry-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.industry-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.clients {
  background:
    linear-gradient(180deg, var(--white) 0%, #f6f9fb 100%);
}

.client-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: -8px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-proof div {
  min-height: 92px;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.client-proof div:last-child {
  border-right: 0;
}

.client-proof strong {
  display: block;
  color: var(--brand);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

.client-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 24px;
  border: 1px solid #e1e8ee;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.client-logo:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 125, 169, 0.36);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.client-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.client-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: saturate(0.96) contrast(1.03);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.client-logo:hover img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.03);
}

.why {
  background:
    linear-gradient(135deg, rgba(12, 125, 169, 0.08), rgba(140, 191, 65, 0.08)),
    var(--white);
}

.why-item {
  padding: 28px;
}

.why-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--accent-dark);
  border-radius: 8px;
  font-size: 25px;
}

.why-item p {
  margin-bottom: 0;
}

.testimonials {
  position: relative;
}

.testimonial-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.testimonial-head .section-title {
  margin-bottom: 0;
}

.testimonial-summary {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.testimonial-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}

.testimonial-summary div:last-child {
  border-bottom: 0;
}

.testimonial-summary strong {
  color: var(--brand);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
}

.testimonial-summary span {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.testimonials .testimonials-slider {
  padding: 4px 4px 0;
  overflow: hidden;
}

.testimonials .swiper-wrapper {
  align-items: stretch;
}

.testimonials .swiper-slide {
  height: auto;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 8px 8px 0 0;
}

.testimonial-card-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.testimonial-img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 3px solid rgba(12, 125, 169, 0.14);
  border-radius: 50%;
}

.testimonial-card figcaption {
  min-width: 0;
}

.testimonial-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.testimonial-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.testimonial-card-top > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--brand);
  background: rgba(12, 125, 169, 0.1);
  border-radius: 8px;
  font-size: 27px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.testimonial-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 9px 12px;
  color: var(--brand-dark);
  background: rgba(140, 191, 65, 0.14);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.testimonial-prev,
.testimonial-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--brand-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: var(--white);
  background: var(--brand);
  transform: translateY(-1px);
}

.testimonials .swiper-pagination {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.testimonials .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(12, 125, 169, 0.24);
  opacity: 1;
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--brand);
}

.cta-strip {
  padding: 0 0 86px;
  background: var(--white);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(7, 88, 117, 0.96), rgba(12, 125, 169, 0.94)),
    var(--brand);
  box-shadow: var(--shadow);
}

.cta-strip h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
}

.cta-strip p {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-strip .eyebrow {
  margin-bottom: 10px;
  color: #d9f5a4;
}

.cta-strip .btn-primary-codein {
  flex: 0 0 auto;
  color: var(--brand-dark);
  background: var(--white);
  border-color: var(--white);
}

.cta-strip .btn-primary-codein:hover {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.contact-panel,
.contact-form {
  padding: 30px;
}

.contact-panel h3 {
  margin-bottom: 24px;
  font-size: 26px;
  font-weight: 800;
}

.contact-method {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-method i {
  color: var(--brand);
  font-size: 24px;
}

.contact-method strong {
  display: block;
  margin-bottom: 3px;
}

.contact-method span,
.contact-method a {
  color: var(--muted);
}

.contact-panel iframe {
  display: block;
  width: 100%;
  height: 260px;
  margin-top: 22px;
  border: 0;
  border-radius: 8px;
}

.contact-form label {
  margin-bottom: 7px;
  font-weight: 800;
  color: var(--ink);
}

.contact-form .form-control {
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
}

.contact-form textarea.form-control {
  min-height: 148px;
  resize: vertical;
}

.contact-form .form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(12, 125, 169, 0.14);
}

.legal-hero {
  position: relative;
  padding: 112px 0 86px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 37, 53, 0.98), rgba(7, 88, 117, 0.94)),
    #102535;
  isolation: isolate;
}

.legal-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
}

.legal-hero .eyebrow {
  color: #d9f5a4;
}

.legal-hero-copy {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 20px);
}

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

.legal-summary {
  display: grid;
  gap: 12px;
  padding: 28px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.legal-summary span,
.legal-summary small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legal-summary span {
  font-size: 12px;
}

.legal-summary strong {
  color: var(--white);
  font-size: 24px;
  line-height: 1.2;
}

.legal-summary a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.legal-summary a:hover {
  color: var(--white);
}

.legal-content {
  overflow: visible;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.legal-toc h2 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 900;
}

.legal-toc nav {
  display: grid;
  gap: 8px;
}

.legal-toc a {
  display: block;
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
}

.legal-toc a:hover {
  color: var(--brand-dark);
  background: rgba(12, 125, 169, 0.08);
}

.legal-document {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.legal-section {
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 116px;
}

.legal-section:last-of-type {
  margin-bottom: 0;
}

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
}

.legal-section h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--brand);
  border-radius: 6px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.legal-section p + p {
  margin-top: 12px;
}

.legal-contact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.legal-contact-band div {
  min-width: 0;
  padding: 20px;
  background: var(--surface);
}

.legal-contact-band span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.legal-contact-band strong,
.legal-contact-band a {
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.captcha-box {
  display: grid;
  grid-template-columns: minmax(120px, auto) minmax(120px, 1fr);
  gap: 10px;
  align-items: center;
}

.captcha-box span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--brand-dark);
  background: rgba(12, 125, 169, 0.1);
  border: 1px solid rgba(12, 125, 169, 0.18);
  border-radius: 6px;
  font-weight: 900;
}

.php-email-form .error-message {
  display: none;
  color: var(--white);
  background: #b42318;
  text-align: left;
  padding: 14px;
  font-weight: 700;
  border-radius: 6px;
}

.php-email-form .sent-message {
  display: none;
  color: var(--white);
  background: #2f7d32;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  border-radius: 6px;
}

.php-email-form .loading {
  display: none;
  color: var(--muted);
  text-align: center;
  padding: 14px;
}

.php-email-form .loading::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

#footer {
  color: rgba(255, 255, 255, 0.78);
  background: #102535;
}

#footer .footer-top {
  padding: 64px 0 44px;
}

#footer p {
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo img {
  width: auto;
  max-height: 68px;
  background: var(--white);
  border-radius: 6px;
  padding: 8px;
}

.footer-unit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-unit span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.footer-unit img {
  width: auto;
  max-height: 42px;
  padding: 5px;
  background: var(--white);
  border-radius: 5px;
}

#footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
}

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

#footer a {
  color: rgba(255, 255, 255, 0.78);
}

#footer a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.social-links a:hover {
  background: var(--brand);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

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

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-item:nth-child(2n) {
    border-right: 0;
  }

  .capability-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 991px) {
  #topbar {
    min-height: 38px;
  }

  .topbar-links {
    gap: 12px;
    font-size: 13px;
  }

  .topbar-links a span {
    display: none;
  }

  #header,
  #header.fixed-top {
    height: 74px;
  }

  #header .logo img {
    max-height: 58px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar.navbar-mobile ul {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 70px;
  }

  .hero-delivery {
    margin: 34px 0 0;
    max-width: none;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-media {
    min-height: 220px;
  }

  .testimonial-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .testimonial-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-summary div {
    align-items: flex-start;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .testimonial-summary div:last-child {
    border-right: 0;
  }

  .capability-band {
    margin-top: 0;
    padding-top: 22px;
    background: var(--surface);
  }

  .cta-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .image-frame::after {
    right: -10px;
    bottom: -10px;
  }

  .scrolled-offset {
    margin-top: 74px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 68px 0;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-metrics div {
    padding-top: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .client-proof {
    grid-template-columns: 1fr;
  }

  .client-proof div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .client-proof div:last-child {
    border-bottom: 0;
  }

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

  .capability-item {
    border-right: 0;
  }

  .capability-item:nth-child(n + 2) {
    border-top: 1px solid var(--line);
  }

  .industry-item {
    min-height: 86px;
    padding: 18px;
  }

  .contact-panel,
  .contact-form {
    padding: 24px;
  }

  .product-card {
    padding: 24px;
  }

  .product-media {
    min-height: 190px;
    padding: 24px;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .testimonial-summary {
    grid-template-columns: 1fr;
  }

  .legal-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .legal-document {
    padding: 26px;
  }

  .legal-section h2 {
    align-items: flex-start;
  }

  .legal-contact-band {
    grid-template-columns: 1fr;
  }

  .testimonial-summary div {
    flex-direction: row;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .testimonial-summary div:last-child {
    border-bottom: 0;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card blockquote {
    font-size: 17px;
  }

  .cta-strip {
    padding-bottom: 68px;
  }

  .cta-strip-inner {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .topbar-links a:nth-child(1) {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .legal-hero {
    padding: 82px 0 68px;
  }

  .industry-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .hero-delivery,
  .service-card,
  .product-card,
  .process-step,
  .why-item,
  .contact-panel,
  .contact-form {
    padding: 22px;
  }

  .product-actions {
    flex-direction: column;
  }

  .testimonial-card-top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .testimonial-card-top > i {
    display: none;
  }

  .testimonial-controls {
    gap: 10px;
  }

  .captcha-box {
    grid-template-columns: 1fr;
  }
}
