html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --future-navbar-space: 80px;
  --brand-dark: #083f57;
  --brand-orange: #f28a22;
  --text-light: rgba(255, 255, 255, 0.96);
  --text-soft: rgba(255, 255, 255, 0.88);
  --overlay-left: rgba(4, 29, 48, 0.72);
  --overlay-mid: rgba(7, 48, 76, 0.46);
  --overlay-right: rgba(7, 48, 76, 0.16);
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: none;
  transition: none;
  z-index: 1;
  filter: brightness(0.68) saturate(0.92);
}

.hero-bg-layer.is-visible {
  opacity: 1;
  transform: none;
}

.hero-bg-layer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 1.2s ease;
  z-index: 1;
  filter: brightness(0.68) saturate(0.92);
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: min(100%, 1800px);
  min-height: 100vh;
  margin: 0 auto;
  padding: calc(clamp(70px, 8vh, 120px) + var(--future-navbar-space))
           clamp(28px, 6vw, 110px)
           clamp(80px, 10vh, 120px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content-box {
  width: min(100%, 880px);
  max-width: 880px;
  margin-right: auto;
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-content-box.fade-out {
  opacity: 1;
  transform: none;
}

.hero-title {
  max-width: 880px;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-light);
}

.hero-title .highlight {
  color: var(--brand-orange);
  font-weight: 500;
}

.hero-subtitle {
  max-width: 1100px;
  margin-top: 24px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  font-weight: 400;
  color: var(--text-soft);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-btn {
  min-width: 260px !important;
  height: 55px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.hero-btn:hover {
  transform: translateY(-1px) !important;
  opacity: 0.98 !important;
}

.hero-btn-primary {
  background: var(--brand-orange) !important;
  color: #fff !important;
}

.hero-btn-secondary {
  background: #fff !important;
  color: #111 !important;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

.hero-trust-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  appearance: none;
}

.hero-wrapper {
  touch-action: pan-y;
}

.hero-wrapper.is-dragging-active {
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.95);
}

.hero-dot.active {
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  border: 5px solid #fff;
}

@media (min-width: 1700px) {
  .hero-inner {
    padding-left: 120px;
    padding-right: 120px;
  }

  .hero-content-box {
    max-width: 920px;
  }
}

@media (max-width: 1200px) {
  .hero-inner {
    padding: calc(60px + var(--future-navbar-space)) 24px 90px 34px;
  }

  .hero-btn {
    min-width: 250px;
    height: 58px;
    font-size: 17px;
  }
}

@media (max-width: 1100px) {
  .hero-wrapper,
  .hero-inner {
    min-height: 100vh;
  }

  .hero-inner {
    min-height: 100vh;
    padding: calc(64px + var(--future-navbar-space)) 32px 90px 32px;
    align-items: center;
  }

  .hero-content-box {
    min-height: 470px;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-buttons {
    gap: 14px;
  }

  .hero-btn {
    min-width: 240px;
    height: 54px;
    font-size: 16px;
  }

  .hero-trust-row {
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .hero-wrapper,
  .hero-inner {
    min-height: 100vh;
  }

  .hero-inner {
    padding: calc(44px + var(--future-navbar-space)) 20px 82px 20px;
  }

  .hero-content-box {
    min-height: 420px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    min-width: unset;
  }

  .hero-trust-item {
    font-size: 15px;
  }

  .hero-dots {
    bottom: 18px;
  }
}

.compliance-showcase-section {
  background: #ffffff;
  padding: 28px 0 54px;
  position: relative;
  z-index: 5;
}

.compliance-showcase-container {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 22px;
}

/* trusted row */
.trusted-brands-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
  margin-bottom: 42px;
  width: 100%;
}

.trusted-line {
  width: 78px;
  height: 1px;
  border-top: 1px dashed #bfbfbf;
  transform: translateY(1px);
}

.trusted-copy {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  white-space: nowrap;
}

.trusted-copy span {
  color: #2f80ff;
  font-weight: 700;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.trusted-brands-row,
.trusted-brands-row * {
  text-align: left;
}

/* heading row */
.compliance-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
  width: 100%;
}

.heading-line {
  width: 330px;
  max-width: 24vw;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    rgba(239, 143, 42, 0.18) 0%,
    #ef8f2a 18%,
    #ef8f2a 82%,
    rgba(239, 143, 42, 0.18) 100%
  );
}

.heading-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ef8f2a;
  flex-shrink: 0;
}

.compliance-heading-row h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #101010;
  white-space: nowrap;
}

/* card grid */
.compliance-cards-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  justify-items: center;
  padding-left: clamp(28px, 4vw, 110px);
  padding-right: clamp(28px, 4vw, 110px);
  width: 100%;
}

.compliance-cards-grid-svg {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
  align-items: start;
  justify-items: center;
  width: 100%;
}

