:root {
  /* Dark Theme Colors */
  --bg-dark-0: #0a0714;
  --bg-dark-1: #120b22;
  --bg-dark-2: #1a1230;
  --bg-dark-3: #22163a;
  
  /* Light Theme Colors */
  --bg-light-0: #faf9f7;
  --bg-light-1: #f5f3f0;
  --bg-light-2: #efece8;
  
  /* Text Colors */
  --text-dark: rgba(255, 255, 255, 0.96);
  --text-light: rgba(10, 7, 20, 0.92);
  --muted-dark: rgba(255, 255, 255, 0.72);
  --muted-light: rgba(10, 7, 20, 0.65);
  
  /* Golden Accents */
  --gold-primary: #D4AF37;
  --gold-light: #F5D07B;
  --gold-dark: #B8941F;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-glow-strong: rgba(212, 175, 55, 0.5);
  
  /* Premium Accents */
  --accent-violet: #7C63FF;
  --accent-teal: #62E1C9;
  --accent-rose: #FF6B9D;
  
  /* Card Colors */
  --card-dark: rgba(255, 255, 255, 0.08);
  --card-light: rgba(255, 255, 255, 0.95);
  --card-border-dark: rgba(255, 255, 255, 0.15);
  --card-border-light: rgba(212, 175, 55, 0.25);
  
  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 18px 50px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 20px 60px rgba(212, 175, 55, 0.25);
  
  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 32px;
  
  /* Typography */
  --serif: "Playfair Display", ui-serif, Georgia, "Times New Roman", Times;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

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

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-dark);
  background: var(--bg-dark-0);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== STORY VIDEO SECTION ==================== */
.story-video-section {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--bg-dark-0), var(--bg-dark-1));
  position: relative;
  overflow: hidden;
}

.story-video-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.story-video-preview {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-video-preview:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.4);
  border-color: rgba(212, 175, 55, 0.5);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-video-preview:hover .video-thumbnail img {
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: all 0.4s ease;
}

.story-video-preview:hover .video-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.video-play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border: 4px solid rgba(255, 255, 255, 0.3);
  color: var(--bg-dark-0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.7);
  position: relative;
  z-index: 2;
}

.video-play-btn svg {
  width: 40px;
  height: 40px;
  margin-left: 4px;
  fill: currentColor;
}

.video-play-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7), 0 0 0 20px rgba(212, 175, 55, 0);
  border-color: rgba(255, 255, 255, 0.5);
}

.video-play-btn:active {
  transform: scale(1.05);
}

.video-label {
  text-align: center;
  color: white;
  z-index: 2;
}

.video-label-text {
  display: block;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--serif);
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-label-subtitle {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
}

