:root {
  --primary-color: #D4AF37;  /* Gold */
  --secondary-color: #1A1A1A; /* Almost black */
  --accent-color: #B8860B;   /* Darker gold */
  --text-color: #FFFFFF;     /* White text */
  --light-gray: #2A2A2A;     /* Darker background */
  --medium-gray: #888888;
  --dark-gray: #4A4A4A;
  --white: #FFFFFF;
  --bg-dark: #121212;        /* Main dark background */
  --primary-gradient: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
  --secondary-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  --hover-gradient: linear-gradient(135deg, #E5C14C 0%, #C99A1B 100%);
}

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

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-dark);
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  background: rgba(26, 26, 26, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.login-btn, .register-btn {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
}

.login-btn {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background: transparent;
}

.register-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(212, 175, 55, 0.5) 100%);
  color: var(--secondary-color);
  font-weight: 700;
  border-radius: 50px; 
  padding: 0.8rem 1.8rem; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 20%, rgba(212, 175, 55, 0.55) 100%);
}

/* Updated Hero Section */
.hero {
  position: relative;
  margin-top: 80px;
  padding: 6rem 2rem;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding-right: 2rem;
}

.hero-image {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.3));
  transition: opacity 0.3s ease;
}

.hero:hover .hero-image video {
  transform: scale(1.05);
}

.hero:hover .hero-image::after {
  opacity: 0.6;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  color: var(--white);
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero .cta-button {
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

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

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 1rem;
  }

  .hero-content {
    padding-right: 0;
    order: 2;
  }

  .hero-image {
    height: 300px;
    order: 1;
  }
}

/* Features Section */
.features {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-dark);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  padding: 4rem 2rem;
  background: var(--light-gray);
}

.pricing h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary-color);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: #666;
}

.price-card ul {
  list-style: none;
  margin: 2rem 0;
}

.price-card li {
  margin: 0.5rem 0;
}

.price-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--secondary-gradient);
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(212, 175, 55, 0.1);
  transition: background 0.3s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2);
  background: var(--hover-gradient);
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-dark);
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  color: var(--white);
}

.contact-container form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-container input,
.contact-container textarea {
  padding: 1rem;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  background: var(--light-gray);
  color: var(--white);
}

.contact-container textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-container button {
  padding: 1rem;
  background: var(--primary-color);
  color: var(--secondary-color);
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(212, 175, 55, 0.1);
}

.contact-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2);
}

/* New and Updated Styles */
.mission {
  padding: 6rem 2rem;
  background: var(--secondary-color);
  text-align: center;
}

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

.mission .highlight {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin: 1.5rem 0;
}

.strategy {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.strategy-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stats {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.stat-item {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
  margin: 0 1rem;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solutions {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
  color: var(--white);
}

.solutions .subtitle {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.25rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-card {
  background: linear-gradient(145deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.solution-card i {
  font-size: 2.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.differentials {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.differential-card {
  background: linear-gradient(145deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
}

.differential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.differential-card i {
  font-size: 2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.differential-card ul {
  list-style: none;
  margin: 1rem 0;
}

.differential-card ul li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.differential-card ul li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.process {
  padding: 6rem 2rem;
  background: var(--secondary-color);
  text-align: center;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQ Section */
.faq {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.faq h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.9));
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.faq-question {
  padding: 1.5rem;
  transition: all 0.3s ease;
}

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

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--white);
}

.faq-toggle {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  color: var(--medium-gray);
}

.faq-answer p {
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 1rem;
}

.faq-answer ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.faq-answer ul li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 2000px; /* Increased to accommodate longer content */
}

/* Footer */
footer {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.support-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #4CAF50;
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  z-index: 1000;
}

.support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
  background: #45a049;
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

/* Hero Button Styles */
.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 100%);
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #FFFFFF 20%, #D4AF37 100%);
}

.logo svg text {
  fill: url(#gold-gradient);
}

.logo svg {
  content: `
    <defs>
      <linearGradient id="gold-gradient" x1="0%" y1="0%" x2="100%" y2="100%">
        <stop offset="0%" style="stop-color:#FFFFFF"/>
        <stop offset="100%" style="stop-color:#D4AF37"/>
      </linearGradient>
    </defs>
  `;
}

header nav .logo svg {
  overflow: visible;
}

header nav .logo svg defs {
  position: absolute;
}

.progress {
  background: var(--secondary-gradient);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

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

  .price-card.featured {
    transform: none;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }
  
  .solutions-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }
  
  .support-button {
    bottom: 1rem;
    right: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Update other button styles to be more rounded */
button,
.button,
.submit-form,
.next-step,
.prev-step,
input,
select,
textarea {
  border-radius: 50px !important;
}

.info-card,
.solution-card,
.differential-card,
.testimonial-card,
.consultant-form-wrapper,
.contact-form-wrapper {
  border-radius: 24px !important;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}