:root {
  --accent: #1ccadf;
  --navy-900: #0f1b34;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #101728;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f1b34;
  margin: 0;
}

p {
  color: #6b7484;
  line-height: 1.7;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

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

::selection {
  background: #1ccadf;
  color: #0f1b34;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1ccadf;
}
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #1ccadf;
  border-radius: 999px;
}

.section-kicker--light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1ccadf;
}
.section-kicker--light::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #1ccadf;
  border-radius: 999px;
}
.section-kicker--light {
  color: #1ccadf;
}
.section-kicker--light::before {
  background: #1ccadf;
}

.section-heading {
  max-width: 640px;
}
.section-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  margin-top: 0.75rem;
}
.section-heading h2 strong {
  font-weight: 700;
  color: #1ccadf;
}

.text-balance {
  text-wrap: balance;
}

.eyebrow-divider {
  width: 56px;
  height: 3px;
  background: #1ccadf;
  border-radius: 999px;
  margin-block: 1.1rem 1.4rem;
}

.btn {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  border: none;
}
.btn:focus-visible {
  outline: 2px solid #1ccadf;
  outline-offset: 3px;
}

.btn-accent {
  background: #1ccadf;
  color: #0f1b34;
  position: relative;
  box-shadow: 0 4px 16px rgba(10, 18, 36, 0.06);
  transition: background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-accent span {
  position: relative;
  z-index: 1;
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: #1ccadf;
  color: #0f1b34;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10, 18, 36, 0.12);
}

.btn-outline-light-custom {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-outline-light-custom:hover, .btn-outline-light-custom:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-outline-navy {
  background: transparent;
  color: #0f1b34;
  border: 1.5px solid #dde2ea;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-outline-navy:hover, .btn-outline-navy:focus-visible {
  background: #0f1b34;
  border-color: #0f1b34;
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-lg-custom {
  padding: 1.05rem 2.3rem;
  font-size: 1rem;
}

.btn-icon-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.btn-icon-arrow i {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-icon-arrow:hover i {
  transform: translateX(4px);
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatY-sm {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

[data-reveal=up] {
  transform: translateY(48px);
}

[data-reveal=fade] {
  transform: translateY(0);
}

[data-reveal=left] {
  transform: translateX(-48px);
}

[data-reveal=right] {
  transform: translateX(48px);
}

[data-reveal=zoom] {
  transform: scale(0.92);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

[data-reveal-delay="1"] {
  transition-delay: 0.09s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.18s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.27s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.36s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.45s;
}

[data-reveal-delay="6"] {
  transition-delay: 0.54s;
}

[data-reveal-delay="7"] {
  transition-delay: 0.63s;
}

[data-reveal-delay="8"] {
  transition-delay: 0.72s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
.site-navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1030;
  padding-block: 1.35rem;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(to bottom, rgba(10, 18, 36, 0.55), rgba(10, 18, 36, 0));
}
.site-navbar.is-scrolled {
  padding-block: 0.5rem;
  background: rgba(10, 18, 36, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(4, 8, 20, 0.35);
}
.site-navbar.is-scrolled .navbar-brand img {
  height: 46px;
}
.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.site-navbar .navbar-brand img {
  height: 76px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-navbar .nav-link-custom {
  position: relative;
  display: inline-block;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0;
  margin-inline: 0.85rem;
}
.site-navbar .nav-link-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #1ccadf;
  border-radius: 999px;
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-navbar .nav-link-custom:hover, .site-navbar .nav-link-custom:focus-visible, .site-navbar .nav-link-custom.active {
  color: #ffffff;
}
.site-navbar .nav-link-custom:hover::after, .site-navbar .nav-link-custom:focus-visible::after, .site-navbar .nav-link-custom.active::after {
  width: 100%;
}
.site-navbar .nav-cta {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  background: #1ccadf;
  color: #0f1b34;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  transition: background-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-navbar .nav-cta:hover {
  background: #1ccadf;
  transform: translateY(-2px);
  color: #0f1b34;
}
.site-navbar .navbar-toggler {
  border: none;
  padding: 0.35rem;
  color: #ffffff;
}
.site-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.site-navbar .navbar-toggler i {
  font-size: 1.5rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .site-navbar .navbar-collapse {
    background: rgba(10, 18, 36, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 24px 64px rgba(10, 18, 36, 0.22);
  }
  .site-navbar .navbar-collapse .nav-link-custom {
    display: flex;
    align-items: center;
    width: 100%;
    margin-inline: 0;
    padding: 0.85rem 0.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-navbar .navbar-collapse .nav-link-custom::after {
    bottom: 0;
  }
  .site-navbar .navbar-collapse .nav-item:nth-last-child(2) .nav-link-custom {
    border-bottom: none;
  }
  .site-navbar .navbar-collapse .nav-cta {
    margin-top: 1rem;
    display: inline-block;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1224;
  padding-top: 120px;
  padding-bottom: 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/hero-home.jpg");
  transform: scale(1.08);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 36, 0.88) 0%, rgba(10, 18, 36, 0.72) 38%, rgba(10, 18, 36, 0.55) 65%, rgba(10, 18, 36, 0.92) 100%), linear-gradient(100deg, rgba(10, 18, 36, 0.75) 0%, rgba(10, 18, 36, 0.15) 55%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1ccadf;
}
.hero__kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #1ccadf;
  border-radius: 999px;
}
.hero__kicker {
  color: #1ccadf;
}
.hero__kicker::before {
  background: #1ccadf;
}
.hero h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-top: 1rem;
  text-wrap: balance;
}
.hero h1 .accent-text {
  position: relative;
  color: #1ccadf;
}
.hero__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  margin-top: 1.5rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: #1ccadf;
  text-transform: uppercase;
}
.hero__lead {
  max-width: 520px;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}
.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 992px) {
  .hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.8rem;
  }
}
.hero .usp-chip {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: anywhere;
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 992px) {
  .hero .usp-chip {
    border-radius: 999px;
    font-size: 0.82rem;
  }
}
.hero .usp-chip .icon-dot {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #1ccadf;
  color: #0f1b34;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
}
.hero .usp-chip:hover {
  background: rgba(28, 202, 223, 0.16);
  border-color: rgba(28, 202, 223, 0.5);
  transform: translateY(-3px);
}
@media (min-width: 992px) {
  .hero .usp-chip {
    background: transparent;
    border-color: transparent;
    padding: 0;
    backdrop-filter: none;
  }
  .hero .usp-chip:hover {
    background: transparent;
    transform: translateY(-2px);
  }
}
.hero__panel {
  position: relative;
  z-index: 2;
}
.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 24px 64px rgba(10, 18, 36, 0.22);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  animation: floatY 6s ease-in-out infinite;
}
.hero__float-card--stat {
  bottom: 8%;
  left: -6%;
}
.hero__float-card--rating {
  top: 10%;
  right: -4%;
  animation-delay: -3s;
}
.hero__float-card .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #1ccadf;
  display: grid;
  place-items: center;
  color: #0f1b34;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero__float-card strong {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  color: #0f1b34;
  line-height: 1.1;
}
.hero__float-card small {
  color: #6b7484;
  font-size: 0.78rem;
  font-weight: 500;
}
.hero__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10, 18, 36, 0.22);
  aspect-ratio: 4/5;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
}
.hero__scroll {
  display: none;
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
@media (min-width: 992px) {
  .hero__scroll {
    display: flex;
  }
}
.hero__scroll {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__scroll .scroll-track {
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  position: relative;
}
.hero__scroll .scroll-track::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: #1ccadf;
  border-radius: 999px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.16);
  }
}
@media (max-width: 991px) {
  .hero {
    text-align: left;
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 4rem;
  }
  .hero__panel {
    margin-top: 3.5rem;
    max-width: 380px;
  }
  .hero__float-card {
    display: none;
  }
}
.about {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  position: relative;
}
.about__media {
  position: relative;
}
.about__image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 6/7;
  box-shadow: 0 12px 40px rgba(10, 18, 36, 0.12);
}
.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.about__image-wrap .about__image--mobile {
  object-position: 30% 15%;
}
.about__image-wrap:hover img {
  transform: scale(1.06);
}
.about__badge {
  position: absolute;
  left: -1.5rem;
  bottom: -1.5rem;
  background: linear-gradient(160deg, #0a1224 0%, #0f1b34 55%, #132048 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 1.3rem 1.6rem;
  box-shadow: 0 24px 64px rgba(10, 18, 36, 0.22);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatY-sm 5s ease-in-out infinite;
}
.about__badge .badge-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(28, 202, 223, 0.16);
  border: 1.5px solid #1ccadf;
  color: #1ccadf;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.about__badge strong {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.25;
}
.about__badge small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}
@media (max-width: 767px) {
  .about__badge {
    left: 0.75rem;
    bottom: -1.25rem;
    padding: 1rem 1.2rem;
  }
}
.about__ring-deco {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 130px;
  height: 130px;
  border: 2px dashed rgba(28, 202, 223, 0.4);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
  z-index: -1;
}
@media (max-width: 991px) {
  .about__ring-deco {
    display: none;
  }
}
.about__text {
  padding-left: clamp(0px, 4vw, 3rem);
}
.about__lead {
  margin-top: 1.3rem;
  font-size: 1.05rem;
}
.about__lead + p {
  margin-top: 0.9rem;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1rem 2.4rem;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid #dde2ea;
}
@media (max-width: 575px) {
  .about__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.about__stat .num {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #1ccadf;
  line-height: 1;
}
.about__stat small {
  display: block;
  margin-top: 0.4rem;
  color: #6b7484;
  font-size: 0.82rem;
  font-weight: 500;
}

.services {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  background: #f7f8fb;
}

.service-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  background: #0f1b34;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(10, 18, 36, 0.22);
}
.service-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__img {
  transform: scale(1.1);
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 36, 0.15) 0%, rgba(10, 18, 36, 0.55) 60%, rgba(10, 18, 36, 0.92) 100%);
  transition: background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(180deg, rgba(10, 18, 36, 0.25) 0%, rgba(10, 18, 36, 0.72) 55%, rgba(10, 18, 36, 0.96) 100%);
}
.service-card__body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.9rem;
  color: #ffffff;
}
.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__icon {
  background: #1ccadf;
  color: #0f1b34;
  transform: rotate(-8deg) scale(1.05);
}
.service-card__number {
  position: absolute;
  top: 1.6rem;
  right: 1.7rem;
  z-index: 2;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}
