@charset "UTF-8";
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.14) translate(-1.5%, -1%);
  }
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 160, 72, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(198, 160, 72, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 160, 72, 0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marqueeReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --gold: #c6a048;
  --navy: #060097;
  --red: #e30000;
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #4b5563;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  margin: 0;
  color: #1f2937;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
}

section {
  position: relative;
}

::selection {
  background: #c6a048;
  color: #ffffff;
}

/* Barra de progreso de scroll */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #a98334, #c6a048, #e30000);
  z-index: 1200;
  transition: width 0.1s linear;
}

/* Botón volver arriba */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1f2937;
  color: #ffffff;
  display: grid;
  place-items: center;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover {
  background: #a98334;
}
.to-top svg {
  width: 20px;
  height: 20px;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(198, 160, 72, 0.55);
  outline-offset: 3px;
}

.rotate-180 {
  transform: rotate(180deg);
  transform-box: fill-box;
  transform-origin: center;
}

.h2-like {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px);
}

.btn--primary {
  background: linear-gradient(135deg, #cca352, #a98334);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(169, 131, 52, 0.35);
}
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--primary:hover::after {
  transform: translateX(120%);
}
.btn--primary:hover svg {
  transform: translateX(4px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: #ffffff;
  color: #1f2937;
  border-color: #ffffff;
}

.btn--dark {
  background: #1f2937;
  color: #ffffff;
}
.btn--dark:hover {
  background: #060097;
}

.btn--outline {
  background: transparent;
  color: #1f2937;
  border: 1.5px solid #c3c4c7;
}
.btn--outline:hover {
  border-color: #c6a048;
  color: #a98334;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.topbar {
  background: #1f2937;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding-block: 8px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s;
}
.topbar a:hover {
  color: #c6a048;
}
.topbar svg {
  width: 14px;
  height: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  transition: background 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1), padding 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 10px rgba(31, 41, 55, 0.06);
  padding-block: 14px;
}
.site-header.is-scrolled {
  padding-block: 10px;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

body.has-hero .site-header {
  background: rgba(255, 255, 255, 0);
  backdrop-filter: none;
  box-shadow: none;
}
body.has-hero .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 10px rgba(31, 41, 55, 0.06);
}
body.has-hero .site-header:not(.is-scrolled) .nav-link {
  color: #ffffff;
}
body.has-hero .site-header:not(.is-scrolled) > .nav-desktop > li:hover a.nav-link {
  color: #c6a048;
  background: rgba(255, 255, 255, 0.12);
}
body.has-hero .site-header:not(.is-scrolled) .lang-switch {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
body.has-hero .site-header:not(.is-scrolled) .burger {
  background: rgba(255, 255, 255, 0.14);
}
body.has-hero .site-header:not(.is-scrolled) .burger span, body.has-hero .site-header:not(.is-scrolled) .burger span::before, body.has-hero .site-header:not(.is-scrolled) .burger span::after {
  background: #ffffff;
}
body.has-hero .site-header:not(.is-scrolled) .topbar-inline {
  color: rgba(255, 255, 255, 0.85);
}
body.has-hero .site-header:not(.is-scrolled) a.nav-link.is-current {
  color: #c6a048;
  background: rgba(255, 255, 255, 0.14);
}

.brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  position: relative;
}
.brand img {
  height: 42px;
  width: auto;
  transition: height 0.25s;
}
.brand .brand__white {
  display: none;
}

body.has-hero .site-header:not(.is-scrolled) .brand .brand__color {
  display: none;
}
body.has-hero .site-header:not(.is-scrolled) .brand .brand__white {
  display: block;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
}
.nav-desktop > li {
  position: relative;
}
.nav-desktop a.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: #1f2937;
  transition: color 0.25s, background 0.25s;
}
.nav-desktop a.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-desktop > li:hover a.nav-link,
.nav-desktop > li a.nav-link:focus-visible {
  color: #a98334;
  background: rgba(198, 160, 72, 0.1);
}
.nav-desktop a.nav-link.is-current {
  color: #a98334;
  background: rgba(198, 160, 72, 0.12);
}
.nav-desktop > li:hover svg {
  transform: rotate(180deg);
}
.nav-desktop .has-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s;
  z-index: 20;
}
.nav-desktop .has-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4b5563;
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
}
.nav-desktop .has-dropdown li a:hover {
  background: #f9f6fe;
  color: #a98334;
  padding-left: 18px;
}
.nav-desktop li:hover .has-dropdown,
.nav-desktop li:focus-within .has-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.header-actions .lang-switch {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f2937;
  border: 1.5px solid #c3c4c7;
  border-radius: 999px;
  padding: 7px 14px;
  transition: border-color 0.25s, color 0.25s;
}
.header-actions .lang-switch:hover {
  border-color: #c6a048;
  color: #a98334;
}
@media (max-width: 480px) {
  .header-actions .btn {
    display: none;
  }
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(31, 41, 55, 0.06);
  place-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .burger {
    display: grid;
  }
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #1f2937;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.burger span::before {
  position: absolute;
  top: -7px;
}
.burger span::after {
  position: absolute;
  top: 7px;
}
.burger.is-active span {
  background: transparent;
}
.burger.is-active span::before {
  transform: translateY(7px) rotate(45deg);
  background: #1f2937;
}
.burger.is-active span::after {
  transform: translateY(-7px) rotate(-45deg);
  background: #1f2937;
}