.compliance-svg-card {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* responsive */
@media (max-width: 1200px) {
  .compliance-cards-grid-svg {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px 2px;
  }
  .heading-line {
    width: 220px;
    max-width: 20vw;
  }
}

@media (max-width: 768px) {
  .compliance-cards-grid-svg {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 1px;
  }

  .compliance-svg-card {
    width: 140px;
  }
  .compliance-heading-row {
    gap: 8px;
    margin-bottom: 24px;
  }

  .compliance-heading-row h2 {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }

  .heading-line {
    width: 90px;
    max-width: none;
  }

  .heading-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .compliance-cards-grid-svg {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .compliance-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 28px;
  }

  .heading-line {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .trusted-brands-row {
    gap: 14px;
    margin-bottom: 30px;
  }

  .trusted-copy {
    font-size: 16px;
    text-align: center;
    white-space: normal;
  }

  .trusted-line {
    display: none;
  }

  .trusted-logos {
    justify-content: center;
    gap: 20px;
  }

  .trusted-logos img {
    height: 24px;
  }

  .compliance-heading-row {
    gap: 10px;
    margin-bottom: 24px;
  }

  .compliance-heading-row h2 {
    font-size: 18px;
    white-space: normal;
    text-align: center;
  }

  .heading-line {
    width: 70px;
  }

  .heading-dot {
    width: 7px;
    height: 7px;
  }

  .compliance-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }
}

@media (max-width: 480px) {
  .compliance-showcase-section {
    padding: 24px 0 40px;
  }

  .compliance-cards-grid {
    grid-template-columns: 1fr;
  }
}

.who-we-are-section {
  background: #ffffff;
  padding: 26px 0 34px;
  padding-left: clamp(28px, 4vw, 110px);
  padding-right: clamp(28px, 4vw, 110px);
}

.who-we-are-container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 50px;
}

.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.who-left-col,
.who-right-col {
  min-width: 0;
}

.who-eyebrow {
  margin-bottom: 14px;
  color: #f28a22;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.20em;
  line-height: 1;
}

.who-title {
  margin: 0;
  max-width: 720px;
  color: #1d1d1d;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
}

.who-title span {
  color: #f28a22;
}

.who-left-copy {
  margin: 22px 0 0;
  max-width: 760px;
  color: #666;
  font-size: 20px;
  line-height: 1.7;
}

.who-top-images {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-bottom: 26px;
}

.who-top-image {
  overflow: hidden;
  border-radius: 28px;
  background: #ececec;
  height: 260px;
}

.who-top-image-left {
  width: 260px;
}

.who-top-image-right {
  width: 100%;
}

.who-top-image img,
.who-third-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-third-image-card {
  margin-top: 24px;
  width: 100%;
  max-width: 860px;
  height: 360px;
  overflow: hidden;
  border-radius: 26px;
  background: #ececec;
}

.who-right-copy {
  max-width: 900px;
  margin-left: auto;
}

.who-right-copy p {
  margin: 0 0 24px;
  color: #707070;
  font-size: 20px;
  line-height: 1.72;
}

.who-right-copy p:last-child {
  margin-bottom: 0;
}

.who-services-ribbon {
  margin-top: 28px;
  background: #083f57;
  border-radius: 34px;
  padding: 30px 26px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.who-service-item {
  min-width: 0;
  padding: 0 24px;
}

.who-service-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.who-service-item p {
  margin: 0;
  min-height: 130px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.65;
}

.who-service-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 20px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

.who-service-link span {
  font-size: 16px !important;
  transform: translateY(-1px) !important;
}

.who-service-link {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 15px !important;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease !important;
}

.who-service-link span {
  font-size: 16px !important;
  transform: translateY(-1px) translateX(0) !important;
  transition: transform 0.25s ease !important;
}

.who-service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #f28a22);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.who-service-link:hover {
  color: #f8fbff;
  transform: translateY(-2px);
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.18);
}

.who-service-link:hover span {
  transform: translateY(-1px) translateX(6px) rotate(-8deg);
}

.who-service-link:hover::after {
  width: 100%;
}

.who-service-link:active {
  transform: translateY(0);
}

.who-service-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 6px;
  border-radius: 6px;
}

/* laptop */
@media (max-width: 1400px) {
  .who-we-are-container {
    padding: 0 28px;
  }

  .who-title {
    font-size: 36px;
  }

  .who-left-copy,
  .who-right-copy p {
    font-size: 14px;
    text-align: justify;
  }

  .who-top-images {
    grid-template-columns: 210px 1fr;
    max-width: 760px;
  }

  .who-top-image {
    height: 210px;
  }

  .who-top-image-left {
    width: 210px;
  }

  .who-third-image-card {
    max-width: 720px;
    height: 300px;
  }

  .who-service-item p {
    min-height: 110px;
    font-size: 14px;
  }

  .who-service-link {
    font-size: 16px;
  }
}

/* tablet */
@media (max-width: 1024px) {
  .who-we-are-container {
    padding: 0 22px;
  }

  .who-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .who-title,
  .who-left-copy,
  .who-third-image-card,
  .who-top-images,
  .who-right-copy {
    max-width: 100%;
    margin-left: 0;
  }

  .who-top-images {
    grid-template-columns: 240px 1fr;
  }

  .who-top-image {
    height: 220px;
  }

  .who-top-image-left {
    width: 240px;
  }

  .who-third-image-card {
    height: 300px;
  }

  .who-services-ribbon {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .who-service-item {
    padding: 18px 6px;
  }

  .who-service-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .who-service-item p {
    min-height: auto;
  }
}

/* mobile */
@media (max-width: 640px) {
  .who-we-are-container {
    padding: 0 16px;
  }

  .who-eyebrow {
    font-size: 13px;
  }

  .who-title {
    font-size: 30px;
  }

  .who-left-copy,
  .who-right-copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .who-top-images {
    grid-template-columns: 1fr;
  }

  .who-top-image,
  .who-top-image-left,
  .who-top-image-right {
    width: 100%;
    height: 220px;
  }

  .who-third-image-card {
    height: 230px;
  }

  .who-service-item p {
    font-size: 14px;
  }

  .who-service-link {
    font-size: 16px;
  }
}

.challenge-solution-section {
  background: #ffffff;
  padding: 26px 0 34px;
}

.challenge-solution-container {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 6vw, 110px);
  box-sizing: border-box;
}

