:root {
  --blue-900: #0d3f77;
  --blue-800: #14579f;
  --blue-700: #1d6dc2;
  --gold-500: #daa520;
  --gold-400: #f2c14d;
  --red-600: #c62828;
  --white: #ffffff;
  --ink-900: #112138;
  --ink-700: #344560;
  --shadow: 0 12px 36px rgba(11, 48, 89, 0.16);
  --header-height-desktop: 164px;
  --header-height-mobile: 80px;
  --panel-text: #24121a;
  --tile-item-bg: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: #ffffff;
  padding-top: var(--header-height-desktop);
  max-width: 100%;
  overflow-x: hidden;
}

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

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

.page-shell {
  width: min(1540px, calc(100% - 4px));
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#services,
#quote-request,
.service-showcase-card {
  scroll-margin-top: calc(var(--header-height-desktop) + 18px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1200;
  background: linear-gradient(90deg, darkblue 0%, var(--blue-700) 60%, rgb(206, 175, 2) 100%);
  box-shadow: var(--shadow);
}

.top-contact-bar {
  background: white;
  border-bottom: 1px solid rgba(13, 63, 119, 0.12);
}

.top-contact-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.top-contact-inner {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.top-contact-item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 500;
  color: black;
}

.top-contact-item i {
  color: black;
  font-size: 1rem;
}

.top-contact-call {
  justify-self: center;
  color: darkblue;
  font-weight: 700;
  gap: 8px;
}

.top-contact-call a {
  color: darkblue;
}

.top-contact-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.top-quote-btn {
  justify-self: end;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, red, red);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  isolation: isolate;
}

.top-quote-btn::before,
.top-quote-btn::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(29, 109, 194, 0.34);
  border-radius: 14px;
  z-index: -1;
  animation: buttonWave 2.6s ease-out infinite;
}

.top-quote-btn::after {
  animation-delay: 1.3s;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
  color: white;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand-name {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  margin-left: auto;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.94rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.brand:hover,
.brand:focus-visible,
.top-quote-btn:hover,
.top-quote-btn:focus-visible {
  opacity: 0.88;
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex: 0 0 auto;
}

.hamburger {
  width: 38px;
  height: 34px;
  padding: 0;
  border: 1.5px solid #fff;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1;
  background: transparent;
  color: white;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 10, 18, 0.56);
  z-index: 1250;
  display: none;
}

.menu-overlay.active {
  display: block;
}

.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 430px);
  height: 100vh;
  background: darkblue;
  color: var(--panel-text);
  z-index: 1300;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.34s ease;
  padding: 18px 16px 22px;
  overflow-y: auto;
}

.slide-menu.active {
  transform: translateX(0);
}

.slide-menu-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.close-menu {
  width: 34px;
  height: 34px;
  border: 1px solid black;
  border-radius: 6px;
  background: #fff;
  color: black;
  font-size: 1rem;
  cursor: pointer;
}

.slide-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.slide-column {
  background: greenyellow;
  border: 1px solid #e7c9d2;
  border-radius: 10px;
  padding: 10px;
}

.slide-column h3 {
  margin: 0 0 12px;
  color: white;
  font-size: 1rem;
  background: rgb(68, 65, 65);
  border-radius: 8px;
  padding: 8px 10px;
}

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

.slide-column li a {
  color: #24121a;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--tile-item-bg);
  border: 1px solid #ecd4db;
  border-radius: 8px;
  padding: 10px;
}

.hero-section {
  margin-top: 18px;
}

.kondo-intro-section {
  margin-top: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #d4a419 0%, #c8920d 100%);
  box-shadow: 0 14px 34px rgba(91, 60, 5, 0.16);
}

.kondo-intro-inner {
  padding: 34px 30px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kondo-intro-title {
  margin: 0 0 20px;
  display: inline-block;
  padding: 12px 18px;
  color: #ffffff;
  background: linear-gradient(90deg, gold 0%, #8ea2bb 42%, blue 100%);
  border-radius: 14px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: perspective(900px) translateZ(0) scale(0.9);
  opacity: 0;
}

.kondo-intro-title.is-visible {
  animation: kondoBounceForward 0.9s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

.kondo-intro-copy {
  margin: 0 0 16px;
  width: min(100%, 1040px);
  max-width: none;
  min-height: 3.6em;
  color: #111111;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.75;
  font-weight: 600;
  text-align: left;
}

.kondo-intro-copy:last-child {
  margin-bottom: 0;
}

.kondo-intro-copy-caret {
  display: inline-block;
  margin-left: 1px;
  color: #111111;
  animation: heroCopyCaretBlink 0.8s step-end infinite;
}

.services-showcase-section {
  margin-top: 22px;
}

.services-showcase-inner {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 246, 0.88));
  border: 2px solid #1f9d42;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(20, 44, 35, 0.1);
}

.services-showcase-title {
  margin: 0 auto 22px;
  display: block;
  width: fit-content;
  padding: 12px 18px;
  background: rgba(18, 18, 18, 0.82);
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(-32px);
}

.services-showcase-title.is-visible {
  animation: servicesTitleDrop 0.8s ease forwards;
}

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

.service-showcase-card {
  background: rgba(20, 20, 20, 0.82);
  color: #ffffff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
  opacity: 0;
  transform: translateX(-44px);
}

.service-showcase-card.is-visible {
  animation: serviceCardSlideIn 0.8s ease forwards;
}

.service-showcase-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  margin-bottom: 14px;
}

.service-showcase-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s ease;
}

.service-showcase-slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(255, 255, 255, 0.04);
}

.service-showcase-card h3 {
  margin: 0 0 10px;
  color:aqua;
  font-size: 1rem;
  line-height: 1.4;
}