.nav-mobile {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  height: 100vh;
  background: #ffffff;
  box-shadow: -14px 0 40px rgba(31, 41, 55, 0.18);
  padding: 100px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
  overflow-y: auto;
}
.nav-mobile.is-open {
  transform: translateX(0);
}
.nav-mobile li {
  border-bottom: 1px solid #f0f0f1;
}
.nav-mobile a {
  display: block;
  padding: 16px 4px;
  font-weight: 600;
  color: #1f2937;
  font-size: 1.02rem;
}
.nav-mobile a.is-current {
  color: #a98334;
}
.nav-mobile .submenu {
  padding-left: 14px;
}
.nav-mobile .submenu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
  padding-block: 10px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.45);
  backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1f2937;
  margin-top: -70px;
  padding-top: 70px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 9s ease-out forwards;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.55) 0%, rgba(31, 41, 55, 0.35) 38%, rgba(31, 41, 55, 0.85) 100%), linear-gradient(90deg, rgba(38, 38, 38, 0.55), rgba(31, 41, 55, 0.15) 55%);
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: #ffffff;
  padding-block: 40px;
}
.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  color: #c6a048;
  animation: fadeSlide 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-content .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.hero-content .eyebrow::before {
  background: linear-gradient(90deg, #c6a048, #ffffff);
}
.hero-content h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.06;
  margin-block: 18px 22px;
  max-width: 16ch;
  animation: fadeSlide 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}
.hero-content h1 span {
  background: linear-gradient(90deg, #cca352, #c6a048, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: gradientShift 6s ease-in-out infinite;
}
.hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.86);
  animation: fadeSlide 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.hero-content .hero-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  animation: fadeSlide 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .hero-controls {
    bottom: 22px;
  }
}

.hero-dot {
  width: 34px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
  position: relative;
  transition: background 0.25s;
}
.hero-dot span {
  position: absolute;
  inset: 0;
  background: #c6a048;
  transform-origin: left;
  transform: scaleX(0);
}
.hero-dot.is-active span {
  animation: hero-progress 6s linear forwards;
}

@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.hero-scroll-cue {
  position: absolute;
  right: 36px;
  bottom: 40px;
  z-index: 6;
  color: rgba(255, 255, 255, 0.8);
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  animation: floatY 2.6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-scroll-cue {
    display: none;
  }
}
.hero-scroll-cue::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, #c6a048, transparent);
}