/* heading */
.challenge-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
  width: 100%;
}

.challenge-heading-line {
  width: 260px;
  max-width: 18vw;
  height: 1px;
  border-radius: 999px;
}

.challenge-heading-line.left {
  background: linear-gradient(
    to left,
    #ef8f2a 0%,
    #ef8f2a 72%,
    rgba(239, 143, 42, 0.16) 100%
  );
}

.challenge-heading-line.right {
  background: linear-gradient(
    to right,
    #ef8f2a 0%,
    #ef8f2a 72%,
    rgba(239, 143, 42, 0.16) 100%
  );
}

.challenge-heading-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef8f2a;
  flex-shrink: 0;
}

.challenge-heading-row h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #141414;
  white-space: nowrap;
}

.challenge-heading-row h2 span {
  color: #f28a22;
}

/* stage */
.challenge-solution-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.challenge-column,
.solution-column {
  display: grid;
  gap: 16px;
}

/* cards */
.challenge-card,
.solution-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 18px 18px 16px;
  min-height: 108px;
  box-shadow: 0 8px 22px rgba(10, 24, 39, 0.04);
  transition:
    transform 0.28s ease !important,
    box-shadow 0.28s ease !important,
    border-color 0.28s ease !important,
    background-color 0.28s ease !important;
}

.challenge-card:hover,
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(10, 24, 39, 0.10);
  border-color: rgba(242, 138, 34, 0.22);
  background: #fffdfb;
}

.challenge-svg-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  margin-top: 2px;
  flex-shrink: 0;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.challenge-card:hover .challenge-svg-icon,
.solution-card:hover .challenge-svg-icon {
  transform: scale(1.08) rotate(-3deg) !important;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08)) !important;
}

.challenge-card-content h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #1c1c1c;
  transition: color 0.28s ease;
}

.challenge-card-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  transition: color 0.28s ease;
}

.challenge-card:hover .challenge-card-content h3,
.solution-card:hover .challenge-card-content h3 {
  color: #f28a22;
}

.challenge-card:hover .challenge-card-content p,
.solution-card:hover .challenge-card-content p {
  color: #575757;
}

/* VS badge */
.vs-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  font-family: "Georgia", "Times New Roman", serif;
  box-shadow:
    0 8px 24px rgba(13, 24, 38, 0.08),
    0 0 0 8px #ffffff;
  z-index: 3;
}

.vs-badge::before,
.vs-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 17px;
  height: 36px;
  background: #ffffff;
  transform: translateY(-50%);
  z-index: -1;
}

.vs-badge::before {
  left: -12px;
  border-radius: 28px 0 0 28px;
}

.vs-badge::after {
  right: -12px;
  border-radius: 0 28px 28px 0;
}

/* responsive */
@media (max-width: 1200px) {
  .challenge-heading-line {
    width: 180px;
    max-width: 14vw;
  }
}

@media (max-width: 900px) {
  .challenge-solution-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .vs-badge {
    position: static;
    transform: none;
    margin: 4px auto 8px;
    order: 2;
    width: 72px;
    height: 72px;
  }

  .challenge-column {
    order: 1;
  }

  .solution-column {
    order: 3;
  }
}

@media (max-width: 768px) {
  .challenge-solution-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .challenge-heading-row {
    gap: 8px;
    margin-bottom: 20px;
  }

  .challenge-heading-line {
    width: 80px;
    max-width: none;
  }

  .challenge-heading-row h2 {
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  .challenge-card,
  .solution-card {
    grid-template-columns: 38px 1fr;
    padding: 16px 14px;
    min-height: auto;
  }

  .challenge-svg-icon {
    width: 30px;
    height: 30px;
  }

  .challenge-card-content h3 {
    font-size: 14px;
  }

  .challenge-card-content p {
    font-size: 12px;
  }
}

.audit-process {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 7vw, 98px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 52%, #fafafa 100%);
}

.audit-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.18;
}

.audit-process__container {
  position: relative;
  z-index: 1;
  width: min(100%, 1420px);
  margin: 0 auto;
  padding: 0 clamp(26px, 5vw, 88px);
  box-sizing: border-box;
}

.audit-process__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1vw, 18px);
  margin-bottom: clamp(44px, 5.5vw, 74px);
}

.audit-process__line {
  flex: 1;
  max-width: 360px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(239,124,34,0.08) 0%,
    rgba(239,124,34,0.65) 50%,
    rgba(239,124,34,0.08) 100%
  );
}

.audit-process__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ff9c41 0%, #ef7c22 100%);
  box-shadow: 0 0 0 7px rgba(239,124,34,0.08);
}

.audit-process__heading h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #18202a;
  text-align: center;
  white-space: nowrap;
}

.audit-process__desktop {
  display: block;
  max-width: 1320px;
  margin: 0 auto;
  padding-inline: clamp(14px, 2vw, 30px);
  box-sizing: border-box;
}

.audit-process__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.35vw, 22px);
  position: relative;
}

.audit-process__row--top {
  margin-bottom: clamp(46px, 5vw, 66px);
}

.audit-process__row--bottom {
  transform: translateX(-30px);
}

.audit-card {
  position: relative;
  width: clamp(252px, 20vw, 310px);
  min-height: 232px;
  padding: 36px 28px 28px;
  box-sizing: border-box;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 16px 38px rgba(15, 23, 42, 0.06),
    0 6px 16px rgba(15, 23, 42, 0.03);
  text-align: left;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.audit-card::before {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(239,124,34,0.85), rgba(0,95,141,0.88));
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.audit-card:hover,
.audit-card:focus-visible {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.96);
  border-color: rgba(0,95,141,0.16);
  box-shadow:
    0 26px 52px rgba(15, 23, 42, 0.10),
    0 10px 22px rgba(0,95,141,0.07);
}

