@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap");
:root {
  --color-white: #ffffff;
  --color-gray-50: hsl(0, 0%, 98%);
  --color-gray-100: hsl(0, 0%, 94%);
  --color-gray-200: hsl(0, 0%, 86%);
  --color-gray-300: hsl(0, 0%, 72%);
  --color-gray-400: hsl(0, 0%, 52%);
  --color-gray-500: hsl(0, 0%, 35%);
  --color-dark-100: hsl(0, 0%, 20%);
  --color-dark-200: hsl(0, 0%, 14%);
  --color-dark-300: hsl(0, 0%, 10%);
  --color-dark-400: hsl(0, 0%, 7%);
  --color-dark-500: hsl(0, 0%, 5%);
  --color-green-100: hsl(145, 60%, 70%);
  --color-green-200: hsl(145, 60%, 60%);
  --color-green-300: hsl(145, 60%, 50%);
  --color-green-400: hsl(145, 60%, 40%);
  --color-green-500: hsl(145, 60%, 32%);
  --color-red-100: hsl(0, 75%, 70%);
  --color-red-200: hsl(0, 75%, 62%);
  --color-red-300: hsl(0, 75%, 52%);
  --color-red-400: hsl(0, 75%, 45%);
  --color-red-500: hsl(0, 75%, 38%);
  --shadow-small: rgba(0, 0, 0, 0.06) 0px 1px 3px 0px,
     rgba(0, 0, 0, 0.04) 0px 1px 2px 0px;
  --shadow-medium: rgba(0, 0, 0, 0.08) 0px 4px 6px -1px,
     rgba(0, 0, 0, 0.05) 0px 2px 4px -1px;
  --shadow-large: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
     rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  --shadow-extra: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
     rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", ui-sans-serif, sans-serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-dark-300);
  background-color: var(--color-white);
  overflow-x: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red-400) 0%, var(--color-green-400) 100%);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  transition: width 0.08s linear;
}

main,
section {
  overflow: hidden;
}

a,
button {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  border: none;
  outline: none;
  color: inherit;
  background: unset;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: inherit;
  line-height: 1.25;
  text-wrap: balance;
  word-wrap: break-word;
}

p,
li {
  font-family: inherit;
  line-height: 1.5;
  text-wrap: pretty;
  word-wrap: break-word;
}

img,
svg,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  object-fit: cover;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: auto;
}

.section {
  padding-block: 6rem 3rem;
}

.container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.center {
  text-align: center;
  vertical-align: middle;
}

