/* ================================
   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;
}

:root {
  --primary: #0b5ed7;
  --primary-soft: #eef4ff;
  --text: #1f2937;
  --muted: #6b7280;
  --bg-grey: #f6f8fb;
  --border: #e6e9ef;
  --card-bg: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

body {
  background: #ffffff;
  color: var(--text);
}

/* PAGE SPACING (navbar & footer already exist) */
.saas-page {
  padding: 72px 0;
}

.container {
  max-width: 1240px;
  margin: auto;
  padding: 0 28px;
}

/* --------------------------------
   HERO (Enterprise SaaS style)
-------------------------------- */
.hero {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--primary-soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 700;
}

.sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero-points li {
  list-style: none;
  margin-bottom: 14px;
  padding-left: 22px;
  position: relative;
  font-size: 18px;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

.hero-media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* --------------------------------
   SECTIONS
-------------------------------- */
.section {
  padding: 110px 0;
}

.section.white {
  background: #ffffff;
}

.section.grey {
  background: var(--bg-grey);
}

.section h2 {
  font-size: 36px;
  margin-bottom: 56px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

/* --------------------------------
   FEATURE GRID (cards feel premium)
-------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card h4 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.feature-card p {
  font-size: 17px;
  color: var(--muted);
}

/* Hover = enterprise subtle */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

/* --------------------------------
   MEDIA SPLIT
-------------------------------- */
.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.media-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.media-visual img:hover {
  transform: scale(1.02);
}

.media-text p {
  font-size: 18px;
}

/* --------------------------------
   COMPARISON (Traditional vs Digital)
-------------------------------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.comparison-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}

.comparison-card h4 {
  margin-bottom: 18px;
  font-size: 20px;
}

.comparison-card ul li {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--muted);
}

.comparison-card:hover {
  box-shadow: var(--shadow-md);
}

.comparison-card.highlight {
  border: 2px solid var(--primary);
  background: var(--primary-soft);
}

/* --------------------------------
   VIDEO SECTION
-------------------------------- */
.video-center video {
  width: 75%;
  max-width: 960px;
  display: block;
  margin: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* --------------------------------
   BENEFITS LIST
-------------------------------- */
.benefits-list li {
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--muted);
  position: relative;
  padding-left: 22px;
}

.benefits-list li::before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* --------------------------------
   CTA (strong but not loud)
-------------------------------- */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #0b5ed7, #084298);
}

.cta-box {
  text-align: center;
  color: #ffffff;
}

.cta-box h2 {
  font-size: 38px;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 34px;
}

.btn-primary {
  display: inline-block;
  background: #ffffff;
  color: var(--primary);
  padding: 16px 38px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .media-split,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 72px 0;
  }

  .section {
    padding: 80px 0;
  }
}

/* ======================
   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;
  }
}
