/* --- 1. CORE SETTINGS --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-deep: #0a2540;
  /* Darkest Blue */
  --bg-card: #112d4a;
  /* Lighter Blue for cards */
  --primary: #635bff;
  /* Electric Purple */
  --accent: #0071e3;
  /* Bright Blue */
  --white: #ffffff;
  --text-gray: #b0b8c4;
  --border: rgba(255, 255, 255, 0.1);
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));

  /* Gold Premium Palette */
  --gold: #d4af37;
  --gold-soft: #f4e4bc;
  --gold-dark: #b8975a;
  --gold-glow: rgba(212, 175, 55, 0.4);

  /* New variables for fix and results sections */
  --bg-dark: #020617;
  /* Ultra dark navy */
  --bg-card-new: rgba(255, 255, 255, 0.02);
  --border-light: rgba(255, 255, 255, 0.06);
  --primary-new: #6366f1;
  /* Indigo */
  --accent-new: #3b82f6;
  /* Blue */
  --text-white: #f8fafc;
  --text-gray-new: #94a3b8;
  --glow-color: rgba(99, 102, 241, 0.5);
  --gradient-text: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  --bg-base: #020617;
  --text-light: #e2e8f0;
  --card-glass: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --glow-primary: rgba(99, 91, 255, 0.5);
  --gradient-main: linear-gradient(135deg, var(--primary), var(--accent));
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--bg-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ========================================
   MONTSERRAT TYPOGRAPHY SYSTEM
   Premium Design with Responsive Scaling
   ======================================== */

/* H1 - 34pt Montserrat ExtraBold */
h1,
.h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28pt, 5vw + 1rem, 34pt);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* H2 - 22pt Montserrat Bold */
h2,
.h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(18pt, 3vw + 0.5rem, 22pt);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #f8fafc;
  transition: all 0.3s ease;
}

/* H3 - 18pt Montserrat SemiBold */
h3,
.h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16pt, 2.5vw + 0.3rem, 18pt);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.875rem;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

/* Body Text - 14pt Montserrat Medium */
p,
.body-text {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12pt, 1.5vw + 0.2rem, 14pt);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

/* Description - 14pt Montserrat Regular */
.description,
.text-description {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(12pt, 1.5vw + 0.2rem, 14pt);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.015em;
  color: #94a3b8;
  opacity: 0.95;
}

/* Enhanced readability for all text */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li {
  font-family: "Montserrat", sans-serif;
}

/* Smooth text selection */
::selection {
  background-color: rgba(99, 91, 255, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background-color: rgba(99, 91, 255, 0.3);
  color: #ffffff;
}

/* Ambient Background Glows */
.ambient-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle,
      rgba(99, 102, 241, 0.12) 0%,
      rgba(0, 0, 0, 0) 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.results-section .container {
  max-width: 1400px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* Buttons (3D Enhanced) */
.btn-main {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(99, 91, 255, 0.4),
    0 8px 40px rgba(99, 91, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: perspective(1000px) rotateX(0deg);
  position: relative;
  overflow: hidden;
}

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

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

.btn-main:hover {
  background: transparent;
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(99, 91, 255, 0.7),
    0 16px 60px rgba(99, 91, 255, 0.3);
  transform: perspective(1000px) rotateX(-5deg) translateY(-5px);
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateX(0deg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
}

.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(99, 91, 255, 0.1),
      rgba(0, 113, 227, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(99, 91, 255, 0.1);
  box-shadow: 0 8px 25px rgba(99, 91, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(-3deg) translateY(-3px);
}

/* --- 2. HEADER --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background: rgba(10, 37, 64, 0.9);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  position: relative;
}

.logo {
  height: 80px;
  width: auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 24px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.nav-links a {
  font-family: "Montserrat", sans-serif;
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 10px 14px;
  border-radius: 10px;
  position: relative;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--white);
  background: radial-gradient(circle at 20% 20%,
      rgba(99, 91, 255, 0.12),
      transparent 60%),
    rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.nav-container .btn-main {
  margin-left: 0;
}

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.menu-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

/* --- 3. HERO SECTION (Content Left Aligned) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease, transform 6s ease;
  transform: scale(1.04);
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(10, 37, 64, 0.95) 10%,
      rgba(10, 37, 64, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin-left: 10%;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.hero-actions .btn-main,
.hero-actions .btn-outline {
  width: auto;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  padding-top: 12px;
  letter-spacing: -0.03em;
  max-width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 40%, #a5b4fc 70%, #6366f1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 20px rgba(99, 102, 241, 0.4));
  text-shadow: none;
  transform: perspective(1000px) rotateY(0deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero h1:hover {
  filter: drop-shadow(0 6px 30px rgba(99, 102, 241, 0.6));
  transform: perspective(1000px) translateY(-2px);
}

.hero p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 2vw + 0.3rem, 1.2rem);
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 40px;
  max-width: 680px;
  line-height: 1.75;
  letter-spacing: 0.01em;
  transform: translateZ(0);
  opacity: 0.95;
}

/* Premium Feature Grid (Ultra High-End) */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 45px;
  max-width: 620px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.hero-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(99, 102, 241, 0.5),
      transparent);
  opacity: 0.5;
}

.hero-feature-item:hover {
  transform: translateY(-4px);
  background: rgba(30, 41, 59, 0.6);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white), #e0e7ff);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.25);
  flex-shrink: 0;
}

.hero-feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

/* Premium CTA Wrapper */
.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.btn-glow {
  position: relative;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 25px rgba(99, 91, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-weight: 800;
  border: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 16px 40px;
  overflow: hidden;
  z-index: 1;
}

.btn-glow::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 60%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s, transform 0.5s;
  z-index: -1;
}

.btn-glow:hover::after {
  opacity: 1;
  transform: scale(1);
}

.btn-glow:hover {
  transform: translateY(-2px);
  background: #5b54e5;
  box-shadow: 0 10px 40px rgba(99, 91, 255, 0.6);
  color: #fff;
}

.cta-sub-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Exclusive Badge */
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(99, 91, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(99, 91, 255, 0.3);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a5b4fc;
  box-shadow: 0 0 20px rgba(99, 91, 255, 0.1);
  margin-top: 4px;
  width: fit-content;
}

/* Entrance Animations */
.fade-in>* {
  animation: fadeSlideUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.fade-in h1 {
  animation-delay: 0.1s;
}

.fade-in p {
  animation-delay: 0.2s;
}

.fade-in .hero-features-grid {
  animation-delay: 0.3s;
}

.fade-in .hero-actions {
  animation-delay: 0.4s;
}

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

/* --- 4. WHO WE ARE / ABOUT SECTION (Premium Redesign) --- */
.who-we-are {
  padding: 140px 0 130px;
  background: radial-gradient(circle at top left,
      rgba(99, 91, 255, 0.18),
      transparent 60%),
    radial-gradient(circle at bottom right,
      rgba(0, 113, 227, 0.15),
      transparent 55%),
    #0a2540;
  position: relative;
  overflow: hidden;
}

.who-we-are::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><g fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"><rect x="1" y="1" width="138" height="138" rx="18"/><path d="M0 70h140M70 0v140"/></g></svg>');
  opacity: 0.7;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.about-shell {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  padding: 56px 48px;
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, 0.03),
      transparent 55%),
    rgba(7, 20, 46, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(5, 15, 35, 0.9);
  overflow: hidden;
}

.about-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%,
      rgba(99, 91, 255, 0.18),
      transparent 55%);
  opacity: 0.9;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: stretch;
  z-index: 1;
}

