/* ===== Premium Crypto Landing Page - Dark Theme ===== */

:root {
  /* Primary Colors */
  --primary: #FFB703;
  --primary-light: #FFD166;
  --primary-dark: #C68B00;

  /* Background Colors */
  --bg-dark: #0A0A0A;
  --bg-darker: #000000;
  --bg-card: #141414;
  --bg-card-hover: #1A1A1A;

  /* Text Colors */
  --text-primary: #FFFFFF;
  --text-secondary: #B0B0B0;
  --text-muted: #6B6B6B;

  /* Border & Effects */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 183, 3, 0.5);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 183, 3, 0.4);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  box-sizing: border-box;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-darker) !important;
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 183, 3, 0.1) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(255, 209, 102, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(255, 183, 3, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255, 209, 102, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-primary) !important;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
}

a {
  text-decoration: none !important;
  color: inherit;
}
.container{
  max-width:1200px !important;
}
ul {
  list-style: none;
  padding: 0px !important;
}

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

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

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 20px 0;
  animation: slideDown 0.5s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 183, 3, 0.15);
}

.navbar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.8), transparent);
  animation: borderPulse 3s ease-in-out infinite;
}

@keyframes borderPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  position: relative;
}

.logo {
  width: 100px;
  height: 90px;
  border-radius: 0;
  object-fit: contain;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 20px rgba(255, 183, 3, 0.8));
  animation: logoFloat 4s ease-in-out infinite;
  scale: 1.4;
}

@keyframes logoFloat {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(255, 183, 3, 0.8));
    transform: translateY(0) scale(1);
  }

  50% {
    filter: drop-shadow(0 0 35px rgba(255, 183, 3, 1));
    transform: translateY(-3px) scale(1.05);
  }
}

.logo:hover {
  transform: scale(1.15) rotate(10deg);
  filter: drop-shadow(0 0 40px rgba(255, 183, 3, 1));
}

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

.nav-menu a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}

.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::before {
  width: 100% !important;
}

.nav-login {
  padding: 8px 20px !important;
  border: 1px solid rgba(255, 183, 3, 0.3) !important;
  border-radius: 6px;
  background: rgba(255, 183, 3, 0.1) !important;
  transition: all 0.3s ease !important;
}

.nav-login:hover {
  background: rgba(255, 183, 3, 0.2) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 15px rgba(255, 183, 3, 0.4) !important;
}

.nav-menu a:not(.btn-launch):hover {
  color: var(--primary);
}

.nav-menu a:not(.btn-launch)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.6);
}

.nav-menu a:not(.btn-launch):hover::before {
  width: 100%;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-launch {
  background: #000;
  color: var(--text-primary);
  padding: 8px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid #FFB703;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.btn-launch::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #FFB703, transparent);
  animation: btnSweep 2s linear infinite;
}

@keyframes btnSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.btn-launch::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 183, 3, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: btnPulse 2s ease-out infinite;
}

@keyframes btnPulse {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

.btn-launch:hover {
  background: #FFB703;
  border-color: #FFD166;
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(255, 183, 3, 1), inset 0 0 20px rgba(255, 209, 102, 0.4), 0 0 60px rgba(255, 183, 3, 0.6);
}

.btn-launch:hover::before {
  animation: btnSweep 1s linear infinite;
}

.btn-launch:active {
  transform: scale(0.95);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.6);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255, 183, 3, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 183, 3, 0.3);
  transition: all 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 183, 3, 0.2);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ===== Hero Section - Premium Redesign ===== */
.hero {
  min-height: 120vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 183, 3, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(255, 209, 102, 0.1) 0%, transparent 50%);
  animation: bgPulse 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  opacity: 0.4;
}

/* @keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
} */

.hero-glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.3) 0%, transparent 70%);
  top: -10%;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-delay: 5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--primary);
}

.hero-title {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
  color: var(--text-primary);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.4s both, textGlow 3s ease-in-out infinite;
  position: relative;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 183, 3, 0.5)); }
  50% { filter: drop-shadow(0 0 40px rgba(255, 183, 3, 0.8)); }
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.cta-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.4);
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.cta-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 183, 3, 0.7), 0 0 40px rgba(255, 183, 3, 0.5);
}

.cta-primary:active {
  transform: translateY(-2px) scale(0.98);
}

.cta-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 183, 3, 0.4), inset 0 0 20px rgba(255, 183, 3, 0.1);
}

.cta-secondary:hover::before {
  opacity: 1;
}

.cta-secondary:active {
  transform: translateY(-2px) scale(0.98);
}

.hero-stats-box {
  display: flex;
  gap: 40px;
  padding: 28px 32px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.8s ease 1s both;
  position: relative;
  overflow: hidden;
}

.hero-stats-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.1), transparent);
  animation: statsSweep 4s infinite;
}

@keyframes statsSweep {
  0% { left: -100%; }
  100% { left: 100%; }
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.6);
  animation: numberPulse 3s ease-in-out infinite;
}

@keyframes numberPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.stat-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-right-premium {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.premium-rotating-card {
  position: relative;
  width: 100%;
  max-width: 650px;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(8, 8, 8, 0.98) 100%);
  border: 1.5px solid rgba(255, 183, 3, 0.25);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  overflow: visible;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: cardSlideIn 0.8s ease both;
}

.premium-rotating-card::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
  z-index: -1;
}

.premium-rotating-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: glowPulse 10s ease-in-out infinite 1s;
  z-index: -1;
}

@keyframes glowPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.6;
  }
  50% { 
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: rgba(255, 183, 3, 0.25);
    box-shadow: inset 0 0 20px rgba(255, 183, 3, 0.1), 0 0 20px rgba(255, 183, 3, 0.2);
  }
  50% {
    border-color: rgba(255, 183, 3, 0.6);
    box-shadow: inset 0 0 30px rgba(255, 183, 3, 0.2), 0 0 40px rgba(255, 183, 3, 0.4);
  }
}

@keyframes borderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes cardHoverFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes backgroundShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes shadowPulse {
  0%, 100% {
    box-shadow: inset 0 0 20px rgba(255, 183, 3, 0.1), 0 0 20px rgba(255, 183, 3, 0.2);
  }
  50% {
    box-shadow: inset 0 0 30px rgba(255, 183, 3, 0.2), 0 0 40px rgba(255, 183, 3, 0.4);
  }
}

@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255, 183, 3, 0.15);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 183, 3, 0.4);
    transform: scale(1.05);
  }
}

@keyframes linkGlow {
  0%, 100% {
    background: rgba(255, 183, 3, 0.1);
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.2);
  }
  50% {
    background: rgba(255, 183, 3, 0.2);
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  }
}

@keyframes contentShimmer {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.95;
  }
}

.premium-rotating-card:hover {
  border-color: rgba(255, 183, 3, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(255, 183, 3, 0.4), 0 0 80px rgba(255, 183, 3, 0.2), inset 0 1px 0 rgba(255, 183, 3, 0.2);
}

.card-visual-left {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.15), rgba(255, 209, 102, 0.08));
  border-right: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.card-visual-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  animation: rotateGlow 15s linear infinite;
  pointer-events: none;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.card-icon-large {
  font-size: 64px;
  animation: iconFloatLarge 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes iconFloatLarge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.card-accent-line {
  width: 3px;
  height: 60px;
  background: linear-gradient(180deg, var(--primary), transparent);
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

.card-visual-right {
  padding: 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.card-top-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-project-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.card-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 10px;
  font-weight: 900;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.card-status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px #10B981;
}

.card-project-type {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 500;
}

.card-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.15);
}

.stat-item-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label-card {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.stat-value-card {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 183, 3, 0.5);
}

.card-progress-section {
  margin-bottom: 20px;
}

.progress-label-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-value-card {
  color: var(--primary);
  font-weight: 900;
}

.progress-bar-card {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, rgba(255, 183, 3, 0.1), rgba(255, 209, 102, 0.05));
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 183, 3, 0.15);
}

.progress-fill-card {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 16px rgba(255, 183, 3, 0.7);
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.progress-fill-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

.card-action-btn {
  align-self: flex-start;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 183, 3, 0.4);
}

.card-action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.card-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 183, 3, 0.6);
}

.card-action-btn:hover::before {
  left: 100%;
}

.card-indicators-bottom {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.2);
  border: 1px solid rgba(255, 183, 3, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator-dot.active {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.6);
  transform: scale(1.3);
}

.indicator-dot:hover {
  background: rgba(255, 183, 3, 0.4);
  border-color: var(--primary);
}

.card-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.crypto-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px #10B981;
}

.card-body {
  margin-bottom: 20px;
}

.crypto-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.crypto-symbol {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.crypto-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(255, 183, 3, 0.6);
  animation: priceFlicker 4s ease-in-out infinite;
}

@keyframes priceFlicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

.crypto-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}

.crypto-change.positive {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
}

.card-chart {
  height: 60px;
  opacity: 0.9;
  border-radius: 8px;
  overflow: hidden;
}

.card-chart svg {
  width: 100%;
  height: 100%;
}

.card-chart path {
  animation: drawChart 3s ease-in-out infinite;
}