.hero-stats-strip {
  position: relative;
  z-index: 6;
  margin-top: 56px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  animation: fadeSlide 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
.hero-stats-strip .stat {
  flex: 1 1 160px;
  padding: 20px 24px 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats-strip .stat strong {
  display: block;
  font-size: 1.7rem;
  color: #c6a048;
  font-weight: 700;
}
.hero-stats-strip .stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.marquee-band {
  background: linear-gradient(90deg, #a98334, #c6a048 50%, #a98334);
  color: #1f2937;
  overflow: hidden;
  padding-block: 14px;
  position: relative;
}
.marquee-band::before, .marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, #a98334, transparent);
}
.marquee-band::after {
  right: 0;
  background: linear-gradient(270deg, #a98334, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  padding-inline: 28px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.marquee-item::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f2937;
  margin-left: 28px;
  opacity: 0.5;
}

.process-band {
  background: #f9f6fe;
  padding-block: 26px;
  overflow: hidden;
  border-block: 1px solid #f0f0f1;
}

.process-track {
  display: flex;
  width: max-content;
  animation: marqueeReverse 26s linear infinite;
}
.process-track:hover {
  animation-play-state: paused;
}

.process-track__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.process-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 190px;
  flex-shrink: 0;
  text-align: center;
}
.process-item img {
  height: 92px;
  width: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 8px 14px rgba(31, 41, 55, 0.12));
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.process-item span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1f2937;
}
.process-item:hover img {
  transform: translateY(-6px) scale(1.06);
}

.section-head {
  max-width: 620px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.section-head.in-view {
  opacity: 1;
  transform: translateY(0);
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  margin-bottom: 14px;
}
.section-head .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
}
.section-head p {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.why {
  padding-block: clamp(64px, 9vw, 120px);
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  position: relative;
  padding: 34px 26px;
  border-radius: 28px;
  background: #f9f6fe;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
}
.why-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(198, 160, 72, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card:hover::before {
  opacity: 1;
}
.why-card .icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #cca352, #a98334);
  box-shadow: 0 12px 28px rgba(169, 131, 52, 0.35);
  margin-bottom: 22px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card .icon-badge svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}
.why-card:hover .icon-badge {
  transform: rotate(-8deg) scale(1.06);
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  position: relative;
}
.why-card p {
  font-size: 0.94rem;
  line-height: 1.6;
  position: relative;
}
.why-card .card-index {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(31, 41, 55, 0.06);
}

.services {
  padding-block: clamp(64px, 9vw, 120px);
  background: #f9f6fe;
  position: relative;
}

.carousel {
  position: relative;
  margin-top: 44px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: #ffffff;
  min-height: 420px;
}
@media (max-width: 1024px) {
  .carousel-slide {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}

.carousel-slide__media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.carousel-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-slide__media .service-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f2937;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.carousel-slide__media .service-tag svg {
  width: 15px;
  height: 15px;
  color: #a98334;
}

.carousel-slide.is-active .carousel-slide__media img {
  transform: scale(1.08);
}

.carousel-slide__body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-slide__body .step-index {
  font-size: 0.82rem;
  font-weight: 700;
  color: #a98334;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.carousel-slide__body h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 16px;
}
.carousel-slide__body p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.carousel-slide__body ul {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.carousel-slide__body li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  font-size: 0.92rem;
  color: #1f2937;
  font-weight: 500;
}
.carousel-slide__body li svg {
  width: 18px;
  height: 18px;
  color: #c6a048;
  flex-shrink: 0;
}

.carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-top: 26px;
}
.carousel-nav .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.carousel-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c3c4c7;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-nav .dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #a98334, #c6a048);
}
.carousel-nav .carousel-arrows {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.carousel-nav .arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #c3c4c7;
  display: grid;
  place-items: center;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.carousel-nav .arrow svg {
  width: 18px;
  height: 18px;
}
.carousel-nav .arrow:hover {
  background: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
  transform: scale(1.06);
}

.global-reach {
  position: relative;
  padding-block: clamp(70px, 10vw, 130px);
  color: #ffffff;
  overflow: hidden;
  background: #1f2937;
}

.global-reach__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.global-reach__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.global-reach__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 38, 38, 0.75), rgba(38, 38, 38, 0.9));
}