/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 7, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.video-modal-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark-0);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(212, 175, 55, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.video-modal-overlay.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.video-modal-close:hover {
  background: rgba(212, 175, 55, 0.4);
  transform: rotate(90deg);
  color: var(--gold-primary);
}

.video-modal-content {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  border: none;
  object-fit: contain;
  background: #000;
}

@media (max-width: 768px) {
  .story-video-section {
    padding: 30px 0;
  }
  
  .video-play-btn {
    width: 80px;
    height: 80px;
  }
  
  .video-play-btn svg {
    width: 32px;
    height: 32px;
  }
  
  .video-label-text {
    font-size: 22px;
  }
  
  .video-label-subtitle {
    font-size: 14px;
  }
  
  .video-modal-container {
    max-width: 95vw;
    max-height: 60vh;
  }
}

/* ==================== NAVIGATION ==================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 7, 20, 0.95), rgba(10, 7, 20, 0.85));
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.header-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-shrink: 0;
  padding-left: 24px;
}

.brand .logo {
  width: auto;
  height: 50px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: none;
  transition: transform 0.3s ease;
  padding: 0;
}

.brand .logo:hover {
  transform: scale(1.05);
}

.brand .logo img {
  width: auto;
  height: 50px;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.brand-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-meta strong {
  font-family: var(--serif);
  letter-spacing: 0.4px;
  font-size: 17px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.brand-meta span {
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  margin: 0 12px;
}

.nav-links a {
  opacity: 0.85;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.25s ease;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.nav-links a:hover svg {
  opacity: 1;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(212, 175, 55, 0.08);
}

.nav-links a:hover::before {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 24px;
}

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

.btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text-dark);
  padding: 12px 18px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-color: var(--gold-primary);
  color: var(--bg-dark-0);
  font-weight: 700;
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn.primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  box-shadow: 0 12px 40px var(--gold-glow-strong);
  transform: translateY(-3px);
}

/* ==================== HERO SECTION (Dark) ==================== */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(1000px 600px at 70% 10%, rgba(124, 99, 255, 0.15), transparent 60%),
    radial-gradient(800px 550px at 20% 85%, rgba(98, 225, 201, 0.12), transparent 60%),
    radial-gradient(600px 400px at 50% 50%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-dark-0), var(--bg-dark-2));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: stretch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.05));
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.3px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25), 0 0 20px rgba(212, 175, 55, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero h1 {
  margin: 24px 0 16px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff, var(--gold-light), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

.hero-title-dotted {
  margin: 32px 0 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--gold-primary);
  position: relative;
  font-weight: 800;
  text-shadow: 
    0 0 10px rgba(212, 175, 55, 0.5),
    0 0 20px rgba(212, 175, 55, 0.3),
    0 0 30px rgba(212, 175, 55, 0.2);
  -webkit-text-stroke: 2px var(--gold-primary);
  text-stroke: 2px var(--gold-primary);
  background: radial-gradient(circle, var(--gold-primary) 2px, transparent 2px);
  background-size: 6px 6px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dotSparkle 3s linear infinite;
}

.hero-title-dotted::before {
  content: 'THE POWER OF CARE, REIMAGINED';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: var(--gold-primary);
  z-index: -1;
  opacity: 0.4;
  filter: blur(8px);
  background: none;
  -webkit-text-stroke: 1px var(--gold-primary);
  text-stroke: 1px var(--gold-primary);
}

@keyframes dotSparkle {
  0%, 100% {
    background-position: 0 0;
    opacity: 1;
  }
  50% {
    background-position: 12px 12px;
    opacity: 0.9;
  }
}

.hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  line-height: 1.7;
  max-width: 650px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Hero Scene with Card Flip */
.scene {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-lg), 0 0 60px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  min-height: 450px;
  padding: 0;
  backdrop-filter: blur(10px);
}

/* Card Flip Container - Exact match from cardflip.html */
.card-flip-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 92vw);
  aspect-ratio: 16 / 10;
  perspective: clamp(900px, 6vw, 1400px);
  z-index: 15;
}

.card-flip {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.4, 0.2, 0.2, 1);
  cursor: pointer;
}

.card-flip-container:hover .card-flip {
  transform: rotateY(180deg) rotateX(4deg);
}

.card-face::after {
  content: "";
  position: absolute;
  inset: -55%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0.40) 50%,
    rgba(255, 255, 255, 0) 64%
  );
  mix-blend-mode: screen;
  opacity: 0.65;
  transform: translateX(-55%);
  pointer-events: none;
  animation: glareSweep 2.6s ease-in-out infinite;
}

.card-flip-container:hover .card-face::after {
  opacity: 0.85;
  animation-duration: 1.9s;
}

@keyframes glareSweep {
  0% { transform: translateX(-58%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(58%); }
}

.card-face {
  position: absolute;
  inset: 0;
  border-radius: clamp(16px, 2.5vw, 26px);
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 clamp(14px, 2.2vw, 25px) clamp(40px, 6vw, 70px) rgba(0, 0, 0, 0.55);
}

.card-front {
  background-image: url('resources/RS_front.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}


.card-title {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
  letter-spacing: 3px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.card-subtitle {
  font-size: clamp(12px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  font-weight: 600;
}

.card-back {
  background-image: url('resources/RS_back.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotateY(180deg);
  display: block;
  position: relative;
}

.card-back-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(14px, 2.5vw, 22px);
  z-index: 2;
}

.qr {
  position: absolute;
  top: clamp(12px, 2vw, 18px);
  right: clamp(12px, 2vw, 18px);
  width: clamp(70px, 12vw, 96px);
  height: clamp(70px, 12vw, 96px);
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  z-index: 3;
}

.qr canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  background: transparent !important;
}

.card-number {
  position: absolute;
  bottom: clamp(14px, 2.5vw, 22px);
  right: clamp(16px, 3vw, 26px);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #0b0b0b;
  background: none;
  padding: 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.45), 0 -1px 1px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.card-face::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 65%
  );
  mix-blend-mode: screen;
  opacity: 0.6;
  transform: translateX(-60%);
  pointer-events: none;
  animation: glareSweep 2.8s ease-in-out infinite;
}

.card-flip-container:hover .card-face::after {
  opacity: 0.9;
  animation-duration: 2s;
}

@keyframes glareSweep {
  0% { transform: translateX(-60%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(60%); }
}

/* Floating Elements */
.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob.violet {
  width: 400px;
  height: 400px;
  right: -150px;
  top: -150px;
  background: radial-gradient(circle, rgba(124, 99, 255, 0.4), transparent 70%);
}

.blob.teal {
  width: 350px;
  height: 350px;
  left: -150px;
  bottom: -150px;
  background: radial-gradient(circle, rgba(98, 225, 201, 0.35), transparent 70%);
  animation-duration: 14s;
  animation-direction: reverse;
}

.blob.gold {
  width: 300px;
  height: 300px;
  left: 30%;
  top: 60%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  animation-duration: 16s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.1); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Floating mini UI cards */
.float-card {
  position: absolute;
  z-index: 5;
  width: 210px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.15);
  transform: translate3d(0, 0, 0);
  will-change: transform;
  transition: all 0.3s ease;
}

.float-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.35);
}