@keyframes drawChart {
  0%, 100% { stroke-dashoffset: 0; }
  50% { stroke-dashoffset: 10; }
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  50% {
    transform: translate(100px, -100px) scale(1.5);
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-icon {
  font-size: 18px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.title-word {
  display: inline-block;
  animation: fadeInUp 0.8s ease both;
}

.title-word:nth-child(1) {
  animation-delay: 0.3s;
}

.title-word:nth-child(2) {
  animation-delay: 0.4s;
}

.highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.5s both, gradientShift 3s ease infinite;
  background-size: 200% 200%;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0.3;
  border-radius: 4px;
  animation: expandWidth 1s ease 0.8s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-text {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 560px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 183, 3, 0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: btnPulse 3s ease-in-out infinite;
  cursor: pointer;
}

@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(255, 183, 3, 0.4);
  }
  50% {
    box-shadow: 0 8px 40px rgba(255, 183, 3, 0.7), 0 0 50px rgba(255, 183, 3, 0.3);
  }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnSweep 3s infinite;
}

@keyframes btnSweep {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-primary:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 60px rgba(255, 183, 3, 0.9), 0 0 50px rgba(255, 183, 3, 0.6);
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.96);
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.5);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(6px);
}

.btn-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  padding: 18px 36px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255, 183, 3, 0.5), inset 0 0 20px rgba(255, 183, 3, 0.1);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary:active {
  transform: translateY(-2px) scale(0.96);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-box {
  flex: 1;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
  animation: countUp 2s ease 1s both;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

.hero-right {
  position: relative;
  height: 600px;
  animation: fadeInRight 1s ease 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.crypto-cards-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.crypto-card-pro {
  position: absolute;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: floatCard 10s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.crypto-card-pro:hover .card-glow {
  opacity: 1;
}

.crypto-card-pro:hover {
  border-color: rgba(255, 183, 3, 0.4);
  transform: translateY(-12px) scale(1.02) !important;
  box-shadow: 0 30px 80px rgba(255, 183, 3, 0.4), 0 0 60px rgba(255, 183, 3, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card-1 {
  top: 30px;
  left: 30px;
  width: 300px;
  animation-delay: 0s;
  z-index: 3;
}

.card-2 {
  top: 200px;
  right: 30px;
  width: 300px;
  animation-delay: 2s;
  z-index: 2;
}

.card-3 {
  bottom: 50px;
  left: 70px;
  width: 240px;
  animation-delay: 4s;
  z-index: 1;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.crypto-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.icon-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: inherit;
  filter: blur(8px);
  opacity: 0.5;
  z-index: -1;
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 8px #10B981;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.crypto-info {
  margin-bottom: 16px;
}

.crypto-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.crypto-info .pair {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  opacity: 0.7;
}

.crypto-value {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.change-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.change-badge.positive {
  color: #10B981;
}

.change-badge svg {
  width: 12px;
  height: 12px;
}

.mini-chart {
  height: 50px;
  opacity: 0.8;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 4px;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
}

/* Execution Card Styles */
.execution-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.execution-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.execution-icon .icon-glow {
  border-radius: 16px;
  filter: blur(12px);
  opacity: 0.6;
}

.execution-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.exec-time {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 16px;
}

.speed-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.speed-fill {
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, #FFB703, #FFD166);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 16px rgba(255, 183, 3, 0.6);
  animation: speedPulse 2s ease-in-out infinite;
}

.speed-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes speedPulse {

  0%,
  100% {
    width: 88%;
    opacity: 1;
  }

  50% {
    width: 95%;
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.tag {
  display: inline-block;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Features Section ===== */
.features {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.features.animate {
  opacity: 1;
  transform: translateY(0);
}

.features-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.feature-card-crypto {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 183, 3, 0.15);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards, floatCard 6s ease-in-out infinite;
}

.feature-card-crypto.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card-crypto:nth-child(1) {
  animation-delay: 0s, 0s;
}

.feature-card-crypto:nth-child(2) {
  animation-delay: 0.1s, 1s;
}

.feature-card-crypto:nth-child(3) {
  animation-delay: 0.2s, 2s;
}

.feature-card-crypto:nth-child(4) {
  animation-delay: 0.3s, 3s;
}

.feature-card-crypto:nth-child(5) {
  animation-delay: 0.4s, 4s;
}

.feature-card-crypto:nth-child(6) {
  animation-delay: 0.5s, 5s;
}

.card-glow-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card-crypto:hover .card-glow-bg {
  opacity: 1;
  animation: rotateGlow 8s linear infinite;
}

.feature-card-crypto::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card-crypto:hover::before {
  left: 100%;
}

.feature-card-crypto:hover {
  border-color: rgba(255, 183, 3, 0.5);
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(255, 183, 3, 0.3), 0 0 40px rgba(255, 183, 3, 0.15), inset 0 1px 0 rgba(255, 183, 3, 0.2);
}

.feature-icon-crypto {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.15), rgba(255, 209, 102, 0.1));
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: all 0.4s ease;
  position: relative;
  animation: iconPulse 3s ease-in-out infinite;
}

.feature-icon-crypto::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card-crypto:hover .feature-icon-crypto {
  transform: scale(1.1) rotateY(360deg);
  box-shadow: 0 8px 32px rgba(255, 183, 3, 0.4);
}

.feature-card-crypto:hover .feature-icon-crypto::before {
  opacity: 0.6;
}

.feature-card-crypto h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.feature-card-crypto p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-badge {
  display: inline-block;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.feature-card-crypto:hover .feature-badge {
  background: rgba(255, 183, 3, 0.2);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  transform: scale(1.05);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes iconPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.4);
  }

  50% {
    box-shadow: 0 0 20px 5px rgba(255, 183, 3, 0.2);
  }
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===== Trading Section ===== */
.trading {
  padding: 80px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.trading.animate {
  opacity: 1;
  transform: translateY(0);
}

.trading-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.6;
  pointer-events: none;
}

.trading-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.trading-left h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.trading-left p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.check-list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.check-list li:hover {
  color: var(--text-primary);
  transform: translateX(8px);
}

.check-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 183, 3, 0.15);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.check-list li:hover .check-icon {
  background: rgba(255, 183, 3, 0.25);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  transform: scale(1.1);
}

.check-text {
  font-weight: 500;
}

.platform-preview {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 183, 3, 0.15);
  position: relative;
}

.platform-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.preview-header {
  background: rgba(0, 0, 0, 0.6);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.5);
}

.preview-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex: 1;
}

.preview-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.preview-status .status-dot {
  width: 6px;
  height: 6px;
  background: #10B981;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 8px #10B981;
}

.preview-body {
  padding: 0;
  height: 400px;
  position: relative;
}

.chart-area {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.chart-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.chart-line path {
  filter: drop-shadow(0 0 8px rgba(255, 183, 3, 0.6));
}

.chart-data {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.data-point {
  position: absolute;
  animation: floatPoint 3s ease-in-out infinite;
}

.data-point:nth-child(1) {
  animation-delay: 0s;
}

.data-point:nth-child(2) {
  animation-delay: 1s;
}

.data-point:nth-child(3) {
  animation-delay: 2s;
}

@keyframes floatPoint {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.point-dot {
  width: 12px;
  height: 12px;
  background: var(--primary);
  border: 2px solid rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.8), 0 0 40px rgba(255, 183, 3, 0.4);
  animation: pulseDot 2s ease-in-out infinite;
}

.chart-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.1), transparent);
  animation: scanChart 4s infinite;
  z-index: 4;
}

@keyframes scanChart {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ===== Pricing Section ===== */
.pricing {
  padding: 80px 0;
  background: var(--bg-dark);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.pricing.animate {
  opacity: 1;
  transform: translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px 32px;
  transition: var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.pricing-card.animate {
  animation: fadeInUp 0.6s ease forwards;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(255, 183, 3, 0.05);
  transform: scale(1.05);
}

.popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price span:first-child {
  font-size: 24px;
  color: var(--text-secondary);
}

.price span:last-child {
  font-size: 18px;
  color: var(--text-secondary);
}

.pricing-card ul {
  margin-bottom: 32px;
}

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 15px;
}

.pricing-card li:last-child {
  border-bottom: none;
}

.btn-outline {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 183, 3, 0.15);
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.4), inset 0 0 15px rgba(255, 183, 3, 0.1);
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
}

.pricing-card.featured .btn-primary {
  width: 100%;
}

/* ===== Contact Section - Crypto Premium Style ===== */
.contact {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.contact.animate {
  opacity: 1;
  transform: translateY(0);
}

.contact-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  pointer-events: none;
}

.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: floatParticle 20s infinite ease-in-out;
}

.particle-dot:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle-dot:nth-child(2) {
  top: 60%;
  left: 85%;
  animation-delay: 5s;
}

.particle-dot:nth-child(3) {
  top: 40%;
  left: 70%;
  animation-delay: 10s;
}

.particle-dot:nth-child(4) {
  top: 80%;
  left: 30%;
  animation-delay: 15s;
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 18px;
  margin-top: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

/* Left Side - Contact Info */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-crypto {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.info-card-crypto::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.1), transparent);
  transition: left 0.6s ease;
}

.info-card-crypto:hover::before {
  left: 100%;
}

.info-card-crypto:hover {
  border-color: rgba(255, 183, 3, 0.6);
  box-shadow: 0 8px 32px rgba(255, 183, 3, 0.3), inset 0 1px 0 rgba(255, 183, 3, 0.2);
  transform: translateX(4px);
}

/* Card Corners */
.card-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--primary);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.card-corner.top-left {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.card-corner.top-right {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
}

.card-corner.bottom-left {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
}

.card-corner.bottom-right {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.info-card-crypto:hover .card-corner {
  opacity: 1;
}

/* Scan Line Effect */
.card-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {

  0%,
  100% {
    top: 0;
    opacity: 0;
  }

  50% {
    top: 100%;
    opacity: 0.5;
  }
}

.info-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.info-icon-crypto {
  width: 48px;
  height: 48px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.info-card-crypto:hover .info-icon-crypto {
  background: rgba(255, 183, 3, 0.2);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  transform: scale(1.1);
}

.info-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.info-details {
  margin-bottom: 16px;
}

.info-main {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.info-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  box-shadow: 0 0 10px #10B981;
}

.status-text {
  font-size: 12px;
  font-weight: 600;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stats Card */
.stats-card-crypto {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), rgba(255, 209, 102, 0.05));
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.stats-card-crypto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 183, 3, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

.stat-item-crypto {
  text-align: center;
  flex: 1;
}

.stat-value-crypto {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

.stat-label-crypto {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-divider-crypto {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 183, 3, 0.5), transparent);
}

/* Right Side - Contact Form */
.contact-form-section {
  position: relative;
}

.form-container-crypto {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-glow-effect {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.form-header-crypto {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.2);
}

.form-header-crypto h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.form-header-crypto p {
  font-size: 15px;
  color: var(--text-secondary);
}

.crypto-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group-crypto {
  position: relative;
}

.input-group-crypto label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.input-group-crypto input,
.input-group-crypto select,
.input-group-crypto textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-bottom: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 0;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.input-group-crypto input:focus,
.input-group-crypto select:focus,
.input-group-crypto textarea:focus {
  outline: none;
  border-bottom-color: transparent;
  background: rgba(255, 183, 3, 0.05);
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.2);
}

.input-group-crypto input::placeholder,
.input-group-crypto textarea::placeholder {
  color: var(--text-muted);
}

.input-group-crypto select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23D81518' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-color: rgba(0, 0, 0, 0.4);
  padding-right: 45px;
}

.input-group-crypto select option {
  background: #0A0A0A;
  color: var(--text-primary);
  padding: 12px;
}

.input-group-crypto select:focus {
  background-color: rgba(255, 183, 3, 0.05);
}

.input-group-crypto textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.input-border-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s ease;
  z-index: 2;
}

.input-group-crypto input:focus~.input-border-effect,
.input-group-crypto select:focus~.input-border-effect,
.input-group-crypto textarea:focus~.input-border-effect {
  width: 100%;
}

/* Submit Button */
.btn-crypto-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 14px;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-crypto-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-crypto-submit:hover::before {
  left: 100%;
}

.btn-crypto-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 183, 3, 0.6), 0 0 60px rgba(255, 183, 3, 0.3);
}

