/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
  background-color: #0f172a;
  color: #ffffff;
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}
/* ================= NAVBAR ================= */


.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
}

.logo span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* ================= BURGER ================= */

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {

  .burger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b0f17;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  nav.active {
    max-height: 500px;
  }

  .nav-links {
    flex-direction: column;
    padding: 20px 40px;
    gap: 20px;
  }
}
/* ================= HERO SECTION ================= */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* Content */
.hero-content {
  max-width: 700px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1e40af;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

/* ================= RESPONSIVE ================= */



/* ================= SOLUTIONS SECTION ================= */

.solutions {
  padding: 100px 20px;
  background: #0f172a;
  max-width: 900px;
  margin: auto;
}

.section-intro {
  text-align: center;
  margin-bottom: 60px;
}

.section-intro h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.section-intro p {
  font-size: 18px;
  opacity: 0.85;
}

.solution-block {
  margin-bottom: 80px;
}

.solution-block h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.solution-block h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.8;
}

.solution-block p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

.technology-block {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.technology-block h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.technology-block p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .section-intro h2 {
    font-size: 26px;
  }

  .solution-block h3 {
    font-size: 22px;
  }
}

/* ================= SOLUTIONS SECTION ================= */

.solutions {
  padding: 120px 20px;
  background: linear-gradient(to bottom, #0f172a, #111827);
}

.solutions-intro {
  max-width: 800px;
  margin: 0 auto 100px auto;
  text-align: center;
}

.solutions-intro h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.solutions-intro p {
  font-size: 18px;
  opacity: 0.8;
}

/* Solution Rows */

.solution-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto 120px auto;
}

.solution-row.reverse {
  flex-direction: row-reverse;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.solution-image img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.solution-text {
  flex: 1;
}

.solution-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.solution-text h4 {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.8;
  margin-bottom: 20px;
}

.solution-text p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* Technology Block */

/* ================= NVIDIA LAB STYLE TECHNOLOGY BLOCK ================= */

.technology-block {
  max-width: 1200px;
  margin: 160px auto 0 auto;
  padding: 100px 50px;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 20%, rgba(0,255,163,0.08), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(59,130,246,0.08), transparent 40%),
              #0b1220;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

/* Top Glow Line */
.technology-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
}

/* Header */

.tech-header {
  text-align: center;
  margin-bottom: 80px;
}

.tech-header h3 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.tech-header p {
  font-size: 18px;
  opacity: 0.75;
  max-width: 700px;
  margin: auto;
}

/* Brand Logos */
.tech-stack-line {
  text-align: center;
  margin-bottom: 90px;
}

.tech-stack-line p {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}

.tech-names {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  opacity: 0.9;
  position: relative;
}

/* Subtle animated underline glow */
.tech-names::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 18px auto 0 auto;
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* Integration Pillars */

.integration-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(0,255,163,0.5);
}

.pillar span {
  font-size: 14px;
  font-weight: 600;
  color: #00ffa3;
  letter-spacing: 1px;
}

.pillar p {
  font-size: 15px;
  opacity: 0.85;
}

/* Responsive */

@media (max-width: 900px) {
  .integration-pillars {
    grid-template-columns: 1fr;
  }

  .brand-logos {
    gap: 40px;
  }

  .technology-block {
    padding: 70px 24px;
  }

  .tech-header h3 {
    font-size: 24px;
  }
}

/* ================= FADE-IN ANIMATION ================= */

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .solution-row {
    flex-direction: column;
    gap: 40px;
  }

  .solution-row.reverse {
    flex-direction: column;
  }

  .solution-text h3 {
    font-size: 24px;
  }

  .solutions-intro h2 {
    font-size: 28px;
  }
}

/* ================= INDUSTRIES ================= */