.float-card .row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.float-ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.float-ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary);
}

.float-card strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 700;
  color: var(--text-dark);
}

.float-card span {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted-dark);
  line-height: 1.4;
}

/* Card placements + animations - 2 slightly on card edges, 2 on sides */
.fc1 {
  left: -5%;
  top: -5%;
  animation: drift1 7.5s ease-in-out infinite;
  z-index: 10;
}

.fc2 {
  right: -5%;
  top: 3%;
  animation: drift2 8.3s ease-in-out infinite;
  width: 200px;
  z-index: 10;
}

.fc3 {
  left: -5%;
  bottom: -5%;
  animation: drift3 9s ease-in-out infinite;
  width: 210px;
  z-index: 5;
}

.fc4 {
  right: 2%;
  bottom: -10%;
  animation: drift4 7.8s ease-in-out infinite;
  width: 200px;
  z-index: 5;
}

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

@keyframes drift2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -15px, 0); }
}

@keyframes drift3 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes drift4 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -13px, 0); }
}

/* ==================== SECTION STYLING ==================== */
.section-wrap {
  padding: 80px 0;
  position: relative;
}

/* Alternating Dark/Light Sections */
.section-dark {
  background: 
    radial-gradient(800px 500px at 30% 20%, rgba(124, 99, 255, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg-dark-1), var(--bg-dark-2));
  color: var(--text-dark);
}

.section-light {
  background: 
    radial-gradient(800px 500px at 70% 80%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg-light-0), var(--bg-light-1));
  color: var(--text-light);
}

.section-light .section-head,
.section-light h2,
.section-light h3 {
  color: var(--text-light);
}

.section-light .subtext,
.section-light p {
  color: var(--muted-light);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}

.section-head-content {
  position: relative;
  width: 100%;
}

/* Advantage Grid Layout */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.advantage-header {
  position: relative;
}

@media (max-width: 1024px) {
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .advantage-header {
    margin-bottom: 0;
  }
}

.eyebrow {
  color: var(--gold-primary);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-light .eyebrow {
  color: var(--gold-dark);
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--text-dark);
}

.subtext {
  margin: 16px 0 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.75;
  max-width: 85ch;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  margin: 40px 0;
}

.section-light .divider {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

/* ==================== CARDS ==================== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

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

@media (max-width: 1024px) {
  .grid-2 {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.card {
  border-radius: var(--radius-lg);
  background: var(--card-dark);
  border: 1px solid var(--card-border-dark);
  box-shadow: var(--shadow-md);
  padding: 28px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.section-light .card {
  background: var(--card-light);
  border-color: var(--card-border-light);
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: rgba(212, 175, 55, 0.4);
}

.section-light .card:hover {
  box-shadow: var(--shadow-md), 0 0 40px rgba(212, 175, 55, 0.2);
}

.card h3 {
  margin: 0 0 16px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.section-light .card h3 {
  color: var(--text-light);
}

.card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.75;
}

.section-light .card p {
  color: var(--muted-light);
}

/* Dual-tone Icons */
.icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  opacity: 0.1;
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-primary);
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.section-light .icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border-color: rgba(212, 175, 55, 0.25);
}

.section-light .icon svg {
  stroke: var(--gold-dark);
}

/* Lists */
.list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.section-light .li {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.15);
}

.li:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.section-light .li:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  box-shadow: var(--shadow-sm);
}

.bullet {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

.bullet svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
}

.li strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.section-light .li strong {
  color: var(--text-light);
}