.btn-text,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.btn-crypto-submit:hover .btn-icon {
  transform: translateX(4px) rotate(-45deg);
}

.btn-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-crypto-submit:hover .btn-glow {
  opacity: 1;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {

  .hero-content,
  .trading-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-right {
    height: 500px;
    margin-top: 40px;
  }

  .hero-premium-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .premium-rotating-card {
    max-width: 100%;
  }

  .about-premium-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-methods-section {
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
  }

  .contact-method-card {
    flex: 0 0 auto;
    min-width: 160px;
  }

  .crypto-card {
    width: 300px !important;
  }

  .card-btc {
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-eth {
    top: 280px;
    right: 50%;
    transform: translateX(50%);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-section {
    order: 2;
  }

  .contact-form-section {
    order: 1;
  }

  .form-container-crypto {
    padding: 32px 28px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-buttons {
    display: flex;
    gap: 8px;
  }

  .nav-buttons .nav-login {
    padding: 8px 14px;
    font-size: 12px;
  }

  .nav-buttons .btn-launch {
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero,
  .features,
  .trading,
  .pricing,
  .contact {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-box {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .hero-right {
    height: 450px;
  }

  .crypto-card {
    width: 280px !important;
  }

  .card-btc {
    top: 20px;
    left: 10px;
    transform: none;
  }

  .card-eth {
    top: 250px;
    right: 10px;
    transform: none;
  }

  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 32px 24px;
  }

  .form-container-crypto {
    padding: 28px 20px;
  }

  .form-header h3 {
    font-size: 24px;
  }

  .form-header-crypto h3 {
    font-size: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-stats-box {
    padding: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-text {
    font-size: 12px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .feature-box,
  .pricing-card {
    padding: 32px 24px;
  }

  .crypto-card {
    padding: 20px;
    width: 260px !important;
  }

  .price {
    font-size: 24px;
  }

  .crypto-icon {
    width: 36px;
    height: 36px;
  }

  .execution-icon {
    width: 48px;
    height: 48px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card-modern {
    padding: 28px 20px;
  }

  .info-card-crypto {
    padding: 20px;
  }

  .info-icon-modern {
    width: 64px;
    height: 64px;
  }

  .contact-form-container {
    padding: 28px 20px;
  }

  .form-container-crypto {
    padding: 24px 18px;
  }

  .form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .form-header-crypto {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }

  .form-header h3 {
    font-size: 22px;
  }

  .form-header-crypto h3 {
    font-size: 22px;
  }

  .form-header p {
    font-size: 14px;
  }

  .form-header-crypto p {
    font-size: 14px;
  }

  .submit-btn-modern {
    padding: 18px 32px;
    font-size: 16px;
  }

  .btn-crypto-submit {
    padding: 16px 28px;
    font-size: 16px;
  }

  .stats-card-crypto {
    flex-direction: column;
    gap: 16px;
  }

  .stat-divider-crypto {
    width: 100%;
    height: 1px;
  }

  .info-icon {
    width: 48px;
    height: 48px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-content {
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .footer-badges {
    width: 100%;
  }

  .badge-item {
    justify-content: center;
  }
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ===== Selection ===== */
::selection {
  background: var(--primary);
  color: var(--text-primary);
}

/* ===== Focus States ===== */


/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ===== Responsive Design - Mobile First ===== */

/* Tablet (768px and up) */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    gap: 60px;
  }

  .hero-right {
    height: 500px;
  }

  .crypto-card {
    width: 300px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trading-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    padding: 0 16px;
  }

  /* Navbar Mobile */
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 183, 3, 0.2);
    animation: slideDown 0.3s ease;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    padding: 0;
  }

  .nav-menu a {
    display: block;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255, 183, 3, 0.1);
  }

  .nav-toggle {
    display: flex;
  }

  .btn-launch {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 70px 0 50px;
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(32px, 6vw, 48px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .hero-stats-box {
    flex-direction: column;
    gap: 20px;
    padding: 20px 24px;
  }

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

  .hero-right {
    height: 400px;
  }

  .premium-rotating-card {
    max-width: 100%;
    grid-template-columns: 100px 1fr;
  }

  .card-visual-left {
    padding: 30px 15px;
  }

  .card-visual-right {
    padding: 24px 20px;
  }

  .card-project-name {
    font-size: 20px;
  }

  .card-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* About Section Mobile */
  .about-premium {
    padding: 50px 0;
  }

  .about-premium-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .mission-card {
    padding: 32px 24px;
  }

  .mission-header h3 {
    font-size: 24px;
  }

  .stats-grid-premium {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .features-grid-premium {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card-premium {
    padding: 24px;
  }

  .about-bottom-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  /* PDF Section Mobile */
  .pdf-section {
    padding: 50px 0;
  }

  .pdf-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pdf-card {
    padding: 24px;
  }

  /* Browser Section Mobile */
  .browser-section {
    padding: 50px 0;
  }

  .browser-filters {
    flex-wrap: wrap;
    gap: 12px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    padding: 20px;
  }

  /* Contact Section Mobile */
  .contact-premium {
    padding: 50px 0;
  }

  .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-methods-section {
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .contact-method-card {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 16px 12px;
  }

  .method-icon {
    font-size: 24px;
  }

  .contact-method-card h3 {
    font-size: 14px;
  }

  .contact-method-card p {
    font-size: 12px;
  }

  .form-card-premium {
    padding: 24px;
  }

  .form-header-premium h3 {
    font-size: 20px;
  }

  .form-group-premium {
    margin-bottom: 16px;
  }

  .form-group-premium input,
  .form-group-premium select,
  .form-group-premium textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  .btn-submit-premium {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Footer Mobile */
  .footer-premium {
    padding: 50px 0 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-logo {
    width: 100px;
    height: 100px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-heading {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .footer-list li a {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
    gap: 12px;
  }

  .badge-item {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Features Section Mobile */
  .features {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(24px, 5vw, 40px);
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card-crypto {
    padding: 24px;
  }

  /* Trading Section Mobile */
  .trading {
    padding: 60px 0;
  }

  .trading-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trading-left h2 {
    font-size: clamp(24px, 5vw, 40px);
  }

  .check-list li {
    padding: 12px 0;
  }

  .btn-primary {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .platform-preview {
    height: 300px;
  }

  /* Pricing Section Mobile */
  .pricing {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 24px;
  }

  .btn-outline {
    padding: 12px;
    font-size: 15px;
  }

  /* Contact Section Mobile */
  .contact {
    padding: 60px 0;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info-card-crypto {
    padding: 20px;
  }

  .form-container-crypto {
    padding: 24px;
  }

  .input-group-crypto {
    margin-bottom: 16px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  /* Footer Mobile */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-column h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-column ul li {
    padding: 8px 0;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .navbar {
    padding: 16px 0;
  }

  .nav-brand {
    gap: 8px;
  }

  .logo {
    width: 80px;
    height: 70px;
    scale: 1.2;
  }

  .hero {
    padding: 70px 0 40px;
  }

  .hero-title {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
  }

  .hero-badge {
    padding: 6px 16px;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 12px 20px;
    font-size: 14px;
    gap: 6px;
  }

  .hero-stats-box {
    padding: 16px 20px;
    gap: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-text {
    font-size: 11px;
  }

  .hero-right {
    height: 350px;
  }

  .premium-rotating-card {
    max-width: 100%;
    grid-template-columns: 80px 1fr;
  }

  .card-visual-left {
    padding: 20px 10px;
  }

  .card-visual-right {
    padding: 16px 12px;
  }

  .card-icon-large {
    font-size: 40px;
  }

  .card-project-name {
    font-size: 16px;
  }

  .card-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-label-card {
    font-size: 9px;
  }

  .stat-value-card {
    font-size: 14px;
  }

  .card-action-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .indicator-dot {
    width: 10px;
    height: 10px;
  }

  .crypto-card {
    width: 240px;
    padding: 16px;
  }

  .crypto-name {
    font-size: 18px;
  }

  .crypto-price {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: clamp(20px, 4vw, 32px);
  }

  .section-subtitle {
    font-size: 14px;
  }

  .feature-card-crypto {
    padding: 20px;
  }

  .feature-card-crypto h3 {
    font-size: 16px;
  }

  .feature-card-crypto p {
    font-size: 13px;
  }

  .trading-left h2 {
    font-size: clamp(20px, 4vw, 32px);
  }

  .trading-left p {
    font-size: 14px;
  }

  .check-list li {
    font-size: 14px;
  }

  /* About Premium Small Mobile */
  .about-premium {
    padding: 40px 0;
  }

  .mission-card {
    padding: 24px 16px;
  }

  .mission-header h3 {
    font-size: 20px;
  }

  .stats-grid-premium {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card-premium {
    padding: 16px;
  }

  .stat-icon-premium {
    font-size: 24px;
  }

  .stat-value-premium {
    font-size: 20px;
  }

  .features-grid-premium {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card-premium {
    padding: 16px;
  }

  .feature-card-premium h4 {
    font-size: 14px;
  }

  .feature-card-premium p {
    font-size: 12px;
  }

  .about-bottom-stats {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .stat-number-large {
    font-size: 24px;
  }

  .stat-description {
    font-size: 12px;
  }

  /* PDF Section Small Mobile */
  .pdf-section {
    padding: 40px 0;
  }

  .pdf-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pdf-card {
    padding: 16px;
  }

  .pdf-icon {
    font-size: 28px;
  }

  .pdf-card h3 {
    font-size: 14px;
  }

  .pdf-card p {
    font-size: 12px;
  }

  .btn-pdf {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Browser Section Small Mobile */
  .browser-section {
    padding: 40px 0;
  }

  .browser-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 12px;
    font-size: 12px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-card {
    padding: 16px;
  }

  .project-card h3 {
    font-size: 14px;
  }

  .project-card p {
    font-size: 12px;
  }

  .project-stats {
    gap: 8px;
  }

  .stat {
    flex-direction: column;
  }

  .stat .label {
    font-size: 10px;
  }

  .stat .value {
    font-size: 12px;
  }

  .btn-invest {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Contact Premium Small Mobile */
  .contact-premium {
    padding: 40px 0;
  }

  .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-methods-section {
    flex-direction: column;
    gap: 12px;
  }

  .contact-method-card {
    flex: 1;
    min-width: auto;
    padding: 16px;
  }

  .method-icon-wrapper {
    margin-bottom: 12px;
  }

  .method-icon {
    font-size: 20px;
  }

  .contact-method-card h3 {
    font-size: 13px;
  }

  .contact-method-card p {
    font-size: 11px;
  }

  .form-card-premium {
    padding: 16px;
  }

  .form-header-premium h3 {
    font-size: 16px;
  }

  .form-header-premium p {
    font-size: 12px;
  }

  .form-group-premium {
    margin-bottom: 12px;
  }

  .form-group-premium label {
    font-size: 11px;
  }

  .form-group-premium input,
  .form-group-premium select,
  .form-group-premium textarea {
    padding: 8px 10px;
    font-size: 13px;
  }

  .btn-submit-premium {
    padding: 10px 16px;
    font-size: 12px;
  }

  /* Footer Premium Small Mobile */
  .footer-premium {
    padding: 40px 0 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }

  .footer-logo {
    width: 80px;
    height: 80px;
  }

  .footer-tagline {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-heading {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .footer-list li a {
    font-size: 12px;
  }

  .footer-divider {
    margin: 20px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-copyright {
    font-size: 11px;
  }

  .footer-badges {
    justify-content: center;
    gap: 8px;
  }

  .badge-item {
    font-size: 10px;
    padding: 4px 10px;
  }

  .pricing-card h3 {
    font-size: 18px;
  }

  .price {
    font-size: 28px;
  }

  .pricing-card ul li {
    font-size: 13px;
  }

  .info-card-crypto h3 {
    font-size: 16px;
  }

  .info-main {
    font-size: 14px;
  }

  .info-sub {
    font-size: 12px;
  }

  .form-header-crypto h3 {
    font-size: 18px;
  }

  .form-header-crypto p {
    font-size: 13px;
  }

  .input-group-crypto label {
    font-size: 13px;
  }

  .input-group-crypto input,
  .input-group-crypto select,
  .input-group-crypto textarea {
    font-size: 14px;
    padding: 10px 12px;
  }

  .btn-crypto-submit {
    padding: 12px 20px;
    font-size: 14px;
  }

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

  .footer-desc {
    font-size: 13px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column h4 {
    font-size: 14px;
  }

  .footer-column ul li {
    font-size: 12px;
  }

  .copyright {
    font-size: 12px;
  }

  .badge-item {
    font-size: 11px;
  }
}

/* Extra Small (320px and below) */
@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 24px;
  }

  .cta-primary,
  .cta-secondary {
    padding: 10px 16px;
    font-size: 12px;
  }

  .crypto-card {
    width: 200px;
    padding: 12px;
  }

  .feature-card-crypto {
    padding: 16px;
  }

  .pricing-card {
    padding: 16px;
  }

  .info-card-crypto {
    padding: 16px;
  }

  .form-container-crypto {
    padding: 16px;
  }
}


/* ===== Scroll Animation Triggers ===== */

.features,
.trading,
.pricing,
.contact,
.footer {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.features.animate,
.trading.animate,
.pricing.animate,
.contact.animate,
.footer.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card-crypto,
.pricing-card,
.info-card-crypto,
.footer-column {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-crypto.animate,
.pricing-card.animate,
.info-card-crypto.animate,
.footer-column.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card-crypto:nth-child(1) { transition-delay: 0.1s; }
.feature-card-crypto:nth-child(2) { transition-delay: 0.2s; }
.feature-card-crypto:nth-child(3) { transition-delay: 0.3s; }
.feature-card-crypto:nth-child(4) { transition-delay: 0.1s; }
.feature-card-crypto:nth-child(5) { transition-delay: 0.2s; }
.feature-card-crypto:nth-child(6) { transition-delay: 0.3s; }
.feature-card-crypto:nth-child(7) { transition-delay: 0.4s; }

.pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing-card:nth-child(3) { transition-delay: 0.3s; }

.info-card-crypto:nth-child(1) { transition-delay: 0.1s; }
.info-card-crypto:nth-child(2) { transition-delay: 0.2s; }
.info-card-crypto:nth-child(3) { transition-delay: 0.3s; }
.stats-card-crypto { transition-delay: 0.4s; }

.footer-column:nth-child(1) { transition-delay: 0.1s; }
.footer-column:nth-child(2) { transition-delay: 0.2s; }
.footer-column:nth-child(3) { transition-delay: 0.3s; }
.footer-column:nth-child(4) { transition-delay: 0.4s; }


/* ===== New Landing Page Sections ===== */

.brand-text {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 8px;
}

/* ===== About Section - Premium Redesign ===== */
.about-premium {
  padding: 60px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  visibility: hidden;
}

.about-premium.animate {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.about-premium-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatOrb 20s ease-in-out infinite;
}

.orb-top-left {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-top-right {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  animation-delay: 5s;
}

.orb-bottom {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 10s;
}

.about-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.about-premium-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

/* Left Section - Mission */
.about-left-section {
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.mission-card {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.1), transparent);
  animation: shimmerEffect 3s infinite;
}

@keyframes shimmerEffect {
  0% { left: -100%; }
  100% { left: 100%; }
}

.mission-header {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.mission-header h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.header-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.6);
}

.mission-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mission-text:last-of-type {
  margin-bottom: 40px;
}

/* Stats Grid Premium */
.stats-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card-premium {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), rgba(255, 209, 102, 0.05));
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 183, 3, 0.1) 50%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card-premium:hover {
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.15), rgba(255, 209, 102, 0.1));
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 183, 3, 0.3);
}

.stat-card-premium:hover::before {
  opacity: 1;
}

.stat-icon-premium {
  font-size: 32px;
  margin-bottom: 12px;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

.stat-value-premium {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

.stat-label-premium {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Right Section - Features */
.about-right-section {
  animation: fadeInRight 0.8s ease 0.3s both;
}

.features-grid-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card-premium {
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(255, 183, 3, 0.15);
  border-radius: 16px;
  padding: 14px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.6s ease forwards;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card-premium:nth-child(1) { animation-delay: 0.4s; }
.feature-card-premium:nth-child(2) { animation-delay: 0.5s; }
.feature-card-premium:nth-child(3) { animation-delay: 0.6s; }
.feature-card-premium:nth-child(4) { animation-delay: 0.7s; }

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.15), transparent);
  transition: left 0.6s ease;
}

.feature-card-premium:hover::before {
  left: 100%;
}

.feature-card-premium:hover {
  background: rgba(10, 10, 10, 0.6);
  border-color: rgba(255, 183, 3, 0.4);
  transform: translateX(-8px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.25), inset 0 1px 0 rgba(255, 183, 3, 0.2);
}

.feature-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

.feature-icon-premium {
  font-size: 36px;
  display: inline-block;
  transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
  transform: scale(1.2) rotate(-10deg);
}

.feature-badge {
  background: rgba(255, 183, 3, 0.2);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 183, 3, 0.3);
}

.feature-card-premium h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

.feature-card-premium p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0px;
  position: relative;
  z-index: 1;
}

.feature-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.4s ease;
  position: relative;
  z-index: 1;
}

.feature-card-premium:hover .feature-line {
  width: 100%;
}

/* Bottom Stats Section */
.about-bottom-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.08), rgba(255, 209, 102, 0.04));
  border: 2px solid rgba(255, 183, 3, 0.3);
  border-radius: 24px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.about-bottom-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 183, 3, 0.15) 0%, transparent 50%);
  pointer-events: none;
  animation: statsGlow 4s ease-in-out infinite;
}

@keyframes statsGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.about-bottom-stats::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatOrb 15s ease-in-out infinite;
  pointer-events: none;
}

.bottom-stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.3);
  border: 2px solid rgba(255, 183, 3, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.bottom-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.2), transparent);
  animation: shimmerSlide 3s infinite;
}

@keyframes shimmerSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

.bottom-stat-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotateGlow 10s linear infinite;
}

.bottom-stat-item:hover::after {
  opacity: 1;
}

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bottom-stat-item:hover {
  transform: translateY(-12px) scale(1.05);
  background: rgba(10, 10, 10, 0.6);
  border-color: rgba(255, 183, 3, 0.5);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3), 0 0 40px rgba(255, 183, 3, 0.2), inset 0 0 20px rgba(255, 183, 3, 0.1);
}

.stat-number-large {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(255, 183, 3, 0.4);
  animation: numberPulse 3s ease-in-out infinite;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

@keyframes numberPulse {
  0%, 100% { 
    transform: scale(1);
    text-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  }
  50% { 
    transform: scale(1.08);
    text-shadow: 0 0 40px rgba(255, 183, 3, 0.8);
  }
}

.bottom-stat-item:hover .stat-number-large {
  animation: numberBounce 0.6s ease;
}

@keyframes numberBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.stat-description {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: fadeInUp 0.8s ease 0.6s both;
  position: relative;
  z-index: 2;
}

.stat-divider {
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 183, 3, 0.6), transparent);
  grid-column: auto;
  position: relative;
  animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {
  0%, 100% { 
    box-shadow: 0 0 0 rgba(255, 183, 3, 0.3);
    opacity: 0.5;
  }
  50% { 
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.8);
    opacity: 1;
  }
}

/* Responsive - Bottom Stats */
@media (max-width: 1024px) {
  .about-bottom-stats {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-bottom-stats {
    padding: 32px;
    gap: 24px;
  }

  .stat-number-large {
    font-size: 36px;
  }

  .stat-description {
    font-size: 12px;
  }

  .bottom-stat-item {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .about-bottom-stats {
    padding: 24px;
    gap: 20px;
  }

  .stat-number-large {
    font-size: 28px;
  }

  .stat-description {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .bottom-stat-item {
    padding: 12px;
  }
}

/* Responsive - About Premium */
@media (max-width: 1024px) {
  .about-premium-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .mission-card {
    padding: 40px;
  }

  .about-bottom-stats {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-premium {
    padding: 60px 0;
  }

  .about-premium-content {
    gap: 40px;
  }

  .mission-card {
    padding: 32px;
  }

  .mission-header h3 {
    font-size: 24px;
  }

  .stats-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .features-grid-premium {
    gap: 16px;
  }

  .feature-card-premium {
    padding: 24px;
  }

  .feature-card-premium h4 {
    font-size: 16px;
  }

  .about-bottom-stats {
    padding: 32px;
    gap: 24px;
  }

  .stat-number-large {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .about-premium {
    padding: 40px 0;
  }

  .about-premium-content {
    gap: 30px;
  }

  .mission-card {
    padding: 24px;
  }

  .mission-header h3 {
    font-size: 20px;
  }

  .mission-text {
    font-size: 14px;
  }

  .stats-grid-premium {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card-premium {
    padding: 20px;
  }

  .stat-icon-premium {
    font-size: 28px;
  }

  .stat-value-premium {
    font-size: 24px;
  }

  .feature-card-premium {
    padding: 20px;
  }

  .feature-card-premium h4 {
    font-size: 14px;
  }

  .feature-card-premium p {
    font-size: 13px;
  }

  .about-bottom-stats {
    padding: 24px;
    gap: 20px;
  }

  .stat-number-large {
    font-size: 28px;
  }

  .stat-description {
    font-size: 12px;
  }
}

/* PDF Section */
.pdf-section {
  padding: 60px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.pdf-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pdf-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.pdf-card:nth-child(1) { animation-delay: 0.1s; }
.pdf-card:nth-child(2) { animation-delay: 0.2s; }
.pdf-card:nth-child(3) { animation-delay: 0.3s; }

.pdf-card:hover {
  background: rgba(255, 183, 3, 0.1);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.pdf-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-block;
}

.pdf-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pdf-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-pdf {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
}

.btn-pdf:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.5);
}

/* Browser Section */
.browser-section {
  padding: 60px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.browser-section.animate {
  opacity: 1;
  transform: translateY(0);
}

.browser-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 8px;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary);
  color: var(--text-primary);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.1s; }
.project-card:nth-child(5) { animation-delay: 0.2s; }
.project-card:nth-child(6) { animation-delay: 0.3s; }

.project-card:hover {
  background: rgba(255, 183, 3, 0.1);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.project-category {
  background: rgba(255, 183, 3, 0.2);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.project-status {
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.project-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.project-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.1);
}

.stat {
  text-align: center;
}

.stat .label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.stat .value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.btn-invest {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
}

.btn-invest:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.5);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.contact.animate {
  opacity: 1;
  transform: translateY(0);
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 183, 3, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }

.contact-card:hover {
  background: rgba(255, 183, 3, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 183, 3, 0.3);
}

.contact-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: inline-block;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-form-wrapper {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.3);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.5);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.8);
  border-top: 1px solid rgba(255, 183, 3, 0.2);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.footer.animate {
  opacity: 1;
  transform: translateY(0);
}


/* Hero Visual Cards */
.hero-visual {
  position: relative;
  height: 500px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 183, 3, 0.3);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
  animation: float 6s ease-in-out infinite;
}

.floating-card:hover {
  border-color: var(--primary);
  box-shadow: 0 30px 80px rgba(255, 183, 3, 0.4);
  transform: translateY(-10px) scale(1.05);
}

.card-1 {
  top: 0;
  left: 0;
  width: 280px;
  animation-delay: 0s;
}

.card-2 {
  top: 150px;
  right: 0;
  width: 280px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.card-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.card-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

.card-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  color: #10B981;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pdf-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .browser-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-visual {
    height: 400px;
  }

  .card-1 {
    width: 240px;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-2 {
    width: 240px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 180px;
  }

  .card-3 {
    width: 240px;
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .about-card,
  .pdf-card,
  .project-card,
  .contact-card {
    padding: 20px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-visual {
    height: 300px;
  }

  .card-1,
  .card-2,
  .card-3 {
    width: 200px;
  }
}


/* About Content Layout */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: center;
}

.about-text {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
}

.about-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 183, 3, 0.2);
}

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

.stat-box .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.5);
}

.stat-box .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

.about-features .about-card {
  animation: none;
  opacity: 1;
  transform: none;
}

.about-features .about-card:nth-child(1) { animation: fadeInUp 0.6s ease 0.2s forwards; }
.about-features .about-card:nth-child(2) { animation: fadeInUp 0.6s ease 0.3s forwards; }
.about-features .about-card:nth-child(3) { animation: fadeInUp 0.6s ease 0.4s forwards; }
.about-features .about-card:nth-child(4) { animation: fadeInUp 0.6s ease 0.5s forwards; }

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text {
    animation: fadeInUp 0.8s ease forwards;
    transform: translateY(30px);
  }

  .about-features {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    transform: translateY(30px);
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-box .stat-number {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .about-content {
    gap: 30px;
  }

  .about-text h3 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-features .about-card {
    padding: 20px;
  }
}


/* ===== Contact Section - Premium Redesign ===== */
.contact-premium {
  padding: 60px 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
  visibility: hidden;
}

.contact-premium.animate {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.contact-premium-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: floatOrb 20s ease-in-out infinite;
}

.orb-left {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-right {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
  animation-delay: 5s;
}

.contact-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.contact-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Contact Methods Section */
.contact-methods-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.contact-method-card {
  background: rgba(10, 10, 10, 0.4);
  border: 2px solid rgba(255, 183, 3, 0.3);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s ease forwards, cardFloat 4s ease-in-out infinite;
}

.contact-method-card:nth-child(1) { animation-delay: 0.3s, 0s; }
.contact-method-card:nth-child(2) { animation-delay: 0.4s, 1s; }
.contact-method-card:nth-child(3) { animation-delay: 0.5s, 2s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.15), transparent);
  transition: left 0.6s ease;
}

.contact-method-card:hover::before {
  left: 100%;
}

.contact-method-card:hover,
.contact-method-card.active {
  background: rgba(10, 10, 10, 0.6);
  border-color: rgba(255, 183, 3, 0.4);
  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(255, 183, 3, 0.25), inset 0 1px 0 rgba(255, 183, 3, 0.2);
}

.contact-method-card.active {
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.4), inset 0 1px 0 rgba(255, 183, 3, 0.3);
}

.method-icon-wrapper {
  position: relative;
  margin-bottom: 16px;
  display: inline-block;
}

.method-icon {
  font-size: 36px;
  display: inline-block;
  transition: all 0.3s ease;
}

.icon-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-method-card:hover .method-icon {
  transform: scale(1.2) rotate(-10deg);
}

.contact-method-card:hover .icon-glow {
  opacity: 1;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.contact-method-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.method-value {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.method-sub {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.method-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.4s ease;
  position: relative;
  z-index: 1;
}

.contact-method-card:hover .method-line,
.contact-method-card.active .method-line {
  width: 100%;
}

/* Contact Form Section */
.contact-form-section {
  animation: fadeInRight 0.8s ease 0.3s both;
}

.form-card-premium {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: formGlow 4s ease-in-out infinite, formBorderPulse 3s ease-in-out infinite;
}

@keyframes formGlow {
  0%, 100% { 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 183, 3, 0.2);
  }
  50% { 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 183, 3, 0.4);
  }
}

@keyframes formBorderPulse {
  0%, 100% { border-color: rgba(255, 183, 3, 0.2); }
  50% { border-color: rgba(255, 183, 3, 0.4); }
}

.form-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 183, 3, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: formRadialGlow 5s ease-in-out infinite;
}

@keyframes formRadialGlow {
  0%, 100% { 
    background: radial-gradient(circle at 50% 0%, rgba(255, 183, 3, 0.1) 0%, transparent 50%);
  }
  50% { 
    background: radial-gradient(circle at 50% 0%, rgba(255, 183, 3, 0.2)0%, transparent 50%);
  }
}
.form-header-premium {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.2);
  position: relative;
  z-index: 1;
}

.form-header-premium h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  transition: all 0.4s ease;
}

.form-header-premium p {
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.4s ease;
}

.contact-form-premium {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.4s ease;
}

.form-enter {
  animation: formSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes formSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-group-premium {
  position: relative;
}

.form-group-premium label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-bottom: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 0;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-primary);
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
  outline: none;
  background: rgba(255, 183, 3, 0.05);
  border-bottom-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 183, 3, 0.2);
}

.form-group-premium input::placeholder,
.form-group-premium textarea::placeholder {
  color: var(--text-muted);
}

.form-group-premium select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23D81518' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.form-group-premium select option {
  background: #0A0A0A;
  color: var(--text-primary);
  padding: 12px;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.4s ease;
}

.form-group-premium input:focus ~ .input-line,
.form-group-premium select:focus ~ .input-line,
.form-group-premium textarea:focus ~ .input-line {
  width: 100%;
}

.btn-submit-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.4);
  margin-top: 8px;
}

.btn-submit-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnShine 3s infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-submit-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 183, 3, 0.6), 0 0 40px rgba(255, 183, 3, 0.3);
}

