/* =========================================
   SYNTRA-AI STUDIO - LUXURY DESIGN SYSTEM
   ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --bg-primary: #050505;
  --bg-surface: #0c0c0f;
  --bg-elevated: #111114;
  --border-color: #1c1c1f;
  --border-light: #2a2a2f;

  --text-primary: #f7f7f7;
  --text-secondary: #a7a7a7;
  --text-muted: #6a6a6a;

  --gold: #d4af37;
  --gold-light: #e5c76b;
  --gold-dark: #b8962f;
  --champagne: #f4e3b2;

  --accent-blue: #3c8dff;
  --accent-violet: #b45cff;

  /* Typography */
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 60px;
  --component-spacing: 48px;
  --card-spacing: 24px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 700;
}

h2 {
  font-size: clamp(32px, 5vw, 60px);
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
}

h4 {
  font-size: clamp(20px, 2vw, 28px);
}

p {
  font-size: 16px;
  color: var(--text-secondary);
}

.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
}

.text-gold {
  color: var(--gold);
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--champagne) 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CONTAINER ===== */
.container-luxury {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1440px) {
  .container-luxury {
    max-width: 1380px;
  }
}

/* ===== SECTIONS ===== */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile) 0;
  }
}

.section-dark {
  background: var(--bg-primary);
}

.section-surface {
  background: var(--bg-surface);
}

.section-elevated {
  background: var(--bg-elevated);
}

/* ===== NAVBAR ===== */
.navbar-luxury {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-slow);
  background: transparent;
}

.navbar-luxury .container-luxury {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-luxury.scrolled {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
  .navbar-luxury {
    padding: 16px 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
  }

  .navbar-luxury .container-luxury {
    justify-content: space-between;
  }

  .navbar-luxury .navbar-brand {
    font-size: 18px;
  }

  /* Sidebar Navigation - Override Bootstrap */
  .navbar-luxury .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    max-height: 100vh !important;
    background: #0a0a0a !important;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding: 100px 0 40px 0 !important;
    margin: 0 !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    z-index: 99999;
    overflow-y: auto;
    display: flex !important;
    flex-direction: column !important;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out !important;
  }

  .navbar-luxury .navbar-collapse.collapse:not(.show) {
    display: flex !important;
    transform: translateX(100%);
  }

  .navbar-luxury .navbar-collapse.show {
    transform: translateX(0);
  }

  .navbar-luxury .navbar-collapse.collapsing {
    display: flex !important;
    transform: translateX(100%);
    transition: transform 0.35s ease-in-out !important;
    height: 100vh !important;
  }

  .navbar-luxury .navbar-nav {
    flex-direction: column !important;
    gap: 0;
    width: 100%;
    margin: 0 !important;
    padding: 0;
  }

  .navbar-luxury .nav-item {
    width: 100%;
    text-align: left;
  }

  .navbar-luxury .nav-link {
    padding: 18px 32px !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    width: 100%;
  }

  .navbar-luxury .nav-link:hover {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: auto;
    padding: 32px;
    width: 100%;
  }

  .nav-cta .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }

  /* Hamburger icon */
  .navbar-toggler {
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.2s ease;
    z-index: 10000;
  }

  .navbar-toggler:hover {
    background: rgba(212, 175, 55, 0.1);
  }

  .navbar-toggler i {
    font-size: 20px;
  }

  /* Sidebar Close Button */
  .sidebar-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    z-index: 10;
  }

  .sidebar-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: rotate(90deg);
  }

  /* Sidebar Overlay */
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
  }

  .sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.navbar-luxury .navbar-collapse {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
}

.navbar-luxury .navbar-brand {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}

.navbar-luxury .navbar-brand i {
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
  transition: var(--transition-smooth);
}

.navbar-luxury .navbar-brand span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.navbar-luxury .nav-link {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px !important;
  transition: var(--transition-fast);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active {
  color: var(--gold);
}

.navbar-luxury .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--gold);
}

.navbar-luxury .nav-link:hover::after,
.navbar-luxury .nav-link.active::after {
  width: calc(100% - 40px);
}

/* Navbar nav items */
.navbar-luxury .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 0;
}

/* Navbar CTA Specific */
.nav-cta {
  margin-left: 32px;
  display: flex;
  align-items: center;
}

.btn-nav-premium {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-primary) !important;
  border: none;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-nav-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.btn-nav-premium:hover::before {
  left: 100%;
}

.btn-nav-premium i {
  font-size: 10px;
  transition: var(--transition-fast);
  transform: translateX(-5px);
  opacity: 0;
}

.btn-nav-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-nav-premium:hover i {
  transform: translateX(0);
  opacity: 1;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-primary);
  border: none;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--champagne) 100%
  );
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  color: var(--bg-primary);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-gold i {
  position: relative;
  z-index: 1;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 15s infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 32px;
}

.hero-badge i {
  font-size: 10px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust i {
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hero-scroll i {
  color: var(--gold);
  font-size: 20px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Hero Video Wall */
.hero-video-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
}

.video-card {
  aspect-ratio: 16/10;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%
  );
  z-index: 1;
}

.video-card img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.5);
  z-index: 2;
}

.video-card-overlay i {
  font-size: 32px;
  color: var(--gold);
}

/* ===== FEATURED WORK SECTION ===== */
.featured-work {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--component-spacing);
  flex-wrap: wrap;
  gap: 24px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.horizontal-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 24px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.work-card {
  flex: 0 0 400px;
  aspect-ratio: 16/10;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.work-card:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

.work-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    var(--bg-surface) 100%
  );
}

.work-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.work-card:hover .work-card-content {
  transform: translateY(0);
  opacity: 1;
}

.work-card-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}