.audit-card:hover::before,
.audit-card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.audit-card__badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 30%, #005f8d 0%, #004f77 56%, #003d5a 100%);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  box-shadow:
    0 22px 34px rgba(0, 61, 90, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.16);
  z-index: 2;
}

.audit-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease;
}

.audit-card__icon img,
.audit-card__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.audit-card:hover .audit-card__icon,
.audit-card:focus-visible .audit-card__icon {
  transform: scale(1.08);
}

.audit-card__title {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.25;
  font-weight: 800;
  color: #15181d;
  transition: color 0.3s ease;
}

.audit-card:hover .audit-card__title,
.audit-card:focus-visible .audit-card__title {
  color: #0a4d69;
}

.audit-card__desc {
  margin: 0;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.62;
  color: #5e6873;
  font-weight: 500;
}

/* redesigned inline arrows */
.audit-process__arrow {
  position: relative;
  width: clamp(66px, 5.2vw, 88px);
  min-width: clamp(66px, 5.2vw, 88px);
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audit-process__arrow::before {
  content: "";
  position: absolute;
  inset: 50% 6px auto 6px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 157, 77, 0.14) 0%, rgba(77,150,255,0) 70%);
  pointer-events: none;
}

.audit-process__arrow svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(77,150,255,0.18));
}

/* turn arrow between 3 and 4 */
.audit-process__turn-slot {
  width: 138px;
  min-width: 138px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-left: 4px;
  padding-top: 0;
}

.audit-process__turn-svg {
  width: 126px;
  height: 210px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: -92px;
}

.audit-process__turn-svg svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 4px 10px rgba(239, 127, 34, 0.18));
}

@media (max-width: 1280px) {
  .audit-process__turn-slot {
    width: 124px;
    min-width: 124px;
  }

  .audit-process__turn-svg {
    width: 112px;
    height: 188px;
    margin-top: -82px;
  }
}

.audit-process__mobile {
  display: none;
}

.audit-process__mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
  padding-inline: 4px;
}

.audit-process__mobile .audit-card {
  width: 100%;
  min-height: 208px;
}

@media (max-width: 1280px) {
  .audit-process__container {
    padding: 0 clamp(22px, 4vw, 56px);
  }

  .audit-process__row--bottom {
    transform: translateX(-18px);
  }

  .audit-card {
    width: clamp(228px, 24vw, 290px);
    min-height: 214px;
    padding: 32px 22px 24px;
  }

  .audit-card__badge {
    width: 84px;
    height: 84px;
    top: -34px;
    font-size: 20px;
  }
}

@media (max-width: 1080px) {
  .audit-process__heading {
    margin-bottom: 42px;
  }

  .audit-process__heading h2 {
    white-space: normal;
    font-size: clamp(24px, 4.6vw, 34px);
  }

  .audit-process__line {
    max-width: 140px;
  }

  .audit-process__desktop {
    display: none;
  }

  .audit-process__mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .audit-process {
    padding: 42px 0 58px;
  }

  .audit-process__container {
    padding: 0 22px;
  }

  .audit-process__heading {
    gap: 10px;
    margin-bottom: 34px;
  }

  .audit-process__line {
    max-width: 72px;
  }

  .audit-process__dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 5px rgba(239,124,34,0.08);
  }

  .audit-process__mobile-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-inline: 2px;
  }

  .audit-process__mobile .audit-card {
    min-height: 188px;
    padding: 28px 18px 20px;
  }

  .audit-card__badge {
    width: 72px;
    height: 72px;
    top: -30px;
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .audit-process__container {
    padding: 0 16px;
  }

  .audit-process__mobile-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audit-process__mobile .audit-card {
    min-height: auto;
  }

  .audit-process__heading h2 {
    font-size: 22px;
    line-height: 1.18;
  }

  .audit-process__line {
    max-width: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audit-card,
  .audit-card::before,
  .audit-card__icon,
  .audit-card__title {
    transition: none;
  }
}

.cc-cta-strip {
  position: relative;
  overflow: hidden;
  width: calc(100% - clamp(32px, 6vw, 96px));
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(26px, 3vw, 36px) clamp(24px, 3.5vw, 42px);
  border-radius: 20px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 12% 85%, rgba(35, 131, 255, 0.14) 0%, transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(25, 122, 243, 0.12) 0%, transparent 24%),
    linear-gradient(135deg, #032949 0%, #053a63 44%, #043458 72%, #022742 100%);
}

.cc-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(96, 160, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 160, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.8;
  pointer-events: none;
}

.cc-cta-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0)),
    radial-gradient(circle at center, rgba(0, 128, 255, 0.05), transparent 46%);
  pointer-events: none;
}

.cc-cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cc-cta-strip__content {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  padding-right: clamp(0px, 1vw, 12px);
}

.cc-cta-strip__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-left: clamp(0px, 1vw, 8px);
}

.cc-cta-strip__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.2;
  font-weight: 800;
}