.btn-submit-premium:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-submit-premium svg {
  transition: transform 0.3s ease;
}

.btn-submit-premium:hover svg {
  transform: translateX(4px);
}

/* Responsive - Contact Premium */
@media (max-width: 1024px) {
  .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .form-card-premium {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact-premium {
    padding: 60px 0;
  }

  .contact-premium-grid {
    gap: 40px;
  }

  .contact-method-card {
    padding: 24px;
  }

  .form-card-premium {
    padding: 32px;
  }

  .form-header-premium h3 {
    font-size: 24px;
  }

  .form-group-premium input,
  .form-group-premium select,
  .form-group-premium textarea {
    padding: 10px 0;
    font-size: 14px;
  }

  .btn-submit-premium {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-premium {
    padding: 40px 0;
  }

  .contact-premium-grid {
    gap: 30px;
  }

  .contact-method-card {
    padding: 20px;
  }

  .contact-method-card h3 {
    font-size: 16px;
  }

  .method-value {
    font-size: 14px;
  }

  .method-sub {
    font-size: 11px;
  }

  .form-card-premium {
    padding: 24px;
  }

  .form-header-premium h3 {
    font-size: 20px;
  }

  .form-header-premium p {
    font-size: 13px;
  }

  .form-group-premium label {
    font-size: 11px;
  }

  .form-group-premium input,
  .form-group-premium select,
  .form-group-premium textarea {
    padding: 8px 0;
    font-size: 13px;
  }

  .btn-submit-premium {
    padding: 12px 24px;
    font-size: 14px;
    gap: 8px;
  }
}


/* ===== Hero Section - Premium Redesign ===== */
.hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: visible;
  background: #000;
}

.hero-premium-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  /* animation: floatOrbHero 20s ease-in-out infinite; */
}

