:root {
  --js-navy-deep: #020617;
  --js-orange: #ff7a3d;
  --js-slate: #1e293b;
  --js-text: #f8fafc;
  --js-text-muted: #94a3b8;
}

.hero-section {
  background-color: var(--js-navy-deep);
  color: var(--js-text);
  padding: 100px 8% 60px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.hero-main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 120px;
}

.hero-copy-block {
  flex: 1.2;
  max-width: 650px;
}

.js-tag-badge {
  background: rgba(255, 122, 61, 0.12);
  color: var(--js-orange);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 30px 0 24px;
}

.hero-subtext {
  font-size: 1.15rem;
  color: var(--js-text-muted);
  line-height: 1.6;
  margin-bottom: 45px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.js-btn-prime {
  background-color: var(--js-orange);
  color: white;
  padding: 18px 34px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.js-btn-prime:hover { transform: translateY(-5px); }

.js-btn-ghost {
  background-color: var(--js-slate);
  color: white;
  padding: 18px 34px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.hero-visual {
  flex: 1;
}

.image-frame img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.7);
}

/* Metrics Styling */
.hero-metrics-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 60px;
}

.metric-block {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.metric-value.accent { color: var(--js-orange); }

.metric-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--js-text-muted);
}

.metric-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .hero-main-content { flex-direction: column; text-align: center; }
  .hero-actions { justify-content: center; }
  .metric-divider { display: none; }
  .hero-metrics-bar { flex-direction: column; gap: 50px; }
}



.benefits-section {
  padding: 100px 8%;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-title {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #020617;
  font-weight: 700;
  margin-bottom: 15px;
}

.benefits-subtitle {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #1e293b; /* Premium slate dark */
  padding: 45px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
  transform: translateY(-8px);
  background-color: #0f172a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 25px;
  display: inline-block;
}

.benefit-icon.orange { color: #ff7a3d; }
.benefit-icon.blue { color: #94a3b8; }

.benefit-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.benefit-card p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .benefits-section { padding: 60px 5%; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { padding: 30px; }
}

.capabilities-section {
  background-color: #020b1c; /* Deepest Navy */
  padding: 100px 5%;
  font-family: 'Inter', sans-serif;
}

.capabilities-container {
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.section-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #94a3b8;
  font-size: 1rem;
}

.explore-all {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.explore-all:hover {
  border-bottom: 1px solid #ffffff;
}

/* Grid Logic */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cap-card {
  background-color: #0a192f; /* Slightly lighter navy card */
  border-radius: 4px; /* Maintain the sharp SaaS look */
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.cap-image-box {
  height: 240px;
  width: 100%;
  overflow: hidden;
}

.cap-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.cap-content {
  padding: 30px;
}

.cap-content h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.cap-content p {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Responsive Handling */
@media (max-width: 1100px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  .capabilities-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


.layered-intelligence-section {
  padding: 120px 8%;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
}

.intelligence-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px; /* Spacious gap for a premium feel */
}

.intelligence-visual {
  flex: 1;
}

.visual-frame img {
  width: 100%;
  border-radius: 40px; /* High radius for the modern SaaS look */
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
}

.intelligence-content {
  flex: 1;
}

.intelligence-title {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #020617;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 50px;
}

.layer-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.layer-item {
  display: flex;
  gap: 20px;
}

.layer-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 8px; /* Aligns with the first line of text */
  flex-shrink: 0;
}

.layer-bullet.blue { background-color: #3b82f6; }
.layer-bullet.orange { background-color: #ff7a3d; }

.layer-text h4 {
  font-size: 1.25rem;
  color: #020617;
  font-weight: 600;
  margin-bottom: 8px;
}

.layer-text p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive adjustment */
@media (max-width: 992px) {
  .intelligence-container {
    flex-direction: column;
    gap: 60px;
    text-align: left;
  }
  .layered-intelligence-section {
    padding: 80px 5%;
  }
}




/* --- ROADMAP --- */
.roadmap-section {
  background-color: #020617;
  padding: 120px 8%;
  color: #fff;
  text-align: center;
}

.roadmap-title {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
}

.roadmap-subtitle {
  color: #94a3b8;
  margin-bottom: 80px;
}

.roadmap-grid-container {
  background: rgba(30, 41, 59, 0.3); /* Subtle container background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 40px; /* Wider horizontal gap, taller vertical */
  text-align: left;
}

.phase-number {
  color: #ff7a3d;
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 15px;
}

.roadmap-item h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.roadmap-item p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- INDUSTRY IMPLEMENTATIONS --- */
.industry-section {
  padding: 120px 8%;
  background: #ffffff;
}

.industry-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2rem;
  color: #020617;
  margin-bottom: 60px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: #0f172a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.industry-card:hover { transform: translateY(-10px); }

.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }

.card-text { padding: 25px; color: #fff; }
.card-text h4 { font-size: 1.1rem; margin-bottom: 12px; }
.card-text p { color: #94a3b8; font-size: 0.85rem; line-height: 1.5; }

/* Responsive */
@media (max-width: 1100px) {
  .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .roadmap-grid, .industry-grid { grid-template-columns: 1fr; }
  .roadmap-grid-container { padding: 30px; }
}




/* --- FAQ STYLING --- */
.faq-section {
  background-color: #020b1c;
  padding: 100px 5%;
  color: #fff;
}

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

.faq-main-title {
  font-family: 'Kanit', sans-serif;
  font-size: 2rem;
  margin-bottom: 50px;
}

.accordion-item {
  background: rgba(10, 25, 47, 0.5);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  transition: background 0.3s;
}

.accordion-header:hover { background: rgba(255, 255, 255, 0.02); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 30px;
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Class to toggle via JS */
.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 24px;
}

.accordion-item.active i { transform: rotate(45deg); }

/* --- FINAL CTA STYLING --- */
.cta-section {
  background-color: #ffffff;
  padding: 100px 8%;
}

.cta-card {
  background: linear-gradient(135deg, #020b1c 0%, #0a192f 100%);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Kanit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-subtitle {
  color: #94a3b8;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-demo {
  background-color: #ff7a3d;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-architect {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-architect:hover { background: rgba(255, 255, 255, 0.1); }

@media (max-width: 640px) {
  .cta-buttons { flex-direction: column; }
  .cta-card { padding: 50px 20px; }
}