.cc-cta-strip__title {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cc-cta-strip__text {
  margin: 0;
  max-width: 860px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  font-weight: 400;
}

.cc-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cc-cta-strip__btn--primary {
  background: linear-gradient(135deg, #ff9338 0%, #ff7725 100%);
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(255, 119, 37, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.cc-cta-strip__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(255, 119, 37, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.cc-cta-strip__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cc-cta-strip__btn--secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.10);
}

.cc-cta-strip__btn:focus-visible {
  outline: 3px solid rgba(255,255,255,0.24);
  outline-offset: 4px;
}

.cc-cta-strip__wave {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.cc-cta-strip__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cc-cta-strip__wave path {
  fill: none;
  stroke: rgba(85, 196, 255, 0.16);
  stroke-width: 2;
  stroke-linecap: round;
}

.cc-cta-strip__wave--left {
  left: 0;
  top: 0;
  width: 300px;
  height: 110px;
  opacity: 0.22;
}

.cc-cta-strip__wave--right {
  right: 0;
  bottom: 0;
  width: 390px;
  height: 128px;
  opacity: 0.22;
}

@media (max-width: 1100px) {
  .cc-cta-strip {
    width: calc(100% - 40px);
    padding: 24px 22px;
  }

  .cc-cta-strip__inner {
    gap: 22px;
  }

  .cc-cta-strip__text {
    max-width: 100%;
  }

  .cc-cta-strip__wave--left {
    width: 220px;
    height: 90px;
    opacity: 0.36;
  }

  .cc-cta-strip__wave--right {
    width: 290px;
    height: 110px;
    opacity: 0.34;
  }
}

@media (max-width: 820px) {
  .cc-cta-strip {
    width: calc(100% - 32px);
    padding: 22px 18px;
    border-radius: 18px;
  }

  .cc-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .cc-cta-strip__content {
    width: 100%;
    padding-right: 0;
  }

  .cc-cta-strip__actions {
    width: 100%;
    justify-content: flex-start;
    padding-left: 0;
  }

  .cc-cta-strip__btn {
    min-width: 168px;
    height: 48px;
    font-size: 15px;
    border-radius: 12px;
  }

  .cc-cta-strip__wave--left {
    width: 180px;
    height: 78px;
    opacity: 0.28;
  }

  .cc-cta-strip__wave--right {
    width: 210px;
    height: 90px;
    opacity: 0.24;
  }
}

@media (max-width: 560px) {
  .cc-cta-strip {
    width: calc(100% - 24px);
    padding: 20px 16px;
    border-radius: 16px;
  }

  .cc-cta-strip__eyebrow {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .cc-cta-strip__title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .cc-cta-strip__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .cc-cta-strip__actions {
    width: 100%;
  }

  .cc-cta-strip__btn {
    width: 100%;
    max-width: 220px;
  }

  .cc-cta-strip__wave--left,
  .cc-cta-strip__wave--right {
    display: none;
  }
}

.service-dynamic-section {
  background: linear-gradient(
    to bottom,
    #fafafa 0%,
    #fbfbfb 25%,
    #fdfdfd 50%,
    #ffffff 100%
  );
  padding: 60px 0 30px;
}

.service-dynamic-container {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 6vw, 110px);
  box-sizing: border-box;
}

.service-dynamic-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: start;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.service-dynamic-layout.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.service-dynamic-left,
.service-dynamic-right {
  min-width: 0;
}

.service-eyebrow {
  color: #f28a22;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-main-title {
  margin: 0;
  color: #1b1b1b;
  font-size: clamp(28px, 32px, 42px);
  line-height: 1.16;
  font-weight: 700;
}

.service-main-subheading {
  margin: 10px 0 16px;
  color: #1f1f1f;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-main-copy {
  margin: 18px 0 0;
  max-width: 760px;
  color: #656565;
  font-size: 14px;
  line-height: 1.7;
}

.service-bullet-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.service-bullet-list li {
  margin-bottom: 10px;
  color: #656565;
  font-size: 14px;
  line-height: 1.65;
}

.service-bullet-list li:last-child {
  margin-bottom: 0;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 44px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 6px;
  background: #083f57;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 22px rgba(8, 63, 87, 0.14);
}

.service-cta-btn:hover {
  background: #0a4d6a;
  transform: translateY(-2px);
}

.service-illustration-wrap {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}

.service-illustration-wrap img {
  display: block;
  width: 90%;
  height: auto;
  object-fit: contain;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service-feature-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 18px 16px 16px;
  min-height: 142px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 138, 34, 0.22);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.service-feature-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.service-feature-title {
  margin: 0 0 8px;
  color: #1d1d1d;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.service-feature-text {
  margin: 0;
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1.6;
}

.service-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.service-dot-btn {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #d2d2d2;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}

.service-dot-btn:hover {
  transform: scale(1.15);
  background: #9fb3bf;
}

.service-dot-btn.active {
  width: 28px;
  border-radius: 999px;
  background: #083f57;
}

/* tablet */
@media (max-width: 1100px) {
  .service-dynamic-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
  }

  .service-illustration-wrap {
    max-width: 300px;
    margin-left: auto;
  }

  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-illustration-wrap img {
    width: 100%;
  }
}

/* keep text + image side by side till 768 */
@media (max-width: 768px) {
  .service-dynamic-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-dynamic-layout {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 18px;
    align-items: center;
  }

  .service-main-title {
    font-size: 26px;
  }

  .service-main-copy {
    font-size: 15px;
    line-height: 1.65;
  }

  .service-bullet-list li {
    font-size: 14px;
    line-height: 1.6;
  }

  .service-illustration-wrap {
    max-width: 240px;
  }

  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-feature-card {
    min-height: auto;
  }
}

/* below 768 remove image */
@media (max-width: 767px) {
  .service-dynamic-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-dynamic-right {
    display: none;
  }

  .service-main-title {
    font-size: 24px;
  }

  .service-main-copy {
    font-size: 15px;
  }

  .service-bullet-list li {
    font-size: 14px;
  }

  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* very small phones */
@media (max-width: 480px) {
  .service-dynamic-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-feature-card {
    padding: 14px 12px;
  }

  .service-feature-title {
    font-size: 13px;
  }

  .service-feature-text {
    font-size: 11px;
    line-height: 1.5;
  }
}

.stats-counter-section {
  background: #ffffff;
  padding: 30px 0 34px;
}

.stats-counter-container {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 6vw, 110px);
  box-sizing: border-box;
}

.stats-counter-card {
  background: #083f57;
  border-radius: 22px;
  padding: 22px 26px 20px;
  box-shadow: 0 14px 28px rgba(8, 63, 87, 0.12);
}

.stats-counter-title {
  margin: 0 0 20px;
  color: #ffffff;
  text-align: center;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.stats-counter-item {
  text-align: center;
  padding: 4px 18px 2px;
  position: relative;
}

.stats-counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: rgba(255, 255, 255, 0.22);
}

.stats-counter-value {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stats-counter-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .stats-counter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }

  .stats-counter-item:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .stats-counter-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .stats-counter-card {
    padding: 20px 16px 18px;
    border-radius: 18px;
  }

  .stats-counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
  }

  .stats-counter-item {
    padding: 0 10px;
  }

  .stats-counter-item::after {
    display: none;
  }

  .stats-counter-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .stats-counter-grid {
    grid-template-columns: 1fr;
  }

  .stats-counter-title {
    margin-bottom: 16px;
  }
}

.testimonial-marquee-section {
  background: #ffffff;
  padding: 32px 0 38px;
  overflow: hidden;
}

.testimonial-marquee-container {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 6vw, 110px);
  box-sizing: border-box;
}

.testimonial-heading-wrap {
  max-width: 1100px;
  margin-bottom: 22px;
}

.testimonial-kicker {
  margin: 0 0 6px;
  color: #1d1d1d;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.testimonial-title {
  margin: 0 0 10px;
  color: #1d1d1d;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.testimonial-title span {
  color: #f28a22;
}

.testimonial-subtitle {
  margin: 0;
  max-width: 1100px;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonialFlow 36s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.testimonial-card {
  flex: 0 0 290px;
  width: 290px;
  min-height: 235px;
  background: #ffffff;
  border: 1px solid #d8dde2;
  border-radius: 4px;
  padding: 14px 14px 12px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(242, 138, 34, 0.28);
}

.testimonial-quote {
  color: #083f57;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 6px;
}

.testimonial-card-title {
  margin: 0 0 8px;
  color: #1c1c1c;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

.testimonial-stars {
  color: #083f57;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.testimonial-text {
  margin: 0;
  color: #6f6f6f;
  font-size: 11px;
  line-height: 1.62;
  min-height: 104px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.social-photo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 18px 0 40px;
}

.social-photo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: socialPhotosFlow 35s linear infinite;
}

.social-photo-marquee:hover .social-photo-track {
  animation-play-state: paused;
}

.social-photo-group {
  display: flex;
  gap: 26px;
  flex-shrink: 0;
}

.social-photo-card {
  flex: 0 0 180px;
  width: 180px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}

.social-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes socialPhotosFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * ((180px * 7) + (26px * 6))));
  }
}