.hero-glow-orb.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  top: -200px;
  right: 10%;
  animation-delay: 0s;
}

.hero-glow-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-delay: 5s;
}

.hero-glow-orb.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 10s;
}

@keyframes floatOrbHero {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 183, 3, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  /* animation: gridMoveHero 20s linear infinite; */
  pointer-events: none;
  opacity: 0.4;
}

/* @keyframes gridMoveHero {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
} */

.hero-animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: shapeFloat 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  top: 50%;
  right: 5%;
  animation-delay: 10s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero-premium-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Side - Text Content */
.hero-left-premium {
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.badge-icon {
  font-size: 16px;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.title-word {
  font-size: clamp(48px, 7vw, 60px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.title-word {
  display: block;
  animation: fadeInUp 0.8s ease both;
}

.title-word:nth-child(1) { animation-delay: 0.3s; }
.title-word:nth-child(2) { animation-delay: 0.4s; }
.title-word:nth-child(3) { animation-delay: 0.5s; }

.highlight-word {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease 0.4s both, textGlowHero 3s ease-in-out infinite !important;
  background-size: 200% 200%;
}

@keyframes textGlowHero {
  0%, 100% { 
    filter: drop-shadow(0 0 20px rgba(255, 183, 3, 0.5));
    background-position: 0% 50%;
  }
  50% { 
    filter: drop-shadow(0 0 40px rgba(255, 183, 3, 0.8));
    background-position: 100% 50%;
  }
}

.hero-description-premium {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
  max-width: 540px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats-premium {
  display: flex;
  gap: 40px;
  margin-bottom: 24px;
  padding: 24px 32px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item-premium {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  font-size: 24px;
  animation: bounce 2s ease-in-out infinite;
}

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

.stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(255, 183, 3, 0.6);
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider-premium {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 183, 3, 0.5), transparent);
}

.hero-buttons-premium {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s ease 1s both;
}

.btn-primary-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.4);
}

.btn-primary-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnShineHero 3s infinite;
}

@keyframes btnShineHero {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.btn-primary-premium:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 183, 3, 0.7), 0 0 40px rgba(255, 183, 3, 0.5);
}