.about-panel,
.about-grid>div {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease,
    background 0.4s ease;
}

.about-grid>div:hover {
  transform: translateY(-6px);
}

.about-panel {
  background: linear-gradient(155deg,
      rgba(10, 20, 46, 0.92),
      rgba(5, 12, 30, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.about-panel:hover {
  border-color: rgba(99, 91, 255, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.8),
    0 12px 40px rgba(99, 91, 255, 0.25);
  transform: translateY(-10px) scale(1.01);
}

.about-pill {
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.about-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(99, 91, 255, 0.3);
}

.about-list-item {
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid transparent;
}

.about-list-item:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at 10% 0,
      rgba(99, 91, 255, 0.35),
      transparent 55%),
    rgba(9, 24, 55, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.about-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(0, 113, 227, 0.4);
}

.about-title {
  font-size: 2.8rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.about-title span {
  background: linear-gradient(135deg, #ffffff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 560px;
  margin-bottom: 32px;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.about-pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-gray);
  background: rgba(13, 35, 74, 0.9);
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
}

.about-list-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0,
      rgba(255, 255, 255, 0.6),
      rgba(99, 91, 255, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: 0 0 20px rgba(99, 91, 255, 0.7);
}

.about-list-body {
  font-size: 0.98rem;
  color: var(--text-gray);
}

.about-list-body strong {
  color: #ffffff;
  font-weight: 600;
}

/* Right panel */
.about-panel {
  position: relative;
  border-radius: 26px;
  padding: 26px 24px 24px;
  background: radial-gradient(circle at top left,
      rgba(99, 91, 255, 0.3),
      transparent 60%),
    rgba(9, 21, 49, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 16px;
}

.about-panel-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
}

.about-panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: linear-gradient(135deg,
      rgba(100, 93, 255, 0.15),
      rgba(98, 147, 197, 0.15));
  border: 1.5px solid rgba(100, 93, 255, 0.4);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8e8e8;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-panel-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about-panel-title span {
  color: var(--accent);
}

.about-panel-sub {
  font-size: 0.92rem;
  color: rgba(191, 219, 254, 0.9);
}

.about-panel-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(148, 163, 184, 0.5),
      transparent);
}

.about-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.about-row-label {
  font-size: 0.9rem;
  color: #e5e7eb;
  font-weight: 500;
}

.about-row-meta {
  font-size: 0.82rem;
  color: rgba(148, 163, 184, 0.95);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-metric {
  padding: 12px 10px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-align: left;
}

.about-metric-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 4px;
}

.about-metric-value {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.about-metric-value span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.9);
  margin-left: 3px;
}

.about-metric-note {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.9);
  margin-top: 3px;
}

@media (max-width: 1024px) {
  .about-shell {
    padding: 44px 32px;
  }

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

  .about-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .about-shell {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-panel {
    padding: 20px 16px 18px;
  }
}

/* --- 5. CHALLENGES & ACHIEVEMENTS SECTION (Premium High-End) --- */
.challenges-achievements {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
}

.challenges-achievements::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%,
      rgba(99, 91, 255, 0.15),
      transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 113, 227, 0.12), transparent 50%),
    radial-gradient(circle at 40% 40%,
      rgba(255, 255, 255, 0.02),
      transparent 70%);
  z-index: 0;
}

.challenges-achievements::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(99,91,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.premium-challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.premium-problem-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(99, 91, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.premium-problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(99, 91, 255, 0.1),
      rgba(0, 113, 227, 0.08),
      transparent);
  transition: left 0.6s ease;
}

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

.premium-problem-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(99, 91, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 8px 24px rgba(99, 91, 255, 0.15),
    0 4px 12px rgba(0, 113, 227, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.premium-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(99, 91, 255, 0.3));
}

.premium-problem-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.premium-problem-card p {
  color: var(--text-gray);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.premium-results-section {
  position: relative;
  z-index: 2;
}

.premium-achievement-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: perspective(1000px) rotateX(0deg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15),
    0 10px 30px rgba(99, 91, 255, 0.1), 0 5px 15px rgba(0, 113, 227, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.premium-achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 32px 32px 0 0;
}

.premium-achievement-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(99, 91, 255, 0.05),
      rgba(0, 113, 227, 0.03));
  border-radius: 32px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.premium-achievement-card:hover::after {
  opacity: 1;
}

