:root {
  --primary-color: #6c63ff;
  --secondary-color: #7E57C2;
  /* --dark-bg: #121212; */
  --dark-bg: #000000;
  /* --dark-surface: #151515; */
  --dark-surface: #161616;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --accent: #ffe06e; /* ffe06e  00c2cb*/
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 5px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

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

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

.cta-button {
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  width: 100%;
  text-align: center;
}

.hero-content {
  flex: 1;
  max-width: 100%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background-color: var(--dark-surface);
  border-radius: 30px 30px 0 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: black;
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
}

/* Download Section */
.download {
  padding: 6rem 0;
  text-align: center;
}

.download h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.download p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--dark-surface);
  color: var(--text-primary);
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--text-secondary);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.store-button:hover {
  transform: scale(1.05);
}

.store-button svg {
  width: 18px;
  height: 18px;
  fill: white;
  opacity: 1;
}

.footer-links {
  margin: 2rem auto 0;
  padding: 1.5rem 0;
  text-align: center;
  /*background-color: var(--dark-surface);*/
  border-radius: 10px;
  max-width: 1200px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Footer */
footer {
  padding: 3rem 0;
  background-color: var(--dark-surface);
  text-align: center;
}

footer p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  color: var(--text-secondary);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

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

.download-now {
  padding: 5px;
  color: var(--accent);
  font-weight: 500;

}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}

.bulletlist {
  padding-top: 20px;
  max-width: 250px;
}

.valueproplist {
  padding-top: 20px;
}

.competencyblock {
  max-width: 200px;
  border: 1px solid var(--text-secondary);
  border-radius: 10px;
  padding: 10px;
}

.stepblock {
  max-width: 300px;
  border: 1px solid var(--text-secondary);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  /* margin: 30px; */
}
.stepnumber {
  font-weight: bold;
  color: gray;
  font-size: 14px;
  text-align: center;
}

/* Media query for mobile/small screens */
@media (max-width: 768px) {
  .steps-table {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }
  
  .steps-table tr {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
  }
  
  .steps-table td {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: auto !important;
    max-width: 300px !important;
  }
}

@media (max-width: 436px) {
  .change-body {
    max-width: 300px !important;
  }
}

/* Mobile responsive table for bullet points */
@media (max-width: 768px) {
  .bulletlist-table {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
  }
  
  .bulletlist-table tr {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }
  
  .bulletlist-table td {
    display: block !important;
    width: 100% !important;
    padding: 0 1rem !important;
  }
  
  .hide-mobile {
    display: none !important;
  }
}