.btn-primary-premium:active {
  transform: translateY(-2px) scale(0.98);
}

.btn-secondary-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-secondary-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary-premium:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(255, 183, 3, 0.4), inset 0 0 20px rgba(255, 183, 3, 0.1);
}

.btn-secondary-premium:hover::before {
  opacity: 1;
}

/* Right Side - Cards */
.hero-right-premium {
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}
.hero-heading{
  margin-bottom: 10px;
}
.hero-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card-premium {
  position: absolute;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(40px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
  animation: cardFloatHero 8s ease-in-out infinite;
  overflow: hidden;
  width: 320px;
  position: relative;
}

.hero-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.15), transparent);
  animation: cardShimmer 3s infinite;
}

@keyframes cardShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotateCardGlow 10s linear infinite;
}

.hero-card-premium:hover::after {
  opacity: 1;
}

@keyframes rotateCardGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.card-1 {
  top: 0;
  left: 0;
  z-index: 3;
  animation-delay: 0s;
}

.card-2 {
  top: 200px;
  right: 0;
  z-index: 2;
  animation-delay: 2s;
}

.card-3 {
  top: 100px;
  left: 180px;
  z-index: 1;
  animation-delay: 4s;
}

@keyframes cardFloatHero {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.hero-card-premium:hover {
  border-color: rgba(255, 183, 3, 0.6);
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 30px 80px rgba(255, 183, 3, 0.4), 0 0 60px rgba(255, 183, 3, 0.2);
  z-index: 10 !important;
}

.card-header-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.card-icon {
  font-size: 32px;
}

.card-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card-premium h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-card-premium p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.1);
}

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