@media (max-width: 768px) {
  .social-photo-group {
    gap: 16px;
  }

  .social-photo-card {
    flex: 0 0 120px;
    width: 120px;
    height: 150px;
  }

  @keyframes socialPhotosFlow {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-1 * ((120px * 7) + (16px * 6))));
    }
  }
}


.testimonial-company-icon {
  width: 30px;
  height: 30px;
  border: 2px solid #0b4a67;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b4a67;
  flex-shrink: 0;
  background: #ffffff;
}

.testimonial-company-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.testimonial-company-name {
  color: #1c1c1c;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonial-company-role {
  color: #7b7b7b;
  font-size: 8px;
  line-height: 1.2;
}

@keyframes testimonialFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (max-width: 1100px) {
  .testimonial-kicker {
    font-size: 22px;
  }

  .testimonial-title {
    font-size: 28px;
  }

  .testimonial-card {
    flex-basis: 270px;
    width: 270px;
    min-height: 226px;
  }
}

@media (max-width: 768px) {
  .testimonial-marquee-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-kicker {
    font-size: 20px;
  }

  .testimonial-title {
    font-size: 25px;
  }

  .testimonial-subtitle {
    font-size: 13px;
  }

  .testimonial-card {
    flex-basis: 240px;
    width: 240px;
    min-height: 220px;
    padding: 12px;
  }

  .testimonial-text {
    min-height: 96px;
  }
}

.news-section {
  background: #ffffff 100%;
  padding: 42px 0 54px;
}

