:root {
  --c-bg: #f8f7f3;
  --c-white: #ffffff;
  --c-text: #313231;
  --c-dark: #053b06;
  --c-dark-2: #072e08;
  --c-gold: #ecb534;
  --c-gold-lt: #f5d27a;
  --c-gold-dk: #c99516;
  --c-gold-pale: #fdf4da;
  --c-gray: #f4f3ef;
  --c-muted: #7a7872;
  --c-line: rgba(58, 78, 58, 0.09);
  --font-display: Syne, system-ui, sans-serif;
  --font-body: Outfit, system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08), 0 24px 64px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 4px 24px rgba(236, 181, 52, 0.25);
  --shadow-dark: 0 8px 40px rgba(5, 59, 6, 0.35);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  background: #f8f7f3;
  color: #313231;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes floatYSlow {
  0%, 100% {
    transform: translateY(0px) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}
@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes coinFloat {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  30% {
    transform: translateY(-18px) rotate(8deg) scale(1.03);
  }
  60% {
    transform: translateY(-8px) rotate(-5deg) scale(0.98);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}
@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes ringPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(236, 181, 52, 0);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(236, 181, 52, 0.15);
  }
}
@keyframes blobMorph {
  0% {
    border-radius: 60% 40% 70% 30%/50% 60% 40% 70%;
  }
  33% {
    border-radius: 40% 70% 30% 60%/70% 30% 60% 40%;
  }
  66% {
    border-radius: 70% 30% 50% 50%/30% 70% 50% 50%;
  }
  100% {
    border-radius: 60% 40% 70% 30%/50% 60% 40% 70%;
  }
}
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.97);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes scanLine {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}
@keyframes jiggle {
  0%, 100% {
    transform: rotate(0deg) scale(1.1);
  }
  25% {
    transform: rotate(-4deg) scale(1.1);
  }
  75% {
    transform: rotate(4deg) scale(1.1);
  }
}
@keyframes autoplayFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes goldShadowPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(236, 181, 52, 0.2);
  }
  50% {
    box-shadow: 0 8px 40px rgba(236, 181, 52, 0.45);
  }
}
@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.float-anim {
  animation: floatY 4.5s ease-in-out infinite;
}

.float-anim-slow {
  animation: floatYSlow 7s ease-in-out infinite;
}

.spin-slow {
  animation: spinSlow 22s linear infinite;
}

.coin-float {
  animation: coinFloat 5s ease-in-out infinite;
}

.pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

.blob-morph {
  animation: blobMorph 15s ease-in-out infinite;
}

[data-reveal],
[data-reveal-right] {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  filter: blur(3px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.5s ease;
}

[data-reveal-right] {
  transform: translateX(32px) scale(0.97);
}

[data-reveal].revealed,
[data-reveal-right].revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

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

[data-delay="150"] {
  transition-delay: 0.15s;
}

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

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

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

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

.gold-text {
  color: #ecb534;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #053b06;
  background: #fdf4da;
  border: 1px solid rgba(236, 181, 52, 0.4);
  border-radius: 99px;
  padding: 7px 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.section-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: shimmer 3.5s infinite 1s;
}
.section-tag i {
  color: #c99516;
  font-size: 0.68rem;
}

.section-tag--dark {
  background: rgba(236, 181, 52, 0.12);
  border-color: rgba(236, 181, 52, 0.3);
  color: #ecb534;
}
.section-tag--dark::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.section-tag--dark i {
  color: #f5d27a;
}

.section-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #313231;
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: normal;
  color: #c99516;
  white-space: nowrap;
}

.section-title--dark {
  color: #ffffff;
}
.section-title--dark em {
  color: #ecb534;
}

.section-sub {
  font-size: 1.05rem;
  color: #7a7872;
  margin-top: 8px;
}

.section-sub--dark {
  color: rgba(255, 255, 255, 0.55);
}