.card-stat .label {
  display: block;
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.card-stat .value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.progress-bar-premium {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-premium .progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Responsive - Hero Premium */
@media (max-width: 1024px) {
  .hero-premium-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-right-premium {
    height: 500px;
  }

  .hero-card-premium {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    min-height: 100vh;
    padding: 120px 0 60px;
  }

  .hero-premium-content {
    gap: 40px;
  }

  .title-word {
    font-size: clamp(28px, 6vw, 36px) !important;
    line-height: 1.2;
  }

  .hero-description-premium {
    font-size: 14px;
  }

  .hero-stats-premium {
    flex-direction: row;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
  }

  .stat-item-premium {
    flex: 1;
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .stat-icon {
    font-size: 16px;
  }

  .stat-value {
    font-size: 14px;
    font-weight: 700;
  }

  .stat-label {
    font-size: 9px;
    line-height: 1.2;
  }

  .stat-divider-premium {
    display: none;
  }

  .hero-buttons-premium {
    flex-direction: column;
  }

  .btn-primary-premium,
  .btn-secondary-premium {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-right-premium {
    height: 400px;
  }

  .hero-card-premium {
    width: 280px;
    padding: 20px;
  }

  .card-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-2 {
    top: 250px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .card-3 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-premium {
    min-height: 100vh;
    padding: 110px 0 50px;
  }

  .title-word {
    font-size: clamp(24px, 5vw, 28px) !important;
    line-height: 1.1;
  }

  .hero-description-premium {
    font-size: 13px;
  }

  .hero-stats-premium {
    gap: 8px;
    padding: 12px 16px;
  }

  .stat-value {
    font-size: 12px;
  }

  .stat-label {
    font-size: 8px;
  }

  .stat-icon {
    font-size: 14px;
  }
}

  .hero-stats-premium {
    gap: 16px;
    padding: 20px 24px;
  }

  .stat-divider-premium {
    display: none;
  }

  .btn-primary-premium,
  .btn-secondary-premium {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-right-premium {
    height: 350px;
  }

  .hero-card-premium {
    width: 240px;
    padding: 16px;
  }



/* ===== How It Works Section ===== */
.how-it-works {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.05) 0%, rgba(255, 209, 102, 0.02) 100%);
  position: relative;
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.step-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 183, 3, 0.2);
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.step-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Featured Campaigns Section ===== */
.featured-campaigns {
  padding: 70px 0;
  position: relative;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.campaign-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.campaign-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.campaign-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), rgba(255, 209, 102, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-placeholder {
  font-size: 80px;
  opacity: 0.8;
}

.campaign-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.campaign-content {
  padding: 24px;
}

.campaign-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.campaign-content > p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.campaign-creator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.creator-avatar {
  font-size: 20px;
}

.campaign-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 183, 3, 0.15);
}

.campaign-stats .stat {
  text-align: center;
}

.campaign-stats .label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.campaign-stats .value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 183, 3, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.btn-back {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}

.explore-all {
  text-align: center;
  margin-top: 50px;
}

.btn-explore {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-explore:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 183, 3, 0.4);
}

/* ===== Why Choose Us Section ===== */
.why-choose-us {
  padding: 70px 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.05) 0%, rgba(255, 209, 102, 0.02) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.feature-icon {
  font-size: 48px;
  display: block;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, rgba(255, 209, 102, 0.05) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

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

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(255, 183, 3, 0.4);
}

.stat-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-description {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.btn-cta {
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.contact-box {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-box:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.contact-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 12px;
}

/* ===== Footer ===== */
.footer-premium {
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid rgba(255, 183, 3, 0.2);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-badges {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tag {
  display: inline-block;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.3);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .stat-number {
    font-size: 36px;
  }

  .steps-grid,
  .campaigns-grid,
  .features-grid,
  .stats-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Resources Section ===== */
.resources-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.resource-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.resource-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.resource-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.resource-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-resource {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-resource:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}


/* ===== About Section ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-left h3,
.about-right h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.about-left p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 183, 3, 0.2);
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat .stat-icon {
  font-size: 32px;
}

.about-stat .stat-value {
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
}

.about-stat .stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 183, 3, 0.05);
  border: 1px solid rgba(255, 183, 3, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--primary);
  background: rgba(255, 183, 3, 0.1);
}

.feature-item .feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

.pdf-resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.pdf-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.pdf-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.3);
}

.pdf-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.pdf-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pdf-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-pdf {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-pdf:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.4);
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.3), transparent);
  margin: 60px 0;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}


/* ===== Contact Section Styling ===== */
.contact-premium {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.contact-premium-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.05) 0%, rgba(255, 209, 102, 0.02) 100%);
  pointer-events: none;
}

.contact-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.contact-glow-orb.orb-left {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  top: 50%;
  left: -100px;
  animation: floatOrb 15s ease-in-out infinite;
}

.contact-glow-orb.orb-right {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.15) 0%, transparent 70%);
  bottom: 50px;
  right: -50px;
  animation: floatOrb 12s ease-in-out infinite 2s;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.contact-box {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-box:hover {
  border-color: var(--primary);
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(255, 183, 3, 0.4), inset 0 1px 0 rgba(255, 183, 3, 0.1);
}

.contact-box .contact-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
  animation: bounce 2s ease-in-out infinite;
}

.contact-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 13px !important;
  font-weight: 400 !important;
}

/* ===== Footer Premium ===== */
.footer-premium {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 1) 100%);
  border-top: 1px solid rgba(255, 183, 3, 0.2);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.5), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-section {
  position: relative;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section ul li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-section ul li a:hover::before {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 183, 3, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-badges {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-badges span {
  transition: all 0.3s ease;
  cursor: default;
}

.footer-badges span:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}


/* ===== CONTACT SECTION - FRESH STYLING ===== */
.contact-premium {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.03) 0%, rgba(255, 209, 102, 0.01) 100%);
}

.contact-premium-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.contact-glow-orb.orb-left {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.25) 0%, transparent 70%);
  top: 20%;
  left: -150px;
  animation: floatOrb 15s ease-in-out infinite;
}

.contact-glow-orb.orb-right {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.2) 0%, transparent 70%);
  bottom: 10%;
  right: -100px;
  animation: floatOrb 12s ease-in-out infinite 2s;
}

.contact-premium .section-header {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.contact-box {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(15, 15, 15, 0.9) 100%);
  border: 1.5px solid rgba(255, 183, 3, 0.25);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.contact-box:hover {
  border-color: var(--primary);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(255, 183, 3, 0.4), inset 0 1px 0 rgba(255, 183, 3, 0.2);
}

.contact-box:hover::before {
  opacity: 1;
}

.contact-box .contact-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
  animation: bounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.contact-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.contact-box p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}



/* ===== FOOTER STYLING - PREMIUM REDESIGN ===== */
.footer-premium {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.99) 0%, rgba(0, 0, 0, 1) 100%);
  border-top: 1.5px solid rgba(255, 183, 3, 0.3);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: floatOrb 15s ease-in-out infinite;
}

.footer-glow-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.1) 0%, transparent 70%);
  top: -10%;
  right: 5%;
  animation-delay: 0s;
}

.footer-glow-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: 5s;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.8), transparent);
  animation: borderPulse 3s ease-in-out infinite;
  pointer-events: none;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.3), transparent);
  margin: 50px 0 0px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 60px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-section {
  position: relative;
  animation: fadeInUp 0.8s ease;
}