.li span {
  display: block;
  color: var(--muted-dark);
  font-size: 13.5px;
  line-height: 1.6;
}

.section-light .li span {
  color: var(--muted-light);
}

/* Stats - New Clean Layout - 4 Full Width Rows */
.card .stats-grid,
.stats-section .stats-grid,
.stats-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(4, auto) !important;
  gap: 20px !important;
  margin-top: 24px;
  width: 100% !important;
  max-width: 100% !important;
  grid-auto-rows: auto;
}

.stats-grid .stat-item,
.card .stat-item,
.stat-item {
  text-align: center;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  min-width: 0;
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  box-sizing: border-box;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  grid-column: 1 / -1 !important;
}

.stat-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}

.stat-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  opacity: 0.9;
  margin-bottom: 4px;
}

.testimonial-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  opacity: 0.7;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  opacity: 0.8;
  flex-shrink: 0;
  margin-right: 8px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-item-number {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  flex-shrink: 0;
}

.section-light .stat-item {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border-color: rgba(212, 175, 55, 0.25);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.stat-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
}

.stat-label {
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-light .stat-label {
  color: var(--muted-light);
}

@media (max-width: 768px) {
  .stat-item {
    padding: 28px 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  
  .stat-item-content,
  .stat-item-number {
    align-items: center;
    text-align: center;
  }
  
  .stat-number {
    font-size: clamp(28px, 5vw, 40px);
  }
}

/* Legacy stats for backward compatibility */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 1024px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.stat {
  padding: 24px 20px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  min-width: 0;
}

.section-light .stat {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
  text-align: center;
}

.stat:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.section-light .stat:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  box-shadow: var(--shadow-md);
}

.stat .v {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
}

.stat .k {
  margin-top: 10px;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

.section-light .stat .k {
  color: var(--muted-light);
}

/* Chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.chip {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13.5px;
  transition: all 0.25s ease;
  font-weight: 500;
}

.section-light .chip {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--text-light);
}

.chip:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.service {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
}

.section-light .service {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}

.service:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.08));
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.section-light .service:hover {
  box-shadow: var(--shadow-md);
}

.service .s-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.section-light .service .s-ico {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.25);
}

.service .s-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-primary);
}

.service span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-weight: 500;
}

.section-light .service span {
  color: var(--text-light);
}

/* ==================== FOOTER ==================== */
footer {
  padding: 60px 0 40px;
  color: var(--muted-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  margin-top: 40px;
  background: var(--bg-dark-0);
  position: relative;
  overflow: hidden;
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  font-family: var(--serif);
}

.footer-column a {
  color: var(--muted-dark);
  font-size: 14px;
  transition: all 0.25s ease;
  position: relative;
  padding-left: 0;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.footer-column a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.25s ease;
  color: var(--gold-primary);
}

.footer-column a:hover::before {
  opacity: 1;
  left: -12px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-dark);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.social-icon:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Footer Ecosystem Section */
.footer-ecosystem {
  margin: 50px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  text-align: center;
}

.footer-ecosystem h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
  font-family: var(--serif);
}

.ecosystem-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ecosystem-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ecosystem-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.ecosystem-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.ecosystem-btn:active {
  transform: translateY(-1px);
}

/* Large Rainbow Shield Text */
.footer-brand-text {
  position: relative;
  width: 100%;
  margin: 60px 0;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.rainbow-shield-text {
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 900;
  font-family: var(--serif);
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  position: relative;
  color: var(--gold-primary);
  font-weight: 800;
  text-shadow: 
    0 0 20px rgba(212, 175, 55, 0.6),
    0 0 40px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.3);
  -webkit-text-stroke: 3px var(--gold-primary);
  text-stroke: 3px var(--gold-primary);
  background: radial-gradient(circle, var(--gold-primary) 3px, transparent 3px);
  background-size: 8px 8px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: dotSparkleFooter 4s linear infinite, textGlow 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.rainbow-shield-text::before {
  content: 'RAINBOW SHIELD';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: var(--gold-primary);
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
  animation: textPulse 2s ease-in-out infinite;
  background: none;
  -webkit-text-stroke: 2px var(--gold-primary);
  text-stroke: 2px var(--gold-primary);
}

@keyframes dotSparkleFooter {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 16px 16px;
  }
}

@keyframes textGlow {
  0%, 100% {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 100px rgba(212, 175, 55, 0.5));
  }
}

@keyframes textShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes textPulse {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.02);
  }
}

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