.service-showcase-copy {
  margin: 0;
  min-height: 6.2em;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.68;
}

.service-showcase-copy .service-copy-caret {
  display: inline-block;
  margin-left: 1px;
  color: #ffffff;
  animation: heroCopyCaretBlink 0.8s step-end infinite;
}

.equipment-type-section {
  margin-top: 22px;
  border-radius: 24px;
  background: red;
  box-shadow: 0 14px 34px rgba(198, 40, 40, 0.22);
  overflow: hidden;
}

.equipment-type-inner {
  min-height: 150px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.equipment-type-text {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4.6vw, 4rem);
  line-height: 1.12;
  font-weight: 800;
}

.equipment-type-caret {
  display: inline-block;
  margin-left: 4px;
  animation: heroCopyCaretBlink 0.8s step-end infinite;
}

.quick-facts-section {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 247, 0.88));
  border: 2px solid #000000;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(20, 24, 28, 0.1);
  opacity: 0;
  transform: translateX(-48px);
}

.quick-facts-section.is-visible {
  animation: quickFactsSlideIn 0.85s ease forwards;
}

.quick-facts-inner {
  padding: 28px;
}

.quick-facts-title {
  margin: 0 auto 22px;
  display: block;
  width: fit-content;
  padding: 12px 18px;
  background: #111111;
  color: #ffffff;
  border-radius: 10px;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateY(30px);
  opacity: 0;
}

.quick-facts-title.is-visible {
  animation: quickFactsTitleRise 0.8s ease forwards;
}

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

.quick-fact-card {
  background: linear-gradient(135deg, #111111 0%, #323232 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.quick-fact-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f0c65c;
  font-size: 1.3rem;
}

.quick-fact-card h3 {
  margin: 16px 0 10px;
  color: #f0c65c;
  font-size: 1.02rem;
  line-height: 1.45;
}

.quick-fact-figure {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
}

.partners-section {
  margin-top: 22px;
  background: linear-gradient(180deg, #d5d5d5 0%, #c2c2c2 100%);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(25, 25, 25, 0.08);
}

.partners-inner {
  padding: 28px;
}

.partners-title {
  margin: 0 auto 22px;
  display: block;
  width: fit-content;
  padding: 12px 18px;
  background: #f0c65c;
  color: #111111;
  border-radius: 10px;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.partners-marquee {
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  transform: translateX(0);
}

.partner-logo-card {
  width: 180px;
  min-width: 180px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.team-section {
  margin-top: 22px;
  background: linear-gradient(180deg, #d1d1d1 0%, #bfbfbf 100%);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(30, 30, 30, 0.08);
}

.team-inner {
  padding: 28px;
}

.team-title {
  margin: 0 auto 22px;
  display: block;
  width: fit-content;
  padding: 12px 18px;
  background: darkblue;
  color: #ffffff;
  border-radius: 10px;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.team-title.is-visible {
  animation: teamTitleWiggle 0.9s ease;
}

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

.team-card {
  background: rgba(255, 255, 255, 0.64);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateX(-42px) scale(0.94);
}

.team-card.is-visible {
  animation: teamCardBounceIn 0.85s ease forwards;
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5.6;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-name {
  margin: 14px 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #163f86;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.35;
  min-height: 2.7em;
}

.team-post {
  margin: 0;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, red 0%, red 100%);
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.45;
  min-height: 3.1em;
  width: 100%;
  font-weight: 700;
}

.team-name .team-copy-caret,
.team-post .team-copy-caret {
  display: inline-block;
  margin-left: 1px;
  color: currentColor;
  animation: heroCopyCaretBlink 0.8s step-end infinite;
}

.gallery-section {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 245, 244, 0.9));
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(20, 24, 28, 0.08);
}

.gallery-inner {
  padding: 28px;
}

.gallery-title {
  margin: 0 auto 22px;
  display: block;
  width: fit-content;
  padding: 12px 18px;
  background: #13803c;
  color: #ffffff;
  border-radius: 10px;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateX(-34px) rotateY(90deg);
  transform-origin: left center;
  opacity: 0;
}

.gallery-title.is-visible {
  animation: galleryTitleReveal 0.95s ease forwards;
}

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

.gallery-card {
  border: 0;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: rgba(240, 244, 243, 0.9);
  border-radius: 12px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 20, 0.82);
  backdrop-filter: blur(3px);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-lightbox[hidden] {
  display: none !important;
}

.gallery-lightbox-frame {
  width: min(100%, 1100px);
  max-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
}

.gallery-lightbox-frame img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.work-section {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 245, 0.9));
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(20, 24, 28, 0.08);
}

.work-inner {
  padding: 28px;
}

.work-title {
  margin: 0 auto 22px;
  display: block;
  width: fit-content;
  padding: 12px 18px;
  background: #ffffff;
  color: #111111;
  border-radius: 10px;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateY(-30px);
  opacity: 0;
}

.work-title.is-visible {
  animation: workTitleDrop 0.85s ease forwards;
}

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

.work-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateX(-40px);
}

.work-card.is-visible {
  animation: workCardSlideIn 0.8s ease forwards;
}

.work-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(235, 240, 239, 0.95);
  aspect-ratio: 4 / 3;
}

.work-gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s ease;
}

.work-gallery-slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.work-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.work-gallery-control:hover {
  background: rgba(17, 17, 17, 0.9);
}

.work-gallery-prev {
  left: 12px;
}

.work-gallery-next {
  right: 12px;
}

.work-card-title {
  margin: 14px 4px 2px;
  text-align: center;
  color: #16324f;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
}

.choose-us-section {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 245, 244, 0.92));
  border: 2px solid #111111;
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(20, 24, 28, 0.08);
}