.premium-achievement-card:hover {
  transform: perspective(1000px) rotateX(-2deg) translateY(-8px) scale(1.01);
  border-color: rgba(99, 91, 255, 0.4);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.25),
    0 20px 50px rgba(99, 91, 255, 0.2), 0 10px 25px rgba(0, 113, 227, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.premium-number {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-shadow: 0 4px 8px rgba(99, 91, 255, 0.3);
  letter-spacing: -0.02em;
  line-height: 1;
}

.premium-label {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.premium-achievement-card p {
  color: var(--text-gray);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
  margin: 0 auto;
}

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

  .premium-problem-card {
    padding: 32px 24px;
  }

  .premium-achievement-card {
    padding: 40px 24px;
  }

  .premium-number {
    font-size: 2.2rem;
  }
}

/* --- 5. SERVICES SECTION --- */
.services {
  padding: 100px 0;
  background: var(--bg-deep);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(99, 91, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 25px;
  background: rgba(99, 91, 255, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-gray);
}

/* --- 5. PRICING SECTION (3D Enhanced) --- */
.pricing {
  padding: 100px 0;
  background: linear-gradient(160deg, #01040f 0%, #050b17 60%, #01040f 100%);
  position: relative;
  overflow: hidden;
}

.pricing-subline {
  text-align: center;
  color: #9aa4b5;
  margin: -30px auto 32px;
  max-width: 720px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle,
      rgba(0, 113, 227, 0.12) 0%,
      transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 50px 30px;
  border-radius: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateX(0deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 113, 227, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateX(-2deg) scale(1.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5),
    0 20px 40px rgba(0, 113, 227, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.pricing-card.featured .price-tag {
  color: #f4e4bc;
  text-shadow: 0 8px 30px rgba(212, 175, 55, 0.55);
}

.pricing-card.featured {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(0, 113, 227, 0.08)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 228, 188, 0.25);
  transform: perspective(1000px) rotateX(-2deg) scale(1.1);
}

.pricing-card:hover {
  transform: perspective(1000px) rotateX(-5deg) translateY(-15px) scale(1.05);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.55),
    0 20px 40px rgba(0, 113, 227, 0.35), 0 10px 20px rgba(0, 113, 227, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 113, 227, 0.5);
  background: rgba(255, 255, 255, 0.07);
}

.price-tag {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
  color: var(--accent);
  transform: translateZ(10px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-tag span {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
}

.plan-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.25), rgba(0, 113, 227, 0.25));
  border: 1px solid rgba(244, 228, 188, 0.35);
  color: #f4e4bc;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.plan-note {
  color: #cdd5e6;
  font-size: 0.9rem;
  margin: 10px 0 18px;
  line-height: 1.5;
}

.pricing-card.muted {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #b5bdc9;
  box-shadow: none;
  filter: saturate(0.7);
}

.pricing-card.muted .price-tag {
  color: #8f9bb0;
}

.features-list {
  list-style: none;
  margin: 30px 0;
  text-align: left;
  padding-left: 20px;
  transform: translateZ(5px);
  flex: 1 1 auto;
}

.features-list li {
  margin-bottom: 15px;
  color: var(--text-gray);
  position: relative;
  padding-left: 25px;
  transition: all 0.3s ease;
}

.features-list li:hover {
  transform: translateX(5px);
  color: var(--white);
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.features-list li:hover::before {
  transform: scale(1.2);
}

.pricing-card .btn-outline {
  margin-top: auto;
}

/* --- 6. CONTACT FORM SECTION --- */
.contact {
  padding: 160px 0;
  background: linear-gradient(135deg, #0a1f38 0%, var(--bg-deep) 100%);
}

.premium-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.contact-left h2 {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-left p {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 520px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  margin-bottom: 24px;
  background: rgba(17, 45, 74, 0.5);
  border: 1.5px solid rgba(99, 91, 255, 0.3);
  border-radius: 20px;
  transition: all 0.5s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.info-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 25px 60px rgba(99, 91, 255, 0.2);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 40px rgba(99, 91, 255, 0.5);
}

.luxury-form-card {
  background: #0b2238;
  padding: 70px 60px;
  border-radius: 32px;
  border: 2px solid rgba(99, 91, 255, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 60px 140px rgba(0, 0, 0, 0.8), 0 0 100px rgba(99, 91, 255, 0.15),
    inset 0 0 80px rgba(99, 91, 255, 0.06);
}

.luxury-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
}

.form-header h3 {
  font-size: 2.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, white, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-header p {
  text-align: center;
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.form-group {
  position: relative;
  margin-bottom: 32px;
}

.form-control {
  width: 100%;
  padding: 24px 28px;
  background: rgba(15, 35, 65, 0.6);
  border: 1.5px solid rgba(99, 91, 255, 0.4);
  border-radius: 20px;
  color: white;
  font-size: 1.1rem;
  outline: none;
  box-shadow: inset 0 6px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-control:focus {
  border-color: var(--primary);
  background: rgba(99, 91, 255, 0.12);
  box-shadow: 0 0 50px rgba(99, 91, 255, 0.4),
    inset 0 6px 20px rgba(99, 91, 255, 0.1);
  transform: translateY(-6px) scale(1.02);
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: var(--text-gray);
  pointer-events: none;
  transition: all 0.5s ease;
}

.form-control:focus+label,
.form-control:not(:placeholder-shown)+label,
select.form-control+label {
  top: -14px;
  left: 20px;
  font-size: 0.9rem;
  color: var(--primary);
  background: #0b2238;
  padding: 0 12px;
  font-weight: 700;
}

textarea.form-control {
  min-height: 160px;
  resize: none;
}

.submit-btn {
  width: 100%;
  padding: 22px;
  background: var(--gradient);
  color: white;
  border: none;
  border-radius: 60px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 20px 60px rgba(99, 91, 255, 0.5);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 100px rgba(99, 91, 255, 0.6);
}

.submit-btn::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.8s;
}

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

.success-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: radial-gradient(circle at 20% 20%,
      rgba(99, 91, 255, 0.12),
      transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(0, 113, 227, 0.1), transparent 30%),
    rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 2000;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: radial-gradient(circle at 20% 20%,
      rgba(99, 91, 255, 0.12),
      transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(0, 113, 227, 0.1), transparent 30%),
    rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1800;
}

.contact-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg,
      rgba(11, 27, 49, 0.92),
      rgba(9, 18, 32, 0.94));
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 26px 24px 24px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7), 0 0 80px rgba(99, 91, 255, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.contact-modal-card::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.contact-modal-close:hover {
  color: white;
  border-color: rgba(99, 91, 255, 0.5);
  transform: translateY(-2px);
}

.contact-modal-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.contact-modal-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #8ea5d7;
  margin-bottom: 10px;
}

.contact-modal-header h3 {
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff, #9fb4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.contact-modal-sub {
  color: var(--text-gray);
  max-width: 480px;
  margin: 0 auto;
}

.contact-modal .form-group {
  margin-bottom: 22px;
}

.contact-modal .form-control {
  padding: 18px 20px;
  border-radius: 14px;
}

.contact-modal textarea.form-control {
  min-height: 130px;
}

.contact-modal .submit-btn {
  padding: 16px;
  font-size: 1.05rem;
  border-radius: 42px;
}

.success-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-card {
  position: relative;
  max-width: 540px;
  width: 100%;
  background: linear-gradient(145deg,
      rgba(11, 27, 49, 0.9),
      rgba(9, 18, 32, 0.94));
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 44px 40px 38px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7), 0 0 80px rgba(99, 91, 255, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.success-modal.active .success-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.success-veil,
.success-burst {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
}

.success-veil {
  background: linear-gradient(120deg,
      rgba(99, 91, 255, 0.15),
      rgba(0, 113, 227, 0.1),
      transparent 55%);
  filter: blur(24px);
}

.success-burst {
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 50%);
  transform: rotate(-8deg);
  opacity: 0.6;
}

.success-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.success-close:hover {
  color: white;
  border-color: rgba(99, 91, 255, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.success-check {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.success-check-icon {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: white;
  box-shadow: 0 20px 50px rgba(99, 91, 255, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.success-check-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0.35),
      transparent 40%);
  mix-blend-mode: screen;
  animation: shine 2.8s ease-in-out infinite;
}

.success-check-ring {
  position: absolute;
  inset: -14px;
  border-radius: 30px;
  border: 1.5px solid rgba(99, 91, 255, 0.35);
  box-shadow: 0 0 30px rgba(99, 91, 255, 0.5);
  animation: pulse 2.8s ease-in-out infinite;
}

.success-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8ea5d7;
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-align: center;
  z-index: 2;
  position: relative;
}

.success-title {
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #9fb4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.success-copy {
  text-align: center;
  color: var(--text-gray);
  margin: 0 auto 20px;
  max-width: 420px;
  z-index: 2;
  position: relative;
}

.success-meta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  z-index: 2;
  position: relative;
}

.success-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #dbeafe;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.success-cta {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(99, 91, 255, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  z-index: 2;
}

.success-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(99, 91, 255, 0.55);
}

.success-cta:active {
  transform: translateY(0);
}

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

  50% {
    transform: translateX(80%);
  }

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

@keyframes pulse {

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

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

@media (max-width: 968px) {
  .premium-contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .luxury-form-card {
    padding: 30px 20px;
  }
}

@media (max-width: 640px) {
  .contact-left h2 {
    font-size: 2.4rem;
  }

  .luxury-form-card {
    padding: 20px 15px;
  }

  .form-header h3 {
    font-size: 1.8rem;
  }

  .form-control {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .submit-btn {
    padding: 16px;
    font-size: 1rem;
  }

  .success-modal {
    padding: 20px;
  }

  .success-card {
    padding: 32px 26px 28px;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-meta {
    flex-direction: column;
    align-items: center;
  }

  .contact-modal {
    padding: 20px;
  }

  .contact-modal-card {
    padding: 22px 18px 20px;
  }

  .contact-modal-header h3 {
    font-size: 1.4rem;
  }
}

/* --- 7. FOOTER (Premium) --- */
footer {
  padding: 90px 0 50px;
  background: radial-gradient(circle at 20% 20%,
      rgba(99, 91, 255, 0.18),
      transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(0, 113, 227, 0.16), transparent 40%),
    #081a2f;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><g fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="0.5"><rect x="1" y="1" width="138" height="138" rx="18"/><path d="M0 70h140M70 0v140"/></g></svg>');
  opacity: 0.4;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-brand h3 {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-gray);
  max-width: 360px;
}

.footer-block h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer-list li {
  color: var(--text-gray);
}

.footer-list a {
  color: var(--text-gray);
  text-decoration: none;
  transition: 0.3s;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-gray);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-gray);
}

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

.footer-social a {
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--gradient);
  color: #0a2540;
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-container {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    order: 3;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(260px, calc(100% - 32px));
    flex-direction: column;
    gap: 16px;
    background: rgba(10, 37, 64, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 2000;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-links .btn-outline {
    width: auto;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1rem;
    color: #e2e8f0;
  }

  header .btn-main {
    display: none;
  }

  .logo-link {
    position: static;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 120px 0 70px;
    justify-content: center;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-main,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 30px;
  }

  .btn-main {
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  .btn-outline {
    padding: 11px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  header {
    padding: 14px 0;
  }

  .logo {
    height: 60px;
  }

  .container {
    padding: 0 16px;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-panel {
    padding: 18px 16px;
  }

  .about-metric-value {
    font-size: 1.05rem;
  }

  .challenges-achievements,
  .who-we-are,
  .services,
  .pricing,
  .results-section,
  .contact {
    padding: 70px 0;
  }

  .pricing-card,
  .service-card,
  .result-item,
  .luxury-form-card {
    padding: 22px 18px;
  }

  .price-tag {
    font-size: 2rem;
  }

  .form-header h3 {
    font-size: 2rem;
  }

  .contact-left h2 {
    font-size: 2.4rem;
  }

  .contact-left p,
  .premium-achievement-card p,
  .hero p {
    font-size: 1rem;
  }

  .premium-number {
    font-size: 2.2rem;
  }

  .btn-main,
  .btn-outline {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 28px;
  }

  .strategy-hero {
    min-height: auto;
    padding: 60px 16px;
  }

  .hero-card {
    padding: 30px 18px;
    border-radius: 24px;
  }

  .hero-card h1 {
    font-size: 2.2rem;
  }

  .hero-card p {
    font-size: 0.95rem;
    margin: 1.2rem auto 1.8rem;
  }

  .badge {
    font-size: 0.85rem;
    padding: 8px 16px;
    margin-bottom: 1.3rem;
  }

  .cta-btn {
    padding: 12px 20px;
    font-size: 0.7rem;
    border-radius: 22px;
  }

  .floating-cta {
    padding: 10px 16px;
    font-size: 0.75rem;
    border-radius: 18px;
    right: 12px;
    bottom: 16px;
  }

  .blueprint-section {
    margin: 0 10px;
    padding: 60px 0;
  }

  .step-card {
    padding: 18px 16px;
  }

  .step-indicator {
    min-width: 46px;
    height: 46px;
    font-size: 1.4rem;
    margin-right: 12px;
  }

  .step-card-header h3 {
    font-size: 1.2rem;
  }

  .step-card-header p.summary {
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 14px;
    font-size: 1rem;
    border-radius: 40px;
  }

  .footer-shell {
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand h3 {
    font-size: 1.6rem;
  }

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

/* New styles for strategy section */
:root {
  --bg: #0e1113;
  /* ডিপ ডার্ক বেস */
  --card-bg: rgba(20, 24, 28, 0.82);
  /* গ্লাস কার্ড, সাদা নয় */
  --text: #eaecef;
  --subtext: #9ca3af;
  --gold: #e8c59a;
  --gold-grad: linear-gradient(135deg, #f5e0c1, #e8c59a, #d4a86a);
  --border: rgba(232, 197, 154, 0.2);
}

.strategy-hero {
  height: auto;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.strategy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4"/><feColorMatrix type="saturate" values="0"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.05"/></svg>');
  pointer-events: none;
  z-index: -1;
}

.hero-card {
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 60px;
  max-width: 980px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  animation: fadeIn 1.6s ease-out;
}

.hero-card h1 {
  font-size: 5.2rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.hero-card p {
  font-size: 1.48rem;
  color: var(--subtext);
  margin: 2.2rem auto 3.5rem;
  font-weight: 300;
  max-width: 760px;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  background: rgba(232, 197, 154, 0.14);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(232, 197, 154, 0.3);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

.cta-btn {
  position: relative;
  display: inline-block;
  background: var(--gold-grad);
  color: #0f1214;
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(232, 197, 154, 0.4);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-btn:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(232, 197, 154, 0.5);
}

.cta-btn::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.9s;
}

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

.floating-cta {
  position: fixed;
  bottom: 16px;
  right: 36px;
  background: var(--gold-grad);
  color: #0f1214;
  padding: 20px 44px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  z-index: 999;
  animation: float 4s ease-in-out infinite;
  text-decoration: none;
}

@keyframes float {

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

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

/* ==================== 3. BLUEPRINT STEP SECTION ==================== */
.blueprint-section {
  background-color: var(--bg-base);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  margin: 0 20px;
}

.blueprint-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.blueprint-stepper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 1;
}

.blueprint-stepper::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom,
      rgba(99, 91, 255, 0.5),
      rgba(0, 113, 227, 0.5));
  z-index: -1;
  transform: translateX(-50%);
}

.step-card {
  background: var(--card-glass);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  padding: 22px 24px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 1100px;
  margin: 0 auto;
  flex: 1;
}

.step-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 50px rgba(99, 91, 255, 0.3);
  transform: scale(1.015);
}

.step-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent), 0 0 40px rgba(0, 113, 227, 0.6);
  background: rgba(0, 113, 227, 0.1);
}

.step-indicator {
  min-width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin-right: 20px;
  box-shadow: 0 0 20px rgba(99, 91, 255, 0.6);
  position: relative;
  transition: transform 0.4s ease;
}

.step-card:hover .step-indicator {
  transform: scale(1.1) rotate(-5deg);
}

.step-card-header {
  flex-grow: 1;
}

.step-card-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 5px;
}

.step-card-header p.summary {
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 400;
}

.step-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #cdd4ff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-outcome {
  color: #d6def3;
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ==================== 4. RESULTS SECTION ==================== */
.results-section {
  padding: 80px 0 120px 0;
  background: linear-gradient(to top, #01040f, transparent);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.result-item {
  text-align: center;
  padding: 30px 10px;
  border-radius: 20px;
  transition: transform 0.4s ease;
  background: rgba(255, 255, 255, 0.01);
}

.result-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
}

.big-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff 30%, var(--primary-new));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.result-label {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-new);
  margin-bottom: 8px;
}

.result-item p {
  font-size: 0.8rem;
  color: #64748b;
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.results-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  cursor: zoom-in;
}

.results-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 91, 255, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.results-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.results-photo:hover img {
  transform: scale(1.06);
}

.results-photo:hover::after {
  opacity: 1;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1900;
  padding: 20px;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.image-lightbox img {
  max-width: min(1100px, 95vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.image-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: all 0.25s ease;
}

.image-lightbox-close:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.operators-section {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(circle at 15% 20%,
      rgba(212, 175, 55, 0.12),
      transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(0, 113, 227, 0.12), transparent 32%),
    linear-gradient(180deg, #01040f 0%, #030712 50%, #01040f 100%);
  overflow: hidden;
}

.operators-section::before,
.operators-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

.operators-section::before {
  top: -180px;
  left: -160px;
}

.operators-section::after {
  bottom: -220px;
  right: -120px;
}

.operators-shell {
  position: relative;
  z-index: 1;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.12), transparent 30%),
    rgba(12, 15, 28, 0.85);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.operators-copy h2 {
  font-size: 3rem;
  margin-bottom: 12px;
  background: linear-gradient(120deg, #fff, #f4e4bc, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.operators-copy p {
  color: #c8cfdb;
  font-size: 1.05rem;
  max-width: 620px;
}

.operators-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(0, 113, 227, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f4e4bc;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f4e4bc;
  box-shadow: 0 0 20px rgba(244, 228, 188, 0.7);
}

.operators-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.operators-card {
  position: relative;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.operators-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), rgba(0, 113, 227, 0.35));
  -webkit-mask: linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.operators-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(0, 113, 227, 0.2));
  color: #f4e4bc;
  font-size: 1.1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.4);
}

.operators-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #f8fafc;
}

.operators-card p {
  color: #9aacbf;
  font-size: 0.95rem;
}

/* ==================== RESPONSIVE BREAKPOINTS ==================== */
@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .operators-shell {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 32px;
  }
}

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

  .section-header h2 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 20px;
  }

  .operators-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .blueprint-section {
    padding: 60px 0;
  }

  .step-card {
    padding: 20px;
  }

  .step-indicator {
    min-width: 50px;
    height: 50px;
    font-size: 1.5rem;
    margin-right: 15px;
  }

  .step-card-header h3 {
    font-size: 1.4rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .step-card.active~.step-content {
    padding: 20px 20px 0 20px;
  }
}