@keyframes dotMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 16px 16px;
  }
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  flex-wrap: wrap;
}

.footer-copyright small {
  line-height: 1.7;
  font-size: 13px;
  color: var(--muted-dark);
}

.footer-policies {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-policies a {
  color: var(--muted-dark);
  font-size: 13px;
  transition: all 0.25s ease;
  position: relative;
  text-decoration: none;
}

.footer-policies a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-policies a:hover {
  color: var(--gold-light);
}

.footer-policies a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .footer-links-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .rainbow-shield-text {
    font-size: clamp(48px, 10vw, 120px);
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-links-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .rainbow-shield-text {
    font-size: clamp(36px, 8vw, 80px);
    -webkit-text-stroke: 1.5px var(--gold-primary);
    text-stroke: 1.5px var(--gold-primary);
  }
  
  .rainbow-shield-text::before {
    -webkit-text-stroke: 2px var(--gold-primary);
    text-stroke: 2px var(--gold-primary);
  }
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav {
    gap: 24px;
    padding: 18px 0;
  }
  
  .nav-actions {
    padding-right: 20px;
  }
  
  .nav-links {
    gap: 2px;
    margin: 0 16px;
  }
  
  .nav-links a {
    padding: 10px 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }
  
  .nav {
    gap: 16px;
    padding: 16px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-actions {
    gap: 8px;
    padding-right: 0;
  }
  
  .btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  
  .brand-meta strong {
    font-size: 16px;
  }
  
  .brand-meta span {
    font-size: 12px;
  }
  
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .card-flip-container {
    width: 90%;
  }
  
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding: 60px 0 40px;
  }
  
  .section-wrap {
    padding: 60px 0;
  }
  
  .fc1, .fc2, .fc3, .fc4 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 10px 0;
    width: 100% !important;
  }
  
  .card-flip-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 20px auto;
    width: 90%;
  }
}

/* Section Images */
.section-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.section-image img {
  transition: transform 0.5s ease;
}

.section-image:hover img {
  transform: scale(1.05);
}

/* ==================== BRAND UI ELEMENTS ==================== */
.brand-ui-element {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-ui-element img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
}

/* Hero Scene UI Elements */
.scene .brand-ui-element {
  opacity: 0.2;
}

.scene .ui-1 {
  top: 10%;
  right: 5%;
  width: 120px;
  height: 120px;
  animation: floatUI 8s ease-in-out infinite;
}

.scene .ui-2 {
  bottom: 15%;
  left: 8%;
  width: 80px;
  height: 80px;
  animation: floatUI 10s ease-in-out infinite reverse;
}

/* Section Head UI Elements */
.section-head-content .brand-ui-element {
  opacity: 0.12;
}

.section-head-content .ui-3 {
  top: -20px;
  right: -30px;
  width: 100px;
  height: 100px;
}

.section-head-content .ui-4 {
  top: -15px;
  left: -25px;
  width: 90px;
  height: 90px;
}

.section-head-content .ui-5 {
  bottom: -20px;
  right: -20px;
  width: 110px;
  height: 110px;
}