.section-desc {
  font-size: 1rem;
  color: #7a7872;
  line-height: 1.75;
  max-width: 620px;
  margin-top: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ecb534;
  color: #072e08;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 14px 30px;
  border-radius: 99px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(236, 181, 52, 0.25);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.45s ease;
}
.btn-primary:hover {
  background: #c99516;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(236, 181, 52, 0.45);
}
.btn-primary:hover::after {
  left: 160%;
}
.btn-primary:hover i {
  transform: translateX(5px);
}
.btn-primary:active {
  transform: translateY(-1px);
}
.btn-primary i {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #ffffff;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 99px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-bottom-color: rgba(58, 78, 58, 0.09);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #7a7872;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ecb534;
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover {
  color: #313231;
}
.nav-link:hover::after {
  width: 100%;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b6030;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 99px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-login:hover {
  background: #053b06;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 59, 6, 0.25);
}
.btn-login:hover i {
  transform: translateX(3px);
}
.btn-login i {
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #313231;
  border-radius: 2px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  background: url("../assets/hero-bg.png") center center/cover no-repeat, #f8f7f3;
  overflow: hidden;
  padding-top: 72px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: block;
  flex: 1;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdf4da;
  border: 1px solid rgba(236, 181, 52, 0.4);
  border-radius: 99px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #053b06;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.eyebrow-pill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: shimmer 3.5s infinite 1.5s;
}

.hero-title {
  margin-bottom: 14px;
}

.hero-title-main {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.92;
  color: #313231;
  letter-spacing: -0.04em;
  white-space: nowrap;
  word-break: normal;
  overflow-wrap: normal;
}

.hero-title-sub {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 500;
  font-style: normal;
  color: #c99516;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #7a7872;
  max-width: 500px;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 52%;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-screens-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  bottom: 60px;
  overflow: hidden;
}

.hero-img-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at 55% 45%, rgba(236, 181, 52, 0.28), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.browser-frame {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07), 0 24px 72px rgba(0, 0, 0, 0.2), 0 6px 18px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0eeea;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.bd {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.bd-red {
  background: #ff5f57;
}

.bd-yellow {
  background: #febc2e;
}

.bd-green {
  background: #28c840;
}

.browser-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.68rem;
  color: #7a7872;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-bar i {
  font-size: 0.6rem;
  color: #4caf50;
  flex-shrink: 0;
}

.browser-screen {
  overflow: hidden;
  line-height: 0;
}
.browser-screen img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top left;
}

.browser-frame-main {
  width: 70%;
  top: 18%;
  left: 2%;
  z-index: 3;
}
.browser-frame-main .browser-screen img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: top left;
}

.browser-frame-secondary {
  width: 60%;
  top: 4%;
  right: 2%;
  left: auto;
  z-index: 2;
  opacity: 0.82;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.browser-frame-secondary .browser-screen img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: top left;
}
.browser-frame-secondary:hover {
  z-index: 4;
  opacity: 1;
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 0 0 2px rgba(236, 181, 52, 0.35), 0 32px 80px rgba(0, 0, 0, 0.24), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}
.scroll-indicator:hover {
  opacity: 1;
}

.scroll-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a7872;
}

.scroll-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(58, 78, 58, 0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow i {
  font-size: 0.75rem;
  color: #7a7872;
}

.stats-bar {
  background: #1b6030;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
}
.stats-bar::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 15%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 35px solid rgba(236, 181, 52, 0.07);
  pointer-events: none;
  z-index: 0;
}

