* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

:root {
  --primary-color: #2960f8;
  --text-color: #000b32;
  --bg-color: #ffffff;
  --bg-gray: #f8f8f6bf;
  --border-color: rgb(225, 225, 225);
  --section-padding: 100px 20px;
}

h1, h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
}

h2 {
  display: inline-block;
  color: var(--text-color);
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Header Styles */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

header a {
  display: flex;
  align-items: center;
  justify-content: center;
}

header img {
  height: 24px;
  width: auto;
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
}

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

/* Section Styles */
section {
  padding: var(--section-padding);
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
#hero {
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: none;
  width: 100%;
}

#hero > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-decorative {
  position: absolute;
  width: 100vw;
  pointer-events: none;
  z-index: -1;
}

.hero-decorative img {
  position: absolute;
  width: 400px;
  height: auto;
}

.hero-decorative .cube {
  left: -200px;
  bottom: -300px;
  transform: rotate(0deg);
}

.hero-decorative .thorus {
  right: -200px;
  bottom: -350px;
  transform: rotate(0deg);
}

@media (max-width: 1400px) {
  .hero-decorative img {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .hero-decorative img {
    width: 150px;
  }
  
  .hero-decorative .cube {
    left: -100px;
    bottom: -500px;
  }
  
  .hero-decorative .thorus {
    right: -100px;
  }
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/grid.svg');
  background-repeat: repeat;
  background-size: 56px 56px;
  opacity: 0.1;
  z-index: -2;
  width: 100vw;
}

@keyframes moveGrid {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

#hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 24px;
  background: linear-gradient(to right, #2960f8, #1e54f7);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 56px;
}

.button::after {
  content: '→';
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  color: var(--text-color);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.button:hover {
  box-shadow: 0 5px 15px rgba(41, 96, 248, 0.3);
}

.button:hover::after {
  transform: rotate(-45deg);
}

/* Special case for contact section button */
#contact .button {
  background: white;
  color: var(--text-color);
}

#contact .button::after {
  background: var(--text-color);
  color: white;
}

/* Training page specific button styles */
.button.secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-top: 0;
  padding: 15px 30px;
  font-size: 16px;
}

.button.secondary:hover {
  background: var(--primary-color);
  color: white;
}

.button.whatsapp {
  background: #25D366;
  margin-top: 0;
  padding: 15px 30px;
  font-size: 16px;
}

.button.email {
  background: #EA4335;
  margin-top: 0;
  padding: 15px 30px;
  font-size: 16px;
}

/* Hero CTA Styles */
.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* About Section */
#about {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
}

.about-background {
  background-color: var(--primary-color);
  width: 100%;
  padding: 60px 20px;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: white;
}

#about h2 {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

#about h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.1rem;
  opacity: 0.9;
}

#about img {
  width: 80%;
  height: auto;
}

#about .about-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

#about .about-partners {
  margin-top: 40px;
}

#about .about-partners > div {
  display: flex;
  gap: 32px;
  justify-content: left;
  align-items: center;
}

#about .about-partners p {
  margin-bottom: 10px;
}

#about .about-partners > div img {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
}

#about .about-partners > div img.tenstud {
  width: 150px;
  height: auto;
  margin-top: -5px;
}

/* Urgency Section */
#urgency {
  background: var(--bg-gray);
  text-align: center;
  border-radius: 16px;
}

.urgency-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.urgency-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.urgency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.urgency-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.urgency-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.urgency-card p {
  color: #666;
  line-height: 1.6;
}

/* Benefits Grid */
#why-infused-training {
  text-align: center;
}

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

.benefit-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Services Section */
#services {
  text-align: center;
  background-color: var(--bg-gray);
  margin: 0;
  padding: 80px;
  max-width: none;
  width: 100%;
}

#services > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#services h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#services > p {
  color: #666;
  margin-bottom: 60px;
}

#services ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  text-align: left;
}

#services li {
  padding: 30px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#services h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

#services li p {
  color: #666;
}

#services .services-training {
  margin-top: 60px;
  background: url(../assets/img/infused-ai-corporate-training-indonesia.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#services .services-training a {
  text-decoration: none;
}

#services .services-training a:hover {
  cursor: ne-resize;
}

#services .services-training .overlay {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  height: 100%;
  padding: 80px;
  border-radius: 16px;
}

#services.clients {
  background: none;
}

#services.clients img {
  width: 100%;
  height: auto;
}

#services .case-study-content {
  display: flex; 
  align-items: center;
  justify-content: center;
  gap: 40px;
}