.truncate {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.title-small {
  font-family: inherit;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}
.title-medium {
  font-family: inherit;
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.15;
}
.title-large {
  font-family: inherit;
  font-size: clamp(2.65rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
}

.text-small {
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.5;
}
.text-base {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
.text-medium {
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.5;
}
.text-large {
  font-family: inherit;
  font-size: 1.3rem;
  line-height: 1.5;
}
.text-upper {
  text-transform: uppercase;
}
.text-lower {
  text-transform: lowercase;
}
.text-capital {
  text-transform: capitalize;
}

.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semi {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  column-gap: 0.35rem;
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  border-radius: 3rem;
  transition: all 0.25s ease;
}
@media screen and (max-width: 480px) {
  .btn {
    padding-inline: 1rem;
    font-size: 0.95rem;
  }
}
.btn-primary {
  color: var(--color-white);
  background-color: var(--color-green-400);
  box-shadow: var(--shadow-medium);
}
.btn-primary:hover {
  background-color: var(--color-green-500);
  box-shadow: var(--shadow-large);
}
.btn-neutral {
  color: var(--color-white);
  background-color: var(--color-dark-300);
  box-shadow: var(--shadow-medium);
}
.btn-neutral:hover {
  background-color: var(--color-dark-400);
  box-shadow: var(--shadow-large);
}
.btn-outline {
  color: var(--color-green-400);
  background-color: transparent;
  box-shadow: inset 0 0 0 2px var(--color-green-400);
}
.btn-outline:hover {
  color: var(--color-white);
  background-color: var(--color-green-400);
}
.btn-danger {
  color: var(--color-white);
  background-color: var(--color-red-400);
  box-shadow: var(--shadow-medium);
}
.btn-danger:hover {
  background-color: var(--color-red-500);
}

@media screen and (max-width: 480px) {
  .banner-inner .btn,
  .service-card .btn {
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: var(--color-white);
  border-bottom: 2px solid var(--color-gray-100);
  transition: all 0.35s ease;
}
.header.on-scroll {
  background-color: var(--color-white);
  border-bottom-color: var(--color-green-400);
  box-shadow: var(--shadow-medium);
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
  width: 100%;
  height: 4rem;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  display: block;
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  image-rendering: auto;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.25s ease;
}
@media screen and (max-width: 480px) {
  .brand-logo {
    height: 2rem;
  }
}
.brand-text {
  font-family: inherit;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-dark-300);
  white-space: nowrap;
}
.brand-text span {
  color: var(--color-red-400);
}
.brand:hover .brand-logo {
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  .brand {
    gap: 0.5rem;
  }
  .brand .brand-text {
    font-size: 1rem;
  }
}

.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-block: 4rem;
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}
.menu.is-active {
  top: 0;
  left: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-dark-300);
  position: relative;
}
.menu-link:hover {
  color: var(--color-green-400);
}
.menu-link.is-active {
  color: var(--color-red-400);
}
.menu-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background-color: var(--color-red-400);
}
.menu-block {
  display: none;
  margin-left: 0;
  order: 2;
}
@media screen and (min-width: 48rem) {
  .menu-block {
    display: block;
    margin-left: auto;
  }
}
@media screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    width: auto;
    padding: 0;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    column-gap: 2rem;
    margin-inline: auto;
  }
  .menu-link {
    text-transform: capitalize;
  }
  .menu-block {
    margin-left: 2rem;
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.burger {
  cursor: pointer;
  position: relative;
  display: block;
  order: -1;
  z-index: 10;
  width: 1.5rem;
  height: 1rem;
  user-select: none;
  visibility: visible;
}
@media screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  background-color: var(--color-dark-300);
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  left: -1rem;
  opacity: 0;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

.overlay {
  position: fixed;
  display: none;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: black;
  transition: all 0.3s ease;
}
.overlay.is-active {
  display: block;
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
  column-gap: 2rem;
}
@media screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
  }
}
.banner-image-frame {
  position: relative;
  display: block;
  justify-self: center;
  width: fit-content;
  max-width: calc(100vw - 2.5rem);
  border: 4px solid var(--color-dark-300);
  outline: 2px solid var(--color-red-400);
  outline-offset: 10px;
  padding: 0.5rem;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-100) 100%);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.14);
  animation: heroFadeIn 1.1s ease-out both;
}
.banner-image-frame::before, .banner-image-frame::after {
  content: "";
  position: absolute;
  background-color: var(--color-red-400);
}
.banner-image-frame::before {
  width: 56px;
  height: 3px;
  top: -14px;
  left: 14px;
}
.banner-image-frame::after {
  width: 3px;
  height: 56px;
  bottom: -14px;
  right: 14px;
}
@media screen and (min-width: 48rem) {
  .banner-image-frame {
    order: 1;
  }
}
@media screen and (min-width: 64rem) {
  .banner-image-frame {
    border-width: 5px;
    outline-width: 3px;
    outline-offset: 12px;
    padding: 0.65rem;
    box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.14);
    margin-right: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .banner-image-frame {
    max-width: calc(100vw - 1.5rem);
    outline-offset: 6px;
    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.14);
  }
  .banner-image-frame::before {
    width: 40px;
    left: 10px;
  }
  .banner-image-frame::after {
    height: 40px;
    right: 10px;
  }
}
.banner-image {
  display: block;
  width: min(100%, 21rem);
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  image-rendering: smooth;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
@media screen and (min-width: 48rem) {
  .banner-image {
    width: min(40vw, 24rem);
  }
}
@media screen and (min-width: 64rem) {
  .banner-image {
    width: 30rem;
  }
}
.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  row-gap: 1.5rem;
}
.banner-link {
  position: absolute;
  display: grid;
  top: 30%;
  right: 1.5rem;
  justify-items: center;
  row-gap: 0.5rem;
  visibility: hidden;
}
@media screen and (min-width: 64rem) {
  .banner-link {
    visibility: visible;
  }
}
.banner-link > * {
  font-size: 1.25rem;
  line-height: inherit;
  color: var(--color-dark-300);
}
.banner-link > *:hover {
  color: var(--color-green-400);
}
.banner-link::before, .banner-link::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 1.5px;
  transform: rotate(90deg);
  background: var(--color-dark-300);
}
.banner-link::before {
  top: -3rem;
}
.banner-link::after {
  bottom: -3rem;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-section {
  position: relative;
  background-color: var(--color-gray-50);
  padding-block: 5rem;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.about-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}
.about-top {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .about-top .about-office-frame {
    order: 1;
  }
  .about-top .about-content {
    order: 0;
  }
}
@media screen and (min-width: 64rem) {
  .about-top {
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
  }
}
.about-content {
  display: grid;
  gap: 1rem;
}
.about-content .title-medium {
  color: var(--color-dark-300);
}
.about-content .text-base {
  color: var(--color-gray-500);
  max-width: 62ch;
}
.about-office-frame {
  margin: 0;
  padding: 0.5rem;
  border: 1px solid rgba(15, 15, 15, 0.12);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 247, 247, 0.95) 100%);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
  position: relative;
  align-self: start;
}
.about-office-frame::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red-300) 0%, var(--color-red-400) 60%, transparent 100%);
}
.about-office-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(250px, 34vw, 380px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 768px) {
  .about-office-image {
    height: auto;
  }
}
.about-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--color-red-400);
  color: var(--color-red-400);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--color-white);
}
.about-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: stretch;
}
@media screen and (min-width: 48rem) {
  .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 64rem) {
  .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.about-metric {
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem;
  border: 1px solid rgba(15, 15, 15, 0.14);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 249, 249, 0.95) 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: aboutCardIn 0.7s ease both;
  position: relative;
  align-content: start;
  min-height: 100%;
}
.about-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red-300) 0%, var(--color-red-400) 60%, transparent 100%);
}
.about-metric:nth-child(2) {
  animation-delay: 0.1s;
}
.about-metric:nth-child(3) {
  animation-delay: 0.2s;
}
.about-metric:nth-child(4) {
  animation-delay: 0.3s;
}
.about-metric:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}
.about-metric i {
  font-size: 1.45rem;
  color: var(--color-red-400);
}
.about-metric__number {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 1;
  font-weight: 800;
  color: var(--color-dark-300);
  letter-spacing: -0.02em;
}
.about-metric__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark-300);
}
.about-metric__desc {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--color-gray-500);
}