@media (max-width: 768px) {
  .strategy-hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-card {
    padding: 35px 20px;
    border-radius: 24px;
  }

  .hero-card h1 {
    font-size: 2.4rem;
  }

  .hero-card p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 14px 25px;
    font-size: 0.95rem;
  }

  .floating-cta {
    bottom: 16px;
    right: 20px;
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}

/* --- FLOATING CHAT WIDGET --- */
.chat-widget-container {
  position: fixed;
  bottom: 110px;
  right: 30px;
  z-index: 2147483647;
}

.chat-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.3s ease;
  animation: chat-pulse 2s infinite;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(99, 91, 255, 0.5);
}

.chat-options {
  position: absolute;
  bottom: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-option-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.chat-option-btn.whatsapp {
  color: #25d366;
  background: white;
}

.chat-option-btn.facebook {
  color: #1877f2;
  background: white;
}

.chat-option-btn:hover {
  transform: scale(1.1) translateX(-5px);
}

.chat-tooltip {
  position: absolute;
  right: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  pointer-events: none;
}

.chat-option-btn:hover .chat-tooltip {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

@keyframes chat-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Premium Success Popup */
.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.success-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.success-popup {
  background: linear-gradient(135deg, #0a2540, #112d4a);
  border: 2px solid rgba(99, 91, 255, 0.5);
  border-radius: 32px;
  padding: 60px 40px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9), 0 0 100px rgba(99, 91, 255, 0.3);
  transform: scale(0.8) translateY(50px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.success-popup-overlay.active .success-popup {
  transform: scale(1) translateY(0);
}

.success-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 32px 32px 0 0;
}

.success-popup::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%,
      rgba(99, 91, 255, 0.1),
      transparent 50%);
  opacity: 0.5;
  pointer-events: none;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
  box-shadow: 0 20px 60px rgba(99, 91, 255, 0.5);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(99, 91, 255, 0.5);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(99, 91, 255, 0.7);
  }
}