.industries {
  padding: 120px 20px;
  background: linear-gradient(to bottom, #111827, #0b1220);
}

.industries-intro {
  max-width: 900px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.industries-intro h2 {
  font-size: 36px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.industries-intro p {
  font-size: 18px;
  opacity: 0.78;
  line-height: 1.7;
}

/* Cards */
.industry-card {
  max-width: 1100px;
  margin: 0 auto 90px auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at 20% 20%, rgba(0,255,163,0.06), transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(59,130,246,0.06), transparent 40%),
              rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}

.industry-media {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.industry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.02);
}

.media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0b1220;
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.industry-content {
  padding: 38px 24px 28px 24px;
}

.industry-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.industry-subtitle {
  font-size: 16px;
  opacity: 0.78;
  margin-bottom: 22px;
  line-height: 1.6;
}

.industry-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 26px;
}

.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.point .dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: #00ffa3;
  box-shadow: 0 0 0 6px rgba(0,255,163,0.12);
  flex: 0 0 10px;
}

.point p {
  font-size: 14px;
  opacity: 0.86;
  line-height: 1.6;
}

/* Chat demo */
.chat-demo {
  margin-top: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  overflow: hidden;
}

.chat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.chat-title {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.75;
}

.chat-pill {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0.9;
}

.chat-stream {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.bubble {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  line-height: 1.55;
  font-size: 14px;
}

.bubble.user {
  margin-left: auto;
  background: rgba(59,130,246,0.12);
}

.bubble.assistant {
  margin-right: auto;
  background: rgba(0,255,163,0.10);
}

.bubble .meta {
  display: block;
  font-size: 11px;
  opacity: 0.65;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.typing {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.dotty {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: bounce 1s infinite;
}

.dotty:nth-child(2) { animation-delay: 0.12s; }
.dotty:nth-child(3) { animation-delay: 0.24s; }

@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.55; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.chat-hint {
  padding: 12px 16px 16px 16px;
  font-size: 12px;
  opacity: 0.65;
}

/* Responsive */
@media (max-width: 768px) {
  .industries-intro h2 { font-size: 28px; }
  .industries-intro p { font-size: 16px; }

  .industry-media { height: 220px; }
  .industry-content h3 { font-size: 24px; }

  .chat-stream { min-height: 240px; }
}

/* Assistant smooth fade */

.fade-assistant {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.fade-assistant.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth chat container fade */
.chat-stream {
  transition: opacity 0.4s ease;
}


/* ================= BENEFITS ================= */

.benefits {
  padding: 120px 20px;
  background: #0b1220;
  text-align: center;
}

.benefits-intro {
  max-width: 850px;
  margin: 0 auto 60px auto;
}

.benefits-intro h2 {
  font-size: 36px;
  margin-bottom: 14px;
}

.benefits-intro p {
  font-size: 18px;
  opacity: 0.78;
  line-height: 1.6;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  padding: 28px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.06);
}

.benefit-num {
  font-size: 48px;
  font-weight: 700;
  color: #00ffa3;
  margin-bottom: 12px;
}

.benefit-label {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 14px;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .benefit-num {
    font-size: 40px;
  }
}

/* ================= FAQ ================= */

.faq {
  padding: 120px 20px;
  background: #0f172a;
}

.faq-intro {
  max-width: 800px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.faq-intro h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.faq-intro p {
  font-size: 18px;
  opacity: 0.75;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  opacity: 0.8;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
/* ================= CAREERS ================= */

.careers {
  padding: 140px 20px;
  background: linear-gradient(to bottom, #0b1220, #0f172a);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle animated glow */
.careers::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,163,0.08), transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.careers-container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.careers h2 {
  font-size: 34px;
  margin-bottom: 24px;
  letter-spacing: 0.4px;
}

.careers-tagline {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.6;
}

.careers-description {
  font-size: 16px;
  opacity: 0.75;
  margin-bottom: 40px;
  line-height: 1.7;
}

.careers-cta p {
  font-size: 14px;
  opacity: 0.7;
}

.careers-email {
  display: inline-block;
  margin: 16px 0;
  font-size: 22px;
  font-weight: 600;
  color: #00ffa3;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  transition: all 0.3s ease;
}

/* Animated underline */
.careers-email::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  margin: 8px auto 0 auto;
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
  transition: width 0.4s ease;
}

.careers-email:hover::after {
  width: 100%;
}

.careers-email:hover {
  color: #3b82f6;
}

.careers-note {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .careers h2 {
    font-size: 26px;
  }

  .careers-tagline {
    font-size: 18px;
  }

  .careers-email {
    font-size: 18px;
  }
}

/* ================= CONTACT ================= */

.contact {
  padding: 140px 20px;
  background: linear-gradient(to bottom, #0f172a, #0b1220);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle lab glow */
.contact::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.12), transparent 70%);
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.contact-container {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 18px;
  opacity: 0.75;
  margin-bottom: 50px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: rgba(255,255,255,0.03);
  padding: 40px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

/* Improve HubSpot form look */
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: white !important;
  border-radius: 8px !important;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none !important;
  border-color: #00ffa3 !important;
}

/* HubSpot submit button styling */
.contact-form-wrapper .hs-button {
  background: linear-gradient(90deg, #00ffa3, #3b82f6) !important;
  border: none !important;
  padding: 12px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: transform 0.3s ease !important;
}

.contact-form-wrapper .hs-button:hover {
  transform: translateY(-2px) !important;
}
/* ================= HUBSPOT LABEL FIX ================= */

/* Force labels to be white */
.contact-form-wrapper .hs-form label,
.contact-form-wrapper .hs-form-field label,
.contact-form-wrapper label {
  color: #ffffff !important;
  font-weight: 500 !important;
}

/* Force placeholder text to be readable */
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: rgba(255,255,255,0.7) !important;
}

/* Force field text color */
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
  color: #ffffff !important;
}

/* Improve dropdown arrow visibility */
.contact-form-wrapper select {
  background-color: rgba(255,255,255,0.06) !important;
}

/* Make required asterisk visible */
.contact-form-wrapper .hs-form-required {
  color: #00ffa3 !important;
}
/* ================= CONTACT ACTIONS ================= */
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.contact-note {
  font-size: 13px;
  opacity: 0.75;
}

.contact-note a {
  color: #00ffa3;
  text-decoration: none;
}

.contact-note a:hover {
  text-decoration: underline;
}

/* ================= MODAL (WHITE BACKGROUND) ================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
}

.modal-overlay.open {
  display: flex;
}

.modal {
   width: 100%;
  max-width: 720px;
  height: 90vh;              /* fixed height instead of max-height */
  background: #ffffff;
  color: #0b1220;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-overlay.open .modal {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.modal-header h3 {
  font-size: 18px;
  margin: 0;
}

.modal-close {
  border: none;
  background: rgba(0,0,0,0.06);
  color: #0b1220;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(0,0,0,0.10);
}

.modal-body {
  padding: 18px;
  flex: 1;
  overflow-y: auto;
}

/* ================= HUBSPOT FORM (FOR WHITE MODAL) ================= */
/* Force labels to be dark and readable on white background */
#hubspot-form-modal label,
#hubspot-form-modal .hs-form label,
#hubspot-form-modal .hs-form-field label {
  color: #0b1220 !important;
  font-weight: 500 !important;
}

/* Inputs */
#hubspot-form-modal input,
#hubspot-form-modal textarea,
#hubspot-form-modal select {
  background: #ffffff !important;
  color: #0b1220 !important;
  border: 1px solid rgba(11,18,32,0.18) !important;
  border-radius: 10px !important;
  padding: 12px 12px !important;
}

/* Placeholders */
#hubspot-form-modal input::placeholder,
#hubspot-form-modal textarea::placeholder {
  color: rgba(11,18,32,0.55) !important;
}