.choose-us-layout {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.choose-us-copy {
  min-width: 0;
}

.choose-us-title {
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
}

.choose-us-slider {
  position: relative;
  min-height: 295px;
}

.choose-us-slide {
  position: absolute;
  inset: 0;
  padding: 24px 24px 22px;
  border-radius: 22px;
  background: linear-gradient(90deg, #111111 0%, #12356e 52%, #215cc0 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(14, 42, 82, 0.16);
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.choose-us-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.clients-section {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.96), rgba(47, 47, 47, 0.94));
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(20, 24, 28, 0.12);
}

.clients-inner {
  padding: 28px;
}

.clients-title {
  margin: 0 auto 18px;
  display: block;
  width: fit-content;
  padding: 12px 18px;
  background: greenyellow;
  color: #111111;
  border-radius: 10px;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  transform: translateX(-40px);
  opacity: 0;
}

.clients-title.is-visible {
  animation: clientsTitleSlideIn 0.85s ease forwards;
}

.clients-intro {
  margin: 0 auto 20px;
  max-width: 860px;
  min-height: 1.8em;
  color: #ffffff;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.8;
}

.clients-marquee {
  overflow: hidden;
  position: relative;
  padding: 14px 0;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.client-name-pill {
  flex: 0 0 auto;
  min-width: 230px;
  padding: 18px 22px;
  border-radius: 16px;
  background: #ffffff;
  color: #111111;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
  transform: scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.client-name-pill.is-active {
  transform: scale(1.08);
  box-shadow: 0 16px 30px rgba(173, 255, 47, 0.18);
}

.testimonials-section {
  margin-top: 22px;
  border: 2px solid gray;
  border-radius: 28px;
  background: linear-gradient(180deg, #f9f9f4 0%, #efefe9 100%);
  box-shadow: 0 18px 38px rgba(44, 52, 61, 0.1);
}

.testimonials-inner {
  padding: 34px 28px 38px;
}

.testimonials-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(90deg,darkblue 0%, gold 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonials-scroller {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 6px 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(29, 109, 194, 0.45) rgba(160, 169, 178, 0.22);
}

.testimonials-scroller::-webkit-scrollbar {
  height: 10px;
}

.testimonials-scroller::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(160, 169, 178, 0.22);
}

.testimonials-scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(29, 109, 194, 0.75), rgba(111, 120, 130, 0.85));
}

.testimonial-card {
  flex: 0 0 min(100%, 360px);
  min-height: 240px;
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #707782 0%, #565c65 100%);
  color: #ffffff;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  box-shadow: 0 16px 28px rgba(59, 66, 74, 0.2);
}

.testimonial-name,
.testimonial-role,
.testimonial-comment {
  margin: 0;
}

.testimonial-name {
  font-size: 1.2rem;
  font-weight: 800;
}

.testimonial-role {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.testimonial-comment {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #ffffff;
  border-radius: 14px;
  font-size: 1rem;
  line-height: 1.78;
  color: #ffffff;
}

@keyframes clientsTitleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.choose-us-slide-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.choose-us-slide h3 {
  margin: 0 0 12px;
  text-align: center;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.15;
  font-weight: 800;
}

.choose-us-slide p {
  margin: 0;
  text-align: center;
  font-size: 1.03rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.96);
}

.choose-us-orbit-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.innovation-orbit {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
}

.innovation-orbit-ring {
  position: absolute;
  inset: 11%;
  border: 4px solid #0e8a3a;
  border-radius: 50%;
  animation: orbitRingPulse 3.6s ease-in-out infinite;
}

.innovation-orbit-core {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  background: #0b8b36;
  color: #ffffff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 38px rgba(11, 139, 54, 0.24);
}

.innovation-orbit-core.is-switching {
  animation: orbitCoreSwap 0.55s ease;
}

.innovation-orbit-core-icon {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.innovation-orbit-core strong {
  max-width: 100%;
  font-size: clamp(1.9rem, 3.3vw, 2.7rem);
  line-height: 0.95;
}

.innovation-orbit-core span {
  max-width: 100%;
  font-size: clamp(0.92rem, 1.35vw, 1.2rem);
  line-height: 1.12;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.innovation-orbit-node {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0b8b36;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(11, 139, 54, 0.22);
  animation: orbitNodeFloat 2.8s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.innovation-orbit-node.is-active {
  background: #14a844;
  box-shadow: 0 0 0 6px rgba(20, 168, 68, 0.16), 0 12px 28px rgba(11, 139, 54, 0.3);
}

.innovation-node-top {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.innovation-node-top-right {
  top: 19%;
  right: 9%;
  animation-delay: 0.2s;
}

.innovation-node-right {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  animation-delay: 0.45s;
}

.innovation-node-bottom {
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.65s;
}

.innovation-node-bottom-left {
  bottom: 19%;
  left: 9%;
  animation-delay: 0.9s;
}

.innovation-node-left {
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  animation-delay: 1.1s;
}

@keyframes orbitNodeFloat {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -7px;
  }
}

@keyframes orbitRingPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.88;
  }
}

@keyframes orbitCoreSwap {
  0% {
    transform: scale(0.95);
    opacity: 0.72;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes workTitleDrop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes workCardSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.medical-hero-desktop {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.18);
}

.medical-hero-bg-slider {
  position: absolute;
  inset: 0;
}

.medical-hero-bg-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.1s ease;
}

.medical-hero-bg-slide-1 {
  background-image: url("../Kondo-photos/Al-baraka-medical-complex-photo-1.jpg");
}

.medical-hero-bg-slide-2 {
  background-image: url("../Kondo-photos/gallery-photo-4.jpg");
}

.medical-hero-bg-slide-3 {
  background-image: url("../Kondo-photos/medical-consumables-1.jpg");
}

.medical-hero-bg-slide-4 {
  background-image: url("../Kondo-photos/pharmaceutical-products-1.jpg");
}

.medical-hero-bg-slide-5 {
  background-image: url("../Kondo-photos/pharmaceutical-products-3.jpeg");
}

.medical-hero-bg-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.72), rgba(14, 42, 117, 0.7));
}