.success-popup h2 {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, white, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.success-popup p {
  font-size: 1.2rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 40px;
}

.success-popup .close-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(99, 91, 255, 0.4);
}

.success-popup .close-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 91, 255, 0.6);
}

@media (max-width: 640px) {
  .success-popup {
    padding: 40px 30px;
    margin: 20px;
  }

  .success-popup h2 {
    font-size: 2rem;
  }

  .success-popup p {
    font-size: 1rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}

/* Enhanced Mobile Responsiveness - Additional Fixes */
@media (max-width: 480px) {

  /* About Section Pills - Better Stacking */
  .about-pill-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .about-pill {
    font-size: 0.85rem;
    padding: 8px 12px;
    text-align: center;
  }

  /* About Metrics - Stack Vertically */
  .about-metrics {
    flex-direction: column;
    gap: 16px;
  }

  .about-metric {
    width: 100%;
    text-align: center;
  }

  /* Pricing Cards - Better Spacing */
  .features-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .pricing-card h3 {
    font-size: 1.3rem;
  }

  /* Grid Layouts - Single Column */
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  /* Hero Title - Smaller on Tiny Screens */
  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  /* Contact Grid - Single Column */
  .premium-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Chat Widget - Smaller on Mobile */
  .chat-toggle-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .chat-option-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .chat-widget-container {
    bottom: 90px;
    right: 20px;
  }

  /* Footer - Better Spacing */
  .footer-grid {
    gap: 20px;
  }

  .footer-brand h3 {
    font-size: 1.4rem;
  }

  /* Results Grid - Better Spacing */
  .results-grid {
    gap: 20px;
  }

  .big-number {
    font-size: 2.5rem;
  }

  /* Blueprint Steps - Better Mobile Layout */
  .step-card-header h3 {
    font-size: 1.1rem;
  }

  .step-card-header p.summary {
    font-size: 0.85rem;
  }
}

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

  .hero h1 {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .btn-main,
  .btn-outline {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .price-tag {
    font-size: 1.8rem;
  }
}

/* --- 5. DIFFERENTIATION SECTION (Redesigned) --- */
.differentiation-section {
  padding: 120px 0 140px;
  background: linear-gradient(135deg,
      var(--bg-deep) 0%,
      rgba(10, 37, 64, 0.95) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.diff-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 80% 20%,
      rgba(99, 91, 255, 0.15),
      transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 113, 227, 0.12), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.diff-content-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* --- PREMIUM COMPARISON GRID --- */
.diff-comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.1fr;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Diff Cards General */
.diff-card-standard,
.diff-card-premium {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0) scale(1);
  overflow: hidden;
}

.diff-card-standard::before,
.diff-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.02),
      transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.diff-card-standard:hover::before,
.diff-card-premium:hover::before {
  opacity: 1;
}

/* Industry Standard Card (Left) */
.diff-card-standard {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.diff-card-standard .card-label {
  color: var(--text-gray);
  opacity: 0.6;
}

.diff-card-standard .card-title {
  color: #c0c4cc;
  /* Muted */
  font-family: "Outfit", sans-serif;
  /* Standard font */
  font-weight: 600;
}

.card-status-bar {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.card-status-bar span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
}

/* VS Badge */
.diff-vs-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0f1c30;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--text-gray);
  font-size: 0.9rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

/* RevlaCo Premium Card (Right) */
.diff-card-premium {
  background: rgba(20, 30, 65, 0.3);
  /* Slightly tinted */
  border: 1px double transparent;
  /* Hack for gradient border if needed */
  background-image: linear-gradient(rgba(20, 30, 65, 0.7),
      rgba(20, 30, 65, 0.7)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(99, 91, 255, 0.4));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  transform: scale(1.02);
}

.card-glow-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%,
      rgba(99, 91, 255, 0.15),
      transparent 70%);
  border-radius: 24px;
  pointer-events: none;
}

