:root {
  --color-primary: #ffd400;
  --color-primary-dark: #ffd400;
  --color-primary-light: #ffd400;
  --color-bg-light: #ffffff;
  --color-bg-cream: #f6f6f6;
  --color-bg-card: #ffffff;
  --color-text-dark: #1a1a1a;
  --color-text-muted: #666666;
  --color-border: rgba(0, 0, 0, 0.08);
  --font-primary: Inter Tight, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  --container-padding: clamp(1.5rem, 5vw, 4rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0em;
  color: #1a1a1a;
}

.heading-hero {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
@media (max-width: 768px) {
  .heading-hero {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

.heading-1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.heading-2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0em;
}

.heading-3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.heading-4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
}

p {
  letter-spacing: 0;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #333333;
}
p:last-child {
  margin-bottom: 0;
}

.text-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-small {
  font-size: 0.875rem;
}

.text-caption {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.text-primary {
  color: #ffd400;
}

.text-muted {
  color: #666666;
}

.text-subtle {
  color: #999999;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

a {
  color: #ffd400;
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: #ffd400;
}

strong, b {
  font-weight: 700;
  color: #1a1a1a;
}

em, i {
  font-style: italic;
}

.highlight {
  position: relative;
  display: inline-block;
  color: #ffd400;
}
.highlight::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: 0;
  width: 100%;
  height: 0.25em;
  background-color: #ffd400;
  opacity: 0.2;
  z-index: -1;
}

.text-gradient {
  background: linear-gradient(135deg, #ffd400 0%, #ffd400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

blockquote {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #666666;
  border-left: 2px solid #ffd400;
  padding-left: 2rem;
  margin: 3rem 0;
}
blockquote p {
  margin-bottom: 1.5rem;
}
blockquote strong {
  color: #1a1a1a;
}

::-moz-selection {
  background-color: rgba(255, 212, 0, 0.2);
  color: #1a1a1a;
}

::selection {
  background-color: rgba(255, 212, 0, 0.2);
  color: #1a1a1a;
}

.text-container {
  max-width: 720px;
}

.text-container--wide {
  max-width: 900px;
}

.text-container--narrow {
  max-width: 540px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--primary {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1.5px solid #1a1a1a;
}
.btn--primary::before {
  background-color: #ffd400;
}
.btn--primary:hover {
  color: #1a1a1a;
  border-color: #ffd400;
}
.btn--primary:active {
  transform: scale(0.97);
}

.btn--secondary {
  background-color: transparent;
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
}
.btn--secondary::before {
  background-color: #1a1a1a;
}
.btn--secondary:hover {
  color: #ffffff;
}

.btn--outline {
  background-color: transparent;
  color: #ffd400;
  border: 1.5px solid #ffd400;
}
.btn--outline::before {
  background-color: #ffd400;
}
.btn--outline:hover {
  color: #ffffff;
}

.btn--ghost {
  background-color: transparent;
  color: #1a1a1a;
  padding: 1rem 1.5rem;
  overflow: visible;
}
.btn--ghost::before {
  display: none;
}
.btn--ghost::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background-color: #1a1a1a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--ghost:hover {
  color: #ffd400;
}
.btn--ghost:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #ffd400;
}

.btn--icon {
  padding: 0.75rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.btn--icon svg, .btn--icon img {
  width: 22px;
  height: 22px;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.btn--arrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
  color: #1a1a1a;
  padding: 0;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  overflow: visible;
}
.btn--arrow::before {
  display: none;
}
.btn--arrow .arrow {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn--arrow:hover {
  color: #ffd400;
}
.btn--arrow:hover .arrow {
  transform: translateX(8px);
}

.btn--magnetic {
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.btn-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}
@media (max-width: 768px) {
  .btn-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
  }
  .btn-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-group .btn {
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  transition: all 0.3s ease;
}
.menu-open .header {
  z-index: 1002;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.header__logo {
  display: flex;
  align-items: center;
}
.header__logo a {
  display: flex;
  align-items: center;
}
.header__logo a svg {
  fill: #fff;
}
.header__logo img {
  height: 40px;
  width: auto;
  transition: height 0.3s ease;
}
@media (max-width: 768px) {
  .header__logo img {
    height: 32px;
  }
}
.header__logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0em;
  transition: color 0.3s ease;
}
.header__logo .logo-text span {
  color: #ffd400;
}

.header.header--scrolled {
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.header.header--scrolled .header__logo svg {
  fill: #000;
}
.header.header--scrolled .header__logo .logo-text {
  color: #1a1a1a;
}
.header.header--scrolled .header__logo .logo-text span {
  color: #ffd400;
}
.header.header--scrolled .header__menu-icon span {
  background-color: #1a1a1a;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.header__menu-icon {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header__menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.menu-open .header__menu-icon span {
  background-color: #fff;
}
.menu-open .header__menu-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-open .header__menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-open .header__menu-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header__cta {
  display: none;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #ffffff;
  transition:
    color      0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform  0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s ease;
}
.header__cta::before {
  border-radius: 6px;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.header__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.header__cta:hover {
  background-color: #ffffff;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.5),
    0 6px 20px rgba(255, 255, 255, 0.2),
    0 16px 40px rgba(0, 0, 0, 0.15);
}
.header__cta:hover::after {
  left: 130%;
}
.header__cta:active {
  transform: translateY(1px) scale(0.985);
  transition-duration: 0.12s;
}
.header--scrolled .header__cta {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}
.header--scrolled .header__cta:hover {
  background-color: #ffd400;
  border-color: #ffd400;
  color: #1a1a1a;
  box-shadow:
    0 0 0 1px rgba(255, 212, 0, 0.45),
    0 6px 20px rgba(255, 212, 0, 0.28),
    0 20px 48px rgba(0, 0, 0, 0.14);
}
@media (min-width: 992px) {
  .header__cta {
    display: inline-flex;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #313131;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: circle(0% at calc(100% - 48px) 48px);
  visibility: hidden;
  opacity: 0;
  transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s 0.8s, opacity 0.3s 0.5s;
}
.menu-overlay.active {
  clip-path: circle(150% at calc(100% - 48px) 48px);
  visibility: visible;
  opacity: 1;
  transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0s 0s, opacity 0.3s 0s;
}
.menu-overlay.active .menu-overlay__nav-item {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.active .menu-overlay__footer {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay__container {
  width: 100%;
  max-width: 1440px;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  padding-top: 80px;
  padding-bottom: 2rem;
}

.menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.menu-overlay__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .menu-overlay__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    align-items: center;
  }
}

.menu-overlay__nav-item {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-overlay__nav-item:last-child {
  margin-bottom: 0;
}
.menu-overlay__nav-item:nth-child(1) {
  transition-delay: 0.15s;
}
.menu-overlay__nav-item:nth-child(2) {
  transition-delay: 0.2s;
}
.menu-overlay__nav-item:nth-child(3) {
  transition-delay: 0.25s;
}
.menu-overlay__nav-item:nth-child(4) {
  transition-delay: 0.3s;
}
.menu-overlay__nav-item:nth-child(5) {
  transition-delay: 0.35s;
}
.menu-overlay__nav-item:nth-child(6) {
  transition-delay: 0.4s;
}
.menu-overlay__nav-item:nth-child(7) {
  transition-delay: 0.45s;
}
.menu-overlay__nav-item:nth-child(8) {
  transition-delay: 0.5s;
}

.menu-overlay__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #999999;
  text-decoration: none;
  letter-spacing: 0em;
  position: relative;
  transition: all 0.3s ease;
}
.menu-overlay__nav-link .nav-number {
  font-size: 0.35em;
  color: #999999;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.menu-overlay__nav-link .nav-text {
  position: relative;
}
.menu-overlay__nav-link .nav-text::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 0;
  height: 0.08em;
  background-color: #ffd400;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-overlay__nav-link:hover {
  color: #ffd400;
  transform: translateX(1.5rem);
}
.menu-overlay__nav-link:hover .nav-number {
  opacity: 1;
  transform: translateX(0);
  color: #ffd400;
}
.menu-overlay__nav-link:hover .nav-text::after {
  width: 100%;
}

.menu-overlay__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
  gap: 2rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
@media (max-width: 768px) {
  .menu-overlay__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 1.5rem;
  }
}

.menu-overlay__contact {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .menu-overlay__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.menu-overlay__contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
}

.menu-overlay__contact-link {
  font-size: 0.875rem;
  color: #666666;
  transition: color 0.15s ease;
}
.menu-overlay__contact-link:hover {
  color: #ffd400;
}

.menu-overlay__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background-color: #25D366;
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.menu-overlay__whatsapp svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.menu-overlay__whatsapp:hover {
  background-color: #128C7E;
  color: white;
}

.menu-overlay__social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .menu-overlay__social {
    align-items: flex-start;
  }
}

.menu-overlay__social-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999999;
}

.menu-overlay__social-links {
  display: flex;
  gap: 1rem;
}

.menu-overlay__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.menu-overlay__social-link svg {
  width: 18px;
  height: 18px;
  fill: #666666;
  transition: fill 0.3s ease;
}
.menu-overlay__social-link:hover {
  border-color: #ffd400;
  background-color: #ffd400;
}
.menu-overlay__social-link:hover svg {
  fill: #313131;
}

.menu-overlay__decoration {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 212, 0, 0.1);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}
.menu-overlay__decoration::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 212, 0, 0.05);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .menu-overlay__decoration {
    display: none;
  }
}

body.menu-open {
  overflow: hidden;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 9999;
}
@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none !important;
  }
}