.footer-section:nth-child(1) { animation-delay: 0s; }
.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }
.footer-section:nth-child(4) { animation-delay: 0.3s; }

.footer-section h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 14px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 183, 3, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.2);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  cursor: default;
  animation: badgePulse 3s ease-in-out infinite;
}

.footer-badges .badge:nth-child(1) { animation-delay: 0s; }
.footer-badges .badge:nth-child(2) { animation-delay: 0.5s; }
.footer-badges .badge:nth-child(3) { animation-delay: 1s; }

.footer-badges .badge:hover {
  background: rgba(255, 183, 3, 0.2);
  border-color: var(--primary);
  transform: scale(1.05);
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  }
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-badges {
    justify-content: center;
  }
}

/* ===== RESPONSIVE CONTACT & FOOTER ===== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-premium {
    padding: 80px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-box {
    padding: 40px 30px;
  }

  .contact-box .contact-icon {
    font-size: 48px;
  }

  .contact-box h3 {
    font-size: 18px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-premium {
    padding: 60px 0;
  }

  .contact-box {
    padding: 30px 20px;
  }

  .contact-box .contact-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .contact-box h3 {
    font-size: 16px;
  }

  .contact-box p {
    font-size: 14px;
  }

  .footer-section h4 {
    font-size: 13px;
  }

  .footer-section p,
  .footer-section ul li a {
    font-size: 12px;
  }
}


/* ===== CONTACT SECTION - PREMIUM REDESIGN ===== */
.contact-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.08) 0%, rgba(255, 209, 102, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  animation: floatOrb 15s ease-in-out infinite;
  pointer-events: none;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: floatOrb 20s ease-in-out infinite 2s;
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-cards-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-card-premium {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(8, 8, 8, 0.95) 100%);
  border: 1.5px solid rgba(255, 183, 3, 0.25);
  border-radius: 16px;
  padding: 26px 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: fadeInUp 0.8s ease both, borderGlow 3s ease-in-out infinite, cardHoverFloat 4s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255, 183, 3, 0.1);
}

.contact-card-premium::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 183, 3, 0.5) 50%, transparent 70%);
  animation: borderRotate 3s linear infinite;
  pointer-events: none;
  opacity: 0;
}

.contact-card-premium:nth-child(1) { animation-delay: 0.1s; }
.contact-card-premium:nth-child(2) { animation-delay: 0.2s; }
.contact-card-premium:nth-child(3) { animation-delay: 0.3s; }

.contact-card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

.contact-card-content {
  position: relative;
  z-index: 2;
  animation: contentShimmer 4s ease-in-out infinite;
}

.contact-icon-wrapper {
  margin-bottom: 16px;
}

.contact-icon-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.2), rgba(255, 209, 102, 0.1));
  border: 1.5px solid rgba(255, 183, 3, 0.3);
  border-radius: 12px;
  font-size: 28px;
  animation: iconFloatLarge 3s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(255, 183, 3, 0.15);
}

.contact-card-premium h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0px;
  letter-spacing: -0.01em;
}

.contact-main {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0px;
  text-shadow: 0 0 15px rgba(255, 183, 3, 0.4);
}

.contact-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: linkGlow 2.5s ease-in-out infinite;
}

.contact-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.3), transparent);
  transition: left 0.5s ease;
}

.contact-link:hover {
  background: rgba(255, 183, 3, 0.2);
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(255, 183, 3, 0.3);
}

.contact-link:hover::before {
  left: 100%;
}

.contact-card-premium:hover {
  border-color: rgba(255, 183, 3, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(255, 183, 3, 0.3), 0 0 60px rgba(255, 183, 3, 0.15), inset 0 1px 0 rgba(255, 183, 3, 0.2);
}

.contact-form-section {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(8, 8, 8, 0.95) 100%);
  border: 1.5px solid rgba(255, 183, 3, 0.25);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.4s both, borderGlow 3s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255, 183, 3, 0.1);
}

.contact-form-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 183, 3, 0.5) 50%, transparent 70%);
  animation: borderRotate 3s linear infinite;
  pointer-events: none;
  opacity: 0;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite 1s;
  z-index: 1;
}

.form-header {
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.form-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.form-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 183, 3, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.3), inset 0 0 10px rgba(255, 183, 3, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: btnSweep 3s infinite;
}

.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 50px rgba(255, 183, 3, 0.6), 0 0 40px rgba(255, 183, 3, 0.3);
}

.btn-submit:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-cards-premium {
    gap: 20px;
  }

  .contact-card-premium {
    padding: 24px;
  }

  .contact-form-section {
    padding: 30px;
  }

  .contact-icon-bg {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .contact-card-premium h3 {
    font-size: 18px;
  }

  .form-header h3 {
    font-size: 20px;
  }
}


/* ===== FRESH FOOTER PREMIUM DESIGN ===== */
.footer-premium {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.99) 0%, rgba(0, 0, 0, 1) 100%);
  border-top: 1.5px solid rgba(255, 183, 3, 0.4);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: floatOrb 15s ease-in-out infinite;
}

.footer-glow-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, transparent 70%);
  top: -10%;
  right: 5%;
}

.footer-glow-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.1) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: 5s;
}

.footer-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.8), transparent);
  animation: borderPulse 3s ease-in-out infinite;
}



.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 60px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-section {
  position: relative;
  animation: fadeInUp 0.8s ease;
}

.footer-section:nth-child(1) { animation-delay: 0s; }
.footer-section:nth-child(2) { animation-delay: 0.1s; }
.footer-section:nth-child(3) { animation-delay: 0.2s; }
.footer-section:nth-child(4) { animation-delay: 0.3s; }

.footer-section h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 14px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-section ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 183, 3, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.2);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  animation: badgePulse 3s ease-in-out infinite;
}

.footer-badges .badge:nth-child(1) { animation-delay: 0s; }
.footer-badges .badge:nth-child(2) { animation-delay: 0.5s; }
.footer-badges .badge:nth-child(3) { animation-delay: 1s; }

.footer-badges .badge:hover {
  background: rgba(255, 183, 3, 0.2);
  border-color: var(--primary);
  transform: scale(1.05);
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 183, 3, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 183, 3, 0.4);
  }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-premium {
    padding: 60px 0 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-section:first-child .nav-brand {
    margin-bottom: 20px;
  }

  .footer-section h4 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    border-top: none !important;
  }

  .footer-badges {
    justify-content: center;
  }
}

/* ===== FOOTER FIXES ===== */
/* Remove double border from footer-bottom */
.footer-bottom {
  border-top: none !important;
}

/* Add space under footer logo */
.footer-section:first-child .nav-brand {
  margin-bottom: 20px;
}

/* Highlight footer section headings */
.footer-section h4 {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
/* ===== FORCE HORIZONTAL STATS ON MOBILE ===== */
@media screen and (max-width: 768px) {
  /* Hero section padding fix */
  .hero-premium {
    padding-top: 120px !important;
  }
  
  /* Title text smaller */
  .hero-heading .title-word {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
  
  .hero-premium .hero-stats-premium {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 4px !important;
    padding: 10px 12px !important;
    margin-bottom: 20px !important;
  }
  
  .hero-premium .stat-item-premium {
    flex: 1 1 33.33% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-width: 0 !important;
    gap: 6px !important;
  }
  
  .hero-premium .stat-icon {
    font-size: 12px !important;
    margin-bottom: 2px !important;
  }
  
  .hero-premium .stat-value {
    font-size: 11px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
  }
  
  .hero-premium .stat-label {
    font-size: 7px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    line-height: 1 !important;
  }
  
  .hero-premium .stat-divider-premium {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  /* Even smaller text for very small screens */
  .hero-heading .title-word {
    font-size: 28px !important;
  }
  
  .hero-premium .stat-value {
    font-size: 9px !important;
  }
  
  .hero-premium .stat-label {
    font-size: 6px !important;
  }
  
  .hero-premium .stat-icon {
    font-size: 10px !important;
  }
}
/* ===== ULTIMATE MOBILE STATS FIX ===== */
@media screen and (max-width: 768px) {
  section.hero-premium .hero-stats-premium {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-around !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 2px !important;
    padding: 8px !important;
    margin: 16px 0 !important;
    box-sizing: border-box !important;
  }
  
  section.hero-premium .hero-stats-premium .stat-item-premium {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 33.33% !important;
    max-width: 33.33% !important;
    min-width: 0 !important;
    padding: 4px 2px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  section.hero-premium .hero-stats-premium .stat-item-premium .stat-icon {
    font-size: 18px !important;
    margin: 0 0 2px 0 !important;
    display: block !important;
  }
  
  section.hero-premium .hero-stats-premium .stat-item-premium .stat-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 4px;
  }
  
  section.hero-premium .hero-stats-premium .stat-item-premium .stat-info .stat-value {
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    margin: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  section.hero-premium .hero-stats-premium .stat-item-premium .stat-info .stat-label {
    font-size: 14px !important;
    line-height: 1 !important;
    margin: 1px 0 0 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-transform: uppercase !important;
  }
  
  section.hero-premium .hero-stats-premium .stat-divider-premium {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    visibility: hidden !important;
  }
}