@keyframes aboutCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-section {
  background-color: var(--color-gray-50);
  padding-block: 5rem;
}
.services-header {
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 1rem;
}
.services-header .title-medium {
  color: var(--color-dark-300);
}
.services-header .text-base {
  color: var(--color-gray-500);
}
.services-gallery {
  position: relative;
  max-width: 64rem;
  margin: 0 auto 2.5rem;
  padding: 0 3rem 2.25rem;
}
.services-gallery__title {
  display: block;
  width: 100%;
  max-width: 34rem;
  margin: 0 auto 0.625rem;
  padding-inline: 1rem;
  color: var(--color-dark-300);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
}
.services-gallery__viewport {
  position: relative;
  height: clamp(12rem, 28vw, 20rem);
  overflow: hidden;
  padding: 0.5rem 0;
  background: linear-gradient(135deg, var(--color-gray-100), var(--color-white));
}
.services-gallery__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.35rem, 1.5vw, 1rem);
  height: 100%;
}
.services-gallery__slide {
  flex: 0 0 22%;
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  background: var(--color-white);
  opacity: 0.55;
  transform: scale(0.82);
  transition: flex-basis 0.35s ease, height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.services-gallery__slide.is-active {
  flex-basis: 52%;
  aspect-ratio: 16 / 10;
  opacity: 1;
  transform: scale(1);
  border-color: var(--color-red-400);
  box-shadow: var(--shadow-large);
}
.services-gallery__slide.is-only {
  display: none;
}
.services-gallery__slide.is-only.is-active {
  display: block;
  flex-basis: 72%;
}
.services-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: var(--color-white);
}
.services-gallery__empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
  color: var(--color-gray-500);
  text-align: center;
  font-size: 0.95rem;
}
.services-gallery__counter {
  position: absolute;
  right: 0.75rem;
  bottom: 2.8rem;
  padding: 0.3rem 0.65rem;
  color: var(--color-white);
  background: rgba(10, 10, 10, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
}
.services-gallery__button {
  position: absolute;
  top: calc(50% - 1.25rem);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-dark-300);
  border-radius: 50%;
  color: var(--color-dark-300);
  background: var(--color-white);
  font-size: 1.35rem;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.services-gallery__button:hover {
  color: var(--color-white);
  background: var(--color-dark-300);
  transform: translateY(-2px);
}
.services-gallery__button--prev {
  left: 0;
}
.services-gallery__button--next {
  right: 0;
}
.services-gallery__dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.services-gallery__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-gray-300);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.services-gallery__dot.is-active {
  background: var(--color-red-400);
  transform: scale(1.25);
}
.services-lightbox[hidden] {
  display: none;
}
.services-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.services-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 7, 0.88);
}
.services-lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(100vw - 2rem), 68rem);
  height: min(calc(100dvh - 2rem), 46rem);
  max-height: calc(100dvh - 2rem);
  padding: 2.5rem 4rem;
}
.services-lightbox__title {
  position: absolute;
  top: 0.5rem;
  left: 50%;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  transform: translateX(-50%);
  white-space: nowrap;
}
.services-lightbox__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 7rem);
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.04);
}
.services-lightbox__close,
.services-lightbox__button {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--color-white);
  background: rgba(10, 10, 10, 0.65);
  font-size: 1.5rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.services-lightbox__close:hover,