.service-card h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), margin 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover p {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 0.75rem;
}
@media (max-width: 991px) {
  .service-card p {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 0.75rem;
  }
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}
.service-card__link i {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__link i {
  transform: translateX(5px);
}

.process {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  position: relative;
}

.process-track {
  position: relative;
  margin-top: 3.5rem;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(to right, #dde2ea 0, #dde2ea 8px, transparent 8px, transparent 16px);
}
@media (max-width: 991px) {
  .process-track::before {
    display: none;
  }
}

.process-step {
  position: relative;
  text-align: left;
}
.process-step__num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #dde2ea;
  display: grid;
  place-items: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1ccadf;
  box-shadow: 0 4px 16px rgba(10, 18, 36, 0.06);
  position: relative;
  z-index: 1;
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-step:hover .process-step__num {
  border-color: #1ccadf;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10, 18, 36, 0.12);
}
.process-step h3 {
  margin-top: 1.4rem;
  font-size: 1.15rem;
}
.process-step p {
  margin-top: 0.5rem;
  font-size: 0.92rem;
}

.stats-bar {
  position: relative;
  background: linear-gradient(160deg, #0a1224 0%, #0f1b34 55%, #132048 100%);
  padding-block: 3.2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-bar__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #ffffff;
}
.stats-bar__item .icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(28, 202, 223, 0.5);
  color: #1ccadf;
  font-size: 1.5rem;
}
.stats-bar__item .num {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1;
}
.stats-bar__item small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  max-width: 160px;
}

.references {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.ref-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 4px 16px rgba(10, 18, 36, 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.ref-card:hover, .ref-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(10, 18, 36, 0.22);
}
.ref-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.ref-card:hover img {
  transform: scale(1.08);
}
.ref-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 36, 0) 40%, rgba(10, 18, 36, 0.92) 100%);
}
.ref-card__tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: #0f1b34;
  background: #ffffff;
}
.ref-card__tag--rented {
  background: #1ccadf;
  color: #0f1b34;
}
.ref-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem;
  color: #ffffff;
}
.ref-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.ref-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.testimonials {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  background: #f7f8fb;
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: 0 12px 40px rgba(10, 18, 36, 0.12);
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.testimonial-card .quote-icon {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border-radius: 50%;
  background: #1ccadf;
  color: #0f1b34;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.testimonial-card blockquote {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: #0f1b34;
  margin: 0;
}
.testimonial-card .stars {
  margin-top: 1.3rem;
  color: #1ccadf;
  letter-spacing: 0.2rem;
}
.testimonial-card .author {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}
.testimonial-card .author strong {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: #0f1b34;
}
.testimonial-card .author small {
  color: #6b7484;
  font-size: 0.8rem;
}
.testimonial-card .author .avatar-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(160deg, #0a1224 0%, #0f1b34 55%, #132048 100%);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonial-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #dde2ea;
  padding: 0;
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-dots button.active {
  background: #1ccadf;
  transform: scale(1.3);
}

.koeln-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/cta-koeln.jpg");
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .koeln-banner {
    background-attachment: scroll;
  }
}
.koeln-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 18, 36, 0.92) 0%, rgba(10, 18, 36, 0.72) 45%, rgba(10, 18, 36, 0.35) 100%);
}
.koeln-banner__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding-block: 4.5rem;
}
.koeln-banner .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1ccadf;
}
.koeln-banner .kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #1ccadf;
  border-radius: 999px;
}
.koeln-banner .kicker {
  color: #1ccadf;
}
.koeln-banner .kicker::before {
  background: #1ccadf;
}
.koeln-banner h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-top: 0.8rem;
  max-width: 620px;
}
.koeln-banner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-top: 1rem;
}
.koeln-banner__areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.koeln-banner__areas span {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.koeln-banner__areas span:hover {
  background: rgba(28, 202, 223, 0.18);
  border-color: #1ccadf;
}

.faq {
  padding-block: clamp(4rem, 8vw, 7.5rem);
  background: #f7f8fb;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #dde2ea;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:has(.faq-item__question[aria-expanded=true]) {
  border-color: #1ccadf;
  box-shadow: 0 4px 16px rgba(10, 18, 36, 0.06);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 1.6rem;
  background: none;
  border: none;
  text-align: left;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f1b34;
}
.faq-item__question:focus-visible {
  outline: 2px solid #1ccadf;
  outline-offset: 3px;
}
.faq-item__question .faq-item__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f7f8fb;
  display: grid;
  place-items: center;
  color: #1ccadf;
  font-size: 1.1rem;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item__question[aria-expanded=true] .faq-item__icon {
  background: #1ccadf;
  color: #0f1b34;
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 1.6rem 1.5rem;
  color: #6b7484;
  font-size: 0.96rem;
  line-height: 1.7;
}
.faq-item__answer p {
  margin: 0;
}

.cta-section {
  position: relative;
  background: linear-gradient(160deg, #0a1224 0%, #0f1b34 55%, #132048 100%);
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 6rem);
}
.cta-section__text {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.cta-section h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}
.cta-section h2 strong {
  color: #1ccadf;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 1rem;
  max-width: 480px;
}
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.cta-section__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #ffffff;
}
.cta-section__phone .icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(28, 202, 223, 0.6);
  color: #1ccadf;
  display: grid;
  place-items: center;
}
.cta-section__phone small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}
.cta-section__portrait-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.cta-section__portrait {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 0.9rem;
  box-shadow: 0 24px 64px rgba(10, 18, 36, 0.22);
  max-width: 320px;
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-section__portrait:hover {
  transform: rotate(0deg);
}
.cta-section__portrait img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.cta-section__portrait figcaption {
  text-align: center;
  padding-top: 0.9rem;
}
.cta-section__portrait figcaption strong {
  display: block;
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: #0f1b34;
  font-size: 1rem;
}
.cta-section__portrait figcaption small {
  color: #6b7484;
  font-size: 0.78rem;
}
.cta-section__portrait-badge {
  position: absolute;
  top: -1rem;
  right: -1.2rem;
  background: #1ccadf;
  color: #0f1b34;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.15;
  box-shadow: 0 12px 40px rgba(10, 18, 36, 0.12);
  animation: floatY-sm 5s ease-in-out infinite;
}

.site-footer {
  background: #0a1224;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 4rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
}
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.site-footer .footer-brand img {
  height: 68px;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 320px;
}
.site-footer h6 {
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.site-footer .footer-links a {
  font-size: 0.9rem;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1), padding-left 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .footer-links a:hover {
  color: #1ccadf;
  padding-left: 4px;
}
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9rem;
}
.site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.site-footer .footer-contact i {
  color: #1ccadf;
  margin-top: 0.2rem;
}
.site-footer .footer-contact a:hover {
  color: #1ccadf;
}
.site-footer .social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.site-footer .social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-footer .social-links a:hover {
  background: #1ccadf;
  border-color: #1ccadf;
  color: #0f1b34;
  transform: translateY(-3px);
}
.site-footer .footer-bottom {
  margin-top: 3.5rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.site-footer .footer-bottom a:hover {
  color: #1ccadf;
}

.back-to-top {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #1ccadf;
  color: #0f1b34;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 12px 40px rgba(10, 18, 36, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1040;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
}

.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a1224;
  padding-top: 150px;
  padding-bottom: 3rem;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 36, 0.82) 0%, rgba(10, 18, 36, 0.55) 45%, rgba(10, 18, 36, 0.95) 100%);
}
.page-banner__content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}
.page-banner__back {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  transition: color 0.25s cubic-bezier(0.22, 1, 0.36, 1), gap 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-banner__back:hover {
  color: #1ccadf;
  gap: 0.75rem;
}
.page-banner h1 {
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-top: 0.6rem;
  line-height: 1.1;
}
.page-banner p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.9rem;
  max-width: 560px;
  font-size: 1.05rem;
}