.news-section-container {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 6vw, 110px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.news-left-container,
.news-right-container {
  min-width: 0;
}

.news-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.news-header-text {
  min-width: 0;
}

.news-section-title {
  color: #f28a22;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.news-header h2 {
  margin: 0;
  max-width: 720px;
  color: #1d1d1d;
  font-size: clamp(26px, 20px, 40px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 35px;
  padding: 0 28px;
  border-radius: 8px;
  background: #083f57;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(8, 63, 87, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.view-all-btn:hover {
  background: #0a4d6a;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 63, 87, 0.24);
}

.news-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  border-color: rgba(242, 138, 34, 0.24);
}

.news-card-image {
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}

.news-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover img {
  transform: scale(1.03);
}

.news-card-left .news-card-image {
  height: 300px;
}

.news-card-right .news-card-image {
  height: 250px;
}

.news-content {
  padding: 22px 22px 20px;
}

.news-date {
  color: #6f6f6f;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 10px;
}

.news-content h3 {
  margin: 0 0 12px;
  color: #1d1d1d;
  font-size: clamp(18px, 19px, 26px);
  line-height: 1.28;
  font-weight: 700;
}

.news-content p {
  margin: 0;
  color: #666;
  font-size: 13px;
  line-height: 1.72;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #f28a22;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease;
}

.news-read-more span {
  font-size: 15px;
  transition: transform 0.25s ease;
}

.news-read-more:hover {
  color: #d96f06;
  transform: translateX(2px);
}

.news-read-more:hover span {
  transform: translate(3px, -1px);
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* tablet + below */
@media (max-width: 1024px) {
  .news-section-container {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .news-left-container,
  .news-right-container {
    width: 100%;
    max-width: 100%;
  }

  .news-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .news-header-text {
    width: 100%;
  }

  .news-header h2 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.15;
  }

  .view-all-btn {
    align-self: flex-start;
    min-width: 135px;
    height: 54px;
    font-size: 18px;
  }

  .news-card-left .news-card-image,
  .news-card-right .news-card-image {
    height: 260px;
  }

  .news-content {
    padding: 20px 20px 18px;
  }

  .news-content h3 {
    font-size: 26px;
    line-height: 1.3;
  }

  .news-content p {
    font-size: 15px;
    line-height: 1.65;
  }
}

/* mobile */
@media (max-width: 768px) {
  .news-section {
    padding: 32px 0 40px;
  }

  .news-section-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 20px;
  }

  .news-section-title {
    font-size: 12px;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
  }

  .news-header h2 {
    font-size: 28px;
    line-height: 1.14;
  }

  .view-all-btn {
    min-width: 124px;
    height: 48px;
    padding: 0 20px;
    font-size: 16px;
  }

  .news-card {
    border-radius: 16px;
  }

  .news-card-image {
    border-radius: 16px 16px 0 0;
  }

  .news-card-left .news-card-image,
  .news-card-right .news-card-image {
    height: 220px;
  }

  .news-content {
    padding: 18px 16px 16px;
  }

  .news-date {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .news-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .news-content p {
    font-size: 14px;
    line-height: 1.62;
  }

  .news-read-more {
    font-size: 15px;
    margin-top: 14px;
  }
}

/* small phones */
@media (max-width: 480px) {
  .news-section-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-header {
    gap: 14px;
  }

  .news-header h2 {
    font-size: 24px;
  }

  .view-all-btn {
    min-width: 116px;
    height: 44px;
    padding: 0 18px;
    font-size: 15px;
  }

  .news-card-left .news-card-image,
  .news-card-right .news-card-image {
    height: 190px;
  }

  .news-content h3 {
    font-size: 18px;
    line-height: 1.32;
  }

  .news-content p {
    font-size: 13px;
    line-height: 1.58;
  }

  .news-read-more {
    font-size: 14px;
  }
}

.contact-section {
  background: #ffffff;
  padding: 48px 0 0;
}

.contact-container {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 6vw, 110px);
  box-sizing: border-box;
}

.contact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.contact-eyebrow {
  color: #f28a22;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-title {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 24px;
  margin-bottom: 42px;
  align-items: start;
}

.contact-field {
  position: relative;
  min-height: 55px;
  padding-top: 20px;
  border-bottom: 1px solid #dcdcdc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-field:focus-within {
  border-bottom-color: #083f57;
  box-shadow: inset 0 -1px 0 #083f57;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #1d1d1d;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 0 12px;
  font-family: inherit;
  transition: color 0.25s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  color: #083f57;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #4a4a4a;
  opacity: 1;
  transition: color 0.25s ease, transform 0.25s ease;
}

.contact-field input:focus::placeholder,
.contact-field textarea:focus::placeholder {
  color: #7a93a0;
  transform: translateY(-1px);
}

.field-error {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 16px;
  color: #ff4a3d;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  pointer-events: none;
}

.contact-field textarea {
  min-height: 82px;
  resize: none;
}

.contact-field-message,
.contact-field-captcha {
  min-height: 108px;
}

.contact-field-message textarea {
  min-height: 88px;
}

.contact-field-captcha {
  border-bottom: none;
  padding-top: 0;
  display: flex;
  align-items: stretch;
}

.captcha-inner {
  width: 100%;
  min-height: 108px;
  border: 1px dashed #d7dde2;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.captcha-inner:hover {
  border-color: #b9c7d0;
}

.contact-field-captcha:focus-within .captcha-inner {
  border-color: #083f57;
  box-shadow: 0 0 0 3px rgba(8, 63, 87, 0.06);
}

.captcha-inner .g-recaptcha {
  margin: 0 auto;
  transform-origin: center;
}

.contact-form-action {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 182px;
  height: 46px;
  padding: 0 18px;
  border: none;
  border-radius: 12px;
  background: #083f57;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8, 63, 87, 0.14);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn span {
  font-size: 14px;
}

.contact-submit-btn:hover {
  background: #0a4d6a;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(8, 63, 87, 0.2);
}

.contact-flash {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.contact-badge-success {
  background: #e8f7ee;
  color: #1b7c43;
}

.contact-badge-error {
  background: #fdecec;
  color: #c43838;
}

.contact-info-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #efefef;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 34px clamp(28px, 6vw, 110px) 30px;
  background: url("https://www.cybercube.co/public/frontend/wp-content/uploads/2022/homepage/Contact Info background.png") center center / cover no-repeat;
  box-sizing: border-box;
}

.contact-info-item {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.contact-info-item-large h3 {
  margin: 10px 0 0;
  color: #111111;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-info-label {
  color: #1d1d1d;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.contact-info-divider {
  width: 18px;
  height: 2px;
  background: #111111;
  margin: 14px 0 14px;
  border-radius: 999px;
}

.contact-info-link {
  display: inline-block;
  color: #111111;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 14px;
  transition: opacity 0.2s ease;
}

.contact-info-link:hover {
  opacity: 0.7;
}

.contact-info-meta {
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.7;
}

.contact-info-address {
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 26px;
  }

  .contact-info-strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-top {
    flex-direction: column;
  }

  .contact-title {
    font-size: 34px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .contact-field-message,
  .contact-field-captcha {
    min-height: auto;
  }

  .contact-field-captcha {
    margin-top: -4px;
  }

  .captcha-inner {
    min-height: 96px;
    justify-content: center;
  }

  .contact-info-strip {
    grid-template-columns: 1fr;
    padding: 28px 20px 26px;
  }

  .contact-info-item-large h3 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-submit-btn {
    width: 100%;
  }
}

/* --- Marquee & Social Showcase Styles --- */
.social-showcase-section {
  background: #ffffff;
  padding: 34px 0 0;
  overflow: hidden;
}

.social-showcase-container {
  width: min(100%, 1800px);
  margin: 0 auto;
  padding-left: clamp(28px, 6vw, 110px);
  padding-right: clamp(28px, 6vw, 110px);
  box-sizing: border-box;
}

.social-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  width: 100%;
}

.social-heading-line {
  width: 190px;
  max-width: 14vw;
  height: 1px;
  border-radius: 999px;
}

.social-heading-line.left {
  background: linear-gradient(to left, #ef8f2a 0%, #ef8f2a 72%, rgba(239, 143, 42, 0.14) 100%);
}

.social-heading-line.right {
  background: linear-gradient(to right, #ef8f2a 0%, #ef8f2a 72%, rgba(239, 143, 42, 0.14) 100%);
}

.social-heading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef8f2a;
  flex-shrink: 0;
}

.social-heading-row h2 {
  margin: 0;
  color: #36383d;
  font-size: clamp(22px, 2.1vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.social-icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3f4349;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  background: #083f57;
}

.social-icon-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.social-photo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 18px 0 40px;
}

.social-photo-track {
  display: flex;
  width: max-content;
  --loop-distance: 0px;
  animation: socialPhotosFlow 34s linear infinite reverse;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.social-photo-marquee:hover .social-photo-track {
  animation-play-state: paused;
}

.social-photo-group {
  display: flex;
  gap: 26px;
  padding-right: 26px;
}

.social-photo-card {
  position: relative;
  flex: 0 0 180px;
  width: 136px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  background: #ececec;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.14);
}

.social-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-photo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 18px 0 40px;
  visibility: hidden;
}

.social-photo-marquee.is-ready {
  visibility: visible;
}

.social-photo-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  animation: socialPhotosFlow 34s linear infinite reverse;
}

.social-photo-group,
.social-photo-group-clone {
  display: flex;
  gap: 26px;
  flex-shrink: 0;
}

.social-photo-card {
  flex: 0 0 180px;
  width: 180px;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
}

.social-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes socialPhotosFlow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--loop-distance)));
  }
}