.stats-bar .stats-inner::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 181, 52, 0.06), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 36px 20px;
  min-width: 0;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.stat-item:hover .stat-icon {
  background: #ecb534;
  border-color: #ecb534;
  animation: jiggle 0.4s ease-in-out;
}
.stat-item:hover .stat-icon i {
  color: #072e08;
}
.stat-item:hover .stat-value {
  color: #f5d27a;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 20px 0;
  flex-shrink: 0;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(236, 181, 52, 0.12);
  border: 1px solid rgba(236, 181, 52, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #ecb534;
  opacity: 0;
  transform: scale(1);
  transition: none;
}
.stat-icon i {
  font-size: 1.2rem;
  color: #ecb534;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-icon {
  transform: scale(1.1) rotate(-4deg);
}
.stat-item:hover .stat-icon::after {
  animation: ringPulse 0.7s ease-out forwards;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.stat-value {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privileges {
  background: #f8f7f3;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.privileges::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 60px, rgba(5, 59, 6, 0.015) 60px, rgba(5, 59, 6, 0.015) 61px);
  pointer-events: none;
  z-index: 0;
}
.privileges::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 181, 52, 0.09), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.privileges-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.priv-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
}

.priv-header-left {
  flex: 1;
  max-width: 520px;
}

.priv-header-right {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.priv-logo3d {
  width: 160px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(5, 59, 6, 0.18));
}

.priv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.priv-card {
  background: #ffffff;
  border: 1px solid rgba(58, 78, 58, 0.09);
  border-top: 3px solid #ecb534;
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.priv-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 30px solid rgba(5, 59, 6, 0.04);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.priv-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(5, 59, 6, 0.1), 0 2px 8px rgba(236, 181, 52, 0.15);
  border-top-color: #053b06;
  border-color: rgba(5, 59, 6, 0.15);
  animation: borderGlow 1.8s ease-in-out infinite;
}
.priv-card:hover::after {
  transform: scale(1.3);
}
.priv-card:hover .priv-card-num {
  color: rgba(5, 59, 6, 0.07);
}
.priv-card:hover .priv-card-icon {
  background: #ecb534;
  border-color: #ecb534;
  animation: jiggle 0.4s ease-in-out;
}
.priv-card:hover .priv-card-icon i {
  color: #072e08;
}

.priv-card:nth-child(even) {
  background: #1b6030;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 3px solid #ecb534;
}
.priv-card:nth-child(even)::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 181, 52, 0.08), transparent 65%);
  pointer-events: none;
}
.priv-card:nth-child(even)::after {
  border-color: rgba(255, 255, 255, 0.05);
}
.priv-card:nth-child(even) .priv-card-num {
  color: rgba(255, 255, 255, 0.06);
}
.priv-card:nth-child(even) .priv-card-icon {
  background: rgba(236, 181, 52, 0.14);
  border-color: rgba(236, 181, 52, 0.3);
}
.priv-card:nth-child(even) .priv-card-icon i {
  color: #ecb534;
}
.priv-card:nth-child(even) h3 {
  color: #ffffff;
}
.priv-card:nth-child(even) p {
  color: rgba(255, 255, 255, 0.6);
}
.priv-card:nth-child(even):hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(236, 181, 52, 0.2);
  border-top-color: #ecb534;
  border-color: rgba(236, 181, 52, 0.25);
}
.priv-card:nth-child(even):hover .priv-card-icon {
  background: #ecb534;
}
.priv-card:nth-child(even):hover .priv-card-icon i {
  color: #072e08;
}

.priv-card-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #fdf4da;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.priv-card-icon {
  width: 44px;
  height: 44px;
  background: #fdf4da;
  border: 1px solid rgba(236, 181, 52, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.priv-card-icon i {
  font-size: 1.05rem;
  color: #c99516;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.priv-card h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #313231;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.priv-card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #7a7872;
  position: relative;
  z-index: 1;
}

.packages {
  background: url("../assets/packages-bg.png") center center/cover no-repeat, #f8f7f3;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pkg-coin-wrap {
  position: absolute;
  bottom: 30px;
  right: 60px;
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 12px 40px rgba(236, 181, 52, 0.35));
}

.pkg-coin {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: coinFloat 5s ease-in-out infinite;
  opacity: 0.85;
}

.packages-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.packages-head {
  max-width: 680px;
  margin-bottom: 64px;
}