.global-reach__content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.global-reach__content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  justify-content: center;
  color: #c6a048;
  margin-bottom: 16px;
}
.global-reach__content .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.global-reach__content h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
  color: #ffffff;
  max-width: 720px;
  margin-inline: auto;
}
.global-reach__content p {
  margin: 18px auto 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.counters {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .counters {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .counters {
    grid-template-columns: 1fr;
  }
}

.counter {
  padding: 30px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.counter.in-view {
  opacity: 1;
  transform: translateY(0);
}
.counter .counter-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(90deg, #cca352, #c6a048);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.counter .counter-number .suffix {
  -webkit-text-fill-color: initial;
  color: #c6a048;
}
.counter .counter-label {
  margin-top: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}

.news {
  padding-block: clamp(64px, 9vw, 120px);
  background: #ffffff;
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #f0f0f1;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
}
.news-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.news-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card__media .news-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.news-card:hover .news-card__media img {
  transform: scale(1.08);
}
.news-card__body {
  padding: 24px;
}
.news-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a98334;
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 12px;
}
.news-card .read-more {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1f2937;
}
.news-card .read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-card .read-more:hover svg {
  transform: translateX(4px);
}
.news-card .read-more:hover {
  color: #a98334;
}

.cta-contact {
  padding-block: clamp(64px, 9vw, 120px);
  background: #262626;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.cta-contact::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 160, 72, 0.28), transparent 70%);
  top: -160px;
  right: -120px;
  animation: floatY 8s ease-in-out infinite;
}
.cta-contact::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 0, 0, 0.18), transparent 70%);
  bottom: -140px;
  left: -80px;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  color: #c6a048;
  margin-bottom: 16px;
}
.contact-copy .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.contact-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.contact-copy p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 50ch;
}
.contact-copy .hero-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-card:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.12);
}
.contact-card .icon-badge {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #cca352, #a98334);
  animation: pulseRing 2.6s ease-in-out infinite;
}
.contact-card .icon-badge svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}
.contact-card span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
}
.contact-card strong {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1f2937;
  margin-top: -70px;
  padding-top: 70px;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 52vh;
  }
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 12s ease-out forwards;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 41, 55, 0.55) 0%, rgba(31, 41, 55, 0.4) 40%, rgba(31, 41, 55, 0.92) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 56px;
}
.page-hero .breadcrumbs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.page-hero .breadcrumbs a:hover {
  color: #c6a048;
}
.page-hero .breadcrumbs svg {
  width: 12px;
  height: 12px;
}
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  color: #c6a048;
  margin-bottom: 14px;
}
.page-hero .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.page-hero h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  max-width: 18ch;
  line-height: 1.1;
}
.page-hero p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-band {
  background: #262626;
  padding-block: 90px 56px;
  margin-top: -70px;
  padding-top: 160px;
  color: #ffffff;
}
.page-band h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.page-band p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 56ch;
}

.service-intro {
  padding-block: clamp(64px, 9vw, 120px);
  background: #ffffff;
}
.service-intro .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .service-intro .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
.service-intro__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.service-intro__media.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.service-intro__copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.service-intro__copy.in-view {
  opacity: 1;
  transform: translateY(0);
}
.service-intro__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  margin-bottom: 16px;
}
.service-intro__copy .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.service-intro__copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.service-intro__copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-features {
  padding-block: clamp(64px, 9vw, 120px);
  background: #f9f6fe;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 64px;
  background: #262626;
  color: #ffffff;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(198, 160, 72, 0.18), transparent 55%);
}
.cta-band .container {
  position: relative;
  z-index: 2;
}
.cta-band h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  max-width: 620px;
  margin-inline: auto;
}
.cta-band p {
  margin: 14px auto 28px;
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.78);
}
.cta-band .hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.related-services {
  padding-block: clamp(64px, 9vw, 120px);
  background: #ffffff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

.related-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
}
.related-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 41, 55, 0.85), rgba(31, 41, 55, 0.1) 60%);
}
.related-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}
.related-card span svg {
  width: 16px;
  height: 16px;
  color: #c6a048;
}
.related-card:hover img {
  transform: scale(1.1);
}