.work-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.work-card-metric {
  font-size: 14px;
  color: var(--text-secondary);
}

.work-card-metric span {
  color: var(--gold);
  font-weight: 600;
}

/* ===== ABOUT/WHO WE ARE SECTION ===== */
.about-section {
  padding: var(--section-padding) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--component-spacing);
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.about-feature:hover {
  border-color: var(--gold);
}

.about-feature i {
  font-size: 20px;
  color: var(--gold);
}

.about-feature span {
  font-size: 15px;
  font-weight: 500;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image i {
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

@media (max-width: 992px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.pillar-icon i {
  font-size: 32px;
  color: var(--gold);
}

.pillar-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.pillar-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: var(--section-padding) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 50%
  );
}

.problem-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problem-content h2 {
  margin-bottom: var(--component-spacing);
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.problem-item:hover {
  border-color: #ff4444;
  transform: translateX(8px);
}

.problem-item i {
  font-size: 20px;
  color: #ff4444;
}

.problem-item span {
  font-size: 17px;
  font-weight: 500;
}

/* ===== SOLUTION SECTION ===== */
.solution-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--component-spacing);
  align-items: center;
}

@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solution-section {
    padding: 80px 0;
  }
}

.solution-content h2 {
  margin-bottom: 24px;
}

.solution-content p {
  margin-bottom: 32px;
}

.solution-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 576px) {
  .solution-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.solution-feature i {
  color: var(--gold);
  font-size: 14px;
}

/* Dashboard Visual */
.dashboard-visual {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
  .dashboard-visual {
    padding: 24px 16px;
  }
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.dashboard-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dashboard-dot.red {
  background: #ff5f57;
}
.dashboard-dot.yellow {
  background: #febc2e;
}
.dashboard-dot.green {
  background: #28c840;
}

.dashboard-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .dashboard-grid {
    gap: 12px;
  }

  .dashboard-stat {
    padding: 16px 10px;
  }

  .dashboard-stat-value {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    text-align: left;
  }

  .dashboard-stat-value {
    margin-bottom: 0;
  }
}

.dashboard-stat {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}

.dashboard-stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.dashboard-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dashboard-chart {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--gold), var(--gold-light));
  border-radius: 4px 4px 0 0;
  animation: chartGrow 1.5s ease-out forwards;
  transform-origin: bottom;
}

@keyframes chartGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: var(--section-padding) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-spacing);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.service-icon i {
  font-size: 24px;
  color: var(--gold);
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-fast);
}

.service-link i {
  transition: var(--transition-fast);
}

.service-link:hover {
  color: var(--gold-light);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-spacing);
  align-items: stretch;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-primary);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-name {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 32px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-amount span {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--gold);
  font-size: 14px;
}

.pricing-card .btn-gold,
.pricing-card .btn-outline-gold {
  width: 100%;
  justify-content: center;
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies-section {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.case-study-card {
  flex: 0 0 500px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.case-study-card:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

.case-study-image {
  aspect-ratio: 16/9;
  background: var(--bg-elevated);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-image i {
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
}

.case-study-content {
  padding: 32px;
}

.case-study-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.case-study-title {
  font-size: 22px;
  margin-bottom: 16px;
}

.case-study-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.case-study-metric {
  text-align: center;
}

.case-study-metric-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.case-study-metric-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 992px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
}

.process-step {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--gold);
  opacity: 0.3;
}

.process-step:last-child::after {
  display: none;
}

@media (max-width: 992px) {
  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-step::after {
    display: none;
  }
}

.process-step:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
}

.process-number {
  width: 48px;
  height: 48px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.process-step h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mission-content h2 {
  margin-bottom: 24px;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-column h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-tagline span {
  color: var(--gold);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animations */
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.stagger-5 {
  transition-delay: 0.5s;
}
.stagger-6 {
  transition-delay: 0.6s;
}

/* New Premium Animations */
.reveal-text {
  overflow: hidden;
  position: relative;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(110%) scale(1.1);
  filter: blur(10px);
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1.2s ease,
    opacity 1.2s ease;
}

.reveal-text.visible span {
  transform: translateY(0) scale(1);
  filter: blur(0);
  opacity: 1;
}

/* Premium Gold Shimmer for Hero title */
.hero-title .text-gold {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 25%,
    var(--champagne) 50%,
    var(--gold-light) 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
  to {
    background-position: 200% center;
  }
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.blur-in {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(30px);
  transition:
    opacity 1.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blur-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Custom Cursor */
@media (min-width: 992px) {
  body {
    cursor: none;
  }
  a,
  button,
  .cursor-pointer {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
  }

  .cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition:
      transform 0.15s ease-out,
      width 0.3s ease,
      height 0.3s ease,
      border-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cursor-follower.active {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
  }
}

/* Scroll Progress */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 1001;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  width: 0%;
  box-shadow: 0 0 10px var(--gold);
}

/* Magnetic Hover Effect Utility */
.magnetic-wrap {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-gold,
  .hero-cta .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-luxury .navbar-collapse {
    background: var(--bg-surface);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-top: 16px;
    border: 1px solid var(--border-color);
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-40 {
  margin-top: 40px;
}
.mb-40 {
  margin-bottom: 40px;
}
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* ===== CURRENCY SWITCHER ===== */
.currency-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  position: relative;
  z-index: 10;
}

.currency-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.currency-label.active {
  color: var(--gold);
}

.switch-wrapper {
  position: relative;
  width: 64px;
  height: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.switch-wrapper:hover {
  border-color: var(--gold);
}

.switch-dot {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.switch-wrapper.usd .switch-dot {
  transform: translateX(32px);
}

.pricing-amount {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.pricing-amount.updating {
  opacity: 0;
  transform: scale(0.95);
}