.packages-intro {
  font-size: 0.96rem;
  line-height: 1.8;
  color: #7a7872;
  margin-top: 20px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.pkg-card {
  border-radius: 28px;
  overflow: hidden;
  background: #1b6030;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.pkg-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.pkg-card::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 35px solid rgba(236, 181, 52, 0.06);
  pointer-events: none;
  z-index: 0;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.pkg-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.pkg-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pkg-card-1 .pkg-icon {
  background: rgba(236, 181, 52, 0.15);
  border: 1px solid rgba(236, 181, 52, 0.35);
  color: #ecb534;
}
.pkg-card-1 .pkg-label {
  color: #ecb534;
}
.pkg-card-1:hover .pkg-icon {
  background: #ecb534;
  color: #072e08;
  transform: rotate(-8deg) scale(1.1);
}

.pkg-card-2 {
  background: #ecb534;
}
.pkg-card-2::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 65%);
}
.pkg-card-2::after {
  border-color: rgba(5, 59, 6, 0.08);
}
.pkg-card-2 .pkg-title {
  color: #053b06;
}
.pkg-card-2 .pkg-icon {
  background: rgba(5, 59, 6, 0.12);
  border: 1px solid rgba(5, 59, 6, 0.2);
  color: #053b06;
}
.pkg-card-2 .pkg-label {
  color: #053b06;
  background: rgba(5, 59, 6, 0.1);
  border-color: rgba(5, 59, 6, 0.2);
}
.pkg-card-2 .pkg-list li {
  color: rgba(5, 59, 6, 0.85);
  border-bottom-color: rgba(5, 59, 6, 0.1);
}
.pkg-card-2 .pkg-list li:hover {
  color: #053b06;
}
.pkg-card-2 .pkg-list li i {
  color: #053b06;
  background: rgba(5, 59, 6, 0.12);
}
.pkg-card-2 .pkg-list li em {
  color: rgba(5, 59, 6, 0.5);
}
.pkg-card-2:hover .pkg-icon {
  background: #053b06;
  color: #ecb534;
  transform: rotate(-8deg) scale(1.1);
}

.pkg-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
  background: rgba(236, 181, 52, 0.12);
  border: 1px solid rgba(236, 181, 52, 0.25);
  border-radius: 99px;
  padding: 4px 12px;
  display: inline-block;
}

.pkg-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.pkg-card-header-text {
  flex: 1;
}

.pkg-list {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-list li:last-child {
  border-bottom: none;
}
.pkg-list li:hover {
  color: #ffffff;
  padding-left: 6px;
}
.pkg-list li i {
  font-size: 0.75rem;
  color: #ecb534;
  background: rgba(236, 181, 52, 0.14);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-list li em {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.pkg-card-footer {
  padding: 0 32px 32px;
  position: relative;
  z-index: 1;
}

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

.modules {
  background: #f8f7f3;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.modules::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(5, 59, 6, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.modules-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.modules-head {
  max-width: 680px;
  margin-bottom: 56px;
  position: relative;
}

.modules-head .pkg-coin-wrap {
  position: absolute;
  top: 0;
  right: -200px;
  width: 120px;
  height: 120px;
}

.mslider {
  position: relative;
}

.mslider-rail-wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0;
}
.mslider-rail-wrap::before, .mslider-rail-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 2;
}
.mslider-rail-wrap::before {
  left: 40px;
  background: linear-gradient(90deg, #f8f7f3 0%, transparent 100%);
}
.mslider-rail-wrap::after {
  right: 40px;
  background: linear-gradient(270deg, #f8f7f3 0%, transparent 100%);
}

.mslider-rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  flex: 1;
  padding: 4px 8px 16px;
}
.mslider-rail::-webkit-scrollbar {
  display: none;
}

.mslider-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(58, 78, 58, 0.09);
  background: #ffffff;
  color: #7a7872;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 0.75rem;
}
.mslider-arrow:hover {
  background: #ecb534;
  border-color: #ecb534;
  color: #053b06;
  transform: scale(1.08);
}

.mslider-thumb {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border-radius: 40px;
  border: 1.5px solid rgba(58, 78, 58, 0.09);
  background: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none;
}
.mslider-thumb:hover {
  border-color: rgba(236, 181, 52, 0.5);
  box-shadow: 0 4px 12px rgba(236, 181, 52, 0.15);
  transform: translateY(-2px);
}
.mslider-thumb.active {
  background: #1b6030;
  border-color: #1b6030;
  box-shadow: 0 4px 16px rgba(5, 59, 6, 0.2);
}
.mslider-thumb.active .mslider-thumb-icon {
  background: rgba(236, 181, 52, 0.2);
  color: #ecb534;
}
.mslider-thumb.active .mslider-thumb-label {
  color: #ffffff;
}

.mslider-thumb-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fdf4da;
  color: #c99516;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mslider-thumb-label {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #313231;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mslider-stage {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(58, 78, 58, 0.09);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(0, 0, 0, 0.05);
}

