:root {
  --primary: #c5a059; /* Gold accent */
  --secondary: #1a1a1a; /* Dark background */
  --bg-dark: #0a0a0a;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: "Inter", sans-serif;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --glow: 0 0 20px rgba(197, 160, 89, 0.3);
}

@keyframes mesh-pulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2) translate(5%, 5%);
    opacity: 0.8;
  }
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px) perspective(1000px) rotateY(-10deg);
  }
  50% {
    transform: translateY(-20px) perspective(1000px) rotateY(-5deg);
  }
  100% {
    transform: translateY(0px) perspective(1000px) rotateY(-10deg);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation */
.navbar-floating {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  padding: 0.8rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar-floating.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: #000;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 992px) {
  .navbar-floating {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .nav-links {
    display: none; /* Mobile menu to be implemented if requested, keep simple for now */
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 10rem 0;
}

/* Glassmorphism */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  padding-top: 180px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.1) 0%,
    transparent 70%
  );
  filter: blur(80px);
  animation: mesh-pulse 10s infinite alternate;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(
    circle,
    rgba(197, 160, 89, 0.05) 0%,
    transparent 70%
  );
  filter: blur(100px);
  animation: mesh-pulse 15s infinite alternate-reverse;
  z-index: 1;
}

.hero-spacer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Hero Visual Grid */
.hero-visual-grid {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin-top: 2rem;
}

.hero-img-main {
  width: 80%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: float-main 8s ease-in-out infinite;
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-float {
  position: absolute;
  z-index: 3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.2);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
}

/* Side Image 1 (Chart - Top Right) */
.hero-card-1 {
  top: 10%;
  right: 5%;
  width: 180px;
  height: 180px;
  animation: float-card-1 10s ease-in-out infinite;
}

/* Side Image 2 (Gear - Bottom Left) */
.hero-card-2 {
  bottom: 10%;
  left: 5%;
  width: 180px;
  height: 180px;
  animation: float-card-2 12s ease-in-out infinite;
}

.hero-card-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

@keyframes float-main {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

@keyframes float-card-1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, 15px);
  }
}

@keyframes float-card-2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -15px);
  }
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: 100px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero-badge:hover {
  background: rgba(197, 160, 89, 0.15);
  box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
  transform: translateY(-2px);
}

.hero-badge i {
  margin-right: 8px;
  font-size: 0.7rem;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 2rem;
  font-family: "Outfit", sans-serif;
  text-transform: capitalize;
  background: linear-gradient(
    to right,
    #fff 20%,
    var(--primary) 40%,
    var(--primary) 60%,
    #fff 80%
  );
  background-size: 200% auto;
  color: #fff;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
}

/* Hero Features */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem; /* Increased gap */
  width: 100%;
  max-width: 800px; /* Increased width */
  margin: 0 auto; /* Center it */
}

.hero-feature-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(197, 160, 89, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 4px solid var(--primary);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
}