@keyframes floatUI {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Add UI elements to cards on hover */
.card:hover .brand-ui-element {
  opacity: 0.25;
  transform: scale(1.1);
}

/* UI Elements in Cards */
.card .brand-ui-element {
  opacity: 0.08;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.card:hover .brand-ui-element {
  opacity: 0.15;
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 768px) {
  .brand-ui-element {
    display: none;
  }
}

/* ==================== PARTNER ECOSYSTEM ==================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.partner-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--card-light);
  border: 1px solid var(--card-border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.partner-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.15));
  border-color: rgba(212, 175, 55, 0.4);
}

.partner-placeholder {
  width: 60px;
  height: 60px;
  color: var(--gold-primary);
}

.partner-placeholder svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold-primary);
}

.partner-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  font-family: var(--serif);
}

.partner-card p {
  margin: 0;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ==================== HOW IT WORKS (STEPS) ==================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 50px;
  position: relative;
}

.step-item {
  position: relative;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--card-dark);
  border: 1px solid var(--card-border-dark);
  text-align: center;
  transition: all 0.4s ease;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-dark-0);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  border: 3px solid var(--bg-dark-1);
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 20px auto 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.step-item:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
  border-color: rgba(212, 175, 55, 0.5);
}

.step-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold-primary);
}

.step-item h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--serif);
}

.step-item p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--card-light);
  border: 1px solid var(--card-border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  font-family: var(--serif);
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-content {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.testimonial-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 15.5px;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.testimonial-author strong {
  display: block;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-author span {
  display: block;
  color: var(--muted-light);
  font-size: 13px;
}

/* ==================== FAQ (ACCORDION) ==================== */
.faq-container {
  max-width: 100%;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.faq-item {
  margin-bottom: 0;
  border-radius: var(--radius-md);
  background: var(--card-dark);
  border: 1px solid var(--card-border-dark);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-question span {
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  line-height: 1.5;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.75;
  padding-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
  }
  
  .faq-question {
    padding: 20px 24px;
  }
  
  .faq-question span {
    font-size: 15.5px;
  }
  
  .faq-answer {
    padding: 0 24px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 24px 20px;
  }
}

/* ==================== IMAGE CAROUSEL ==================== */
.carousel-container {
  margin: 40px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 33.333%;
  position: relative;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px 30px 30px;
  color: white;
}

.carousel-overlay h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
}

.carousel-overlay p {
  margin: 0;
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 55, 0.9);
  border: none;
  color: var(--bg-dark-0);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(212, 175, 55, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--gold-primary);
  border-color: var(--gold-light);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

/* ==================== TIMELINE STYLE ==================== */
.timeline {
  margin-top: 20px;
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -22px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid var(--bg-dark-1);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(212, 175, 55, 0.4);
}

.section-light .timeline-marker {
  border-color: var(--bg-light-0);
}

.timeline-content strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.section-light .timeline-content strong {
  color: var(--text-light);
}

.timeline-content span {
  display: block;
  color: var(--muted-dark);
  font-size: 13.5px;
  line-height: 1.6;
}

.section-light .timeline-content span {
  color: var(--muted-light);
}

/* ==================== TRUST FEATURES (Progress Bars) ==================== */
.trust-features {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 30px;
  position: relative;
}

.trust-features::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary), var(--gold-light));
  opacity: 0.3;
}

.trust-item {
  position: relative;
  padding: 0;
  padding-left: 20px;
  border-radius: var(--radius-md);
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}

.trust-item::after {
  content: '';
  position: absolute;
  left: -22px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-primary);
  border: 3px solid var(--bg-light-0);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(212, 175, 55, 0.4);
}

.trust-item:hover {
  transform: translateY(-2px);
}

.trust-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.trust-header span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  flex: 1;
  line-height: 1.4;
}

.section-light .trust-header span:first-child {
  color: var(--text-light);
}

.trust-percent {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-primary);
  margin-left: 16px;
  min-width: 45px;
  text-align: right;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-light .trust-bar {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  background-size: 200% 100%;
  border-radius: 999px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4), 0 0 12px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.trust-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

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

/* ==================== MODAL FORM ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 7, 20, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-container {
  background: var(--bg-light-0);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(212, 175, 55, 0.1);
  color: var(--text-light);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: rotate(90deg);
  color: var(--gold-primary);
}

.modal-step {
  padding: 40px;
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-header h2 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--text-light);
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modal-header p {
  color: var(--muted-light);
  font-size: 15px;
  margin: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

.form-group input {
  padding: 14px 18px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  background: var(--bg-light-1);
  color: var(--text-light);
  font-size: 15px;
  font-family: var(--sans);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus {
  border-color: var(--gold-primary);
  background: var(--bg-light-0);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
  color: var(--muted-light);
}

.modal-submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
}

.member-exists-message {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.member-exists-message .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light-0);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.member-exists-message .success-icon svg {
  width: 32px;
  height: 32px;
}

.member-exists-message h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--text-light);
  margin: 0 0 12px;
}

.member-exists-message p {
  color: var(--muted-light);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

/* Success Step */
.success-step {
  text-align: center;
  padding: 40px;
}

.success-animation {
  margin-bottom: 32px;
}

.success-checkmark {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-light-0);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
  animation: checkmarkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.success-checkmark svg {
  width: 50px;
  height: 50px;
  stroke-width: 3;
}

.success-message {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 600;
  margin: 0 0 24px;
}

.acknowledgment {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
}