.mslider-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.mslider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ecb534, #f5d27a);
  width: 7.69%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
}

.mslider-autoplay-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(236, 181, 52, 0.3);
  width: 0%;
  border-radius: 0 2px 2px 0;
}
.mslider-autoplay-bar.running {
  animation: autoplayFill var(--autoplay-duration, 4s) linear forwards;
}

.mslider-detail {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  z-index: 1;
}

.mslider-slide {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.mslider-slide.is-leaving {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.mslider-slide.is-entering {
  opacity: 0;
  transform: translateY(18px);
}

.mslide-left {
  flex-shrink: 0;
  width: 260px;
  background: #1b6030;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.mslide-left::before {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 28px solid rgba(236, 181, 52, 0.08);
  pointer-events: none;
}
.mslide-left::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 14px solid rgba(236, 181, 52, 0.05);
  pointer-events: none;
}

.mslide-num {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(236, 181, 52, 0.45);
  text-transform: uppercase;
}

.mslide-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: rgba(236, 181, 52, 0.12);
  border: 1.5px solid rgba(236, 181, 52, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ecb534;
  font-size: 2.2rem;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mslide-icon-wrap:hover {
  transform: scale(1.08) rotate(-5deg);
}

.mslide-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

.mslide-divider {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, #ecb534, transparent);
  border-radius: 1px;
}

.mslide-right {
  flex: 1;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mslide-content {
  flex: 1;
}

.mslide-desc {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.35rem;
  color: #7a7872;
  line-height: 1.85;
  margin: 0 0 32px;
  max-width: 580px;
}

.mslide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 36px;
}
.mslide-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 1.2rem;
  color: #313231;
  line-height: 1.5;
}
.mslide-list li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ecb534;
  flex-shrink: 0;
  margin-top: 8px;
}

.mslide-list--single {
  grid-template-columns: 1fr;
}

.mslide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(58, 78, 58, 0.09);
}

.mslide-counter {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
}
.mslide-counter .mslide-current {
  font-size: 3rem;
  color: #053b06;
  line-height: 1;
}
.mslide-counter .mslide-counter-sep {
  font-size: 1.2rem;
  color: rgba(5, 59, 6, 0.18);
  margin: 0 2px;
}
.mslide-counter .mslide-counter-total {
  font-size: 1.05rem;
  color: #7a7872;
}

.mslider-pause-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(58, 78, 58, 0.09);
  background: #ffffff;
  color: #7a7872;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.72rem;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  flex-shrink: 0;
}
.mslider-pause-btn:hover {
  background: #053b06;
  border-color: #053b06;
  color: #ffffff;
}
.mslider-pause-btn.paused {
  border-color: #ecb534;
  color: #c99516;
}

.mslider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px 20px;
  border-top: 1px solid rgba(58, 78, 58, 0.09);
}

.mslider-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7a7872;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 0;
  outline: none;
}
.mslider-nav-btn i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(58, 78, 58, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mslider-nav-btn:hover {
  color: #053b06;
}
.mslider-nav-btn:hover i {
  background: #053b06;
  border-color: #053b06;
  color: #ffffff;
}
.mslider-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.mslider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.mslider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(5, 59, 6, 0.12);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s ease, border-radius 0.3s ease;
  flex-shrink: 0;
  outline: none;
}
.mslider-dot.active {
  background: #ecb534;
  width: 22px;
  border-radius: 4px;
}
.mslider-dot:hover:not(.active) {
  background: #7a7872;
}

