/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(83, 52, 131, 0.1);
  padding: 15px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a1a2e, #533483);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 35px;
  margin: 0;
}

.nav-menu li a {
  color: #533483;
  text-decoration: none;
  font-weight: 550;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
}

.nav-menu li a:hover {
  color: #6b7280;
}

.nav-cta {
  background: linear-gradient(135deg, #533483, #0f3460) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #6b4a9a, #1a4a7a) !important;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #1a1a2e;
  background: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Subtle background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(83, 52, 131, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(184, 181, 255, 0.02) 0%, transparent 50%);
  z-index: -1;
}



/* Header/Hero section */
.hero {
  text-align: center;
  padding: 140px 40px 120px 40px;
  background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
  margin: 120px 30px 30px 30px;
  border-radius: 8px;
  border: 1px solid rgba(83, 52, 131, 0.08);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.015), transparent);
  animation: shimmer 6s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hero h1 {
  font-size: 5rem;
  font-weight: 650;
  background: linear-gradient(135deg, #1a1a2e, #533483, #8b7fd9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  position: relative;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero h1::after {
  content: '⚙️';
  font-size: 0.7em;
  position: absolute;
  top: 0;
  right: -1.5em;
  animation: rotate 6s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero p {
  font-size: 1.6rem;
  color: #4a5568;
  max-width: 900px;
  margin: 0 auto 60px;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0.95;
  letter-spacing: 0.01em;
}

/* Button styles */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #533483, #0f3460);
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

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

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

.btn:hover {
  background: linear-gradient(135deg, #8b7fd9, #533483) !important;
}

/* Section styles */
section {
  background: #ffffff;
  margin: 50px 30px;
  padding: 100px 80px;
  border-radius: 8px;
  border: 1px solid rgba(83, 52, 131, 0.06);
  position: relative;
  overflow: hidden;
}



section h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 70px;
  background: linear-gradient(135deg, #1a1a2e, #533483, #8b7fd9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.2;
}



/* Services section */
.service-list {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
}

.service-list li {
  background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 6px;
  border: 1px solid rgba(83, 52, 131, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}





.service-list strong {
  color: #533483;
  font-size: 1.3rem;
  display: block;
  margin-bottom: 12px;
  font-weight: 550;
  letter-spacing: 0.01em;
}

.service-list li p {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.1rem;
  opacity: 0.9;
}

.service-list li ul {
  list-style: square;
  margin: 15px 0 0 20px;
  padding: 0;
}

.service-list li ul {
  list-style: none;
  margin: 15px 0 0 20px;
  padding: 0;
}

.service-list li ul li {
  color: #4a5568;
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.9;
  background: none;
  border: none;
  padding: 0 0 0 25px;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.service-list li ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #533483;
  border-radius: 50%;
  box-shadow: none;
}

/* Benefits section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
}

.benefit-item {
  background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid rgba(83, 52, 131, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}





.benefit-item h3 {
  font-size: 1.2rem;
  color: #533483;
  margin-bottom: 12px;
  font-weight: 550;
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.benefit-item p {
  color: #4a5568;
  line-height: 1.6;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Use cases section */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.use-case {
  background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
  padding: 45px;
  border-radius: 6px;
  border: 1px solid rgba(83, 52, 131, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}





.use-case h3 {
  font-size: 1.4rem;
  color: #533483;
  margin-bottom: 15px;
  font-weight: 550;
  letter-spacing: 0.01em;
}

.use-case p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* How it works section */
#how-it-works ol {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  counter-reset: step-counter;
}

#how-it-works li {
  counter-increment: step-counter;
  background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
  padding: 45px;
  margin-bottom: 35px;
  border-radius: 6px;
  border: 1px solid rgba(83, 52, 131, 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}



#how-it-works li::before {
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: #533483;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  z-index: 2;
  border: 1px solid rgba(83, 52, 131, 0.2);
  box-shadow: none;
}

#how-it-works li {
  padding-left: 100px;
  margin-left: 0;
}

#how-it-works li strong {
  font-size: 1.3rem;
  color: #533483;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

#how-it-works li p {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1rem;
  opacity: 0.9;
}

/* Book section */
#book {
  text-align: center;
}

#book p {
  font-size: 1.4rem;
  color: #4a5568;
  margin-bottom: 50px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Calendly widget styling */
.calendly-inline-widget {
  border-radius: 6px !important;
  overflow: hidden !important;
  border: 1px solid rgba(83, 52, 131, 0.08) !important;
  max-width: 800px !important;
  margin: 40px auto !important;
  background: rgba(248, 249, 255, 0.95) !important;
  position: relative !important;
}

.calendly-inline-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  animation: shimmer 4s infinite;
  z-index: 1;
}