#services .case-study-content .case-study-item {
  text-align: left;
  background: white;
  border-radius: 16px;
  padding: 20px;
}

#services .case-study-content .case-study-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}

#services .case-study-content .case-study-item .case-study-text-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#services .case-study-content .case-study-item ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--bg-gray);
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Topics Grid */
#topics {
  text-align: center;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.topic-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.topic-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.topic-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.topic-card p {
  color: #666;
  line-height: 1.6;
}

.topics-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Training Features */
#how-training-works {
  background: var(--bg-gray);
  text-align: center;
}

.training-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.feature-item p {
  color: #666;
  font-size: 0.9rem;
}

/* Success Stories */
#success-stories {
  text-align: center;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.case-study-card {
  background: white;
  padding: 0 0 40px 0;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-study-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
  margin-bottom: 0;
}

.case-study-card h3 {
  font-size: 1.5rem;
  margin: 24px 0 15px 0;
  color: var(--text-color);
}

.case-study-card p {
  color: #666;
  margin: 0 24px;
}

.case-study-card .read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.case-study-card .read-more:hover {
  text-decoration: underline;
}

/* Why Infused Section */
#why-infused {
  text-align: center;
}

#why-infused h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#why-infused > p {
  color: #666;
  margin-bottom: 60px;
}

#why-infused ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
}

#why-infused li {
  padding: 30px;
  background: white;
  border-radius: 16px;
  background-color: var(--bg-gray);
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

#why-infused li i {
  color: var(--bg-color);
  background-color: #37382e;
  padding: 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}

#why-infused h4 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

#why-infused li p {
  color: #666;
}

/* Who Should Join */
#who-should-join {
  background: var(--bg-gray);
  text-align: center;
}

#who-should-join p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  max-width: 800px;
  margin: 50px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(41, 96, 248, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.quick-contact {
  text-align: center;
  margin-top: 40px;
}

.quick-contact p {
  margin-bottom: 20px;
  color: #666;
}

.quick-contact .button {
  margin: 0 10px;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border-color);
  padding: 15px 20px;
  z-index: 999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

.sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sticky-cta .button {
  padding: 10px 20px;
  font-size: 14px;
}

/* FAQ Section */
#faq {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-bottom: 100px;
}

#faq h2 {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

#faq h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#faq > p {
  color: #666;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.faq-content {
  text-align: left;
}

.faq-item {
  padding: 24px;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(248, 248, 246, 0.9);
}

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.faq-item h4::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active h4::after {
  transform: rotate(45deg);
}

.faq-item p {
  color: #666;
  margin-top: 16px;
  display: none;
  line-height: 1.6;
}

.faq-item.active p {
  display: block;
}

.faq-decorative {
  position: absolute;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
}

.faq-decorative img {
  position: absolute;
  width: 400px;
  height: auto;
}

.faq-decorative .cube {
  right: -200px;
  bottom: -200px;
  transform: rotate(0deg);
}

.faq-decorative .knot {
  left: -200px;
  bottom: 400px;
  transform: rotate(15deg);
}

@media (max-width: 1400px) {
  .faq-decorative img {
    width: 300px;
  }
}

@media (max-width: 768px) {
  .faq-decorative img {
    width: 200px;
  }
  
  .faq-decorative .cube {
    display: none;
  }
  
  .faq-decorative .knot {
    left: -100px;
  }
}

/* Contact Section */
#contact {
  text-align: center;
  background: linear-gradient(135deg, #000b32 0%, #001454 100%);
  color: white;
  border-radius: 32px;
  margin: 80px auto;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(18, 80, 250) 0%, rgba(0, 11, 50, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

#contact > * {
  position: relative;
  z-index: 1;
}

#contact h2 {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

#contact h3 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#contact p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
  margin-left: auto;
  margin-right: auto;
}

#contact .button {
  background: white;
  color: var(--text-color);
  padding: 20px 32px;
  padding-right: 64px;
  font-size: 1.1rem;
}

#contact .button::after {
  width: 36px;
  height: 36px;
  right: 10px;
  background: #000b32;
  color: white;
}

/* Footer */
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

footer > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

footer img {
  height: 24px;
  margin-bottom: 20px;
}

footer ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

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

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

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

footer .social-links a {
  font-size: 20px;
}

footer > div:last-child {
  padding-top: 40px;
  border-top: 1px solid #eee;
  text-align: center;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .decorative-elements .knot {
    width: 300px;
  }
  
  .decorative-elements .cube {
    width: 300px;
  }
}