/* Focus ring */
#hubspot-form-modal input:focus,
#hubspot-form-modal textarea:focus,
#hubspot-form-modal select:focus {
  outline: none !important;
  border-color: rgba(0,255,163,0.9) !important;
  box-shadow: 0 0 0 4px rgba(0,255,163,0.18) !important;
}

/* Submit button */
#hubspot-form-modal .hs-button {
  background: linear-gradient(90deg, #00ffa3, #3b82f6) !important;
  color: #0b1220 !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 12px 18px !important;
  font-weight: 700 !important;
}

#hubspot-form-modal .hs-button:hover {
  transform: translateY(-1px);
}

/* Small helper text */
#hubspot-form-modal .hs-form-field .hs-error-msg,
#hubspot-form-modal .hs-error-msgs label {
  color: #b91c1c !important;
}
#hubspot-form-modal {
  height: 100%;
}

#hubspot-form-modal form {
  max-height: none !important;
}

#hubspot-form-modal .hs-form {
  width: 100% !important;
}

/* ================= FOOTER ================= */

.footer {
  background: #0b1220;
  padding: 80px 20px 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

/* Subtle gradient line on top */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-left h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 14px;
  opacity: 0.7;
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social a {
  color: white;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-social svg {
  width: 26px;
  height: 26px;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: #00ffa3;
}

/* Bottom */

.footer-bottom {
  max-width: 1100px;
  margin: 60px auto 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  text-decoration: none;
  color: white;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* Responsive */

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= PLATFORM SECTION ================= */

.platform {
  background: #0b0f17;
  color: #ffffff;
  padding: 120px 40px;
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
}

.platform-intro {
  text-align: center;
  margin-bottom: 80px;
}

.platform-intro h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
}

.platform-intro p {
  font-size: 18px;
  color: #c8d0e0;
  max-width: 650px;
  margin: 0 auto;
}

/* Core Engine Layout */

.core-engine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.engine-badge {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4e9eff;
  margin-bottom: 15px;
}

.core-left h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.engine-description {
  font-size: 16px;
  line-height: 1.6;
  color: #c8d0e0;
  margin-bottom: 30px;
}

.engine-metrics .metric {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 10px;
}

.dot.critical {
  background: #ff4d4d;
}

.dot.medium {
  background: #ffc107;
}

.dot.stable {
  background: #28d17c;
}

/* Chat Box Executive Style */

.chat-demo.executive {
  background: #141a26;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.chat-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.chat-title {
  font-weight: 500;
}

.chat-pill {
  font-size: 12px;
  background: rgba(78,158,255,0.15);
  padding: 6px 10px;
  border-radius: 20px;
  color: #4e9eff;
}

.chat-stream {
  min-height: 120px;
}

.chat-hint {
  margin-top: 20px;
  font-size: 13px;
  color: #8c95a8;
}

/* Financial Highlight */

.financial-highlight {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a2235, #0f1626);
  border-radius: 20px;
}

.highlight-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8c95a8;
  margin-bottom: 15px;
}

.highlight-value {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #4e9eff, #8f5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-text {
  font-size: 18px;
  color: #c8d0e0;
}

/* Responsive */

@media (max-width: 900px) {
  .core-engine {
    grid-template-columns: 1fr;
  }

  .highlight-value {
    font-size: 48px;
  }
}

/* ================= COOKIE CONSENT ================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b1220;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  display: none;
  z-index: 4000;
}

.cookie-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text p {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 6px;
}

.cookie-text a {
  color: #00ffa3;
  text-decoration: none;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================= NEWS PAGE ================= */

.news {
  padding: 140px 20px;
  background: #0b1220;
}

.news-container {
  max-width: 1100px;
  margin: auto;
}

.news-header {
  text-align: center;
  margin-bottom: 60px;
}

.news-header h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.news-header p {
  opacity: 0.7;
}

/* Filters */

.news-filters select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0b1220;           /* DARK BACKGROUND */
  color: #ffffff;                /* WHITE TEXT */
  appearance: none;              /* remove default browser style */
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* FIX DROPDOWN OPTIONS (important for some browsers) */
.news-filters select option {
  background: #0b1220;
  color: #ffffff;
}

/* ADD CUSTOM ARROW (premium touch) */
.news-filters {
  position: relative;
  margin-bottom:2%;
}

.news-filters select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23ffffff' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.news-filters input {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: white;
}