.breadcrumbs-plain {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #4b5563;
  padding-block: 18px;
  border-bottom: 1px solid #f0f0f1;
}
.breadcrumbs-plain a:hover {
  color: #a98334;
}
.breadcrumbs-plain svg {
  width: 12px;
  height: 12px;
}

.dark-features {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 110px);
  background: #262626;
  color: #ffffff;
}
.dark-features::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 160, 72, 0.22), transparent 70%);
  top: -180px;
  right: -140px;
}
.dark-features::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 0, 0, 0.14), transparent 70%);
  bottom: -140px;
  left: -100px;
}
.dark-features .container {
  position: relative;
  z-index: 2;
}

.dark-features__head {
  max-width: 680px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.dark-features__head.in-view {
  opacity: 1;
  transform: translateY(0);
}
.dark-features__head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  color: #c6a048;
  margin-bottom: 16px;
}
.dark-features__head .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.dark-features__head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.dark-features__head p {
  margin-top: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.dark-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1024px) {
  .dark-features-grid {
    grid-template-columns: 1fr;
  }
}

.dark-feature-card {
  padding: 32px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.dark-feature-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.dark-feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}
.dark-feature-card .icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #cca352, #a98334);
  box-shadow: 0 12px 28px rgba(169, 131, 52, 0.35);
  margin-bottom: 22px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.dark-feature-card .icon-badge svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}
.dark-feature-card:hover .icon-badge {
  transform: rotate(-8deg) scale(1.06);
}
.dark-feature-card h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.dark-feature-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}

.symbol-concept {
  padding-block: clamp(64px, 9vw, 120px);
  background: #f9f6fe;
}

.symbol-concept__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.75fr;
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .symbol-concept__grid {
    grid-template-columns: 1fr;
  }
}

.symbol-concept__copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.symbol-concept__copy.in-view {
  opacity: 1;
  transform: translateY(0);
}
.symbol-concept__copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  margin-bottom: 16px;
}
.symbol-concept__copy .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.symbol-concept__copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.symbol-concept__copy p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4b5563;
}

.symbol-concept__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  min-height: 260px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.symbol-concept__media.in-view {
  opacity: 1;
  transform: translateY(0);
}
.symbol-concept__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  background: rgba(31, 41, 55, 0.04);
  border: 1.5px dashed rgba(31, 41, 55, 0.18);
  color: #4b5563;
}
.media-placeholder svg {
  width: 26px;
  height: 26px;
  color: #a98334;
  opacity: 0.7;
}
.media-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 22ch;
}

.quote-section {
  padding-block: clamp(64px, 9vw, 120px);
  background: #f9f6fe;
}
.quote-section .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .quote-section .container {
    grid-template-columns: 1fr;
  }
}

.quote-aside {
  position: sticky;
  top: 100px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.quote-aside.in-view {
  opacity: 1;
  transform: translateY(0);
}
.quote-aside .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a98334;
  margin-bottom: 16px;
}
.quote-aside .eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #c6a048, #e30000);
  border-radius: 2px;
}
.quote-aside h1, .quote-aside h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: #1f2937;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.quote-aside p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .quote-aside {
    position: static;
  }
}