@media (max-width: 900px) {
  .mslide-left {
    width: 220px;
    padding: 40px 28px;
  }
  .mslide-right {
    padding: 40px 36px;
  }
  .mslide-desc {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .mslider-detail,
  .mslider-slide {
    min-height: 340px;
  }
  .mslide-left {
    width: 190px;
    padding: 32px 22px;
    gap: 16px;
  }
  .mslide-icon-wrap {
    width: 58px;
    height: 58px;
    font-size: 1.4rem;
  }
  .mslide-title {
    font-size: 1.1rem;
  }
  .mslide-right {
    padding: 32px 32px;
  }
  .mslide-desc {
    font-size: 0.95rem;
  }
  .mslide-list li {
    font-size: 0.92rem;
  }
  .mslide-list {
    grid-template-columns: 1fr;
  }
  .mslider-dots {
    display: none;
  }
  .mslider-nav {
    padding: 14px 22px;
  }
}
@media (max-width: 600px) {
  .modules {
    padding: 56px 0;
  }
  .mslider-detail {
    min-height: auto;
  }
  .mslider-slide {
    flex-direction: column;
    min-height: auto;
  }
  .mslide-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 20px 24px;
    gap: 14px;
  }
  .mslide-left::before, .mslide-left::after {
    display: none;
  }
  .mslide-num, .mslide-divider {
    display: none;
  }
  .mslide-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
  .mslide-title {
    font-size: 1rem;
  }
  .mslide-right {
    padding: 24px;
  }
  .mslide-desc {
    font-size: 0.92rem;
  }
  .mslide-list li {
    font-size: 0.88rem;
  }
  .mslide-footer {
    margin-top: 20px;
    padding-top: 16px;
  }
  .mslide-current {
    font-size: 2rem;
  }
  .mslider-nav {
    padding: 12px 16px;
  }
  .mslider-nav-btn span {
    display: none;
  }
}
.footer {
  background: #1b6030;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 181, 52, 0.07), transparent 65%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}
.footer::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 55px solid rgba(255, 255, 255, 0.025);
  pointer-events: none;
  z-index: 0;
}

.footer-top {
  padding: 80px 0 64px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  position: relative;
}

.footer-col-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-col-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.footer-offres-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-offres-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-offres-list li:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.footer-offres-list li i {
  color: #ecb534;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  padding: 4px;
  width: fit-content;
  margin-bottom: 24px;
}

.contact-tab {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  user-select: none;
}
.contact-tab.active {
  background: #ecb534;
  color: #072e08;
}

.contact-panel {
  display: none;
}

.contact-panel.active {
  display: block;
}

.contact-city-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ecb534;
  margin-bottom: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.contact-list li i {
  color: #f5d27a;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.9rem;
}
.contact-list a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-list a:hover {
  color: #f5d27a;
}

.footer-bottom {
  background: #0a4a0b;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-tagline {
  font-family: "Syne", system-ui, sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #f5d27a;
}