.acknowledgment p {
  color: var(--muted-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.acknowledgment p:last-child {
  margin-bottom: 0;
  color: var(--text-light);
  font-weight: 600;
}

.success-step .btn {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

/* Modal Scrollbar */
.modal-container::-webkit-scrollbar {
  width: 8px;
}

.modal-container::-webkit-scrollbar-track {
  background: var(--bg-light-1);
  border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .modal-container {
    max-width: 100%;
    border-radius: var(--radius-lg);
  }
  
  .modal-step {
    padding: 32px 24px;
  }
  
  .modal-header h2 {
    font-size: 24px;
  }
}

/* ==================== VENDOR CARDS CAROUSEL ==================== */
.vendor-carousel-wrapper {
  overflow: hidden;
  margin: 40px 0;
  position: relative;
  width: 100%;
}

.vendor-carousel-row {
  display: flex;
  gap: 24px;
  width: fit-content;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.vendor-carousel-left {
  animation-name: scrollLeft;
}

.vendor-carousel-right {
  animation-name: scrollRight;
}

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

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

@media (max-width: 768px) {
  .vendor-carousel-wrapper {
    margin: 30px 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0 20px;
    width: 100%;
    position: relative;
  }
  
  .vendor-carousel-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  
  .vendor-carousel-wrapper::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 3px;
  }
  
  .vendor-carousel-wrapper::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 3px;
  }
  
  .vendor-carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
  }
  
  .vendor-carousel-row {
    gap: 16px;
    animation-duration: 30s;
    padding-right: 20px;
    display: flex;
    width: fit-content;
  }
  
  .vendor-card {
    flex-shrink: 0;
    min-width: 300px;
    max-width: 300px;
    width: 300px;
    display: flex;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .vendor-carousel-wrapper {
    margin: 24px 0;
    padding: 0 16px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }
  
  .vendor-carousel-row {
    gap: 14px;
    animation-duration: 25s;
    padding-right: 16px;
    display: flex;
    width: fit-content;
  }
  
  .vendor-carousel-wrapper .vendor-card {
    min-width: 260px !important;
    max-width: 260px !important;
    width: 260px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .vendor-header-section {
    padding: 14px;
    gap: 10px;
  }
  
  .vendor-logo {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .vendor-header-content h3 {
    font-size: 16px;
    line-height: 1.2;
  }
  
  .vendor-tags {
    gap: 5px;
  }
  
  .vendor-tag {
    font-size: 8px;
    padding: 3px 7px;
  }
  
  .vendor-content {
    padding: 14px;
  }
  
  .vendor-description {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .vendor-services {
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  .vendor-stats {
    gap: 8px;
    padding-top: 12px;
  }
  
  .vendor-stat {
    padding: 10px 4px;
  }
  
  .stat-value {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 8px;
    line-height: 1.3;
  }
}

/* ==================== VENDOR CARDS ==================== */
.vendor-card {
  display: flex;
  flex-direction: column;
  background: var(--card-light);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-md);
  padding: 0;
  min-width: 360px;
  max-width: 360px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  height: auto;
}

.vendor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.25);
}

.vendor-header-section {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(10, 7, 20, 0.98), rgba(18, 11, 34, 0.95));
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.vendor-logo {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-light-0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vendor-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vendor-card:hover .vendor-logo img {
  transform: scale(1.05);
}

.vendor-header-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.vendor-header-content h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--serif);
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  flex: 1;
}

.vendor-tags {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  align-items: flex-end;
}

.vendor-tag {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
}

.vendor-tag.organization {
  background: rgba(124, 99, 255, 0.15);
  color: #7c63ff;
  border: none;
}

.vendor-tag.verified {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: none;
}

.vendor-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px;
}

.vendor-description {
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 14px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vendor-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 400;
}

.service-chip {
  display: inline;
  color: var(--text-light);
  font-size: 12px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.service-chip:not(:last-child)::after {
  content: ' • ';
  margin: 0 5px;
  color: var(--muted-light);
}

.vendor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  width: 100%;
}

.vendor-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  min-width: 0;
  padding: 12px 8px;
  background: transparent;
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.vendor-card:hover .vendor-stat {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.03);
}

.stat-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-primary);
  font-family: var(--serif);
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-wrap: break-word;
}

.stat-label {
  font-size: 10px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.4;
  word-wrap: break-word;
}

