/* style.css */

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* Navigation */
header {
  background-color: #000000;
  padding-top: 0px;
  padding-bottom:0px;
  padding-left: 2rem;
  padding-right: 2rem;
  height: 4rem;
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #222;
  position:static;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  color: #ccff33;
}

/* Buttons */
.btn-primary {
  background-color: #ccff33;
  color: #0f0f0f;
  padding: 0.35rem 1rem; /* Reduced vertical and horizontal padding for a thinner button */
  border: none;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}

.btn-primary:hover {
  background-color: #b8e629;
  color: #000;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1rem 4rem 1rem;
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 1.2rem;
  position: relative;
}

.hero h1 {
  font-size: 4rem; /* Increased font size */
  font-weight: 500; /* Slightly lighter font weight */
  line-height: 1.4; /* Adjusted line height for better readability */
  margin-bottom: 1.5rem;
  font-family: 'Arial', 'Helvetica', sans-serif; /* More flexible font */
}

.hero p {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.hero small {
  display: block;
  margin-top: 0.75rem;
  color: #aaaaaa;
  font-size: 0.9rem;
  margin-bottom: 2rem; /* Reduce extra space below the button area */
}

/* Remove hero and why section decorations */
.hero-decoration,
.hero-decoration-left,
.hero-decoration-right,
.why-decoration,
.why-decoration-left,
.why-decoration-right {
  display: none !important;
}

/* Why Section */
.why, .faq {
  background-color: #000000;
  padding: 4rem 2rem;
  text-align: center;
}

.why {
  background: linear-gradient(180deg, #000000 85%, #323232 100%);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1; /* Lower than .hero for decoration layering */
}

.why h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why ul {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.why li {
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Why Section Split Layout - No VS, more top, closer together, more side space */
.why-split.no-vs {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 6vw 2rem 6vw;
  padding-top: 1.5rem;
  position: relative;
}
.why-left, .why-right {
  flex: 1 1 0;
  background: #000; /* Match section background */
  border: 0.5px solid #ccff33; /* Add border with accent color */
  border-radius: 20px;
  padding: 2rem 1.5rem;
  min-width: 220px;
  box-shadow: 0 0 16px 0 rgba(204,255,51,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: 100%;
  min-height: 340px;
}
.why-list {
  list-style: disc inside;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin: 2rem 0 0 0;
  padding: 0 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-list li {
  margin-bottom: 0;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.why-list li strong {
  font-weight: 600;
  color: #ccff33;
}
.why-list li small {
  color: #aaaaaa;
  font-size: 1rem;
}
.why-source {
  margin-top: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.why-left h3, .why-right h3 {
  font-size: 1.5rem;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

/* Process Section */
.process {
  background: linear-gradient(360deg, #000000 85%, #333333 100%), /* top */
              linear-gradient(180deg, #000000 85%, #333333 100%); /* bottom */
  background-blend-mode: lighten;
  padding: 5rem 2rem 2.5rem 2rem; /* Reduced bottom padding from 5rem to 2.5rem */
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto 0 auto; /* Set bottom margin to 0 */
}

.process h2 {
  font-size: 2.2rem;
  color: #ccff33;
  font-weight: 500;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
}

/* --- Enhanced Process Section for Clarity & Focus --- */
.process .steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3.5rem 3.5rem; /* More space between steps */
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.step {
  background: linear-gradient(120deg, #000000 87%, #323232 100%);
  border: 2px solid #888;
  border-radius: 28px;
  box-shadow: 0 4px 32px 0 rgba(204,255,51,0.10);
  padding: 2.8rem 2.2rem 2.8rem 2.2rem;
  max-width: 440px;      /* Increased from 370px */
  min-width: 320px;      /* Increased from 260px */
  flex: 1 1 400px;       /* Increased from 340px */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.step:hover {
  border-color: #ccff33;
  box-shadow: 0 0 48px 0 rgba(204,255,51,0.18);
  z-index: 3;
}

.step h3 {
  color: #ccff33;
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  background: rgba(204,255,51,0.07);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  align-self: flex-start;
}

.step p {
  color: #e6e6e6;
  font-size: 1.18rem;
  line-height: 1.85;
  margin-bottom: 0.5rem;
  font-weight: 400;
  max-width: 100%;
  text-align: left;
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .process .steps {
    gap: 2.2rem 1.2rem;
  }
  .step {
    max-width: 95vw;
    min-width: 220px;
    padding: 2rem 1.1rem 2rem 1.1rem;
  }
}

@media (max-width: 900px) {
  .process .steps {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
  .step {
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
    padding: 2rem 1.1rem 2rem 1.1rem;
  }
}

@media (max-width: 700px) {
  .process {
    padding: 2.5rem 0.5rem 2.5rem 0.5rem;
  }
  .process h2 {
    font-size: 1.15rem;
  }
  .step h3 {
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
  }
  .step p {
    font-size: 0.97rem;
  }
}

/* CTA Section */
/* --- Enhanced CTA Section --- */
.cta {
  text-align: center;
  padding: 4rem 1.5rem 4rem 1.5rem;
  max-width: 850px;
  margin: 4rem auto 3rem auto;
  background: #000000; /* Changed from none to dark grey */
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  overflow: visible;
  z-index: 2; /* Make sure this is higher than .decoration */
}

.cta h2 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0.7rem; /* Decreased from 1.5rem */
  color: #ffffff;
  font-family: 'Arial', 'Helvetica', sans-serif;
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;
}

.cta p {
  font-size: 1.25rem;
  color: #cccccc;
  margin-bottom: 1.1rem; /* Decreased from 2rem */
  line-height: 1.6;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
}

.cta .btn-primary {
  font-size: 1.1rem;
  padding: 0.55rem 2.2rem;
  margin: 0.5rem 0 0.3rem 0; /* Decreased top and bottom margin */
  border: none;
  border-radius: 999px;
  background: #ccff33;
  color: #101010;
  font-weight: bold;
  box-shadow: 0 2px 16px 0 rgba(204,255,51,0.13);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.cta .btn-primary:hover {
  background: #b8e629;
  color: #000;
  box-shadow: 0 0 32px 0 rgba(204,255,51,0.18);
}

.cta small {
  display: block;
  margin-top: 1.2rem;
  color: #aaaaaa;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.cta-box {
  background: rgba(24, 24, 24, 0.65);
  border-radius: 22px;
  border: 1px solid #888888;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 2.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}


@media (max-width: 700px) {
  .cta {
    padding: 2rem 0.7rem;
    max-width: 98vw;
  }
  .cta h2 {
    font-size: 2rem;
    padding: 0;
  }
  .cta p, .cta small {
    font-size: 0.97rem;
  }
}

/* FAQ Section - Added z-index adjustment */
.faq {
  position: relative;
  z-index: 2; /* Ensure FAQ appears below CTA decoration */
  padding: 4rem 0; /* Remove side padding, keep top/bottom */
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.faq-title {
  font-size: 2rem;
  color: #ccff33;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
  font-weight: 500;
  margin-bottom: 2.5rem; /* More space below the title */
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 0; /* Remove top margin */
}

/* FAQ Question Box Styles */
.faq-item {
  background: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
  padding: 10px;
  transition: none;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

/* FAQ: All questions in one centered box with limited width */
.faq-list-box {
  background: rgba(24, 24, 24, 0.45);
  border: 1px solid #888;
  border-radius: 22px;
  max-width: 800px;
  margin: 0 auto 0 auto;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center; /* Center children horizontally */
  margin-top: 0; /* Remove top margin if present */
}

/* Optional: highlight on open */
.faq-item.open {
  border: 1px solid #aaa; 
  background: rgba(0, 0, 0, 0.65);
  border-radius: 22px; 
  box-shadow: 0 4px 32px 0 rgba(204,255,51,0.08);
  transition: border-color 0.3s, background 0.3s, border-radius 0.3s;
}

/* Smooth FAQ answer animation */
.faq-item .faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.5s cubic-bezier(0.4,0,0.2,1);
  color: #f1f1f1;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 0;
  padding-left: 2.1rem;
  padding-right: 1.2rem;
  padding-top: 0;
  padding-bottom: 0;
}

/* When open, animate padding and height */
.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 0.7rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.faq-item h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 400; /* Not bold */
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif; /* More flexible font */
  text-align: left;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.faq-arrow {
  display: inline-block;
  margin-right: 0.7rem;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* Why Section: Centered Box Style */
.why-centered-box {
  max-width: 850px;
  margin: 2.5rem auto 2rem auto;
  background: #000;
  border: 1px solid #ccff33;
  border-radius: 25px;
  padding: 3rem 3rem;
  box-shadow: 0 0 24px 0 rgba(204,255,51,0.07);
  text-align: left;
  font-family: 'Segoe UI', 'Arial', 'Helvetica', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}
.why-centered-box p {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
/* Why box border: grey, hover to #ccff33 */
.why-centered-box {
  border: 1.5px solid #888888;
  transition: border-color 0.3s cubic-bezier(0.4,0,0.2,1);
}
.why-centered-box:hover {
  border-color: #ccff33;
}
@media (max-width: 700px) {
  .why-centered-box {
    padding: 1.2rem 0.7rem;
    font-size: 1rem;
  }
}

/* Footer */
footer {
  background-color: #000000;
  padding: 2rem;
  text-align: center;
  color: #888;
  border-top: 1px solid #222;
}

footer a {
  color: #ccff33;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Add to end of your CSS file */

/* Reveal Animation Styles */
.reveal-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reveal-section {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(204, 255, 51, 0.2);
}

.reveal-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reveal-title {
  font-weight: 400;
  color: #ccff33;
  margin-bottom: 0.4rem;
  font-size: 1.08rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.reveal-content {
  font-size: 1.08rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(-30px); /* Reveal from top to bottom */
  transition: opacity 2.2s cubic-bezier(0.4,0,0.2,1), transform 2.2s cubic-bezier(0.4,0,0.2,1), max-height 2.2s cubic-bezier(0.4,0,0.2,1);
  color: #fff;
  max-height: 0;
  overflow: hidden;
}

.reveal-content.visible {
  opacity: 1;
  transform: translateY(0);
  max-height: 500px;
  transition: opacity 2.2s cubic-bezier(0.4,0,0.2,1), transform 2.2s cubic-bezier(0.4,0,0.2,1), max-height 2.2s cubic-bezier(0.4,0,0.2,1);
}

@media (max-width: 700px) {
  .reveal-title, .reveal-content {
    font-size: 0.95rem;
  }
}

/* Ensure .decoration is always above section backgrounds */
.hero{
  background: transparent !important;
  /* Remove or comment out the z-index here if not needed */
  /* z-index: 2; */
}


/*.hero, .why {
  background: transparent !important;
  /* Remove or comment out the z-index here if not needed */
  /* z-index: 2; */
/*}*/

.decoration {
  position: fixed;
  top: 0;
  height: 100%;
  width: 700px;
  pointer-events: none;
  z-index: 0; /* Lower than .cta */
  opacity: 0.5;
  transition: opacity 2s ease;
}

body.scrolled .decoration {
  opacity: 0;
  z-index: 3; /* Ensure it stays above content */
}

/* Decorative side elements */
.decoration {
  position: fixed;
  top: 0;
  height: 110%;
  width: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  transition: opacity 1s ease;
}

.decoration.left {
  left: 0;
  background: radial-gradient(ellipse at left, #ccff33, transparent 55%);
}

.decoration.right {
  right: 0;
  background: radial-gradient(ellipse at right, #ccff33, transparent 55%);
}

/* Show decorations when scrolling */
body.scrolled .decoration {
  opacity: 0.0;
}

/* Ensure content is above decorations */
header, section {
  position: relative;
  z-index: 2;
}

/* Add this at the end of your CSS file or after the .cta definition */

.faq .cta {
  background: linear-gradient(100deg, #000000 80%, #323232 100%);
}

/* Make FAQ section and its CTA full width */
.faq {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4rem 0; /* Remove side padding, keep top/bottom */
  background-color: #000; /* Ensure background is solid */
}

.faq .cta {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  background: linear-gradient(360deg, #000000 70%, #323232 100%);
  padding-left: 0;
  padding-right: 0;
}

.faq .cta > * {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Reduce or remove bottom padding from .process */
.process {
  padding-bottom: 120px;
}

/* Remove top padding from .faq */
.faq {
  padding-top: 0;
}

/* Remove top margin from .faq .cta if present */
.faq .cta {
  margin-top: 0 !important;
}

.faq .cta {
  padding-top: 120px;
  padding-bottom: 120px;
}


/* Remove top margin from .faq-title */
.faq-title {
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 30px;
}

/* Remove top margin from .faq-list-box if present */
.faq-list-box {
  margin-top: 0;
}

/* Remove bottom margin from .process .steps */
.process .steps {
  margin-bottom: 0 !important;
}

/* Remove top margin from .faq .cta and .faq-title */
.faq .cta {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.faq-title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Make the why section full width with gradient background */
.why {
  background: linear-gradient(180deg, #000000 80%, #323232 100%);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1; /* Lower than .hero for decoration layering */
}

/* Ensure hero decoration appears above the why section background */
/*.hero-decoration,
.hero-decoration-left,
.hero-decoration-right {
  display: block !important;
  position: absolute;
  z-index: 2;
  pointer-events: none;
  /* Adjust top/left/right as needed for your design */
/*}*/

.faq-divider {
  border: none;
  border-top: 1px solid #888;
  opacity: 0.4;
  width: 100vw;
  margin: 0 0 24px 0;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}