.services-lightbox__button:hover {
  background: var(--color-red-400);
  transform: scale(1.06);
}
.services-lightbox__close {
  top: 0.25rem;
  right: 0.25rem;
}
.services-lightbox__button--prev {
  left: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.services-lightbox__button--prev:hover {
  transform: translateY(-50%) scale(1.06);
}
.services-lightbox__button--next {
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.services-lightbox__button--next:hover {
  transform: translateY(-50%) scale(1.06);
}
.services-lightbox__counter {
  position: absolute;
  right: 50%;
  bottom: 0.5rem;
  padding: 0.25rem 0.6rem;
  color: var(--color-white);
  background: rgba(10, 10, 10, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  transform: translateX(50%);
}
.services-gallery__slide img {
  cursor: zoom-in;
}
.lightbox-open {
  overflow: hidden;
}
.services-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green-500);
  background-color: hsl(145, 60%, 92%);
  padding: 0.3rem 1rem;
  border-radius: 3rem;
  border-left: 3px solid var(--color-red-400);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 48rem) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 48rem) {
  .services-gallery__title {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 64rem) {
  .services-gallery__title {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 480px) {
  .services-gallery {
    padding-inline: 2rem;
  }
  .services-gallery__track {
    height: 100%;
  }
  .services-gallery__slide {
    display: none;
  }
  .services-gallery__slide.is-active {
    display: block;
    flex-basis: 86%;
    aspect-ratio: 4 / 3;
  }
  .services-gallery__button--prev {
    left: 0.25rem;
  }
  .services-gallery__button--next {
    right: 0.25rem;
  }
  .services-lightbox {
    padding: 0.75rem;
  }
  .services-lightbox__content {
    width: calc(100vw - 1rem);
    height: min(calc(100dvh - 1rem), 34rem);
    max-height: calc(100dvh - 1rem);
    padding: 2.5rem 2.75rem;
  }
  .services-lightbox__title {
    font-size: 0.9rem;
  }
  .services-lightbox__close,
  .services-lightbox__button {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.25rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
  padding: 2rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: var(--shadow-medium);
  border-top: 4px solid var(--color-green-400);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-large);
  transform: translateY(-4px);
}
.service-card--red {
  border-top-color: var(--color-red-400);
}
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  font-size: 1.85rem;
}
.service-card__icon--green {
  color: var(--color-green-400);
  background-color: hsl(145, 60%, 92%);
}
.service-card__icon--red {
  color: var(--color-red-400);
  background-color: hsl(0, 75%, 93%);
}
.service-card__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-dark-200);
  background-color: var(--color-gray-100);
  padding: 0.2rem 0.75rem;
  border-radius: 3rem;
  width: fit-content;
}
.service-card__title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-dark-300);
  line-height: 1.25;
}
.service-card__desc {
  font-size: 0.95rem;
  color: var(--color-gray-500);
  line-height: 1.65;
  flex-grow: 1;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  row-gap: 0.55rem;
  padding: 1.25rem;
  background-color: var(--color-gray-50);
  border-radius: 0.5rem;
}
.service-card__list li {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark-200);
}
.service-card__list li i {
  color: var(--color-green-400);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.service-card--red .service-card__list li i {
  color: var(--color-red-400);
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}
.clients-section {
  background-color: var(--color-white);
  padding-block: 5rem;
  border-top: 1px solid var(--color-gray-100);
}
.clients-header {
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 0.8rem;
}
.clients-header .title-medium {
  color: var(--color-dark-300);
}
.clients-header .text-base {
  color: var(--color-gray-500);
  font-size: 0.95rem;
}
.clients-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
  width: 100%;
  min-width: 0;
}
.clients-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 1.5rem;
  scroll-behavior: smooth;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .clients-track {
    max-width: calc(100% - 80px);
  }
}
.clients-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-dark-300);
  border: 1.5px solid var(--color-dark-300);
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.clients-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--color-dark-300);
  opacity: 0.1;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 1;
}
.clients-btn:hover {
  background-color: var(--color-dark-300);
  color: var(--color-white);
  border-color: var(--color-dark-300);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.clients-btn:hover::before {
  width: 100px;
  height: 100px;
}
.clients-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.clients-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  width: 160px;
  height: 120px;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
  border: 1px solid var(--color-gray-100);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  position: relative;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(80%);
  opacity: 0.85;
  transition: all 0.3s ease;
}
.client-logo:hover {
  border-color: var(--color-green-400);
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
  box-shadow: 0 12px 24px rgba(91, 171, 104, 0.15);
  transform: translateY(-4px);
}
.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
.client-logo:nth-child(1) {
  animation-delay: 0s;
}
.client-logo:nth-child(2) {
  animation-delay: 0.15s;
}
.client-logo:nth-child(3) {
  animation-delay: 0.3s;
}
.client-logo:nth-child(4) {
  animation-delay: 0.45s;
}
.client-logo:nth-child(5) {
  animation-delay: 0.6s;
}
.client-logo:nth-child(6) {
  animation-delay: 0.75s;
}
.client-logo:nth-child(7) {
  animation-delay: 0.9s;
}
@media screen and (max-width: 768px) {
  .client-logo {
    min-width: 140px;
    width: 140px;
    height: 100px;
    padding: 1rem;
    border-radius: 0.75rem;
  }
}
@media screen and (max-width: 480px) {
  .client-logo {
    min-width: 120px;
    width: 120px;
    height: 85px;
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
}

.compliance-section {
  background-color: var(--color-white);
  padding-block: 5rem;
  border-top: 1px solid var(--color-gray-100);
}
.compliance-title {
  text-align: center;
  color: var(--color-dark-300);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.compliance-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green-400) 0%, var(--color-red-400) 100%);
  border-radius: 3px;
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 48rem) {
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64rem) {
  .compliance-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.compliance-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
  padding: 1.5rem;
  background-color: var(--color-gray-50);
  border-radius: 0.75rem;
  border-left: 4px solid var(--color-green-400);
  transition: all 0.25s ease;
}
.compliance-item:hover {
  background-color: var(--color-white);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
  border-left-color: var(--color-red-400);
}
.compliance-item__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark-300);
  line-height: 1.25;
}
.compliance-item__desc {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  line-height: 1.6;
}
.compliance-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: hsl(145, 60%, 92%);
  color: var(--color-green-400);
  font-size: 1.25rem;
  font-weight: bold;
  flex-shrink: 0;
}