.medical-hero-bg-slide.is-active {
  opacity: 1;
  animation: medicalHeroZoom 8s ease-in-out forwards;
}

.medical-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at bottom center, rgba(255, 255, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.12));
}

.medical-hero-welcome {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: min(100%, 560px);
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.medical-hero-welcome-text {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  font-family: serif;
  letter-spacing: 0.04em;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 8px 22px rgba(15, 23, 42, 0.24);
  animation: desktopWelcomeBlink 2.4s linear infinite;
}

.medical-hero-bottom-banner {
  position: absolute;
  left: 62%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  width: min(100%, 860px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 0 14px;
}

.medical-hero-ready-btn,
.medical-hero-quote-btn {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.medical-hero-ready-btn {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.822), cyan);
  box-shadow: 0 10px 22px rgba(34, 196, 240, 0.24);
  animation: readyPulse 2s ease-in-out infinite;
  color: black;
}

.medical-hero-care-banner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  background: linear-gradient(90deg, darkblue 0%, darkblue 50%, darkblue 100%);
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(15, 23, 42, 0.22);
  animation: careBannerBlink 1s linear infinite;
}

.medical-hero-care-banner p {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1;
}

.medical-hero-quote-btn {
  position: relative;
  background: linear-gradient(135deg, #1b65d8, #123f98);
  isolation: isolate;
}

.medical-hero-quote-btn::before,
.medical-hero-quote-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(85, 215, 255, 0.45);
  border-radius: 18px;
  z-index: -1;
  animation: quoteWave 2s ease-out infinite;
}

.medical-hero-quote-btn::after {
  animation-delay: 1s;
}

.medical-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 500px;
  padding: 22px 28px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(420px, 0.84fr);
  gap: 24px;
  align-items: center;
}

.medical-hero-copy {
  color: #ffffff;
  max-width: 700px;
}

.medical-hero-copy-intro,
.medical-hero-checks-wrap,
.medical-hero-actions-wrap {
  display: block;
}

.medical-hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(74, 89, 121, 0.36);
  border: 1px solid rgba(85, 62, 62, 0.18);
  font-size: 0.95rem;
  font-weight: 700;
}

.medical-hero-title {
  margin: 0;
  max-width: 15ch;
  min-height: 2.2em;
  font-size: clamp(2.25rem, 3.9vw, 4.1rem);
  line-height: 0.98;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  text-shadow: 0 5px 18px rgba(15, 23, 42, 0.28);
}

.medical-hero-title .hero-copy-title-text {
  color: #ffffff;
}

.medical-hero-title .hero-copy-title-primary {
  color: #ffffff;
}

.medical-hero-title .hero-copy-title-accent {
  font-family: "Baloo 2", "Trebuchet MS", sans-serif;
  color: #55d7ff;
  line-height: 0.8;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-weight: 800;
  text-shadow:
    -1px 0 0 rgba(255, 255, 255, 0.98),
    1px 0 0 rgba(255, 255, 255, 0.98),
    0 -1px 0 rgba(255, 255, 255, 0.98),
    0 1px 0 rgba(255, 255, 255, 0.98),
    -1px -1px 0 rgba(255, 255, 255, 0.98),
    1px -1px 0 rgba(255, 255, 255, 0.98),
    -1px 1px 0 rgba(255, 255, 255, 0.98),
    1px 1px 0 rgba(255, 255, 255, 0.98),
    0 6px 16px rgba(15, 23, 42, 0.18);
}

.medical-hero-title .hero-copy-caret,
.medical-hero-text .hero-copy-caret {
  display: inline-block;
  margin-left: 2px;
  color: #7de7ff;
  animation: heroCopyCaretBlink 0.8s step-end infinite;
}

.medical-hero-text {
  margin: 18px 0 0;
  max-width: 44ch;
  min-height: 4.9em;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgb(255, 255, 255);
}

.medical-hero-checks {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  max-width: 640px;
}

.medical-hero-checks p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.98rem;
  font-weight: 600;
}

.medical-hero-checks i {
  color: #46d5ff;
  font-size: 1.2rem;
}

.medical-hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.medical-hero-btn,
.medical-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-weight: 700;
}