.diff-card-premium .card-label {
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 113, 227, 0.4);
}

.card-title.premium-text {
  font-family: "Cinzel", serif;
  font-size: 2.2rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gold-soft), #ffffff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.card-desc strong {
  color: #fff;
  font-weight: 600;
}

.card-status-bar.premium span {
  background: rgba(99, 91, 255, 0.15);
  color: #a5b4fc;
  border: 1px solid rgba(99, 91, 255, 0.3);
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.1);
}

.card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* --- 3 PILLARS GRID --- */
.diff-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.pillar-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(99, 91, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(99, 91, 255, 0.1);
}

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(99, 91, 255, 0.15),
      rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(99, 91, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #a5b4fc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(99, 91, 255, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.pillar-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.pillar-content p {
  font-size: 1rem;
  color: #9ca3af;
  line-height: 1.65;
}

/* Premium CTA Section */
.diff-cta-section {
  margin-top: 80px;
  text-align: center;
  position: relative;
}

.diff-cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 40px;
  background: linear-gradient(145deg,
      rgba(20, 30, 65, 0.6),
      rgba(10, 20, 46, 0.8));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.diff-cta-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
      var(--gold),
      var(--gold-soft),
      var(--gold));
}

.diff-cta-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg,
      var(--gold-soft),
      var(--gold),
      var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1.2;
}

.diff-cta-content p {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.diff-cta-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a2540;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.diff-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

/* ===========================================
   LUXURY DIFFERENTIATION SECTION STYLES
   =========================================== */

.luxury-differentiation-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg,
      #0a0a0a 0%,
      #0f0f0f 25%,
      #0a0a0a 50%,
      #050505 75%,
      #0a0a0a 100%);
  overflow: hidden;
}

.luxury-ambient-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.luxury-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.luxury-float-1,
.luxury-float-2,
.luxury-float-3 {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
  animation: luxury-float 20s ease-in-out infinite;
}