.cursor__circle {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border: 1px solid rgba(26, 26, 26, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  will-change: transform;
  mix-blend-mode: difference;
}
.cursor--hover .cursor__circle {
  width: 60px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  background-color: rgba(255, 212, 0, 0.2);
  border-color: #ffd400;
}
.cursor--click .cursor__circle {
  width: 30px;
  height: 30px;
  margin-left: -15px;
  margin-top: -15px;
}
.cursor--text .cursor__circle {
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  background-color: #ffd400;
  border-color: #ffd400;
  mix-blend-mode: normal;
}
.cursor--hidden .cursor__circle {
  opacity: 0;
}

.cursor__dot {
  position: fixed;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  margin-top: -4px;
  background-color: #ffd400;
  border-radius: 50%;
  pointer-events: none;
  transition: width 0.15s ease, height 0.15s ease, margin 0.15s ease, opacity 0.15s ease;
  will-change: transform;
}
.cursor--hover .cursor__dot {
  opacity: 0;
  width: 0;
  height: 0;
}
.cursor--text .cursor__dot {
  opacity: 0;
}

.cursor__text {
  position: fixed;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #313131;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.cursor--text .cursor__text {
  opacity: 1;
}

.cursor-active {
  cursor: none !important;
}
.cursor-active *, .cursor-active *::before, .cursor-active *::after {
  cursor: none !important;
}

.cursor.is-visible .cursor__circle,
.cursor.is-visible .cursor__dot {
  opacity: 1;
}

.cursor.is-outside .cursor__circle,
.cursor.is-outside .cursor__dot {
  opacity: 0;
}

.hero-wrapper {
  position: relative;
  height: 400vh;
}

.hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #0a0a0a;
}

.hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__slide.active {
  opacity: 1;
}

.hero__slide-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__slide.active .hero__slide-bg {
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}
.hero__overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-bottom: 12vh;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__content {
    padding-bottom: 18vh;
    align-items: center;
  }
}

.hero__content-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.hero__headline {
  font-size: clamp(2.8rem, 7.5vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 2rem;
  overflow: visible;
  position: relative;
}

.hero__fixed-text {
  display: block;
  color: #fff;
  position: relative;
}

.hero__rotating-wrapper {
  display: block;
  position: relative;
  height: 1.15em;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero__rotating-wrapper {
    height: 1.2em;
  }
}

.hero__rotating-word {
  display: block;
  color: #ffd400;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  white-space: nowrap;
}
.hero__rotating-word.active {
  opacity: 1;
  transform: translateY(0);
}
.hero__rotating-word.leaving {
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.3s ease;
}

.hero__descriptions {
  position: relative;
  height: 3em;
  margin-bottom: 3rem;
  max-width: 540px;
}
@media (max-width: 768px) {
  .hero__descriptions {
    height: 4em;
    max-width: 100%;
  }
}

.hero__description {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease 0.15s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.hero__description.active {
  opacity: 1;
  transform: translateY(0);
}
.hero__description.leaving {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .hero__description {
    font-size: 1rem;
  }
}

.hero__ctas {
  position: relative;
  height: 48px;
}

.hero__cta-link {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.hero__cta-link::before {
  background-color: #ffd400;
}
.hero__cta-link:hover {
  color: #111;
  border-color: #ffd400;
}
.hero__cta-link {
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.25s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s, color 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}
.hero__cta-link.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.hero__cta-link.leaving {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__counter {
  position: absolute;
  top: 50%;
  right: clamp(1.5rem, 5vw, 4rem);
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .hero__counter {
    display: none;
  }
}

.hero__counter-current {
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.hero__counter-separator {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0.5rem 0;
  transform: rotate(-15deg);
  display: block;
}

.hero__counter-total {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.3);
}

.hero__nav {
  position: absolute;
  bottom: 4rem;
  left: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  gap: 1rem;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero__nav {
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.hero__nav-dot {
  position: relative;
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero__nav-dot.active {
  width: 80px;
}
.hero__nav-dot.active .hero__nav-progress {
  transition: width 0.1s linear;
}
.hero__nav-dot.active .hero__nav-label {
  opacity: 1;
}
.hero__nav-dot:hover {
  background: rgba(255, 255, 255, 0.35);
}
@media (max-width: 768px) {
  .hero__nav-dot {
    width: 40px;
  }
  .hero__nav-dot.active {
    width: 56px;
  }
}

.hero__nav-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #ffd400;
  border-radius: 2px;
}

.hero__nav-label {
  position: absolute;
  bottom: 12px;
  left: 0;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__nav-label {
    display: none;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%, 100% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    transform: scaleY(0.5);
    transform-origin: top;
  }
}
.social-proof {
  position: relative;
  padding: 8rem 0;
  background-color: #ffffff;
  overflow: hidden;
}

.social-proof__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.social-proof__header {
  text-align: center;
  margin-bottom: 6rem;
}

.social-proof__label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd400;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.social-proof__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0em;
  color: #1a1a1a;
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .social-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .social-proof__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.social-proof__card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 3rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.social-proof__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.social-proof__card:hover .social-proof__number {
  color: #ffd400;
}

.social-proof__quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  color: rgba(212, 160, 18, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.social-proof__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.social-proof__number span {
  font-size: 0.6em;
  color: #ffd400;
}

.social-proof__result {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.social-proof__client {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.social-proof__client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #ffd400;
  font-size: 0.875rem;
}

.social-proof__client-info {
  flex: 1;
}

.social-proof__client-name {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
  font-size: 0.875rem;
}

.social-proof__client-company {
  font-size: 0.75rem;
  color: #999999;
}

.social-proof__decoration {
  display: none;
}

.manifesto {
  position: relative;
  padding: 8rem 0;
  background-color: #313131;
  overflow: hidden;
}

.manifesto__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 992px) {
  .manifesto__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.manifesto__content {
  position: relative;
}

.manifesto__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #dadada;
  margin-bottom: 2rem;
  font-weight: 500;
}
.manifesto__label::before {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #ffd400;
}

.manifesto__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 3rem;
  color: #dadada;
}

.manifesto__text {
  position: relative;
}
.manifesto__text p {
  font-size: 1.125rem;
  color: #dadada;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.manifesto__text p:first-of-type {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: #dadada;
  font-weight: 500;
}
.manifesto__text p strong {
  color: #ffd400;
  font-weight: 600;
}
.manifesto__text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .manifesto__text {
    padding-left: 2rem;
  }
}

.manifesto__cta {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .manifesto__cta {
    padding-left: 2rem;
  }
}

.manifesto__media {
  position: relative;
}
@media (max-width: 992px) {
  .manifesto__media {
    order: -1;
  }
}

.manifesto__video-wrapper {
  position: relative;
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 9/16;
  max-height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.manifesto__video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.manifesto__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.manifesto__video-placeholder.is-playing .manifesto__play-btn {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

.manifesto__play-btn {
  width: 72px;
  height: 72px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.manifesto__play-btn svg {
  width: 24px;
  height: 24px;
  fill: #1a1a1a;
  margin-left: 3px;
}
.manifesto__play-btn:hover {
  transform: scale(1.1);
  background-color: #ffd400;
}
.manifesto__play-btn:hover svg {
  fill: #fff;
}

.manifesto__float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: rgba(212, 160, 18, 0.08);
  border-radius: 16px;
  transform: rotate(15deg);
  z-index: -1;
}

.manifesto__decoration {
  display: none;
}

.manifesto__noise {
  display: none;
}

.method {
  position: relative;
  padding: 8rem 0;
  background-color: #ffffff;
  overflow: hidden;
}
.method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.method__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.method__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 6rem;
}

.method__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd400;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.method__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0em;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.method__subtitle {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
}

.method__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 992px) {
  .method__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.method__visual {
  position: relative;
}
@media (max-width: 992px) {
  .method__visual {
    order: -1;
  }
}

.method__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.method__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.method__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6f6f6 0%, #fafafa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.method__image-placeholder span {
  font-size: 0.875rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.method__badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .method__badge {
    width: 64px;
    height: 64px;
    top: -10px;
    right: -10px;
  }
}

.method__badge-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 768px) {
  .method__badge-number {
    font-size: 1.25rem;
  }
}

.method__badge-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.method__content {
  position: relative;
}

.method__steps {
  list-style: none;
  counter-reset: step-counter;
}

.method__step {
  position: relative;
  padding-left: 6rem;
  padding-bottom: 3rem;
  counter-increment: step-counter;
}
.method__step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
}
.method__step::after {
  content: counter(step-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  border: 1.5px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.method__step:last-child {
  padding-bottom: 0;
}
.method__step:last-child::before {
  display: none;
}
.method__step:hover::after {
  background-color: #1a1a1a;
  color: #ffffff;
}

.method__step-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.method__step-desc {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
}

.method__bg-text {
  display: none;
}

/* Method — horizontal steps track */
.method__steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
}

.method__step-h {
  position: relative;
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease;
  overflow: hidden;
}
.method__step-h:last-child {
  border-right: none;
}
.method__step-h::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffd400;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.method__step-h:hover::before {
  transform: scaleX(1);
}
.method__step-h:hover {
  background: #222222;
}

.method__step-h-num {
  display: block;
  font-size: clamp(3rem, 4vw, 4.5rem);
  font-weight: 800;
  color: #ffd400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}

.method__step-h-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.method__step-h-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

@media (max-width: 992px) {
  .method__steps-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .method__step-h:nth-child(2) {
    border-right: none;
  }
  .method__step-h:nth-child(1),
  .method__step-h:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 560px) {
  .method__steps-track {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .method__step-h {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .method__step-h:last-child {
    border-bottom: none;
  }
}

.clients {
  position: relative;
  padding: 8rem 0;
  background-color: #f6f6f6;
  overflow: hidden;
}

.clients__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.clients__header {
  text-align: center;
  margin-bottom: 6rem;
}

.clients__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd400;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.clients__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0em;
  color: #1a1a1a;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .clients__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 576px) {
  .clients__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.clients__item {
  position: relative;
  aspect-ratio: 3/2;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.clients__item img {
  width: 110px;
  margin-bottom: -5px;
}
.clients__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.15);
}
.clients__item:hover .clients__logo-placeholder {
  color: #ffd400;
}

.clients__logo-placeholder {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999999;
  transition: color 0.3s ease;
}

.clients__counter {
  text-align: center;
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.clients__counter-number {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.clients__counter-number span {
  font-size: 0.4em;
  font-weight: 500;
  color: #666666;
  vertical-align: middle;
  margin-left: 0.5rem;
}

.clients__counter-text {
  font-size: 1.125rem;
  color: #666666;
  margin-top: 1rem;
}

.clients__decoration {
  display: none;
}

/* Cases Section */
.cases-section {
  display: none;
}

.cases-section__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.cases-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
}

.cases-section__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd400;
  margin-bottom: 1rem;
  font-weight: 500;
}
.cases-section__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background-color: #ffd400;
}

.cases-section__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1a1a1a;
}

.cases-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cases-section__card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cases-section__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}

.cases-section__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cases-section__card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #e8e8e8;
}
.cases-section__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cases-section__card:hover .cases-section__card-image img {
  transform: scale(1.04);
}

.cases-section__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #f0f0f0 100%);
}

.cases-section__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cases-section__card:hover .cases-section__card-overlay {
  opacity: 1;
}

.cases-section__card-cta {
  color: #ffd400;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cases-section__card-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.cases-section__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.cases-section__card:hover .cases-section__card-title {
  color: #ffd400;
}

@media (max-width: 992px) {
  .cases-section__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .cases-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cases-section__grid {
    grid-template-columns: 1fr;
  }
}

.news {
  position: relative;
  padding: 8rem 0;
  background-color: #ffffff;
  overflow: hidden;
}
.news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.news__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.news__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .news__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

.news__header-content {
  max-width: 500px;
}

.news__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd400;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.news__label::before {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #ffd400;
}

.news__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0em;
  color: #1a1a1a;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .news__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.news__card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.news__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}
.news__card:hover .news__card-image img {
  transform: scale(1.03);
}
.news__card:hover .news__card-title {
  color: #ffd400;
}
.news__card:hover .news__card-arrow {
  transform: translateX(4px);
}

.news__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #f6f6f6;
}
.news__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6f6f6 0%, #fafafa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__card-placeholder span {
  font-size: 0.875rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news__card-category {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 6px 12px;
  background-color: #ffffff;
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  z-index: 2;
}