@media (min-width: 1280px) {
  .hero-inner {
    padding: 80px 80px 80px;
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .hero-content {
    flex: 0 0 44%;
    max-width: 44%;
    position: relative;
    z-index: 2;
  }
  .hero-visual {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    flex: 1;
    min-height: 480px;
    pointer-events: auto;
    overflow: visible;
  }
  .hero-screens-wrap {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 480px;
    bottom: auto;
    overflow: visible;
  }
  .browser-frame-main {
    top: 12%;
    left: 0%;
    width: 70%;
  }
  .browser-frame-secondary {
    top: 2%;
    right: 0%;
    width: 60%;
  }
  .browser-frame-main .browser-screen img {
    max-height: 400px;
  }
  .browser-frame-secondary .browser-screen img {
    max-height: 320px;
  }
}
@media (min-width: 1600px) {
  .hero-inner {
    padding: 80px 120px 80px;
    gap: 64px;
  }
  .hero-content {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .hero-visual {
    min-height: 560px;
  }
  .hero-screens-wrap {
    height: 560px;
  }
  .browser-frame-main .browser-screen img {
    max-height: 480px;
  }
  .browser-frame-secondary .browser-screen img {
    max-height: 380px;
  }
}
@media (max-width: 1024px) {
  .priv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .priv-header-right {
    display: none;
  }
  .hero-inner {
    padding: 40px 28px 60px;
  }
  .hero-content {
    max-width: 54%;
  }
  .hero-screens-wrap {
    width: 52%;
  }
  .browser-frame-main {
    top: 20%;
    left: 1%;
    width: 72%;
  }
  .browser-frame-secondary {
    top: 4%;
    right: 1%;
    width: 62%;
  }
  .browser-frame-main .browser-screen img {
    max-height: 280px;
  }
  .browser-frame-secondary .browser-screen img {
    max-height: 220px;
  }
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(58, 78, 58, 0.09);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(0, 0, 0, 0.05);
    z-index: 999;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(58, 78, 58, 0.09);
  }
  .btn-login {
    margin-top: 10px;
    justify-content: center;
  }
  .stats-inner {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  .stat-item {
    flex: 1 1 45%;
    min-width: 140px;
    padding: 20px 12px;
    gap: 10px;
  }
  .stat-divider {
    display: none;
  }
  .stat-value {
    font-size: 0.9rem;
    white-space: normal;
  }
  .priv-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }
  .priv-header-right {
    display: none;
  }
  .priv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
  }
  .pkg-coin-wrap {
    width: 190px;
    height: 190px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .nav-inner,
  .hero-inner,
  .stats-inner,
  .privileges-inner,
  .packages-inner,
  .modules-inner,
  .footer-inner,
  .footer-bottom-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .nav-inner {
    height: 62px;
  }
  .nav-logo img {
    height: 34px;
  }
  .nav-menu {
    top: 62px;
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    padding-top: 62px;
    height: auto;
    min-height: auto;
    background-position: left center;
  }
  .hero-inner {
    padding-top: 28px !important;
    padding-bottom: 40px !important;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-visual {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    aspect-ratio: 16/9;
    margin-top: 28px;
    overflow: hidden;
  }
  .hero-screens-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
  }
  .browser-frame-main {
    width: 62%;
    left: 2%;
    top: 22%;
  }
  .browser-frame-main .browser-screen img {
    max-height: none;
  }
  .browser-frame-secondary {
    width: 54%;
    top: 2%;
    right: 2%;
    left: auto;
  }
  .browser-frame-secondary .browser-screen img {
    max-height: none;
  }
  .scroll-indicator {
    display: none;
  }
  .hero-bg-grid {
    background-size: 36px 36px;
  }
  .hero-orb-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
  }
  .hero-orb-2 {
    display: none;
  }
  .eyebrow-pill {
    font-size: 0.68rem;
    padding: 6px 12px;
  }
  .hero-title-main {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #313231 !important;
    background-clip: unset !important;
    letter-spacing: -0.02em;
  }
  .hero-title-sub {
    font-size: clamp(1rem, 5vw, 1.4rem);
    letter-spacing: 0.1em;
  }
  .hero-title {
    margin-bottom: 18px;
  }
  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0 auto 24px;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .stats-inner {
    flex-direction: column;
  }
  .stat-item {
    padding: 18px 20px;
    gap: 12px;
    width: 100%;
    flex: none;
  }
  .stat-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .stat-label {
    font-size: 0.65rem;
  }
  .stat-value {
    font-size: 0.9rem;
    white-space: normal;
  }
  .privileges {
    padding: 56px 0;
  }
  .packages {
    padding: 56px 0;
  }
  .modules {
    padding: 56px 0;
  }
  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }
  .priv-header {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }
  .priv-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .priv-card {
    padding: 20px 18px;
  }
  .priv-card-num {
    font-size: 3rem;
    top: 10px;
    right: 12px;
  }
  .pkg-coin-wrap {
    width: 140px;
    height: 140px;
    bottom: 12px;
    right: 8px;
  }
  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 32px;
  }
  .pkg-card-header {
    padding: 18px;
    gap: 10px;
  }
  .pkg-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .pkg-title {
    font-size: 1.25rem;
  }
  .pkg-list {
    padding: 18px 18px 22px;
    gap: 10px;
  }
  .footer-top {
    padding: 48px 0 36px;
  }
  .footer-col-title {
    font-size: 1.4rem;
  }
  .footer-inner {
    gap: 36px;
  }
  .footer-bottom {
    padding: 18px 0;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-logo {
    height: 26px;
  }
  .footer-tagline {
    font-size: 0.85rem;
  }
}