.luxury-float-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.luxury-float-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: -3%;
  animation-delay: -7s;
}

.luxury-float-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  animation-delay: -14s;
}

@keyframes luxury-float {

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

  33% {
    transform: translateY(-20px) rotate(120deg);
  }

  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

/* Luxury Section Header */
.luxury-section-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}

.luxury-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pro-blue-primary), var(--pro-purple-primary));
  border: 1px solid var(--pro-magenta-primary);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pro-text-primary);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.luxury-badge i {
  color: var(--pro-gold-primary);
  font-size: 1rem;
  filter: drop-shadow(0 0 8px var(--pro-gold-glow));
}

.luxury-main-title {
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--pro-text-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  font-family: "Cinzel", serif;
}

.luxury-highlight {
  background: linear-gradient(135deg, var(--pro-gold-primary), var(--pro-magenta-primary), var(--pro-blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  filter: drop-shadow(0 2px 10px rgba(255, 215, 0, 0.3));
}

.luxury-subtitle {
  font-size: 1.2rem;
  color: var(--pro-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.luxury-header-decoration {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.luxury-golden-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pro-blue-primary), var(--pro-purple-primary), var(--pro-green-primary), transparent);
}

.luxury-golden-accent {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pro-gold-primary), var(--pro-magenta-primary));
  box-shadow: 0 0 20px var(--pro-gold-glow);
}

/* Luxury Comparison Showcase */
.luxury-comparison-showcase {
  margin-bottom: 120px;
}

.luxury-comparison-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.luxury-card-wrapper {
  position: relative;
}

.luxury-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateY(0);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.luxury-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(212, 175, 55, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-wrapper .luxury-card {
  transform: scale(1.05);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 175, 55, 0.15);
}

.premium-wrapper .luxury-card:hover {
  transform: translateY(-16px) scale(1.08);
}

/* Premium Badge */
.luxury-card-premium-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a0a0a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
  z-index: 2;
}

.luxury-card-premium-badge i {
  font-size: 0.8rem;
}

/* Card Header */
.luxury-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.luxury-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.standard-icon {
  background: linear-gradient(135deg, var(--pro-blue-primary), var(--pro-blue-secondary));
  border: 1px solid var(--pro-blue-accent);
  color: var(--pro-text-primary);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.premium-icon {
  background: linear-gradient(135deg, var(--pro-purple-primary), var(--pro-magenta-primary));
  border: 1px solid var(--pro-magenta-accent);
  color: var(--pro-gold-primary);
  box-shadow: 0 4px 15px rgba(192, 38, 211, 0.3);
}

.luxury-card:hover .premium-icon {
  background: linear-gradient(135deg, var(--pro-gold-primary), var(--pro-magenta-primary));
  color: var(--pro-bg-primary);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px var(--pro-gold-glow);
}

.luxury-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pro-text-secondary);
}

.premium-label {
  color: var(--pro-magenta-primary);
  text-shadow: 0 0 8px rgba(192, 38, 211, 0.5);
}

/* Card Body */
.luxury-card-body {
  margin-bottom: 32px;
}

.luxury-card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.premium-title {
  background: linear-gradient(135deg, #ffffff, var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
}

.luxury-card-description {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
}

.premium-desc {
  color: #e2e8f0;
}

/* Status Indicators */
.luxury-status-indicators {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.status-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-item.standard {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.status-item.premium {
  background: linear-gradient(135deg, var(--pro-magenta-primary), var(--pro-purple-primary));
  color: var(--pro-text-primary);
  border: 1px solid var(--pro-magenta-accent);
  box-shadow: 0 2px 8px rgba(192, 38, 211, 0.3);
}

/* Card Footer - Value Meter */
.luxury-card-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.luxury-value-meter {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.meter-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease-out;
}

.standard-fill {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.premium-fill {
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.luxury-value-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-align: center;
  display: block;
}

.premium-value {
  color: var(--gold-soft);
}

/* VS Container */
.luxury-vs-container {
  position: relative;
  z-index: 2;
}

.luxury-vs-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.vs-glow {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--gold), transparent, var(--gold));
  opacity: 0.3;
  animation: vs-pulse 2s ease-in-out infinite;
}

.vs-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  z-index: 1;
  position: relative;
}

.vs-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  top: 10px;
  right: 10px;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes vs-pulse {

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

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

@keyframes sparkle {

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

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Luxury Pillars Showcase */
.luxury-pillars-showcase {
  margin-bottom: 100px;
}

.luxury-pillars-header {
  text-align: center;
  margin-bottom: 60px;
}

.luxury-pillars-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 12px;
  font-family: "Cinzel", serif;
}

.luxury-pillars-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 500px;
  margin: 0 auto;
}

.luxury-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.luxury-pillar-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.luxury-pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.luxury-pillar-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.luxury-pillar-card:hover .luxury-pillar-glow {
  opacity: 1;
}

.luxury-pillar-content {
  position: relative;
  z-index: 1;
}

.luxury-pillar-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}

.luxury-pillar-card:hover .luxury-pillar-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a0a0a;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.luxury-pillar-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "Cinzel", serif;
}

.luxury-pillar-description {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

.luxury-pillar-accent {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  margin: 24px auto 0;
  border-radius: 1px;
}

/* Luxury CTA Experience */
.luxury-cta-experience {
  position: relative;
}

.luxury-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg,
      var(--pro-bg-primary),
      var(--pro-bg-secondary),
      var(--pro-bg-primary));
  border: 1px solid var(--pro-magenta-primary);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 40px var(--pro-magenta-glow);
}

.luxury-cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pro-blue-primary), var(--pro-purple-primary), var(--pro-green-primary), var(--pro-magenta-primary));
}

.luxury-cta-content {
  position: relative;
  z-index: 2;
}

.luxury-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.luxury-cta-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: "Cinzel", serif;
}

.luxury-cta-description {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 32px;
}

.luxury-cta-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.luxury-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #0a0a0a;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.luxury-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.luxury-cta-primary i {
  transition: transform 0.3s ease;
}

.luxury-cta-primary:hover i {
  transform: translateX(4px);
}

.luxury-cta-stats {
  display: flex;
  gap: 24px;
}

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

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--pro-gold-primary);
  display: block;
  line-height: 1;
  text-shadow: 0 0 10px var(--pro-gold-glow);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--pro-text-secondary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.luxury-cta-visual {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-cta-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pro-magenta-glow) 0%, transparent 70%);
  animation: cta-glow 4s ease-in-out infinite;
}