.news__card-content {
  padding: 2rem;
}

.news__card-date {
  font-size: 0.75rem;
  color: #999999;
  margin-bottom: 1rem;
}

.news__card-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.news__card-excerpt {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news__card-read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.news__card-arrow {
  transition: transform 0.3s ease;
}

.news__cta {
  text-align: center;
  margin-top: 6rem;
}

.news__decoration {
  display: none;
}

.contact {
  position: relative;
  padding: 8rem 0;
  background-color: #f4f4f4;
  overflow: hidden;
}

.contact__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact__content {
  position: relative;
}

.contact__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffd400;
  margin-bottom: 2rem;
}
.contact__label::before {
  content: "";
  width: 24px;
  height: 2px;
  background-color: #ffd400;
}

.contact__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.contact__title .highlight {
  color: #ffd400;
}

.contact__text {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact__info {
  margin-top: 4rem;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact__info-item:last-child {
  margin-bottom: 0;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 212, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__info-icon svg {
  width: 24px;
  height: 24px;
  color: #ffd400;
}

.contact__info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.contact__info-content p, .contact__info-content a {
  font-size: 1rem;
  color: #666666;
  transition: color 0.15s ease;
}
.contact__info-content a:hover {
  color: #ffd400;
}

.contact__form-wrapper {
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.contact__form-wrapper::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(229, 229, 229, 0.5) 0%, transparent 50%, rgba(147, 147, 147, 0.2) 100%);
  border-radius: inherit;
  z-index: -1;
}
@media (max-width: 768px) {
  .contact__form-wrapper {
    padding: 3rem;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 576px) {
  .contact__form-row {
    grid-template-columns: 1fr;
  }
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact__form-input,
.contact__form-textarea,
.contact__form-select {
  width: 100%;
  padding: 1.5rem;
  background-color: rgba(49, 49, 49, 0.5);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 8px;
  color: #1a1a1a;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  transition: all 0.15s ease;
}
.contact__form-input::-moz-placeholder, .contact__form-textarea::-moz-placeholder, .contact__form-select::-moz-placeholder {
  color: #999999;
}
.contact__form-input::placeholder,
.contact__form-textarea::placeholder,
.contact__form-select::placeholder {
  color: #999999;
}
.contact__form-input:focus,
.contact__form-textarea:focus,
.contact__form-select:focus {
  outline: none;
  border-color: #ffd400;
  background-color: rgba(49, 49, 49, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.1);
}
.contact__form-input:hover:not(:focus),
.contact__form-textarea:hover:not(:focus),
.contact__form-select:hover:not(:focus) {
  border-color: rgba(26, 26, 26, 0.2);
}

.contact__form-textarea {
  min-height: 150px;
  resize: vertical;
}

.contact__form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 4rem;
  cursor: pointer;
}
.contact__form-select option {
  background-color: #ffffff;
  color: #1a1a1a;
}

.cf-turnstile {
  height: 0;
  overflow: hidden;
}

button.contact__form-submit.btn {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 1.125rem 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition:
    color        0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform    0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow   0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
button.contact__form-submit.btn::before {
  border-radius: 8px;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Streak de luz diagonal */
button.contact__form-submit.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.13),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
button.contact__form-submit.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(255, 212, 0, 0.45),
    0 6px 20px rgba(255, 212, 0, 0.28),
    0 20px 48px rgba(0, 0, 0, 0.14);
}
button.contact__form-submit.btn:hover::after {
  left: 130%;
}
button.contact__form-submit.btn:active {
  transform: translateY(1px) scale(0.985);
  box-shadow:
    0 0 0 1px rgba(255, 212, 0, 0.3),
    0 2px 8px rgba(255, 212, 0, 0.18);
  transition-duration: 0.12s;
}
button.contact__form-submit.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact__form-message {
  padding: 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  display: none;
}
.contact__form-message.success {
  display: block;
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}
.contact__form-message.error {
  display: block;
  background-color: rgba(255, 68, 68, 0.1);
  border: 1px solid rgba(255, 68, 68, 0.3);
  color: #ff4444;
}

/* Validação de campos */
.contact__form-group.has-error .contact__form-input,
.contact__form-group.has-error .contact__form-textarea,
.contact__form-group.has-error .contact__form-select {
  border-color: #ff4444;
  background-color: rgba(255, 68, 68, 0.04);
}

.contact__form-error {
  display: block;
  font-size: 0.8rem;
  color: #ff4444;
  margin-top: 0.375rem;
}

.contact__decoration {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 212, 0, 0.1);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 992px) {
  .contact__decoration {
    display: none;
  }
}

.contact__bg-text {
  position: absolute;
  bottom: 5%;
  left: 0;
  font-size: 15vw;
  font-weight: 800;
  color: rgba(26, 26, 26, 0.02);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  line-height: 1;
}

.footer {
  position: relative;
  padding: 6rem 0 3rem;
  background-color: #f4f4f4;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 212, 0, 0.3), transparent);
}

.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer__brand {
  max-width: 350px;
}
@media (max-width: 768px) {
  .footer__brand {
    max-width: 100%;
  }
}

.footer__logo {
  margin-bottom: 2rem;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
}
.footer__logo .logo-text span {
  color: #ffd400;
}

.footer__about {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: #666666;
  transition: fill 0.3s ease;
}
.footer__social-link:hover {
  background-color: #ffd400;
  transform: translateY(-3px);
}
.footer__social-link:hover svg {
  fill: #313131;
}

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.footer__links {
  list-style: none;
}

.footer__link {
  margin-bottom: 1rem;
}
.footer__link a {
  font-size: 1rem;
  color: #666666;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__link a::before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #ffd400;
  transition: width 0.3s ease;
}
.footer__link a:hover {
  color: #ffd400;
  padding-left: 1rem;
}
.footer__link a:hover::before {
  width: 12px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #666666;
}
.footer__contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #ffd400;
  margin-top: 2px;
}
.footer__contact-item a {
  color: #666666;
}
.footer__contact-item a:hover {
  color: #ffd400;
}
.footer__contact-item:last-child {
  margin-bottom: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(26, 26, 26, 0.05);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: #999999;
}
.footer__copyright a {
  color: #ffd400;
}
.footer__copyright a:hover {
  text-decoration: underline;
}

.footer__legal {
  display: flex;
  gap: 2rem;
}
@media (max-width: 576px) {
  .footer__legal {
    flex-direction: column;
    gap: 1rem;
  }
}

.footer__legal-link {
  font-size: 0.875rem;
  color: #999999;
  transition: color 0.15s ease;
}
.footer__legal-link:hover {
  color: #ffd400;
}

.footer__back-to-top {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background-color: #ffd400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.footer__back-to-top svg {
  width: 24px;
  height: 24px;
  fill: #313131;
}
.footer__back-to-top:hover {
  transform: translateX(-50%) translateY(-4px);
  box-shadow: 0 0 40px rgba(255, 212, 0, 0.15);
}

.footer__decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 200px;
  background: radial-gradient(circle at bottom right, rgba(255, 212, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

[data-reveal] {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal=up] {
  transform: translateY(60px);
}
[data-reveal=up].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal=left] {
  transform: translateX(-60px);
}
[data-reveal=left].revealed {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal=right] {
  transform: translateX(60px);
}
[data-reveal=right].revealed {
  opacity: 1;
  transform: translateX(0);
}

[data-reveal=fade].revealed {
  opacity: 1;
}

[data-reveal=zoom] {
  transform: scale(0.9);
}
[data-reveal=zoom].revealed {
  opacity: 1;
  transform: scale(1);
}

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

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

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

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

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

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

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

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

[data-reveal-delay="9"] {
  transition-delay: 0.9s;
}

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

[data-reveal-delay="11"] {
  transition-delay: 1.1s;
}

[data-reveal-delay="12"] {
  transition-delay: 1.2s;
}

.text-reveal {
  overflow: hidden;
}
.text-reveal .line {
  display: block;
  overflow: hidden;
}
.text-reveal .word {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-reveal.revealed .word {
  transform: translateY(0);
}
.text-reveal .line:nth-child(1) .word {
  transition-delay: 0s;
}
.text-reveal .line:nth-child(2) .word {
  transition-delay: 0.1s;
}
.text-reveal .line:nth-child(3) .word {
  transition-delay: 0.2s;
}
.text-reveal .line:nth-child(4) .word {
  transition-delay: 0.3s;
}
.text-reveal .line:nth-child(5) .word {
  transition-delay: 0.4s;
}

.char-reveal .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.char-reveal.revealed .char {
  opacity: 1;
  transform: translateY(0);
}

.hover-underline {
  position: relative;
  display: inline-block;
}
.hover-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffd400;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hover-fill {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hover-fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffd400;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.hover-fill:hover::before {
  transform: translateY(0);
}

.magnetic {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.skeleton {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.skeleton::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.05), transparent);
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.rotate-slow {
  animation: rotate-slow 20s linear infinite;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
.glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
  }
  to {
    box-shadow: 0 0 40px rgba(255, 212, 0, 0.6);
  }
}
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #313131;
  z-index: 9998;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.page-transition.active {
  transform: scaleY(1);
  transform-origin: top;
}

.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-layer {
  will-change: transform;
}

.counter {
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
  position: relative;
  padding: 8rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.5rem 3rem;
  background-color: #ffd400;
  color: #313131;
  font-weight: 700;
  z-index: 10000;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1.5rem;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #313131;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.page-loader__spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(26, 26, 26, 0.1);
  border-top-color: #ffd400;
  border-radius: 50%;
  animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}
html.smooth-scroll {
  scroll-behavior: smooth;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 1.5rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.mt-5 {
  margin-top: 4rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.mb-5 {
  margin-bottom: 4rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 1.5rem;
}

.gap-3 {
  gap: 2rem;
}

.gap-4 {
  gap: 3rem;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}
/*# sourceMappingURL=main.css.map */