@media (max-width: 1024px) {
  .vendor-card {
    min-width: 340px;
    max-width: 340px;
  }
  
  .vendor-logo {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  
  .vendor-header-content h3 {
    font-size: 18px;
  }
  
  .vendor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  
  .vendor-stat {
    padding: 10px 6px;
  }
  
  .stat-value {
    font-size: 19px;
  }
  
  .stat-label {
    font-size: 9px;
  }
}

/* Vendor card styles in carousel - separate from standalone cards */
.vendor-carousel-wrapper .vendor-card {
  min-width: 360px;
  max-width: 360px;
  width: 360px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vendor-carousel-wrapper .vendor-card {
    min-width: 300px !important;
    max-width: 300px !important;
    width: 300px !important;
    flex-shrink: 0 !important;
  }
  
  .vendor-carousel-wrapper .vendor-header-section {
    padding: 16px;
    gap: 12px;
  }
  
  .vendor-carousel-wrapper .vendor-logo {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  
  .vendor-carousel-wrapper .vendor-header-content h3 {
    font-size: 17px;
  }
  
  .vendor-carousel-wrapper .vendor-content {
    padding: 16px;
  }
  
  .vendor-carousel-wrapper .vendor-description {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .vendor-carousel-wrapper .vendor-services {
    font-size: 11px;
    margin-bottom: 14px;
  }
  
  .vendor-carousel-wrapper .vendor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 14px;
  }
  
  .vendor-carousel-wrapper .vendor-stat {
    padding: 10px 4px;
  }
  
  .vendor-carousel-wrapper .vendor-header-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  
  .vendor-carousel-wrapper .vendor-tags {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  
  .vendor-carousel-wrapper .stat-value {
    font-size: 17px;
  }
  
  .vendor-carousel-wrapper .stat-label {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .vendor-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .vendor-header-section {
    padding: 14px;
    gap: 10px;
  }
  
  .vendor-logo {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }
  
  .vendor-header-content h3 {
    font-size: 16px;
  }
  
  .vendor-content {
    padding: 14px;
  }
  
  .vendor-stats {
    gap: 6px;
  }
  
  .vendor-stat {
    padding: 8px 3px;
  }
  
  .stat-value {
    font-size: 16px;
  }
  
  .stat-label {
    font-size: 7px;
  }
}

/* ==================== SERVICES PORTFOLIO ==================== */
.services-portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  max-height: 700px;
  height: 700px;
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scrollDown 25s linear infinite;
  position: relative;
  height: auto;
  overflow: visible;
}

.service-column-reverse {
  animation: scrollUp 25s linear infinite;
  height: auto;
  overflow: visible;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.service-card {
  background: var(--card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.service-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.1);
}

.trending-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  color: var(--bg-dark-0);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.trending-badge::before {
  content: '⭐';
  font-size: 12px;
}

.service-card-content {
  padding: 16px;
  background: var(--card-light);
}

.service-card-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  font-family: var(--serif);
  line-height: 1.3;
}

.service-category {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-description {
  margin: 0 0 12px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-primary);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Gradient fade effects for partially visible cards */
.services-portfolio {
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

/* Pause animation on hover */
.services-portfolio:hover .service-column {
  animation-play-state: paused;
}

@media (max-width: 1024px) {
  .services-portfolio {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-column {
    animation-duration: 25s;
  }
  
  .service-column-reverse {
    animation-duration: 25s;
  }
}

@media (max-width: 768px) {
  .services-portfolio {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-height: 500px;
    height: 500px;
    padding: 30px 0;
    overflow: hidden;
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
  }
  
  .service-column,
  .service-column-reverse {
    animation: scrollDown 20s linear infinite;
    gap: 14px;
  }
  
  .service-column-reverse {
    animation: scrollUp 20s linear infinite;
  }
  
  .service-card {
    width: 100%;
    flex-shrink: 0;
  }
  
  .service-image-wrapper {
    height: 140px;
  }
  
  .service-card-content {
    padding: 12px;
  }
  
  .service-category {
    font-size: 9px;
    padding: 3px 8px;
    margin-bottom: 6px;
  }
  
  .service-description {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  
  .service-tags {
    gap: 4px;
  }
  
  .service-tag {
    font-size: 9px;
    padding: 3px 6px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .services-portfolio {
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: 450px;
    height: 450px;
    padding: 25px 0;
  }
  
  .service-column,
  .service-column-reverse {
    animation: scrollDown 18s linear infinite;
    gap: 12px;
  }
  
  .service-column-reverse {
    animation: scrollUp 18s linear infinite;
  }
  
  .service-image-wrapper {
    height: 130px;
  }
  
  .service-card-content {
    padding: 10px;
  }
  
  .service-category {
    font-size: 8px;
    padding: 3px 6px;
    margin-bottom: 5px;
  }
  
  .service-description {
    font-size: 10px;
    line-height: 1.3;
    margin-bottom: 6px;
  }
  
  .service-tag {
    font-size: 8px;
    padding: 2px 5px;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