.hero-feature-pill:hover {
  background: linear-gradient(
    135deg,
    rgba(197, 160, 89, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
  border-color: rgba(197, 160, 89, 0.3);
}

.hero-feature-pill i {
  color: var(--primary);
  margin-right: 0;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.hero p {
  font-size: 1.7rem;
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-weight: 300;
  line-height: 1.3;
  max-width: 650px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1.1rem;
  border: none;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #e6c88b 0%, var(--primary) 100%);
  color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #e6c88b 100%);
  z-index: -1;
  transition: opacity 0.5s;
  opacity: 0;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 40px rgba(197, 160, 89, 0.5);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 5rem;
}

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-15px);
}

.card:hover::before {
  height: 100%;
}

.card h3,
.card h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Form Styling (Admin) */
input,
textarea,
select {
  font-family: var(--font-main);
  width: 100%;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.03);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em; /* Slightly larger arrow */
  width: 100%;
  padding: 1.2rem;
  padding-right: 3rem;
  color: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

option {
  background-color: #1a1a1a !important;
  color: #fff !important;
}

/* Success Banner */
.success-banner {
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Roadmap/Process Styles */
#process {
  background: #080808;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 5rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.roadmap-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.roadmap-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  opacity: 0.1;
  font-family: "Outfit";
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

/* Qualification Styles */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.qualify-card {
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.qualify-card.positive {
  background: rgba(0, 255, 136, 0.03);
  border-color: rgba(0, 255, 136, 0.1);
}
.qualify-card.negative {
  background: rgba(255, 77, 77, 0.03);
  border-color: rgba(255, 77, 77, 0.1);
}

.qualify-list {
  list-style: none;
  margin-top: 2rem;
}
.qualify-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.qualify-item i {
  margin-top: 5px;
}
.qualify-card.positive i {
  color: #00ff88;
}
.qualify-card.negative i {
  color: #ff4d4d;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .roadmap-grid,
  .qualify-grid {
    grid-template-columns: 1fr;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-floating {
    padding: 0.5rem 1rem;
    width: 100%;
    top: 0;
    border-radius: 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
}

.pain-point-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.pain-point-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.pain-point-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid rgba(197, 160, 89, 0.2);
  transition: var(--transition);
}

.pain-point-icon-box i {
  color: var(--primary);
  font-size: 1.8rem;
  transition: var(--transition);
}

.pain-point-card:hover .pain-point-icon-box {
  background: var(--primary);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.pain-point-card:hover .pain-point-icon-box i {
  color: #000;
}

.pain-point-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.pain-point-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Why Section Redesign */
.why-hero-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 5rem;
}

.mission-statement-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  padding: 3rem 4rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(197, 160, 89, 0.05) 100%
  );
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.mission-statement-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.mission-text-small {
  font-size: 1.1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.mission-text-large {
  font-size: 3.5rem;
  line-height: 1.1;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

.mission-text-large strong {
  color: var(--primary);
  display: block;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(197, 160, 89, 0.3);
}

.faq-item.active {
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--primary);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* Lead Form Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(15px);
  z-index: 99999; /* Highest possible to stay above success banner */
  display: none; /* Controlled by JS and .active class */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 15px;
}

.modal-overlay.active {
  display: block; /* Switch to block for natural scrolling */
  opacity: 1;
  visibility: visible;
}

/* Prevent body scrolling when modal is open */
body.modal-open {
  height: 100vh;
  overflow: hidden;
}

.modal-content {
  background: #000;
  border: 1px solid var(--primary);
  padding: 3rem;
  border-radius: 24px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 50px; /* Centered with bottom margin */
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 1), 0 0 50px rgba(197, 160, 89, 0.15);
}
@media (max-width: 768px) {
  .modal-content {
    padding: 2rem 1rem;
    border-radius: 15px;
  }
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

/* Enhanced Modal UI */
.modal-header-premium {
  text-align: center;
  margin-bottom: 3rem;
}

.consulting-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.framework-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
}

.framework-card:hover {
  background: rgba(197, 160, 89, 0.05);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.framework-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.framework-card h5 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin: 0;
  color: #fff;
}

.consulting-details-section {
  background: rgba(197, 160, 89, 0.03);
  border-left: 3px solid var(--primary);
  padding: 2rem;
  border-radius: 0 15px 15px 0;
  margin-bottom: 3rem;
}

.consulting-details-section h4 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.covers-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .covers-list {
    grid-template-columns: 1fr;
  }
}

.covers-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.covers-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.limited-slots-warning {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  color: #ff4d4d;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .consulting-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #fff;
}

.lead-form h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-main);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

/* Roadmap / Process Section */
.roadmap-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  position: relative;
}

/* Connecting line (desktop only) */
.roadmap-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
  z-index: 0;
}

@media (max-width: 900px) {
  .roadmap-grid::before {
    display: none;
  }
  .roadmap-grid {
    gap: 4rem;
  }
}

.roadmap-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.roadmap-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(197, 160, 89, 0.15);
}

.step-marker {
  width: 100px; /* Space for the line to pass behind */
  height: 40px;
  margin-bottom: 2rem;
  background: #0a0a0a; /* Hide line behind icon area */
  display: flex;
  align-items: center;
}

.step-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}

.roadmap-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.roadmap-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: rgba(197, 160, 89, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.roadmap-card:hover .step-icon {
  background: var(--primary);
  color: #000;
}

/* Qualification Section */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .qualify-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.qualify-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 3.5rem;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.qualify-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qualify-card.positive {
  background: linear-gradient(
    180deg,
    rgba(74, 222, 128, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-top: 4px solid #4ade80;
}

.qualify-card.positive h3 {
  color: #4ade80;
}

.qualify-card.negative {
  background: linear-gradient(
    180deg,
    rgba(255, 77, 77, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-top: 4px solid #ff4d4d;
}

.qualify-card.negative h3 {
  color: #ff4d4d;
}

.qualify-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualify-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.5;
  padding: 1rem;
  border-radius: 12px;
  transition: background 0.3s ease;
  color: #ccc;
}

.qualify-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

.qualify-item i {
  margin-top: 4px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.qualify-card.positive .qualify-item i {
  color: #4ade80;
}

.qualify-card.negative .qualify-item i {
  color: #ff4d4d;
}

/* Responsive Tweaks */
@media (max-width: 992px) {
    .roadmap-grid, .qualify-grid {
        grid-template-columns: 1fr;
    }
    .hero-features {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .navbar-floating {
        padding: 0.5rem 1rem;
        width: 100%;
        top: 0;
        border-radius: 0;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
}