.luxury-cta-particles {
  position: relative;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pro-blue-primary), var(--pro-purple-primary), var(--pro-magenta-primary));
  animation: particle-float 6s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(0, 102, 255, 0.5);
}

.particle-1 {
  width: 6px;
  height: 6px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  width: 4px;
  height: 4px;
  top: 60%;
  right: 30%;
  animation-delay: -2s;
}

.particle-3 {
  width: 8px;
  height: 8px;
  bottom: 20%;
  left: 60%;
  animation-delay: -4s;
}

@keyframes cta-glow {

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

  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

@keyframes particle-float {

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

  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }

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

  75% {
    transform: translateY(-30px) translateX(5px);
    opacity: 0.9;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .luxury-comparison-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .luxury-vs-container {
    order: 1;
  }

  .luxury-pillars-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .luxury-cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .luxury-cta-actions {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .luxury-differentiation-section {
    padding: 80px 0;
  }

  .luxury-main-title {
    font-size: 2.5rem;
  }

  .luxury-comparison-container {
    gap: 30px;
  }

  .luxury-card {
    padding: 30px;
  }

  .luxury-pillars-grid {
    gap: 24px;
  }

  .luxury-pillar-card {
    padding: 30px 20px;
  }

  .luxury-cta-container {
    padding: 40px 30px;
  }

  .luxury-cta-title {
    font-size: 2rem;
  }

  .luxury-cta-actions {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .luxury-main-title {
    font-size: 2rem;
  }

  .luxury-card {
    padding: 24px;
  }

  .luxury-card-title {
    font-size: 1.5rem;
  }

  .premium-title {
    font-size: 1.7rem;
  }

  .luxury-pillars-title {
    font-size: 2rem;
  }

  .luxury-cta-title {
    font-size: 1.8rem;
  }

  .luxury-cta-container {
    padding: 30px 20px;
  }
}

/* ===========================================
   END LUXURY DIFFERENTIATION SECTION STYLES
   =========================================== */

/* Mobile adjustment for Strategy Call button */
@media (max-width: 768px) {
  .cta-btn {
    font-size: 0.9rem !important;
    padding: 14px 28px !important;
  }
}

@media (max-width: 480px) {
  .cta-btn {
    font-size: 0.8rem !important;
    padding: 12px 24px !important;
    white-space: nowrap;
    /* Prevent breaking if possible, or let it break if text is long */
  }
}

/* ==================== AI Chatbot Widget ==================== */
.chat-widget-wrapper {
  position: fixed;
  bottom: 90px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
}

.chat-toggle-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-grad);
  border: none;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
}

.chat-window {
  width: 350px;
  height: 500px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideInUp 0.3s ease-out;
}

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

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

.chat-header {
  background: #000;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-title {
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-title i {
  color: #d4af37;
  /* Gold */
}

.chat-close {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 16px;
}

.chat-close:hover {
  color: #fff;
}

.chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #0e0e0e;
}

.message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.bot-message {
  background: #222;
  color: #eee;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
  border: 1px solid #333;
}

.user-message {
  background: #d4af37;
  /* Gold */
  color: #000;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 500;
}

.chat-input-area {
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

#chatForm {
  display: flex;
  gap: 8px;
}

#chatInput {
  flex: 1;
  background: #222;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 10px 16px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

#chatInput:focus {
  border-color: #d4af37;
}

#chatForm button {
  background: none;
  border: none;
  color: #d4af37;
  font-size: 18px;
  cursor: pointer;
  padding: 0 8px;
  transition: transform 0.2s;
}

#chatForm button:hover {
  transform: translateX(3px);
}

.typing-indicator {
  font-style: italic;
  font-size: 12px;
  color: #666;
  margin-left: 10px;
  margin-bottom: 5px;
}

@media (max-width: 480px) {
  .chat-window {
    width: calc(100vw - 40px);
    right: 20px;
    height: 60vh;
  }
}

/* =========================
   PREMIUM BOOKING CALENDAR
========================= */
.booking-calendar-container {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent),
    rgba(10, 37, 64, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-top: 10px;
  position: relative;
  z-index: 100;
}

.text-gold {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 20px;
  display: block;
}

.premium-calendar {
  width: 100%;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding: 0 10px;
}

.calendar-header h4 {
  margin: 0;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.calendar-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-weekday {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.calendar-day:not(.empty):not(.disabled):hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--gold);
  transform: scale(1.05);
  border-color: var(--gold);
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.calendar-day.has-slots {
  color: #fff;
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}

.calendar-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 6px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
}

.calendar-day.selected {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px) scale(1.1);
  border-color: var(--gold) !important;
  z-index: 3;
}

.calendar-day.selected::after {
  background: #000;
  box-shadow: none;
}

.calendar-day.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
  background: transparent;
}

.calendar-day.empty {
  visibility: hidden;
  pointer-events: none;
}

/* Slots Selection Area */
.slots-selection-area {
  animation: fadeInDown 0.5s ease backwards;
}

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

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

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

.slot-item {
  padding: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.slot-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: perspective(1000px) rotateX(10deg) translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.slot-item.selected {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  border-color: var(--gold) !important;
  color: #000 !important;
  font-weight: 800;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
  transform: perspective(1000px) rotateX(0deg) translateY(-2px);
}

@media (max-width: 768px) {
  .booking-calendar-container {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .calendar-grid {
    gap: 6px;
  }

  .calendar-day {
    font-size: 0.85rem;
    border-radius: 10px;
  }

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

/* Calendar Trigger & Popup */
.calendar-trigger-wrapper {
  position: relative;
  width: 100%;
}

.calendar-trigger-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 20px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.calendar-trigger-input:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.calendar-trigger-input i {
  color: var(--gold);
  font-size: 1.1rem;
}

.calendar-popup {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 100%;
  max-width: 360px;
  background: #0c1829;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 9999;
  display: none;
  animation: calendarFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.calendar-popup.active {
  display: block;
}

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

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

@media (max-width: 480px) {
  .calendar-popup {
    position: fixed;
    top: 50% !important;
    left: 20px !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
    max-width: none;
    width: auto;
  }
}

/* Custom Time Selects */
.custom-time-selects {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-select-dark {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 8px 30px 8px 12px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 80px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.5)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  background-size: 12px 12px !important;
  appearance: none;
}

.custom-select-dark:focus {
  border-color: var(--gold) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
  outline: none;
}

.extra-small {
  font-size: 0.7rem;
}