.photo-play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #083f57;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.photo-play-icon svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

@keyframes socialPhotosFlow {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--loop-distance))); }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1100px) {
  .social-photo-card {
    width: 120px;
    height: 120px;
    flex-basis: 120px;
  }
}

@media (max-width: 768px) {
  .social-showcase-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .social-heading-line {
    width: 70px;
    max-width: none;
  }

  .social-heading-row h2 {
    font-size: 18px;
  }

  .social-icon-row {
    gap: 10px;
    margin-bottom: 18px;
  }

  .social-icon-link {
    width: 30px;
    height: 30px;
  }

  .social-icon-link svg {
    width: 14px;
    height: 14px;
  }

  .social-photo-group {
    gap: 16px;
    padding-right: 16px;
  }

  .social-photo-card {
    width: 104px;
    height: 104px;
    flex-basis: 104px;
  }
}

.social-cta-image-section {
  background: #ffffff;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

.social-cta-image-link {
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  text-decoration: none;
}

.social-cta-full-image {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   GLOBAL FADE / REVEAL
========================================================= */

html.js-enhanced body {
  overflow-x: hidden;
}

.fade-load,
.fade-section,
.fade-component {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.fade-load.is-visible,
.fade-section.is-visible,
.fade-component.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-delay-1 { transition-delay: 0.08s; }
.fade-delay-2 { transition-delay: 0.16s; }
.fade-delay-3 { transition-delay: 0.24s; }
.fade-delay-4 { transition-delay: 0.32s; }

/* =========================================================
   SERVICE SWIPE / DRAG
========================================================= */

.service-dynamic-section.is-draggable {
  position: relative;
}

.service-dynamic-section,
.service-dynamic-layout,
.service-feature-grid,
.service-slider-dots {
  touch-action: pan-y;
}

.service-dynamic-section.is-dragging-active,
.service-dynamic-layout.is-dragging {
  user-select: none;
  -webkit-user-select: none;
  cursor: grabbing;
}

.service-dynamic-layout.is-dragging {
  transform: scale(0.996);
}

.service-swipe-indicator {
  display: none;
}

@media (max-width: 1024px) {
  .service-swipe-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    color: #6f6f6f;
    font-size: 12px;
    font-weight: 500;
  }

  .service-swipe-indicator svg {
    width: 15px;
    height: 15px;
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-load,
  .fade-section,
  .fade-component,
  .service-dynamic-layout,
  .reveal-up {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.html, .body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

.body {
  position: relative;
}