.gallery-section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
}
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}
@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10, 18, 36, 0.06);
}
.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}
@media (max-width: 575px) {
  .gallery-item--wide {
    grid-column: span 1;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 36, 0) 55%, rgba(10, 18, 36, 0.82) 100%);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__label {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 1;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover .gallery-item__label {
  opacity: 1;
  transform: translateY(0);
}

.property-slider {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.property-slider:last-child {
  margin-bottom: 0;
}
.property-slider__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.property-slider__title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: #0f1b34;
}
.property-slider__count {
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b7484;
  white-space: nowrap;
}

.property-carousel {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 18, 36, 0.12);
  background: #0a1224;
}
.property-carousel .carousel-inner {
  aspect-ratio: 16/10;
}
@media (max-width: 575px) {
  .property-carousel .carousel-inner {
    aspect-ratio: 4/3;
  }
}
.property-carousel .carousel-item {
  height: 100%;
}
.property-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-carousel .carousel-control-prev,
.property-carousel .carousel-control-next {
  width: 64px;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.property-carousel:hover .carousel-control-prev, .property-carousel:hover .carousel-control-next {
  opacity: 1;
}
.property-carousel__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #0f1b34;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(10, 18, 36, 0.06);
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.property-carousel:hover .property-carousel__arrow {
  transform: scale(1.05);
}
.carousel-control-prev:hover .property-carousel__arrow, .carousel-control-next:hover .property-carousel__arrow {
  background: #1ccadf;
}
.property-carousel__counter {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  background: rgba(10, 18, 36, 0.72);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.ref-card__stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.ref-card__stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.ref-card__stats span i {
  color: #1ccadf;
}

.legal-section {
  padding-block: clamp(4rem, 8vw, 7.5rem);
}

.legal-content {
  max-width: 780px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.4rem;
  margin-bottom: 0.9rem;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  color: #0f1b34;
}
.legal-content p {
  margin-bottom: 1rem;
  font-size: 0.96rem;
}
.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.3rem;
}
.legal-content ul li {
  color: #6b7484;
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
}
.legal-content a {
  color: #1ccadf;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: #1ccadf;
}
.legal-content strong {
  color: #0f1b34;
}
.legal-content .legal-meta {
  display: inline-block;
  font-size: 0.8rem;
  color: #97a1b3;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dde2ea;
}