/* Grid */

/* ================= NEWS GRID ================= */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* CARD */
.article-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.article-card-content {
  padding: 20px;
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.article-card p {
  color: #666;
  font-size: 14px;
}

/* ================= ELITE ARTICLE (DARK THEME) ================= */

.article {
  padding: 140px 20px 80px 20px;
  background: #0f172a;
  width:100%;
}

/* CENTER EVERYTHING PROPERLY */
.article-wrapper {
  width: 100%;
  max-width: none;        
  margin: 0;              
  display: grid;
  grid-template-columns: 20% 80%;
  gap: 40px;
  padding: 0 40px;        /* optional spacing */
}

/* MAIN COLUMN */
.article-container {
  width: 100%;
  max-width: none; /* REMOVE LIMIT */
}

/* SIDEBAR */
.article-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

/* CATEGORY */
.article-category {
  font-size: 12px;
  text-transform: uppercase;
  color: #00ffa3;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* TITLE */
.article-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

/* META */
.article-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
}

/* COVER */
.article-cover {
  width: 85%;
  max-height:960px;
  border-radius: 16px;
  margin-bottom: 40px;
}

/* CONTENT */
.article-content {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
}

/* HEADINGS */
.article-content h2 {
  font-size: 26px;
  margin-top: 50px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* PARAGRAPHS */
.article-content p {
  margin-bottom: 18px;
}

/* LIST */
.article-content ul {
  padding-left: 20px;
  margin: 20px 0;
}

/* BLOCKQUOTE */
.article-content blockquote {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border-left: 4px solid #00ffa3;
  font-style: italic;
}

/* LINKS */
.article-content a {
  color: #00ffa3;
  text-decoration: none;
}

.article-content a:hover {
  text-decoration: underline;
}

/* ================= SIDEBAR ================= */

.sidebar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.sidebar-card h3,
.sidebar-card h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.sidebar-card p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}

/* BUTTON FIX */
.sidebar-card .btn-primary {
  width: 100%;
  text-align: center;
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
  color: #0b1220;
  font-weight: 600;
}

/* ================= RELATED ARTICLES ================= */

.related {
  margin-top: 60px;
}

.related h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.related a {
  display: block;
  margin-bottom: 10px;
  color: #00ffa3;
  text-decoration: none;
}

.related a:hover {
  text-decoration: underline;
}

/* ================= PROGRESS BAR ================= */

#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
  z-index: 9999;
}

/* ================= MOBILE ================= */

@media (max-width: 900px) {
  .article-wrapper {
    grid-template-columns: 1fr;
  }

  .article-title {
    font-size: 30px;
  }

  .article-sidebar {
    position: relative;
    top: 0;
  }
}


/* ================= PREMIUM NEWS ================= */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* CARD */
.article-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,163,0.4);
}

/* IMAGE */
.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CONTENT */
.article-card-content {
  padding: 20px;
}

.article-card h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.article-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* PAGINATION */
.pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  color: white;
  background: transparent;
}

.page-btn.active {
  background: linear-gradient(90deg, #00ffa3, #3b82f6);
  color: #0b1220;
  border: none;
}

.page-btn:hover {
  opacity: 0.7;
}

.article-image {
  width: 80%;
  max-width: 80%;
  border-radius: 12px;
  margin: 20px 0;
}

.article-image.hero {
  border-radius: 16px;
  margin-bottom: 30px;
}