@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
  }
  
  #why-infused ul {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .decorative-elements .knot {
    width: 250px;
    left: 0;
  }
  
  .decorative-elements .cube {
    width: 250px;
    right: 0;
  }
}

@media (max-width: 768px) {
  header {
    width: calc(100% - 32px);
    padding: 12px 16px;
  }
  
  header nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    padding: 0;
  }

  .mobile-menu-header {
    padding: 16px;
  }

  .mobile-menu nav {
    padding: 0 16px;
  }

  #hero h1 {
    font-size: 2.5rem;
    padding: 0 20px;
  }

  #hero p {
    padding: 0 20px;
  }

  #about .about-partners > div {
    justify-content: space-between;
  }
  
  .about-background {
    padding: 60px 20px;
  }
  
  #about h3, #services h3, #why-infused h3, #faq h3 {
    font-size: 1.8rem;
  }

  #services {
    padding: 60px 20px;
  }

  #services ul {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  #why-infused ul {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  footer > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  
  footer ul {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  header {
    width: calc(100% - 32px);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    border-radius: 16px;
    padding: 12px 16px;
  }

  h1, h3 {
    line-height: 1.2;
    font-size: 1rem;
    font-weight: 500;
    padding: 0 8px;
  }
  
  header nav {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 15px;
  }
  
  #hero h1 {
    font-size: 2rem;
    padding: 0 16px;
  }

  #hero p {
    padding: 0 16px;
    font-size: 1.1rem;
  }

  .about-background {
    padding: 40px 16px;
  }

  #about .about-partners > div img {
    width: 70px;
    height: auto;
  }
  
  #about .about-partners > div img.tenstud {
    width: 100px;
    height: auto;
    margin-top: -5px;
  }
  
  #services {
    padding: 40px 16px;
  }

  #services ul {
    padding: 0 16px;
  }

  #services li {
    padding: 24px;
  }

  #why-infused {
    padding: 40px 16px;
  }

  #why-infused ul {
    padding: 0 16px;
  }

  #why-infused li {
    padding: 24px;
  }

  #contact {
    margin: 40px 16px;
    padding: 40px 24px;
  }

  #contact h3 {
    font-size: 2rem;
  }

  #contact p {
    font-size: 1rem;
  }

  .button {
    padding: 12px 20px;
    padding-right: 48px;
    font-size: 0.95rem;
  }

  .button::after {
    width: 28px;
    height: 28px;
    right: 8px;
  }

  footer {
    padding: 40px 16px;
  }
}

/* Mobile Menu Styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
  z-index: 2000;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-gray);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  z-index: 2001;
}

.mobile-menu-header a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-header img {
  height: 24px;
  width: auto;
}

.menu-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--text-color);
  line-height: 1;
  opacity: 0.7;
}

.mobile-menu nav {
  margin-top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
}

.mobile-menu nav a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
}

@media (max-width: 768px) {
  header {
    width: calc(100% - 32px);
    padding: 12px 16px;
  }

  .menu-toggle {
    display: block;
    width: 24px;
    height: 24px;
    padding: 0;
  }

  .menu-toggle img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  header, .mobile-menu-header {
    width: calc(100% - 32px);
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .urgency-cards {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .training-features {
    grid-template-columns: 1fr;
  }
  
  .case-studies {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .topics-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .sticky-cta-content {
    flex-direction: column;
    align-items: center;
  }
  
  .quick-contact .button {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 20px;
  }
  
  .urgency-card,
  .benefit-item,
  .topic-card,
  .case-study-card {
    padding: 30px 20px;
  }
}

/* Highlight Topics Section */
.highlight-topics {
  background: #2960f8;
  color: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 100px 0;
  box-sizing: border-box;
  max-width: none;
}

.highlight-topics h2 {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.highlight-topics .topics-grid {
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
}

.highlight-topics .topic-card {
  background: #fff;
  border: 1px solid rgba(41,96,248,0.12);
  color: var(--text-color);
  box-shadow: 0 4px 24px 0 rgba(41,96,248,0.07);
}

.highlight-topics .topic-card h3 {
  color: var(--text-color);
}

.highlight-topics .topic-card p {
  color: #666;
}

.highlight-topics .topic-card i {
  color: var(--text-color);
}

/* Sticky CTA Fade Animation */
.fade-cta {
  transition: opacity 0.5s ease;
  opacity: 0;
  pointer-events: none;
}
.fade-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Remove extra margin for single CTA */
.hero-ctas .button,
.sticky-cta .button,
#contact .button {
  margin-top: 0;
}