:root {
  --accent: #05c4c5;
  --accent-dark: #0a898e;
  --dark: #101010;
  --text: #232323;
  --muted: #676767;
  --line: #d8d8d8;
  --bg: #ffffff;
  --panel: #6b7077;
  --footer-text: #f3f3f3;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  --radius-pill: 150px;
  --container: 1800px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: "Saira Semi Condensed", sans-serif;
}

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

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

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

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

.section {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 156px;
}

.brand {
  display: block;
  width: 290px;
  flex: 0 0 auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex: 1 1 auto;
}

.desktop-nav > a,
.nav-dropdown-toggle {
  position: relative;
  border: 0;
  background: transparent;
  padding: 6px 0 10px;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.desktop-nav > a.is-active::after,
.desktop-nav > a:hover::after,
.nav-dropdown:hover .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
}

.desktop-nav > a.is-active {
  color: var(--accent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.caret {
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-bottom: 0;
  border-left: 5px solid transparent;
  border-top: 7px solid currentColor;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  gap: 1px;
  min-width: 260px;
  padding: 10px 0;
  background: #e9e9e9;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 500;
  background: #e9e9e9;
}

.nav-dropdown-menu a:hover {
  background: var(--accent);
  color: #fff;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-family: "Saira Semi Condensed", sans-serif;
  white-space: nowrap;
}

.header-call {
  min-width: 240px;
  min-height: 60px;
  padding: 18px 36px;
  color: #fff;
  background: var(--accent);
  font-size: 20px;
  font-weight: 500;
}

.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

.mobile-menu[hidden] {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 780px;
  background: url("./assets/live/Banner-scaled.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 0 86px;
  color: #fff;
  text-align: center;
}

.hero h1,
.intro h2,
.services .section-title,
.brands h2,
.why-copy h2,
.process h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Saira Semi Condensed", sans-serif;
  line-height: 1.12;
}

.hero h1 {
  max-width: 1100px;
  font-size: clamp(35px, 5vw, 70px);
  font-weight: 700;
}

.hero h2 {
  margin: 36px 0 22px;
  color: var(--accent);
  font-size: clamp(18px, 2vw, 29px);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 8px;
}

.hero p {
  max-width: 1200px;
  margin: 0;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 54px;
}

.button {
  min-height: 68px;
  padding: 20px 50px;
  border: 2px solid transparent;
  font-size: 20px;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button-primary:hover {
  background: var(--accent-dark);
}

.button-outline {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

.button-outline:hover {
  color: var(--accent);
  background: #fff;
}

.button-outline.white {
  color: #fff;
  border-color: #fff;
}

.button.compact {
  min-height: 60px;
  padding: 16px 34px;
}

.intro {
  padding: 78px 0 64px;
}

.intro-shell {
  max-width: 1140px;
  text-align: center;
}

.intro h2 {
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 700;
  color: #000;
}

.divider {
  width: 100%;
  margin: 38px 0 46px;
  border-top: 1px solid;
}

.divider-dark {
  border-color: #272727;
}

.divider-light {
  border-color: rgba(255, 255, 255, 0.9);
}

.intro-copy {
  display: grid;
  gap: 26px;
}

.intro-copy p,
.brands-copy,
.why-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
}

.services {
  padding: 40px 0 70px;
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--accent-dark);
  font-size: 23px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.section-kicker.lower {
  text-decoration: none;
}

.section-title,
.brands h2,
.process h2 {
  text-align: center;
}

.services .section-title {
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700;
  color: #000;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 20px;
  margin-top: 34px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 26px 30px;
  border: 1px solid #d6dee7;
  text-align: center;
}

.service-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, #a9a9a9 0%, #ffffff 72%);
}

.service-card h3 {
  margin: 26px 0 18px;
  color: #202341;
  font-family: "Saira Semi Condensed", sans-serif;
  font-size: 32px;
  font-weight: 700;
}

.service-card p {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.6;
}

.brands {
  padding: 48px 0 48px;
}

.brands-shell {
  max-width: 1140px;
  text-align: center;
}

.brands h2 {
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 700;
}

.brands-copy {
  max-width: 860px;
  margin: 0 auto;
}

.brand-marquee {
  position: relative;
  margin-top: 46px;
}

.brand-track {
  display: flex;
  gap: 44px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.brand-row {
  display: flex;
  width: max-content;
  flex: 0 0 auto;
  align-items: center;
  gap: 44px;
}

.brand-row img {
  height: 74px;
  width: auto;
  object-fit: contain;
}

.marquee-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #17439d;
  font-size: 18px;
  transform: translateY(-50%);
}

.marquee-prev {
  left: -8px;
}

.marquee-next {
  right: -8px;
}

.why-us {
  padding: 56px 0 72px;
}

.why-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 550px);
  align-items: center;
  gap: 66px;
  max-width: 1140px;
}

.short-divider {
  width: 54px;
  margin: 16px 0 26px;
  border-top: 3px solid #242424;
}

.short-divider.light {
  border-color: #fff;
}

.why-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 500;
}

.why-copy p {
  margin-bottom: 20px;
}

.why-copy .button {
  margin-top: 18px;
}

.why-image-wrap {
  position: relative;
}