.medical-hero-btn {
  background: linear-gradient(135deg,  #1aa7e8, #1aa7e8);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(34, 197, 244, 0.24);
}

.medical-hero-link {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.medical-hero-panel {
  position: relative;
  padding: 38px 28px 24px;
  border-radius: 36px;
  background: rgba(156, 174, 219, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 40px rgba(17, 24, 39, 0.2);
  backdrop-filter: blur(14px);
}

.medical-hero-years {
  position: absolute;
  top: -30px;
  right: 102px;
  margin: 0;
  color: white;
  font-size: 0.95rem;
}

.medical-hero-years-badge {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: linear-gradient(180deg, #30d5ef, #22b8e7);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.95rem;
  font-weight: 800;
  box-shadow: 0 18px 28px rgba(34, 197, 244, 0.24);
  animation: yearsBadgeFloat 2.6s ease-in-out infinite;
}

.medical-hero-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.medical-hero-card {
  padding: 18px 14px 15px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(230, 238, 255, 0.44), rgba(193, 217, 255, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  color: #ffffff;
}

.medical-hero-card h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.medical-hero-card h2 i {
  color: #7de7ff;
  font-size: 1rem;
  flex: 0 0 auto;
}

.medical-hero-card h2 span {
  display: inline-block;
}

.medical-hero-mobile-flow {
  display: none;
}

.medical-hero-serving {
  margin: 18px 0 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 500;
}

.medical-hero-bottomline {
  margin: 0;
  text-align: center;
  color: cyan;
  font-size: 1rem;
  font-weight: 800;
}

.mobile-hero-shell {
  display: none;
}

.hero-carousel-wrap {
  position: relative;
  --hero-animation-duration: 5000ms;
}

.hero-welcome-banner {
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}

.hero-welcome-banner .welcome-text {
  width: min(100%, 520px);
  padding: 0 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-text {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  font-family: serif;
  color: #ffffff;
  letter-spacing: 0.04em;
  transition: color 0.35s ease;
}

.welcome-text.is-animating {
  animation: welcomeBlink var(--hero-animation-duration) linear;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid gray;
  background: gray;
  box-shadow: 0 10px 28px rgba(54, 21, 32, 0.12);
}

.carousel-track {
  background-color: gray;
  display: flex;
  height: 100%;
  transition: transform 0.65s ease;
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  margin: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: gray;
  margin: 0 auto;
}

.carousel-mobile {
  display: block;
  aspect-ratio: 1 / 1;
}

.carousel-dots {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: flex;
  gap: 7px;
  z-index: 2;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.carousel-dot.active {
  background: #ffffff;
}

.hero-statement-bar {
  position: relative;
  margin-top: 14px;
  margin-inline: auto;
  min-height: 72px;
  width: min(920px, 100%);
  padding: 14px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 19, 32, 0.95), rgba(26, 45, 72, 0.88));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
  perspective: 1200px;
}

.hero-statement-text {
  margin: 0;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28em;
  flex-wrap: wrap;
  padding: 14px 18px;
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transform: rotateX(90deg);
  transform-origin: center center;
  opacity: 0;
  backface-visibility: hidden;
}

.hero-statement-text.is-incoming {
  animation: statementFlipIn 0.9s ease both;
}

.hero-statement-text.is-outgoing {
  animation: statementFlipOut 0.9s ease both;
}

.hero-statement-text.is-active {
  opacity: 1;
  transform: rotateX(0deg);
}

.hero-statement-word.word-white {
  color: #ffffff;
}

.hero-statement-word.word-blue {
  color: #68ff77;
}

.hero-statement-word.word-yellow {
  color: yellow;
}

@keyframes welcomeBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  15% {
    opacity: 1;
    transform: scale(0.98);
  }

  30% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes medicalHeroZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes desktopWelcomeBlink {
  0%,
  100% {
    color: #ffffff;
    opacity: 1;
  }

  33% {
    color: white;
    opacity: 0.5;
  }

  66% {
    color:white;
    opacity: 1;
  }
}

@keyframes heroCopyCaretBlink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes kondoBounceForward {
  0% {
    opacity: 0;
    transform: perspective(900px) translateZ(-80px) scale(0.86);
  }

  55% {
    opacity: 1;
    transform: perspective(900px) translateZ(36px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }
}

@keyframes servicesTitleDrop {
  0% {
    opacity: 0;
    transform: translateY(-32px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceCardSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-44px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes quickFactsSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-48px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes quickFactsTitleRise {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes teamTitleWiggle {
  0% {
    transform: rotate(0deg) scale(1);
  }

  20% {
    transform: rotate(-3deg) scale(1.02);
  }

  40% {
    transform: rotate(3deg) scale(1.03);
  }

  60% {
    transform: rotate(-2deg) scale(1.02);
  }

  80% {
    transform: rotate(2deg) scale(1.01);
  }

  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes teamCardBounceIn {
  0% {
    opacity: 0;
    transform: translateX(-42px) scale(0.94);
  }

  65% {
    opacity: 1;
    transform: translateX(12px) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes galleryTitleReveal {
  0% {
    opacity: 0;
    transform: translateX(-34px) rotateY(90deg);
  }

  60% {
    opacity: 1;
    transform: translateX(8px) rotateY(-10deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

@keyframes careBannerBlink {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    box-shadow:
      inset 0 0 0 5px rgba(255, 255, 255, 0.16),
      0 10px 24px rgba(15, 23, 42, 0.22);
  }

  50% {
    opacity: 0.38;
    filter: brightness(0.62) saturate(0.78);
    box-shadow:
      inset 0 0 0 5px rgba(255, 255, 255, 0.06),
      0 6px 14px rgba(15, 23, 42, 0.12);
  }
}

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

  50% {
    transform: translateY(3px);
  }
}

@keyframes readyPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes quoteWave {
  0% {
    transform: scale(0.98);
    opacity: 0.72;
  }

  70% {
    transform: scale(1.14);
    opacity: 0;
  }

  100% {
    transform: scale(1.14);
    opacity: 0;
  }
}

@keyframes floatingWave {
  0% {
    transform: scale(0.96);
    opacity: 0.72;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

@keyframes statementFlipIn {
  0% {
    transform: rotateX(90deg);
    opacity: 0;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

@keyframes statementFlipOut {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }

  100% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

.site-footer {
  background: linear-gradient(90deg,darkblue 0%, darkblue 60%, darkblue 100%);
  color: #ffffff;
  margin-top: 34px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 18px 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.connect-block h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.social-links img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 24px;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: #f6d16b;
}

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

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
}

.footer-col a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 1px;
}

.office-location {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
}

.office-location i {
  color: #ffffff;
  margin-top: 3px;
}

.office-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.93rem;
  line-height: 1.7;
}

.footer-credits {
  background: gray;
  color: white;
  text-align: center;
  padding: 10px 14px;
}

.footer-credits p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-designer {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 6px 14px;
}

.footer-designer p {
  margin: 0;
  font-size: 0.86rem;
}

.floating-contact-icons {
  position: fixed;
  inset: auto 0 24px 0;
  pointer-events: none;
  z-index: 1395;
}

.floating-contact-link {
  position: fixed;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.2);
  pointer-events: auto;
}

.floating-contact-link::before,
.floating-contact-link::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(85, 215, 255, 0.48);
  border-radius: 50%;
  animation: floatingWave 2.2s ease-out infinite;
}

.floating-contact-link::after {
  animation-delay: 1.1s;
}

.floating-contact-link-whatsapp {
  left: 20px;
}

.floating-contact-link-phone {
  right: 84px;
}

.floating-contact-link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: none;
  z-index: 1400;
}

.back-to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.back-to-top.show {
  display: block;
}

.benjamin-popup-shell {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 1505;
  width: min(100% - 24px, 360px);
}

.benjamin-popup-window {
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 26px 26px 12px 26px;
  background:
    radial-gradient(circle at top right, rgba(48, 213, 239, 0.2), transparent 28%),
    linear-gradient(165deg, rgba(9, 22, 43, 0.96), rgba(14, 66, 117, 0.94));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(8, 24, 46, 0.28);
  overflow: hidden;
}

.benjamin-popup-window::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  background: #123d73;
  transform: rotate(45deg);
  border-radius: 4px;
}

.benjamin-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.benjamin-popup-flag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #7de7ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benjamin-popup-window h2 {
  margin: 16px 0 10px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.benjamin-popup-window p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.7;
}

.benjamin-popup-talk-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  width: 100%;
  border-radius: 16px;
  background: linear-gradient(135deg, #14b866, #0f8f50);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 14px 24px rgba(20, 184, 102, 0.2);
}

@keyframes buttonWave {
  0% {
    transform: scale(0.98);
    opacity: 0.75;
  }

  70% {
    transform: scale(1.12);
    opacity: 0;
  }

  100% {
    transform: scale(1.12);
    opacity: 0;
  }
}

.location-quote-section {
  margin-top: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #6b717a 0%, #4f545c 100%);
  box-shadow: 0 18px 40px rgba(39, 45, 52, 0.2);
}

.location-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
  padding: 32px 28px;
}

.location-panel,
.quote-panel {
  min-width: 0;
  padding: 24px;
  border-radius: 24px;
  background: darkblue;
  border: 1px solid white;
}

.location-title,
.quote-panel-title {
  margin: 0 0 20px;
  min-height: 1.2em;
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.location-map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  min-height: 420px;
}

.location-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.quote-request-form {
  display: grid;
  gap: 16px;
}

.quote-field {
  display: grid;
  gap: 8px;
}

.quote-field span {
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #1e252e;
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

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

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  border-color: rgba(29, 109, 194, 0.92);
  box-shadow: 0 0 0 4px rgba(29, 109, 194, 0.14);
  transform: translateY(-1px);
}

.quote-submit-btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  justify-self: start;
  min-width: 180px;
  background: linear-gradient(135deg, #16a34a 0%, #10833b 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.quote-submit-btn:hover,
.quote-submit-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(22, 163, 74, 0.28);
  filter: brightness(1.03);
}

.faq-section {
  margin-top: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(29, 109, 194, 0.18), transparent 34%),
    linear-gradient(135deg, #eef4f9 0%, #dfe7ee 100%);
  box-shadow: 0 18px 40px rgba(43, 55, 67, 0.12);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  padding: 34px 28px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height-mobile) + 18px);
}

.faq-eyebrow {
  margin: 0 0 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: darkblue;
}

.faq-title {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.08;
  color: #1a2a3b;
}

.faq-copy {
  margin: 0;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5969;
  font-weight: 500;
}

.faq-stack {
  display: grid;
  gap: 16px;
}

.faq-card {
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(29, 109, 194, 0.12);
  box-shadow: 0 12px 24px rgba(58, 68, 79, 0.08);
  overflow: hidden;
  transform: translateX(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-card:nth-child(2) {
  transform: translateX(14px);
}

.faq-card:nth-child(3) {
  transform: translateX(28px);
}

.faq-card:nth-child(4) {
  transform: translateX(8px);
}

.faq-card.is-open {
  border-color: rgba(29, 109, 194, 0.28);
  box-shadow: 0 18px 34px rgba(38, 62, 88, 0.14);
}

.faq-trigger {
  width: 100%;
  border: 0;
  padding: 20px 22px;
  background: transparent;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.faq-number {
  min-width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1d6dc2, #7d8b99);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 18px rgba(29, 109, 194, 0.16);
}

.faq-question {
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 700;
  color: #213246;
}

.faq-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(29, 109, 194, 0.08);
  color: var(--blue-700);
  font-size: 1rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-card.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue-700);
  color: #ffffff;
}

.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 22px 94px;
  color: #374452;
  font-size: 0.98rem;
  line-height: 1.8;
  font-weight: 500;
}

.kondo-intro-section {
  margin-top: 22px;
}

.kondo-intro-inner {
  padding: 34px 28px 36px;
  border-radius: 28px;
  background: linear-gradient(180deg, #14579f 0%, #0f172a 52%, #8b6a16 100%);
  box-shadow: 0 18px 36px rgba(13, 45, 92, 0.14);
}

.kondo-intro-title {
  margin: 0 0 18px;
  min-height: 1.2em;
  color: #ffffff;
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
}

.kondo-intro-copy {
  width: min(100%, 980px);
  margin: 0 auto 16px;
  min-height: 4.8em;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

.kondo-intro-copy:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 0.88rem;
  }
}

@media (max-width: 980px) {
  body {
    padding-top: var(--header-height-mobile);
  }

  .top-contact-bar {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-actions {
    display: flex;
  }

  .header-inner {
    min-height: 72px;
  }

  .page-shell {
    width: min(100%, calc(100% - 24px));
  }

  .medical-hero-desktop {
    min-height: 0;
    padding: 18px 16px 16px;
  }

  .medical-hero-welcome,
  .medical-hero-grid,
  .medical-hero-bottom-banner-desktop {
    display: none;
  }

  .medical-hero-mobile-flow {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
  }

  .medical-hero-mobile-welcome {
    display: flex;
    justify-content: center;
  }

  .medical-hero-mobile-copy-intro {
    display: grid;
    justify-items: center;
  }

  .medical-hero-mobile-copy-intro .medical-hero-badge {
    margin: 0;
    justify-content: center;
    text-align: center;
  }

  .medical-hero-mobile-copy-intro .medical-hero-title {
    max-width: none;
    min-height: 2.2em;
    text-align: center;
    width: 100%;
  }

  .medical-hero-mobile-copy-intro .medical-hero-text {
    max-width: none;
    min-height: 4.9em;
    margin: 12px 0 0;
    text-align: center;
    width: 100%;
  }

  .medical-hero-panel-mobile {
    width: 100%;
    margin: 0;
  }

  .medical-hero-checks-mobile {
    margin-top: 0;
    max-width: none;
  }

  .medical-hero-bottom-banner-mobile {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  .medical-hero-actions-mobile {
    margin-top: 0;
    justify-content: center;
  }

  .services-showcase-inner {
    padding: 22px 18px;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .quick-facts-inner {
    padding: 22px 18px;
  }

  .quick-facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .team-inner {
    padding: 22px 18px;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .gallery-inner {
    padding: 22px 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .work-inner {
    padding: 22px 18px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .choose-us-layout {
    padding: 22px 18px;
    grid-template-columns: 1fr;
  }

  .clients-inner {
    padding: 22px 18px;
  }

  .choose-us-slider {
    min-height: 280px;
  }

  .innovation-orbit {
    width: min(100%, 420px);
  }

  .partners-inner {
    padding: 22px 18px;
  }

  .partner-logo-card {
    width: 160px;
    min-width: 160px;
    height: 96px;
  }

  .footer-inner {
    padding: 22px 25px 18px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
  }

  .connect-block {
    width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .benjamin-popup-shell {
    right: 12px;
    bottom: 82px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .faq-card:nth-child(2),
  .faq-card:nth-child(3),
  .faq-card:nth-child(4) {
    transform: none;
  }

  .footer-col ul {
    padding-left: 10px;
  }
}

@media (max-width: 640px) {
  #services,
  #quote-request,
  .service-showcase-card {
    scroll-margin-top: calc(var(--header-height-mobile) + 18px);
  }

  .header-inner {
    gap: 8px;
    padding: 8px 12px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .mobile-actions {
    margin-left: 0;
  }

  .hero-section {
    margin-top: 14px;
  }

  .medical-hero-desktop {
    padding: 14px 12px 12px;
    border-radius: 22px;
  }

  .medical-hero-welcome-text {
    font-size: clamp(2.3rem, 10vw, 4.2rem);
  }

  .medical-hero-badge {
    padding: 8px 14px;
    font-size: 0.91rem;
  }

  .medical-hero-title {
    font-size: clamp(2.25rem, 9vw, 4.1rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .medical-hero-title .hero-copy-title-accent {
    white-space: normal;
  }

  .medical-hero-mobile-copy-intro .medical-hero-text {
    font-size: 1.05rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .medical-hero-panel-mobile {
    padding: 48px 14px 18px;
    border-radius: 26px;
  }

  .medical-hero-panel-mobile .medical-hero-years {
    top: -14px;
    right: 84px;
    font-size: 0.92rem;
  }

  .medical-hero-panel-mobile .medical-hero-years-badge {
    top: -14px;
    right: 8px;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    font-size: 1.7rem;
  }

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

  .medical-hero-card {
    padding: 16px 12px 14px;
    border-radius: 20px;
  }

  .medical-hero-card h2 {
    font-size: 1rem;
  }

  .medical-hero-serving,
  .medical-hero-bottomline {
    font-size: 1rem;
  }

  .medical-hero-checks-mobile {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: start;
    width: 100%;
  }

  .medical-hero-checks-mobile p {
    justify-content: flex-start;
    font-size: 0.98rem;
    text-align: left;
    width: 100%;
  }

  .medical-hero-bottom-banner-mobile {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
  }

  .medical-hero-bottom-banner-mobile .medical-hero-care-banner {
    grid-column: 1 / -1;
    order: 1;
  }

  .medical-hero-bottom-banner-mobile .medical-hero-ready-btn {
    order: 2;
  }

  .medical-hero-bottom-banner-mobile .medical-hero-quote-btn {
    order: 3;
  }

  .medical-hero-ready-btn,
  .medical-hero-quote-btn {
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.74rem;
    border-radius: 10px;
  }

  .medical-hero-care-banner {
    min-height: 42px;
    border-radius: 10px;
  }

  .medical-hero-care-banner p {
    font-size: clamp(0.88rem, 3.6vw, 1.1rem);
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .medical-hero-actions-mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .medical-hero-btn,
  .medical-hero-link {
    min-height: 54px;
    width: 100%;
    padding: 0 18px;
  }

  .kondo-intro-inner {
    padding: 26px 20px 28px;
  }

  .kondo-intro-title {
    margin-bottom: 16px;
  }

  .kondo-intro-copy {
    width: 100%;
    min-height: 0;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .services-showcase-title {
    margin-bottom: 18px;
    padding: 10px 14px;
  }

  .services-showcase-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase-card {
    padding: 12px;
  }

  .service-showcase-copy {
    min-height: 0;
    font-size: 0.92rem;
  }

  .equipment-type-section {
    border-radius: 18px;
  }

  .equipment-type-inner {
    min-height: 112px;
    padding: 24px 16px;
  }

  .equipment-type-text {
    font-size: 1.65rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .quick-facts-title {
    margin-bottom: 18px;
    padding: 10px 14px;
  }

  .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .quick-fact-card {
    min-height: 0;
    padding: 16px 14px;
  }

  .quick-fact-card h3 {
    margin: 14px 0 10px;
  }

  .team-title {
    margin-bottom: 18px;
    padding: 10px 14px;
  }

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

  .team-card {
    padding: 12px;
  }

  .team-name {
    min-height: 0;
    font-size: 0.98rem;
  }

  .team-post {
    min-height: 0;
    font-size: 0.9rem;
  }

  .gallery-title {
    margin-bottom: 18px;
    padding: 10px 14px;
  }

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

  .gallery-card {
    padding: 12px;
  }

  .gallery-card img {
    height: 220px;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .gallery-lightbox-frame {
    padding: 12px;
    border-radius: 14px;
  }

  .work-title {
    margin-bottom: 18px;
    padding: 10px 14px;
  }

  .work-card {
    padding: 12px;
  }

  .work-gallery-control {
    width: 36px;
    height: 36px;
  }

  .choose-us-layout {
    padding: 22px 14px;
    gap: 18px;
  }

  .choose-us-title {
    margin-bottom: 14px;
    font-size: 1.8rem;
  }

  .clients-title {
    margin-bottom: 14px;
    padding: 10px 14px;
  }

  .clients-intro {
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .testimonials-inner {
    padding: 24px 16px 28px;
  }

  .testimonials-title {
    margin-bottom: 18px;
    font-size: 1.7rem;
  }

  .testimonials-scroller {
    gap: 16px;
    padding-bottom: 12px;
  }

  .testimonial-card {
    flex-basis: calc(100% - 18px);
    min-height: 220px;
    padding: 20px 18px;
  }

  .testimonial-name {
    font-size: 1.08rem;
  }

  .testimonial-role,
  .testimonial-comment {
    font-size: 0.95rem;
  }

  .location-quote-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 16px;
  }

  .location-panel,
  .quote-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .location-title,
  .quote-panel-title {
    margin-bottom: 16px;
    font-size: 1.55rem;
  }

  .location-map-frame,
  .location-map-frame iframe {
    min-height: 300px;
  }

  .faq-inner {
    gap: 20px;
    padding: 24px 16px 28px;
  }

  .faq-eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
  }

  .faq-title {
    font-size: 1.55rem;
  }

  .faq-copy {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .faq-trigger {
    padding: 16px 14px;
    gap: 12px;
    grid-template-columns: auto 1fr auto;
  }

  .faq-number {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 0.84rem;
  }

  .faq-question {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .faq-icon {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .faq-panel p {
    padding: 0 14px 16px 68px;
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .quote-submit-btn {
    width: 100%;
    justify-self: stretch;
  }

  .client-name-pill {
    min-width: 190px;
    padding: 16px 18px;
    font-size: 0.96rem;
  }

  .choose-us-slider {
    min-height: 360px;
  }

  .choose-us-slide {
    padding: 18px 16px;
  }

  .choose-us-slide-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
    font-size: 1.5rem;
  }

  .choose-us-slide h3 {
    font-size: 1.22rem;
  }

  .choose-us-slide p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .innovation-orbit {
    width: min(100%, 320px);
  }

  .innovation-orbit-ring {
    inset: 12%;
    border-width: 3px;
  }

  .innovation-orbit-core {
    inset: 23%;
    padding: 12px;
  }

  .innovation-orbit-core-icon {
    margin-bottom: 6px;
    font-size: 1.45rem;
  }

  .innovation-orbit-core strong {
    font-size: 1.7rem;
    line-height: 0.95;
  }

  .innovation-orbit-core span {
    font-size: 0.84rem;
    line-height: 1.12;
  }

  .innovation-orbit-node {
    width: 50px;
    height: 50px;
    font-size: 1.15rem;
  }

  .partners-title {
    margin-bottom: 18px;
    padding: 10px 14px;
  }

  .partner-logo-card {
    width: 140px;
    min-width: 140px;
    height: 84px;
  }

  .hero-statement-bar {
    margin-top: 12px;
    min-height: 64px;
    width: 100%;
    padding: 12px 14px;
  }

  .hero-statement-text {
    font-size: 0.9rem;
    padding: 12px 14px;
  }

  .hero-welcome-banner {
    margin-bottom: 12px;
  }

  .hero-welcome-banner .welcome-text {
    width: 100%;
    padding: 10px 14px;
  }

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

  .footer-col {
    width: min(100%, 340px);
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    right: 12px;
    bottom: 12px;
  }

  .floating-contact-link {
    width: 50px;
    height: 50px;
    bottom: 58px;
  }

  .floating-contact-link-whatsapp {
    left: 12px;
  }

  .floating-contact-link-phone {
    right: 12px;
  }

  .floating-contact-link img {
    width: 26px;
    height: 26px;
  }

  .benjamin-popup-shell {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 92px;
  }

  .benjamin-popup-window {
    padding: 18px 16px 16px;
    border-radius: 22px 22px 12px 22px;
  }

  .benjamin-popup-window h2 {
    font-size: 1.1rem;
  }

  .benjamin-popup-window p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .footer-col a {
    font-size: 0.85rem;
  }

  .footer-credits p {
    font-size: 0.75rem;
  }
}
