/* ========================================
   Homepage (index.html)
   Page-specific styles for the Strongly.AI homepage
   ======================================== */

body {
  font-family: 'Open Sans', Arial, Helvetica, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TRANSPARENT NAV (AT TOP OF PAGE)
   ======================================== */
.navbar.nav-transparent {
  background-color: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.navbar.nav-transparent .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

.navbar.nav-transparent .nav-link:hover {
  color: #fff !important;
}

.navbar.nav-transparent .btn-primary {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

.navbar.nav-transparent .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25) !important;
}

.navbar {
  -webkit-transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background: #212A3A;
  background: -webkit-linear-gradient(180deg, #212A3A 0%, #1a2230 100%);
  background: linear-gradient(180deg, #212A3A 0%, #1a2230 100%);
  padding: 160px 0 0;
  position: relative;
  overflow: visible;
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(5, 163, 74, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(5, 163, 74, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Grid pattern overlay - removed for canvas animation */
.hero-section::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-banner {
  display: inline-block;
  background: rgba(5, 163, 74, 0.12);
  border: 1px solid rgba(5, 163, 74, 0.25);
  border-radius: 50px;
  padding: 0.4rem 1.25rem;
  margin-bottom: 2.5rem;
  color: #66D1D1;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero-banner:hover {
  background: rgba(5, 163, 74, 0.2);
  color: #b3bbff;
  text-decoration: none;
}

.hero-banner i {
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-br {
  display: block;
}

.hero-title .gradient-text {
  background: -webkit-linear-gradient(90deg, #05A34A, #66D1D1);
  background: linear-gradient(90deg, #05A34A, #66D1D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: -webkit-linear-gradient(90deg, #05A34A, #66D1D1);
  background: linear-gradient(90deg, #05A34A, #66D1D1);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 8px 25px -5px rgba(5, 163, 74, 0.4);
  box-shadow: 0 8px 25px -5px rgba(5, 163, 74, 0.4);
}

.btn-hero-primary:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 35px -5px rgba(5, 163, 74, 0.5);
  box-shadow: 0 12px 35px -5px rgba(5, 163, 74, 0.5);
  color: white;
  text-decoration: none;
}

.btn-hero-secondary {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
  color: white;
  text-decoration: none;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  margin-top: 4rem;
  margin-bottom: -60px;
  z-index: 3;
}

.hero-stack {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.stack-borders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1px;
  margin-bottom: -4px;
}

.stack-bar {
  height: 10px;
  border-radius: 8px 8px 0 0;
  background: #000000;
  border: none;
}

.bar-5 { width: 55%; }
.bar-4 { width: 65%; }
.bar-3 { width: 75%; }
.bar-2 { width: 85%; }
.bar-1 { width: 95%; }

.stack-front {
  position: relative;
  z-index: 2;
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-box-shadow:
    0 25px 60px -12px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(5, 163, 74, 0.15),
    0 0 80px rgba(101, 113, 255, 0.1);
  box-shadow:
    0 25px 60px -12px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(5, 163, 74, 0.15),
    0 0 80px rgba(101, 113, 255, 0.1);
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
  background: #f8fafc;
  padding: 5rem 0 4rem;
  padding-top: calc(60px + 4rem);
  border-bottom: 1px solid #e2e8f0;
}

.social-proof-label {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.logo-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem 3.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.logo-grid img {
  max-height: 36px;
  width: auto;
  opacity: 0.4;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.logo-grid img:hover {
  opacity: 0.8;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

/* ========================================
   BENTO FEATURE GRID
   ======================================== */
.bento-section {
  background: white;
  padding: 7rem 0;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #05A34A;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #212A3A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.bento-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  display: block;
}

.bento-card:hover {
  border-color: rgba(5, 163, 74, 0.3);
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 40px -12px rgba(5, 163, 74, 0.15);
  box-shadow: 0 20px 40px -12px rgba(5, 163, 74, 0.15);
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-linear-gradient(90deg, #05A34A, #66D1D1);
  background: linear-gradient(90deg, #05A34A, #66D1D1);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: -webkit-linear-gradient(135deg, rgba(5, 163, 74, 0.1) 0%, rgba(101, 113, 255, 0.1) 100%);
  background: linear-gradient(135deg, rgba(5, 163, 74, 0.1) 0%, rgba(101, 113, 255, 0.1) 100%);
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #05A34A;
}

.bento-icon i, .bento-icon svg {
  width: 26px;
  height: 26px;
}

.bento-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #212A3A;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.bento-card p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ========================================
   LARGE STATEMENT SECTION
   ======================================== */
.statement-section {
  background: #212A3A;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.statement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(5, 163, 74, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(101, 113, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.statement-text {
  position: relative;
  z-index: 2;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.35;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}

.statement-text em {
  font-style: italic;
  background: -webkit-linear-gradient(90deg, #05A34A, #66D1D1);
  background: linear-gradient(90deg, #05A34A, #66D1D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.15em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ========================================
   FEATURE SECTIONS (Two-Column)
   ======================================== */
.feature-section {
  padding: 7rem 0;
}

.feature-section.bg-light {
  background: #f8fafc;
}

.feature-section.bg-white {
  background: white;
}

.feature-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #05A34A;
  margin-bottom: 1rem;
}

.feature-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #212A3A;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.feature-description {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.feature-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: -webkit-linear-gradient(135deg, rgba(5, 163, 74, 0.1) 0%, rgba(101, 113, 255, 0.1) 100%);
  background: linear-gradient(135deg, rgba(5, 163, 74, 0.1) 0%, rgba(101, 113, 255, 0.1) 100%);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #05A34A;
}

.feature-item-icon i, .feature-item-icon svg {
  width: 20px;
  height: 20px;
}

.feature-item-content h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #212A3A;
  margin-bottom: 0.25rem;
}

.feature-item-content p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================
   WHY NOW SECTION
   ======================================== */
.why-now-section {
  background: #212A3A;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.why-now-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(5, 163, 74, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(101, 113, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.why-now-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #05A34A;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-now-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.why-now-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.why-now-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.why-now-stat {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
  background: -webkit-linear-gradient(90deg, #05A34A, #66D1D1);
  background: linear-gradient(90deg, #05A34A, #66D1D1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-now-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.why-now-card p {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 0;
}

.why-now-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.why-now-cta p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
  background: #f8fafc;
  padding: 7rem 0;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
}

.blog-card:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
  border-color: rgba(5, 163, 74, 0.2);
}

.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

.blog-card:hover .card-img-top {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.blog-card .card-img-wrapper {
  overflow: hidden;
}

.blog-card .card-body {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.blog-card .blog-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #05A34A;
  background: rgba(5, 163, 74, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  width: -webkit-fit-content;
  width: fit-content;
}

.blog-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212A3A;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card .blog-excerpt {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: auto;
  font-size: 0.8125rem;
  color: #94a3b8;
}

.blog-meta i {
  width: 14px;
  height: 14px;
  margin-right: 0.25rem;
}

.blog-meta span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-final {
  background: #212A3A;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 20%, rgba(5, 163, 74, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 70% 80%, rgba(101, 113, 255, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-final p {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-final .hero-buttons {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .statement-text {
    font-size: 2.25rem;
  }

  .feature-heading {
    font-size: 2rem;
  }

  .why-now-heading {
    font-size: 2rem;
  }

  .why-now-grid {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .why-now-stat {
    font-size: 2.75rem;
  }

  .cta-final h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 130px 0 0;
  }

  .hero-image {
    margin-top: 3rem;
    margin-bottom: -40px;
  }

  .stack-bar { height: 8px; }
  .stack-borders { gap: 1px; }

  .hero-banner {
    font-size: 0.75rem;
    padding: 0.35rem 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .social-proof {
    padding-top: calc(40px + 3rem);
    padding-bottom: 3rem;
  }

  .logo-grid {
    gap: 1.25rem 2rem;
  }

  .logo-grid img {
    max-height: 24px;
  }

  .bento-section {
    padding: 5rem 0;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .statement-section {
    padding: 5rem 0;
  }

  .statement-text {
    font-size: 1.75rem;
  }

  .feature-section {
    padding: 5rem 0;
  }

  .why-now-section {
    padding: 5rem 0;
  }

  .why-now-heading {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .why-now-card {
    padding: 2rem 1.5rem;
  }

  .why-now-stat {
    font-size: 2.5rem;
  }

  .feature-heading {
    font-size: 1.75rem;
  }

  .feature-description {
    font-size: 1rem;
  }

  .blog-section {
    padding: 5rem 0;
  }

  .blog-card .card-img-top {
    height: 180px;
  }

  .cta-final {
    padding: 5rem 0;
  }

  .cta-final h2 {
    font-size: 2rem;
  }

  .cta-final .hero-buttons {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cta-final .btn-hero-primary,
  .cta-final .btn-hero-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 110px 0 0;
  }

  .hero-content {
    padding: 0 0.5rem;
  }

  .hero-image {
    margin-top: 2rem;
    margin-bottom: -20px;
  }

  .stack-bar { height: 5px; }
  .stack-borders { gap: 1px; }
  .stack-front { border-radius: 8px; }

  .hero-banner {
    font-size: 0.7rem;
    padding: 0.3rem 0.85rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-br {
    display: inline;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .social-proof {
    padding-top: calc(20px + 2.5rem);
    padding-bottom: 2.5rem;
  }

  .social-proof-label {
    font-size: 0.7rem;
  }

  .logo-grid {
    gap: 1rem 1.5rem;
  }

  .logo-grid img {
    max-height: 20px;
  }

  .bento-section,
  .feature-section,
  .blog-section,
  .cta-final,
  .why-now-section {
    padding: 3.5rem 0;
  }

  .why-now-heading {
    font-size: 1.35rem;
    margin-bottom: 2rem;
  }

  .why-now-stat {
    font-size: 2rem;
  }

  .why-now-card {
    padding: 1.5rem 1.25rem;
  }

  .why-now-card h4 {
    font-size: 1rem;
  }

  .why-now-card p {
    font-size: 0.875rem;
  }

  .why-now-cta p {
    font-size: 1rem;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9375rem;
  }

  .bento-card {
    padding: 1.5rem;
  }

  .bento-card h3 {
    font-size: 1.125rem;
  }

  .bento-card p {
    font-size: 0.875rem;
  }

  .statement-section {
    padding: 3.5rem 0;
  }

  .statement-text {
    font-size: 1.25rem;
  }

  .feature-heading {
    font-size: 1.35rem;
  }

  .feature-description {
    font-size: 0.9375rem;
  }

  .feature-item h4 {
    font-size: 0.9375rem;
  }

  .feature-item p {
    font-size: 0.875rem;
  }

  .blog-card .card-img-top {
    height: 160px;
  }

  .blog-card h3 {
    font-size: 1rem;
  }

  .blog-card .blog-excerpt {
    font-size: 0.875rem;
  }

  .cta-final h2 {
    font-size: 1.5rem;
  }

  .cta-final p {
    font-size: 0.9375rem;
  }
}

/* IE11 specific fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .gradient-text {
    background: none;
    color: #05A34A;
  }
  .bento-grid {
    display: -ms-grid;
    -ms-grid-columns: 1fr 1.5rem 1fr;
  }
}