.footer {
  background: linear-gradient(135deg, var(--color-dark-300) 0%, var(--color-dark-400) 100%);
  color: var(--color-white);
  padding-block: 3rem 1rem;
  border-top: 3px solid var(--color-red-400);
}
.footer-content {
  display: flex;
  flex-direction: column;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64rem) {
  .footer-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-column {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
}
.footer-column__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--color-red-400);
  padding-bottom: 0.75rem;
}
.footer-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  list-style: none;
}
.footer-list li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.25s ease;
}
.footer-list li:hover {
  color: var(--color-white);
  padding-left: 0.25rem;
}
.footer-list li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.25s ease;
}
.footer-list li a:hover {
  color: var(--color-red-300);
  text-decoration: underline;
}
.footer-list li strong {
  color: var(--color-white);
  font-weight: 600;
}
.footer-list li i {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--color-red-400);
  font-size: 1.1rem;
}
.footer-map {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.footer-map iframe {
  display: block;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.footer-social-link:hover {
  background-color: var(--color-red-400);
  border-color: var(--color-red-400);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.3);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #20ba5d 100%);
  color: var(--color-white);
  font-size: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.15);
  animation: pulse 2s ease-in-out infinite;
  z-index: -1;
}
.whatsapp-float i {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #20ba5d 0%, #1ba852 100%);
}
.whatsapp-float:active {
  transform: scale(1.08);
}
@media screen and (max-width: 1024px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    bottom: 2rem;
    right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-float::before {
    inset: -6px;
  }
}
@media screen and (max-width: 480px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-float::before {
    inset: -5px;
  }
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 75px;
  right: 0;
  background-color: var(--color-dark-300);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1000;
}
.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-dark-300);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: 80px;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
.contact-section {
  background: linear-gradient(135deg, var(--color-dark-300) 0%, var(--color-dark-400) 100%);
  padding-block: 5rem;
  border-top: 3px solid var(--color-red-400);
}
.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--color-white);
}
.contact-header .title-medium {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}
.contact-header .text-base {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-top: 0.5rem;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-left: 3px solid var(--color-red-400);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-left-color: var(--color-red-300);
  transform: translateX(4px);
}
.contact-card--whatsapp {
  border-left-color: #25d366;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.05) 100%);
}
.contact-card--whatsapp:hover {
  border-left-color: #20ba5d;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.08) 100%);
}
.contact-card--whatsapp .contact-card__icon {
  color: #25d366;
}
.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-red-400);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-card__content {
  flex: 1;
  min-width: 0;
}
.contact-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}
.contact-card__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-card__text a {
  color: var(--color-red-300);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Mobile-specific adjustments for hero and WhatsApp float to improve CRO/UX */
@media screen and (max-width: 768px) {
  /* Stack the banner column as a flex column on mobile so we can
     reliably reorder elements: keep text + CTA first, image after. */
  .banner-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    row-gap: 0.75rem;
  }

  /* Ensure banner copy appears first */
  .banner-inner {
    order: 1;
    align-items: flex-start;
    padding-top: 0.25rem;
  }

  /* Show image but place it after the copy/CTA */
  .banner-image-frame {
    display: block;
    visibility: visible;
    order: 2;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin-top: 0.75rem;
    padding: 0.5rem;
  }

  /* Reduce H1 size to ~22-24px for mobile to avoid awkward wraps */
  .title-large {
    font-size: 1.45rem; /* ~23px */
    line-height: 1.2;
  }

  /* Make sure primary CTA is prominent and full width on mobile */
  .banner-inner .btn.btn-primary {
    width: 100%;
    padding-block: 0.75rem;
    font-size: 1rem;
  }

  /* Reposition floating WhatsApp to avoid overlapping the primary CTA */
  .whatsapp-float {
    left: 1rem;
    right: auto;
    bottom: 85px;
  }
  .whatsapp-tooltip {
    left: 0;
    right: auto;
  }
}
.contact-card__text a:hover {
  color: var(--color-red-200);
  text-decoration: underline;
}
.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
@media screen and (max-width: 480px) {
  .contact-form-wrapper {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .contact-form {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .contact-form {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media screen and (max-width: 480px) {
  .contact-form__submit {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
    white-space: normal;
  }
}
.contact-form__submit.is-loading {
  opacity: 0.75;
  pointer-events: none;
  filter: grayscale(0.15);
}
.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.3);
}
.contact-form__submit:active {
  transform: translateY(0);
}
.contact-form__status {
  min-height: 1.4rem;
  margin-top: -0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.contact-form__status.is-loading {
  color: rgba(255, 255, 255, 0.86);
}
.contact-form__status.is-success {
  color: #67e38f;
}
.contact-form__status.is-error {
  color: #ff8f8f;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
@media screen and (max-width: 480px) {
  .form-group {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
.form-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  width: 100%;
  max-width: 100%;
  min-height: 3rem;
  padding: 0.875rem 1rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  appearance: none;
}
.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--color-red-400);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}
.form-input:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}
.form-input option {
  background-color: var(--color-dark-400);
  color: var(--color-white);
}
@media screen and (max-width: 480px) {
  .form-input {
    display: block;
    width: 100%;
    max-width: calc(100vw - 2rem);
    padding: 0.85rem 0.9rem;
    font-size: 0.95rem;
  }
}

.contact-card .btn {
  width: auto;
}
@media screen and (max-width: 480px) {
  .contact-card .btn {
    display: flex;
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}

@media screen and (max-width: 480px) {
  .contact-section .container {
    padding-inline: 1rem;
  }
  .contact-card,
  .contact-wrapper,
  .contact-form__submit {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
