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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #B6B3BB;
  background: #1B1C20;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

::selection {
  background: rgba(255, 107, 44, 0.25);
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1B1C20;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #FF6B2C, #FFA92B);
  border-radius: 10px;
}

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

.section {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
}

.section__label {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FFA92B;
  background: rgba(255, 169, 43, 0.08);
  border: 1px solid rgba(255, 169, 43, 0.2);
}

.section__title {
  font-size: clamp(30px, 4.4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.gradient-text {
  background: linear-gradient(120deg, #FF8A3D 0%, #FFB347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  position: relative;
  padding: 15px 30px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn i {
  font-size: 0.95em;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn:active {
  transform: translateY(-1px) scale(0.98);
}
.btn:focus-visible {
  outline: 2px solid #FFA92B;
  outline-offset: 3px;
}
.btn--primary {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  background-size: 180% 180%;
  box-shadow: 0 12px 30px rgba(255, 138, 61, 0.35);
}
.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(255, 169, 43, 0.4);
}
.btn--primary:hover i {
  transform: translateX(4px);
}
.btn--ghost {
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn--ghost:hover {
  border-color: rgba(255, 169, 43, 0.5);
  color: #FFA92B;
}
.btn--ghost:hover i {
  transform: translateY(2px);
}
.btn--block {
  width: 100%;
}
@media (max-width: 576px) {
  .btn {
    padding: 13px 24px;
    font-size: 15px;
  }
}

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
}
.header.is-scrolled {
  padding: 14px 0;
  background: rgba(27, 28, 32, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}
.header__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}
.header__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #B6B3BB;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__social-link:hover {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  border-color: transparent;
  transform: translateY(-3px);
}
@media (max-width: 992px) {
  .header__social {
    display: none;
  }
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 11px;
  text-decoration: none;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}
.logo__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 9px rgba(255, 169, 43, 0.5));
  animation: float 4s ease-in-out infinite;
  transition: filter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.logo__text {
  white-space: nowrap;
}
.logo__accent {
  color: #FFA92B;
}
.logo__studio {
  color: #B6B3BB;
  font-weight: 500;
}
.logo:hover .logo__icon {
  filter: drop-shadow(0 0 16px rgba(255, 169, 43, 0.85));
}
@media (max-width: 360px) {
  .logo {
    font-size: 20px;
  }
}

.logo-mark {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.logo-mark__spark {
  transform-origin: center;
  transform-box: fill-box;
  animation: sparkPulse 2.2s ease-in-out infinite;
}

.nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 34px;
  list-style: none;
}
.nav__link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #B6B3BB;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link:hover, .nav__link.is-active {
  color: #FFFFFF;
}
.nav__link:hover::after, .nav__link.is-active::after {
  width: 100%;
}
@media (max-width: 992px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    padding: 100px 32px 40px;
    background: rgba(27, 28, 32, 0.98);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav.is-open {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .nav__link {
    font-size: 20px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s;
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 90px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background: radial-gradient(60% 60% at 80% 10%, rgba(255, 107, 44, 0.28) 0%, transparent 60%), radial-gradient(50% 50% at 10% 90%, rgba(255, 169, 43, 0.16) 0%, transparent 60%), linear-gradient(180deg, #1A1206 0%, #1B1C20 100%);
}
.hero__stars {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(1px 1px at 20% 30%, rgba(255, 107, 44, 0.5), transparent), radial-gradient(1px 1px at 60% 70%, rgba(12, 13, 16, 0.6), transparent), radial-gradient(1.5px 1.5px at 80% 20%, rgba(255, 107, 44, 0.45), transparent), radial-gradient(1px 1px at 35% 80%, rgba(12, 13, 16, 0.5), transparent), radial-gradient(1px 1px at 90% 60%, rgba(255, 107, 44, 0.4), transparent), radial-gradient(1.5px 1.5px at 15% 65%, rgba(255, 169, 43, 0.55), transparent);
  background-repeat: repeat;
  opacity: 0.5;
  animation: twinkle 6s ease-in-out infinite alternate;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.5;
}
.hero__shape--1 {
  width: 120px;
  height: 120px;
  top: 18%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.6), transparent 70%);
  animation: float 7s ease-in-out infinite;
}
.hero__shape--2 {
  width: 70px;
  height: 70px;
  top: 65%;
  left: 15%;
  background: radial-gradient(circle, rgba(255, 169, 43, 0.5), transparent 70%);
  animation: float 5s ease-in-out infinite reverse;
}
.hero__shape--3 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: 12%;
  background: radial-gradient(circle, rgba(255, 107, 44, 0.4), transparent 70%);
  animation: float 9s ease-in-out infinite;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}
.hero__greeting {
  font-size: 18px;
  font-weight: 500;
  color: #FFA92B;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.hero__title {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero__tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__tag {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  background: #212227;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__tag--role {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  border-color: transparent;
}
.hero__desc {
  max-width: 480px;
  color: #B6B3BB;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero__socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
}
.hero__socials a {
  font-size: 20px;
  color: #B6B3BB;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero__socials a:hover {
  color: #FFA92B;
  transform: translateY(-4px);
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  min-height: 460px;
}
.hero__ring {
  position: absolute;
  width: 440px;
  height: 440px;
  max-width: 90vw;
  max-height: 90vw;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255, 169, 43, 0.25), transparent 60%), conic-gradient(from 0deg, rgba(255, 138, 61, 0.9), rgba(255, 169, 43, 0.9), rgba(255, 107, 44, 0.9), rgba(255, 138, 61, 0.9));
  padding: 3px;
  -webkit-mask: radial-gradient(circle, transparent 61%, #000000 62%);
  mask: radial-gradient(circle, transparent 61%, #000000 62%);
  animation: spin 18s linear infinite;
}
.hero__photo {
  position: relative;
  width: 400px;
  height: 400px;
  max-width: 82vw;
  max-height: 82vw;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 169, 43, 0.35);
  box-shadow: 0 30px 80px rgba(255, 169, 43, 0.25);
  animation: float 6s ease-in-out infinite;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__badge {
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(33, 34, 39, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: float 5s ease-in-out infinite;
}
.hero__badge strong {
  font-size: 22px;
  color: #FFFFFF;
}
.hero__badge span {
  font-size: 12px;
  color: #B6B3BB;
  line-height: 1.2;
}
.hero__badge i {
  color: #FFA92B;
  font-size: 18px;
}
.hero__badge--exp {
  top: 8%;
  left: -2%;
}
.hero__badge--projects {
  bottom: 10%;
  right: -4%;
  animation-delay: 1s;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  text-decoration: none;
  color: #B6B3BB;
}
.hero__scroll-text {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-top: 6px;
}
.hero__wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #FFA92B;
  animation: wheel 1.6s ease-in-out infinite;
}
@media (max-width: 992px) {
  .hero {
    padding: 140px 0 80px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  .hero__tags, .hero__actions, .hero__socials {
    justify-content: center;
  }
  .hero__desc {
    margin-inline: auto;
  }
  .hero__visual {
    order: -1;
  }
  .hero__scroll {
    display: none;
  }
}
@media (max-width: 576px) {
  .hero__badge--exp {
    left: 0;
  }
  .hero__badge--projects {
    right: 0;
  }
}

.features {
  position: relative;
  z-index: 5;
  margin-top: -70px;
  padding: 0 0 40px;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .features {
    margin-top: 0;
    padding-top: 40px;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 34px 30px;
  border-radius: 18px;
  background: #212227;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}
.feature-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-bottom: 22px;
  font-size: 24px;
  color: #FFFFFF;
  background: rgba(255, 138, 61, 0.15);
  border: 1px solid rgba(255, 138, 61, 0.3);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card__title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 12px;
}
.feature-card__text {
  color: #B6B3BB;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}
.feature-card__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #FFA92B;
}
.feature-card__link i {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 169, 43, 0.35);
}
.feature-card:hover .feature-card__icon {
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  border-color: transparent;
  box-shadow: 0 0 40px rgba(255, 107, 44, 0.45);
}
.feature-card:hover .feature-card__link i {
  transform: translateX(5px);
}
.feature-card--featured {
  background: linear-gradient(160deg, rgba(255, 138, 61, 0.18), rgba(255, 169, 43, 0.06)), #212227;
  border-color: rgba(255, 169, 43, 0.3);
}

.about__head {
  text-align: center;
  margin-bottom: 60px;
}
.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}
.about__media {
  position: relative;
}
.about__img {
  position: relative;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 576px) {
  .about__img {
    height: 400px;
  }
}
.about__icon-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  color: #FFFFFF;
  font-size: 22px;
  box-shadow: 0 0 40px rgba(255, 107, 44, 0.45);
  animation: float 5s ease-in-out infinite;
}
.about__exp {
  position: absolute;
  right: -20px;
  bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(33, 34, 39, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.about__exp strong {
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(120deg, #FF8A3D 0%, #FFB347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about__exp span {
  font-size: 13px;
  color: #B6B3BB;
  line-height: 1.25;
}
.about__subtitle {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}
.about__text {
  color: #B6B3BB;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.about__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  list-style: none;
  margin-bottom: 32px;
}
.about__info li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about__info li span {
  color: #B6B3BB;
  font-size: 14px;
  min-width: 74px;
}
.about__info li strong {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
}
.about__info li .is-available {
  color: #3DDC84;
}
@media (max-width: 992px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .about__exp {
    right: 24px;
  }
}
@media (max-width: 576px) {
  .about__info {
    grid-template-columns: 1fr;
  }
}

.stats {
  padding: 30px 0 70px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 34px 20px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 138, 61, 0.16), rgba(255, 107, 44, 0.06));
  border: 1px solid rgba(255, 138, 61, 0.22);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 16px;
  font-size: 22px;
  color: #FFA92B;
  background: rgba(255, 169, 43, 0.1);
  border: 1px solid rgba(255, 169, 43, 0.22);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stat-card strong {
  display: block;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(120deg, #FF8A3D 0%, #FFB347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card__label {
  display: block;
  color: #B6B3BB;
  font-size: 15px;
  font-weight: 500;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.stat-card:hover .stat-card__icon {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  border-color: transparent;
  box-shadow: 0 0 40px rgba(255, 107, 44, 0.45);
}
@media (max-width: 576px) {
  .stat-card strong {
    font-size: 38px;
  }
}

.skills {
  background: #17181B;
}
.skills__head {
  text-align: center;
  margin-bottom: 56px;
}
.skills__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}
.skills__bars {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media (max-width: 768px) {
  .skills__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

.skill__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 10px;
}
.skill__top span {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
}
.skill__pct {
  color: #FFA92B !important;
}
.skill__track {
  position: relative;
  height: 8px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.skill__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  box-shadow: 0 0 12px rgba(255, 169, 43, 0.5);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.services__head {
  text-align: center;
  margin-bottom: 56px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 18px;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  -webkit-mask: linear-gradient(#000000 0 0) content-box, linear-gradient(#000000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.service-card {
  position: relative;
  padding: 36px 30px;
  border-radius: 18px;
  background: #212227;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(120% 120% at 100% 0%, rgba(255, 169, 43, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card__num {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
}
.service-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  margin-bottom: 22px;
  font-size: 26px;
  color: #FFA92B;
  background: rgba(255, 169, 43, 0.1);
  border: 1px solid rgba(255, 169, 43, 0.22);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card__title {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card__text {
  position: relative;
  z-index: 1;
  color: #B6B3BB;
  font-size: 15px;
  line-height: 1.65;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.service-card:hover::after {
  opacity: 1;
}
.service-card:hover .service-card__icon {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  border-color: transparent;
  transform: rotate(-6deg) scale(1.05);
}

.portfolio {
  background: #17181B;
}
.portfolio__head {
  text-align: center;
  margin-bottom: 32px;
}
.portfolio__filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #B6B3BB;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.filter-btn:hover {
  color: #FFFFFF;
  border-color: rgba(255, 169, 43, 0.5);
}
.filter-btn.is-active {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255, 138, 61, 0.3);
}

.work {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.work.is-hidden {
  display: none;
}
.work__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.work__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.work__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 26px;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.92) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.work__cat {
  font-size: 13px;
  font-weight: 600;
  color: #FFA92B;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.work__title {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}
.work__link {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  transform: scale(0) rotate(-45deg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.work__link:hover {
  color: #FFFFFF;
}
.work:hover {
  border-color: rgba(255, 169, 43, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.work:hover .work__img img {
  transform: scale(1.1);
}
.work:hover .work__overlay {
  opacity: 1;
  transform: translateY(0);
}
.work:hover .work__link {
  transform: scale(1) rotate(0);
}

.experience__head {
  text-align: center;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding-left: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 138, 61, 0.6), rgba(255, 169, 43, 0.6));
}
.timeline__item {
  position: relative;
  width: 50%;
  padding: 0 40px 44px;
}
.timeline__item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline__item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__dot {
  position: absolute;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1B1C20;
  border: 3px solid #FFA92B;
  box-shadow: 0 0 0 4px rgba(255, 169, 43, 0.15);
}
.timeline__item:nth-child(odd) .timeline__dot {
  right: -8px;
}
.timeline__item:nth-child(even) .timeline__dot {
  left: -8px;
}
.timeline__year {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: #FFA92B;
  background: rgba(255, 169, 43, 0.1);
  border: 1px solid rgba(255, 169, 43, 0.22);
  margin-bottom: 12px;
}
.timeline__role {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
.timeline__company {
  font-size: 14px;
  color: #FF6B2C;
  font-weight: 500;
  margin-bottom: 10px;
}
.timeline__text {
  font-size: 15px;
  color: #B6B3BB;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .timeline {
    max-width: 100%;
  }
  .timeline::before {
    left: 7px;
  }
  .timeline__item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 40px 38px;
  }
  .timeline__dot {
    left: 0 !important;
    right: auto !important;
  }
}

.testimonials {
  background: #17181B;
}
.testimonials__head {
  text-align: center;
  margin-bottom: 50px;
}
.testimonials__slider {
  margin: 0 -12px;
}

.testimonial {
  margin: 0 12px 12px;
  padding: 36px 32px;
  border-radius: 18px;
  background: #212227;
  border: 1px solid rgba(255, 255, 255, 0.08);
  outline: none;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial__quote {
  font-size: 30px;
  color: #FF6B2C;
  opacity: 0.5;
  margin-bottom: 16px;
}
.testimonial__text {
  color: #B6B3BB;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 26px;
}
.testimonial__author {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 14px;
}
.testimonial__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 169, 43, 0.4);
}
.testimonial__author strong {
  display: block;
  font-size: 16px;
  color: #FFFFFF;
}
.testimonial__author span {
  font-size: 13px;
  color: #FFA92B;
}

.testimonials .slick-slide.slick-current .testimonial {
  border-color: rgba(255, 169, 43, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.testimonials .slick-dots {
  position: static;
  margin-top: 34px;
}
.testimonials .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 5px;
}
.testimonials .slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonials .slick-dots li button::before {
  display: none;
}
.testimonials .slick-dots li.slick-active button {
  width: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
}

.contact__head {
  text-align: center;
  margin-bottom: 56px;
}
.contact__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 20px 22px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #212227;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact__item strong {
  display: block;
  font-size: 13px;
  color: #B6B3BB;
  margin-bottom: 2px;
}
.contact__item span, .contact__item a {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact__item a:hover {
  color: #FFA92B;
}
.contact__item:hover {
  transform: translateX(6px);
  border-color: rgba(255, 169, 43, 0.35);
}
.contact__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 18px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  box-shadow: 0 0 40px rgba(255, 107, 44, 0.45);
}
.contact__map {
  margin-top: 8px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 200px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.85);
}
.contact__form {
  padding: 36px;
  border-radius: 18px;
  background: #212227;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 992px) {
  .contact__inner {
    grid-template-columns: 1fr;
  }
}

.field {
  position: relative;
  margin-bottom: 24px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 18px 16px 8px;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  resize: vertical;
  transition: border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 169, 43, 0.6);
  background: rgba(255, 169, 43, 0.04);
}
.field textarea {
  min-height: 130px;
}
.field label {
  position: absolute;
  left: 16px;
  top: 16px;
  font-size: 15px;
  color: #B6B3BB;
  pointer-events: none;
  transition: all 0.25s ease;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 11px;
  color: #FFA92B;
  font-weight: 500;
}
.field__error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #FF6B6B;
  min-height: 14px;
}
.field.is-invalid input, .field.is-invalid textarea {
  border-color: #FF6B6B;
}

.form__status {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  min-height: 20px;
}
.form__status.is-success {
  color: #3DDC84;
}
.form__status.is-error {
  color: #FF6B6B;
}

.footer {
  position: relative;
  padding: 56px 0 30px;
  background: #1B1C20;
  text-align: center;
}
.footer__line {
  display: block;
  height: 2px;
  width: 100%;
  margin-bottom: 46px;
  background: linear-gradient(90deg, transparent, #FF6B2C, #FFA92B, transparent);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 26px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 15px;
  color: #B6B3BB;
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__nav a:hover {
  color: #FFA92B;
}
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #B6B3BB;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer__social a:hover {
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  border-color: transparent;
  transform: translateY(-4px);
}
.footer__copy {
  font-size: 14px;
  color: #B6B3BB;
}
.footer__copy i {
  color: #FF5C8A;
  animation: heartbeat 1.4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .footer__inner {
    justify-content: center;
    text-align: center;
  }
}

.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  box-shadow: 0 0 40px rgba(255, 107, 44, 0.45);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes twinkle {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 0.75;
  }
}
@keyframes wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes shimmer {
  to {
    background-position: 200% 0;
  }
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.25);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes spinLoader {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sparkPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    filter: drop-shadow(0 0 3px #FFB347);
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
    filter: drop-shadow(0 0 7px #FFB347);
  }
}
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

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

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

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

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

[data-reveal].is-visible > * {
  animation: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 22px;
  background: #1B1C20;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}
.preloader__ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.14);
  border-top-color: #FFA92B;
  border-right-color: #FF6B2C;
  animation: spinLoader 0.9s linear infinite;
}
.preloader__text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(120deg, #FF8A3D 0%, #FFB347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2500;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 138, 61, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media (max-width: 992px) {
  .cursor-glow {
    display: none;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  height: 3px;
  width: 0;
  background: linear-gradient(135deg, #FF6B2C 0%, #FF8A3D 45%, #FFA92B 100%);
  box-shadow: 0 0 10px rgba(255, 169, 43, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