.quote-steps {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.quote-steps li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: nowrap;
  font-size: 0.94rem;
  color: #1f2937;
}
.quote-steps li .num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cca352, #a98334);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.quote-form-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(31, 41, 55, 0.12);
  padding: clamp(28px, 4vw, 46px);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0ms;
}
.quote-form-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field--full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
}
.field label .req {
  color: #e30000;
  margin-left: 2px;
}
.field input, .field select, .field textarea {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  border-radius: 8px;
  border: 1.5px solid #c3c4c7;
  background: #ffffff;
  color: #1f2937;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: #c6a048;
  box-shadow: 0 0 0 4px rgba(198, 160, 72, 0.14);
}
.field input::placeholder, .field select::placeholder, .field textarea::placeholder {
  color: #828c99;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-note {
  font-size: 0.82rem;
  color: #828c99;
  margin-top: 6px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}
.form-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #a98334;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(198, 160, 72, 0.12);
  border: 1px solid rgba(169, 131, 52, 0.3);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 0.92rem;
  color: #1f2937;
}
.form-success.is-visible {
  display: flex;
}
.form-success svg {
  width: 22px;
  height: 22px;
  color: #a98334;
  flex-shrink: 0;
}

.linktree {
  min-height: 100vh;
  padding-block: 90px 60px;
  background: radial-gradient(circle at 15% 10%, rgba(198, 160, 72, 0.16), transparent 45%), radial-gradient(circle at 85% 90%, rgba(6, 0, 151, 0.35), transparent 50%), #1f2937;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.linktree-card {
  width: min(480px, 92vw);
  margin-inline: auto;
  text-align: center;
}

.linktree-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  box-shadow: 0 12px 28px rgba(169, 131, 52, 0.35);
  animation: floatY 5s ease-in-out infinite;
}
.linktree-avatar img {
  width: 62px;
  height: auto;
}

.linktree-card h1 {
  color: #ffffff;
  font-size: 1.6rem;
}

.linktree-card .handle {
  color: #c6a048;
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 6px;
}

.linktree-card p.bio {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
}

.linktree-links {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.link-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  position: relative;
  padding: 17px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  backdrop-filter: blur(6px);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.link-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.link-btn:hover {
  transform: translateY(-4px) scale(1.015);
  background: rgba(255, 255, 255, 0.12);
  border-color: #c6a048;
}
.link-btn--featured {
  background: linear-gradient(135deg, #cca352, #a98334);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(169, 131, 52, 0.35);
}
.link-btn .placeholder-tag {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 10px;
  border-radius: 999px;
}

.linktree-footer {
  margin-top: 40px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.linktree-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}
.linktree-back:hover {
  color: #c6a048;
}

.site-footer {
  background: #0d0c1a;
  color: rgba(255, 255, 255, 0.72);
  padding-top: clamp(56px, 8vw, 90px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 40px;
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: 22px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}
.footer-col li {
  margin-bottom: 13px;
}
.footer-col a {
  font-size: 0.92rem;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}
.footer-col a:hover {
  color: #c6a048;
  padding-left: 4px;
}

.footer-newsletter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.footer-newsletter__head h4 {
  margin-bottom: 0;
}
.footer-newsletter .social-link-img {
  flex-shrink: 0;
  display: block;
}
.footer-newsletter .social-link-img:hover {
  color: inherit;
  padding-left: 0;
}
.footer-newsletter .social-link-img img {
  display: block;
  height: 56px;
  width: auto;
  object-fit: contain;
}
.footer-newsletter form {
  display: flex;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 18px;
  color: #ffffff;
  font-size: 0.88rem;
  outline: none;
}
.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer-newsletter button {
  padding: 0 20px;
  background: linear-gradient(135deg, #cca352, #a98334);
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: filter 0.25s;
}
.footer-newsletter button:hover {
  filter: brightness(1.1);
}
.footer-newsletter button svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-block: 22px;
  font-size: 0.82rem;
}
.footer-bottom .legal-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom a:hover {
  color: #c6a048;
}
