/* ================================
   NAVBAR – CORPORATE LAYOUT SYSTEM
   ================================ */
.hero-section {
  margin-bottom: 0;
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1040;
}

#site-header .navbar {
  min-height: 72px;
  padding: 0 0;
  background: #ffffff;
  transition:
    box-shadow 0.2s ease,
    padding 0.2s ease;
  z-index: 1030;
}

#site-header .navbar.navbar-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Brand */
#site-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

section {
  margin: 0;
}

.site-logo {
  height: 42px;
  width: auto;
}

/* Center container alignment */
#site-header .navbar .container {
  display: flex;
  align-items: center;
}

/* Navigation */
#site-header .navbar-nav {
  gap: 0.25rem;
}

#site-header .nav-link {
  color: #4a5560;
  padding: 0.6rem 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

#site-header .nav-link:hover,
#site-header .nav-link:focus {
  color: #0d6efd;
  text-decoration: none;
}

/* CTA Button */
#site-header .btn-primary {
  height: 36px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
}

/* LinkedIn Button */
.btn-linkedin {
  height: 36px;
  width: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0a66c2;
  color: #ffffff;
  border-radius: 0.375rem;
  border: none;
  padding: 0;
}

.btn-linkedin svg {
  height: 18px;
  width: 18px;
  fill: currentColor;
}

/* Desktop alignment */
@media (min-width: 992px) {
  #site-header .navbar-collapse {
    display: flex;
    align-items: center;
  }
  #site-header .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  #site-header .navbar {
    min-height: 64px;
  }
  .site-logo {
    height: 38px;
  }
}

/* Offset page content because navbar is fixed */
body {
  padding-top: 50px;
}

/* ===== Base ===== */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1f2937;
  background: #ffffff;
}

a {
  text-decoration: none;
}

/* ===== Containers ===== */
.ea-container {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

.center {
  text-align: center;
}

.light-bg {
  background: #f8fafc;
}

/* ===== Hero ===== */
.ea-hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #ffffff;
  padding: 100px 20px;
}

.ea-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.ea-hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.ea-hero-content p {
  font-size: 18px;
  opacity: 0.9;
}

.ea-hero-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.ea-hero-points li {
  margin-bottom: 8px;
}

.ea-hero-cta {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
}

.btn-secondary {
  border: 1px solid #cbd5f5;
  color: #cbd5f5;
  padding: 12px 22px;
  border-radius: 6px;
}

/* ===== Video ===== */
.ea-hero-video video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* ===== Sections ===== */
.ea-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section-desc {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  color: #475569;
}

/* ===== Steps ===== */
.ea-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.step {
  text-align: center;
}

.step span {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* ===== Benefits ===== */
.ea-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.benefit-card {
  padding: 30px;
  border-radius: 12px;
  background: #f1f5f9;
}

/* ===== Platform Capabilities Section ===== */
.platform-capabilities {
  background: #f8fafc;
  padding: 100px 20px;
}

.platform-capabilities .container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #475569;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 16px;
}

/* ===== Capability Cards ===== */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.capability-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

.capability-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1e40af;
}

.capability-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #334155;
  font-size: 15px;
}

.capability-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: 700;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .platform-capabilities {
    padding: 70px 20px;
  }
}

/* ===== CTA Wrapper ===== */
.ea-cta-wrap {
  background: #f8fafc;
  padding: 120px 20px 80px;
  position: relative;
}

/* ===== Floating CTA Card ===== */
.ea-cta-card {
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 60px 40px;
  border-radius: 20px;

  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;

  box-shadow: 0 30px 80px rgba(37, 99, 235, 0.35);
}

/* ===== CTA Text ===== */
.ea-cta-card h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.ea-cta-card p {
  font-size: 18px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ===== CTA Button ===== */
.ea-cta-card .btn-primary {
  background: #ffffff;
  color: #1e40af;
  padding: 14px 32px;
  font-weight: 700;
  border-radius: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.ea-cta-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .ea-cta-card {
    padding: 45px 25px;
  }

  .ea-cta-card h2 {
    font-size: 28px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .ea-hero-container,
  .ea-steps,
  .ea-benefits,
  .two-col {
    grid-template-columns: 1fr;
  }

  .ea-hero {
    padding: 70px 20px;
  }

  .ea-hero-content h1 {
    font-size: 34px;
  }
}

/* ======================
   Footer
   ====================== */

.site-footer {
  font-size: 25px;
  background: #050c2d;
  color: #ffffff;
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  height: 46px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  max-width: 360px;
}

.footer-socials a {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-right: 0.8rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #38bdf8;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #38bdf8;
}

.footer-contact li {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-legal a {
  margin-right: 1rem;
  color: #94a3b8;
}

.footer-legal a:hover {
  color: #38bdf8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    margin: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}