/* Override Calendly's default white background */
.calendly-inline-widget iframe {
  background: transparent !important;
  min-height: 700px !important;
  border-radius: 6px !important;
  position: relative;
  z-index: 2;
}

/* Hide or style Calendly cookie banner */
.calendly-inline-widget .calendly-cookie-banner,
.calendly-inline-widget .calendly-cookie-notice {
  display: none !important;
}

/* Alternative: Style the cookie banner to match theme */
.calendly-inline-widget .calendly-cookie-banner {
  background: rgba(26, 26, 46, 0.9) !important;
  backdrop-filter: blur(30px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #b8b5ff !important;
  border-radius: 15px !important;
}

/* Additional Calendly styling improvements */
.calendly-inline-widget {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}



/* Style Calendly internal elements */
.calendly-inline-widget iframe {
  filter: brightness(1.05) contrast(1.05) !important;
}

/* Contact section */
#contact {
  text-align: center;
}

#contact p {
  font-size: 1.5rem;
  color: #533483;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact p:last-child {
  font-size: 1.2rem;
  color: #4a5568;
  opacity: 0.8;
  font-weight: 400;
  background: none;
  -webkit-text-fill-color: #4a5568;
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 30px;
  color: #6b7280;
  font-size: 1.1rem;
  background: #f8f9ff;
  border-top: 1px solid rgba(83, 52, 131, 0.1);
  margin-top: 40px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(83, 52, 131, 0.08);
  border-radius: 8px;
  padding: 0;
  width: 90%;
  max-width: 550px;
  max-height: 85vh;
  overflow-y: auto;
  animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px 15px 30px;
  border-bottom: 1px solid rgba(83, 52, 131, 0.08);
}

.modal-header h2 {
  font-size: 1.8rem;
  font-weight: 550;
  color: #533483;
  margin: 0;
}

.close {
  color: #b8b5ff;
  font-size: 1.5rem;
  font-weight: 200;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 8px;
  right: 12px;
}

.close:hover {
  color: #1a1a2e;
  transform: scale(1.1);
}

.modal-body {
  padding: 15px 30px 30px 30px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}



/* Modal Calendly Widget Styling */
.modal .calendly-inline-widget {
  background: transparent !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  margin: 0 auto !important;
  max-width: 100% !important;
  border: 1px solid rgba(83, 52, 131, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform: scale(0.98) !important;
  opacity: 0.9 !important;
}

.modal .calendly-inline-widget.loaded {
  transform: scale(1) !important;
  opacity: 1 !important;
}

/* Hide scrollbar in modal */
.modal-content {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* Internet Explorer 10+ */
}

.modal-content::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

.modal-body {
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* Internet Explorer 10+ */
}

.modal-body::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

.modal .calendly-inline-widget iframe {
  background: transparent !important;
  border-radius: 6px !important;
  filter: brightness(1.1) contrast(1.1) !important;
}

.modal .calendly-inline-widget .calendly-cookie-banner {
  display: none !important;
}

.book-btn {
  margin-top: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive design */
@media (max-width: 1400px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero {
    margin: 70px 15px 15px 15px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h1::after {
    right: -1.2em;
    font-size: 0.6em;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  section {
    padding: 50px 30px;
    margin: 20px 15px;
  }
  
  section h2 {
    font-size: 2.2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .benefit-item,
  .use-case {
    padding: 30px;
    aspect-ratio: auto;
  }
  
  .service-list li,
  #how-it-works li {
    padding: 30px;
  }
  
  #how-it-works li::before {
    width: 45px;
    height: 45px;
    left: 15px;
    font-size: 1.1rem;
  }
  
  #how-it-works li {
    padding-left: 80px;
    margin-left: 25px;
  }
  
  .benefit-item h3 {
    font-size: 1.2rem;
  }
  
  .benefit-item p {
    font-size: 1rem;
  }
  
  .use-case h3 {
    font-size: 1.2rem;
  }
  
  .modal-content {
    width: 95%;
    max-width: none;
    margin: 20px;
  }
  
  .modal-header {
    padding: 25px 25px 15px 25px;
  }
  
  .modal-header h2 {
    font-size: 1.6rem;
  }
  
  .modal-body {
    padding: 20px 25px 30px 25px;
  }
  
  .modal-content {
    width: 98%;
    max-width: none;
    margin: 10px;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 20px 20px 10px 20px;
  }
  
  .modal-header h2 {
    font-size: 1.4rem;
  }
  
  .modal-body {
    padding: 10px 20px 20px 20px;
  }
  
  .modal .calendly-inline-widget {
    min-width: 260px !important;
    height: 750px !important;
  }
  
  .modal .calendly-inline-widget iframe {
    min-height: 750px !important;
    height: 750px !important;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for sections */
section {
  animation: fadeInUp 1.2s ease-out;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 26, 46, 0.3);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #533483, #0f3460);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6b4a9a, #1a4a7a);
}