.why-image-wrap::before,
.why-image-wrap::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(5, 196, 197, 0.7), rgba(5, 196, 197, 0.2));
}

.why-image-wrap::before {
  top: -22px;
  right: -30px;
  width: 66%;
  height: 56px;
}

.why-image-wrap::after {
  right: -26px;
  bottom: -28px;
  width: 28px;
  height: 140px;
}

.why-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.process {
  padding: 0 0 70px;
}

.process-shell {
  display: flex;
  max-width: 700px;
  flex-direction: column;
  align-items: center;
}

.process h2 {
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: 56px;
  font-weight: 700;
}

.process-list {
  display: grid;
  gap: 20px;
  width: 100%;
}

.process-item {
  display: grid;
  grid-template-columns: 134px minmax(0, 1fr);
  border: 1px solid #d8d8d8;
  background: #fff;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
}

.process-copy {
  padding: 18px 22px;
}

.process-copy h3 {
  margin: 0 0 8px;
  font-size: 34px;
  font-weight: 700;
}

.process-copy p {
  margin: 0;
  font-size: 18px;
}

.process-shell > .button {
  margin-top: 42px;
}

.contact-hero {
  position: relative;
  background: url("./assets/live/Banner-4-scaled.jpg") center center / cover no-repeat;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 70px;
  align-items: center;
  min-height: 600px;
  padding: 76px 0;
}

.contact-copy {
  color: #fff;
}

.contact-copy ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-copy li {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.55;
}

.contact-form {
  padding: 24px 22px 20px;
  border: 1px solid #fff;
  border-radius: 10px;
  background: rgba(112, 112, 112, 0.7);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 17px;
}

.contact-form label span {
  color: #ff4d4f;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  background: rgba(97, 103, 113, 0.95);
  padding: 14px 16px;
  color: #fff;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.form-submit {
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: var(--accent);
  padding: 16px 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--accent-dark);
}

.form-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.hidden-botcheck {
  display: none !important;
}

.map-frame iframe,
.footer-map iframe {
  width: 100%;
  border: 0;
}

.site-footer {
  background: #fff;
}

.footer-map {
  width: min(calc(100% - 84px), var(--container));
  margin: 18px auto 0;
  border-top: 6px solid var(--accent);
}

.footer-map iframe {
  height: 290px;
}

.footer-contact-band {
  background: var(--accent-dark);
  color: var(--footer-text);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 26px 0 28px;
}

.footer-contact-item {
  text-align: center;
}

.footer-icon {
  margin-bottom: 10px;
}

.footer-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.footer-contact-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.footer-contact-item p {
  margin: 0;
  font-family: "Saira Condensed", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
}

.footer-bottom {
  padding: 22px 16px;
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.chat-widget {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 60;
}

.chat-panel {
  display: grid;
  gap: 8px;
  min-width: 170px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-panel a {
  border-radius: 999px;
  background: #f3f6fb;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.chat-toggle {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #4f6cdf;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.chat-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 1240px) {
  .header-call,
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 4px;
    background: var(--accent);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: #cde8e9;
  }

  .mobile-menu {
    display: grid;
    gap: 1px;
    background: #e9e9e9;
  }

  .mobile-menu a {
    padding: 18px 42px;
    background: #efefef;
    font-size: 18px;
    font-weight: 600;
  }

  .mobile-menu a:hover {
    background: var(--accent);
    color: #fff;
  }

  .mobile-menu-call {
    color: #fff;
    background: var(--accent-dark) !important;
  }
}

@media (max-width: 1024px) {
  .container,
  .footer-map {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-shell {
    min-height: 120px;
  }

  .brand {
    width: 238px;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    min-height: 650px;
  }

  .hero-actions,
  .contact-grid,
  .why-shell {
    grid-template-columns: 1fr;
  }

  .why-shell,
  .contact-grid {
    gap: 34px;
  }

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

  .footer-map {
    margin-top: 16px;
  }

  .footer-map iframe {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .container,
  .footer-map {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-shell {
    min-height: 96px;
  }

  .brand {
    width: 210px;
  }

  .hero {
    min-height: 630px;
    background-position: center center;
  }

  .hero-content {
    min-height: 630px;
    padding: 60px 0;
  }

  .hero h2 {
    margin-top: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 510px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 510px;
  }

  .button,
  .header-call {
    width: 100%;
  }

  .intro,
  .services,
  .brands,
  .why-us {
    padding-right: 0;
    padding-left: 0;
  }

  .intro {
    padding-top: 50px;
  }

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

  .service-card {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-row img {
    height: 52px;
  }

  .process h2,
  .brands h2,
  .services .section-title,
  .intro h2,
  .why-copy h2 {
    font-size: 30px;
  }

  .process-item {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .process-copy h3 {
    font-size: 24px;
  }

  .contact-grid {
    min-height: initial;
    padding: 50px 0;
  }

  .contact-copy li {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 16px;
  }

  .footer-map {
    margin-top: 14px;
  }

  .footer-map iframe {
    height: 220px;
  }

  .footer-contact-grid {
    gap: 20px;
    padding: 24px 0;
  }

  .footer-contact-item h3 {
    font-size: 18px;
  }

  .footer-contact-item p {
    font-size: 18px;
  }

  .chat-widget {
    right: 18px;
    bottom: 18px;
  }
}
