@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

:root {
  --primary: #1683BA;
  --primary-hover: #126d9b;
  --text-dark: #1683BA;
  --text-normal: #000000;
  --text-muted: #0c0c0c;
  --text-light: #a0aec0;
  --light-bg: #F2FBFF;
  --dark-bg: #041A25;
  --white: #FFFFFF;
  --font-main: 'Ubuntu', system-ui, -apple-system, sans-serif;
  --container-max: 1400px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-normal);
  background-color: var(--light-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(242, 251, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(22, 131, 186, 0.1);
  transition: all var(--transition-normal);
}

/* Dark Header Variant */
.site-header.header-dark {
  background-color: #041A25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.header-dark .nav-link {
  color: var(--white);
}

.site-header.header-dark .nav-link:hover,
.site-header.header-dark .nav-link.active {
  color: #1683BA;
}

.site-header.header-dark .mobile-toggle {
  color: var(--white);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {

  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 2.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-normal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 14px rgba(22, 131, 186, 0.35);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(22, 131, 186, 0.45);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: rgba(22, 131, 186, 0.08);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-normal);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo img {
  width: auto;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.925rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-column-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
  letter-spacing: 0.3px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--text-light);
  font-size: 0.925rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.legal-link {
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.legal-link:hover {
  color: var(--white);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-menu.is-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    padding: 1.5rem 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #1683BA;
    gap: 0;
    z-index: 1001;
  }

  .nav-menu.is-active .nav-link,
  .site-header.header-dark .nav-menu.is-active .nav-link {
    color: #000000 !important;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.85rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    width: 100%;
    text-align: left;
  }

  .nav-menu.is-active .nav-link:last-child,
  .site-header.header-dark .nav-menu.is-active .nav-link:last-child {
    border-bottom: none;
  }

  .nav-menu.is-active .nav-link:hover,
  .nav-menu.is-active .nav-link.active,
  .site-header.header-dark .nav-menu.is-active .nav-link:hover,
  .site-header.header-dark .nav-menu.is-active .nav-link.active {
    color: #1683BA !important;
  }

  .nav-menu.is-active .nav-link::after {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background-color: var(--dark-bg);
  padding: 5rem 0;
  overflow: hidden;
  position: relative;
}

.hero-section .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title .text-blue {
  color: #1683BA;
  display: inline;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: #1683BA;
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  padding: 0.85rem 1.5rem;
  box-shadow: 0 4px 14px rgba(22, 131, 186, 0.35);
  transition: background-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-cta-btn:hover {
  background-color: #1272a3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 131, 186, 0.45);
}

.hero-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-cta-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-cta-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  margin-top: 0.1rem;
}

.hero-cta-arrow {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.hero-cta-btn:hover .hero-cta-arrow {
  transform: translateX(4px);
}

.hero-subtext {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-image-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HOMEPAGE HERO SVG SUB-ELEMENT ANIMATIONS
   ========================================================================== */
.hero-image-box svg {
  width: 100%;
  max-width: 720px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 35px rgba(22, 131, 186, 0.3));
  transition: filter 0.5s ease;
}

.hero-image-box svg:hover {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 50px rgba(22, 131, 186, 0.5));
}

/* 1. Background Light Ray Beams Pulsing Glow */
.home-hero-svg-light-rays {
  animation: homeHeroRaysPulse 4.5s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 2. Main Grounded Isometric Platform Base Float */
.home-hero-svg-base-platform {
  animation: homeHeroBaseFloat 5s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 3. Primary 3D Data Node Pillar 1 Bounce */
.home-hero-svg-node-pillar-1 {
  animation: homeHeroPillar1Bounce 3.6s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center bottom;
}

/* 4. Secondary 3D Data Node Pillar 2 Bounce */
.home-hero-svg-node-pillar-2 {
  animation: homeHeroPillar2Bounce 4.2s ease-in-out 0.4s infinite alternate;
  transform-box: fill-box;
  transform-origin: center bottom;
}

/* 5. Blue Isometric Trend Chart Line */
.home-hero-svg-chart-line {
  animation: homeHeroChartPulse 3.8s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 6. Floating Analytics Metric Card */
.home-hero-svg-analytics-card {
  animation: homeHeroCardBounce 3.4s ease-in-out 0.2s infinite alternate;
  transform-box: fill-box;
  transform-origin: center bottom;
}

/* Keyframes */
@keyframes homeHeroRaysPulse {
  0% {
    opacity: 0.4;
    transform: translateY(0px) scale(0.98);
  }

  50% {
    opacity: 0.75;
    transform: translateY(-5px) scale(1.01);
  }

  100% {
    opacity: 0.95;
    transform: translateY(-10px) scale(1.03);
  }
}

@keyframes homeHeroBaseFloat {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes homeHeroPillar1Bounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(-1.2deg);
  }

  100% {
    transform: translateY(-26px) rotate(1.5deg);
  }
}

@keyframes homeHeroPillar2Bounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.3deg);
  }

  100% {
    transform: translateY(-22px) rotate(-1.4deg);
  }
}

@keyframes homeHeroChartPulse {
  0% {
    opacity: 0.8;
    transform: translateY(0px) scale(1);
  }

  100% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
  }
}

@keyframes homeHeroCardBounce {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.03);
  }

  100% {
    transform: translateY(-25px) scale(1.06);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content {
    align-items: center;
    max-width: 100%;
    text-align: center;
  }

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

  .hero-cta-group {
    justify-content: center;
  }

  .hero-description {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   PROBLEM / AUDIENCE SECTION
   ========================================================================== */
.problem-section {
  padding: 4rem 0 5rem;
  background-color: var(--light-bg);
}

.problem-card {
  display: grid;
  background: #E2F1F7;
  grid-template-columns: 1.05fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.problem-left {
  background-color: var(--primary);
  color: var(--white);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
}

.problem-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.problem-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: .5rem;
}

.problem-bullets p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.problem-bullets p:last-child {
  margin-bottom: 0;
}

.problem-right {
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  width: 100%;
}

.problem-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.problem-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 1rem;
}

.problem-item-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-normal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.problem-item-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .problem-card {
    grid-template-columns: 1fr;
  }

  .problem-left,
  .problem-right {
    padding: 2.5rem 2rem;
  }

  .problem-title {
    font-size: 1.85rem;
  }
}

@media (max-width: 576px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-left,
  .problem-right {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
  background-color: var(--dark-bg);
  padding: 5rem 0 6rem;
  color: var(--white);
}

.products-title {
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.product-card {
  background-color: #092330;
  border: 1px solid #133B4F;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);

}

.product-image-box {
  background: #6FB3D2;
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-info {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.product-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.btn-product {
  background-color: #E8F4FA;
  color: var(--primary);
  border-radius: 10px;
  padding: 0.8rem 1.75rem;
  width: fit-content;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.btn-product:hover {
  background-color: var(--white);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

.products-footer-text {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3.5rem;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .products-title {
    font-size: 2.1rem;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 576px) {
  .product-image-box {
    min-height: 200px;
    padding: 1.5rem 1rem;
  }

  .product-name {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.hiw-section {
  padding: 6rem 0;
  background-color: var(--white);
  position: relative;
}

.hiw-container {
  max-width: 910px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hiw-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  position: relative;
  align-items: start;
}

.hiw-left {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-right: 3rem;
}

.hiw-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--text-normal);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hiw-line-track {
  position: absolute;
  left: 45%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #000000;
  transform: translateX(-50%);
  z-index: 2;
}

.hiw-line-fill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  background-color: var(--primary);
  height: 0%;
  border-radius: 3px;
  transition: height 0.05s linear;
}

.hiw-right {
  display: flex;
  flex-direction: column;
  padding-left: 3rem;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hiw-icon-box {
  margin-bottom: 1.25rem;
}

.hiw-icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hiw-step-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-normal);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hiw-step-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 620px;
}

.hiw-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin: 3.5rem 0;
  width: 100%;
}

@media (max-width: 992px) {
  .hiw-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hiw-left {
    position: static;
  }

  .hiw-line-track {
    display: none;
  }

  .hiw-right {
    padding-left: 0;
  }
}

/* ==========================================================================
   COMPARISON / STACKING CARDS SECTION
   ========================================================================== */
.comparison-section {
  padding: 6rem 0 8rem;
  background-color: var(--light-bg);
  position: relative;
}

.comparison-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
  gap: 3.5rem;
}

.comparison-left {
  position: sticky;
  top: 130px;
  align-self: start;
}

.comparison-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-normal);
  line-height: 1.22;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.comparison-left .btn {
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.comparison-right {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding-bottom: 4rem;
}

.comparison-card {
  position: sticky;
  background-color: var(--white);
  border: 1px solid #BCE3F5;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  height: 250px;
  width: calc(100% - 100px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.03), 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-1 {
  top: 130px;
  z-index: 1;
  margin-left: 0;
}

.card-2 {
  top: 130px;
  z-index: 2;
  margin-left: 50px;
}

.card-3 {
  top: 130px;
  z-index: 3;
  margin-left: 100px;
}

.comparison-icon-box {
  margin-bottom: 1.5rem;
}

.comparison-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.comparison-card-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-normal);
}

@media (max-width: 992px) {
  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .comparison-left {
    position: static;
  }

  .comparison-right {
    gap: 1.5rem;
    padding-bottom: 0;
  }

  .comparison-card {
    position: static;
    margin-left: 0 !important;
    width: 100%;
    height: auto;
    min-height: auto;
  }
}

/* ==========================================================================
   FACTAL GENESIS SECTION
   ========================================================================== */
.genesis-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.genesis-card {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.genesis-avatar-box {
  flex-shrink: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.genesis-avatar-box svg {
  width: 100%;
  height: 100%;
  display: block;
}

.genesis-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.genesis-title {
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--text-normal);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.genesis-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-normal);
}

.genesis-text strong {
  font-weight: 700;
  color: var(--text-normal);
}

@media (max-width: 992px) {
  .genesis-card {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .genesis-content {
    align-items: center;
  }

  .genesis-title {
    font-size: 2.1rem;
  }
}

/* ==========================================================================
   CHECKLIST CTA SECTION
   ========================================================================== */
.checklist-cta-section {
  padding: 4rem 0 6rem;
  background-color: var(--white);
}

.checklist-card {
  background-color: var(--primary);
  border-radius: 24px;
  padding: 4rem 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(22, 131, 186, 0.12);
}

.checklist-content {
  max-width: 620px;
  z-index: 2;
}

.checklist-title {
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.btn-checklist {
  background-color: #E2F1F7;
  color: var(--primary);
  border-radius: 10px;
  padding: 0.85rem 1.75rem;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-block;
  transition: all var(--transition-fast);
}

.btn-checklist:hover {
  background-color: var(--white);
  color: var(--primary-hover);
  transform: translateY(-2px);
}

.checklist-image-box {
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-img {
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 992px) {
  .checklist-card {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
    gap: 2.5rem;
  }

  .checklist-content {
    max-width: 100%;
  }

  .checklist-title {
    font-size: 2.1rem;
  }

  .checklist-img {
    max-width: 220px;
  }
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  padding: 6rem 0 7rem;
  background-color: var(--light-bg);
  text-align: center;
}

.final-cta-content {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta-title {
  font-size: 2.7rem;
  font-weight: 500;
  color: var(--text-normal);
  line-height: 1.25;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 4rem 0 5rem;
  }

  .final-cta-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .final-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .final-cta-buttons .btn-try-factal {
    width: 100%;
  }
}

/* ==========================================================================
   PLATFORM PAGE HERO SECTION (DARK SECTION)
   ========================================================================== */
.platform-hero-section {
  background-color: var(--dark-bg);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.platform-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.platform-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.platform-hero-title {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.5px;
}

.platform-hero-title .text-blue {
  color: #1683BA;
  display: inline;
}

.platform-hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #FFFFFF;
  margin-bottom: 0;
  max-width: 480px;
}

.platform-hero-image-box {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast);
}

/* ==========================================================================
   PLATFORM HERO SVG SUB-ELEMENT ANIMATIONS
   ========================================================================== */
.platform-hero-image-box svg {
  width: 100%;
  max-width: 580px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.22)) drop-shadow(0 0 35px rgba(22, 131, 186, 0.3));
  transition: filter 0.5s ease;
}

.platform-hero-image-box svg:hover {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 45px rgba(22, 131, 186, 0.45));
}

/* 1. Background Light Beam Pulsing Glow */
.platform-hero-svg-glow-beam {
  animation: platformHeroBeamPulse 4s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 2. Main Grounded Platform Base Float */
.platform-hero-svg-main-platform {
  animation: platformHeroBaseFloat 5s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 3. Top Blue Floating Data Block (Major Float & Tilt) */
.platform-hero-svg-top-floating-card {
  animation: platformHeroTopCardBounce 3.8s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center bottom;
}

/* 4. Elevated Light-Blue Badge Card 1 */
.platform-hero-svg-badge-card-1 {
  animation: platformHeroBadge1Float 3.4s ease-in-out 0.3s infinite alternate;
  transform-box: fill-box;
  transform-origin: center bottom;
}

/* 5. Left Floating 3D Block 2 */
.platform-hero-svg-badge-card-2 {
  animation: platformHeroBadge2Float 4.2s ease-in-out 0.6s infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 6. Right Floating Crystal Chip */
.platform-hero-svg-floating-chip-right {
  animation: platformHeroChipRight 3.2s ease-in-out 0.2s infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 7. Lower Left Floating Crystal Chip */
.platform-hero-svg-floating-chip-left {
  animation: platformHeroChipLeft 3.6s ease-in-out 0.8s infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* Keyframes */
@keyframes platformHeroBeamPulse {
  0% {
    opacity: 0.45;
    transform: translateY(0px) scale(0.98);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-6px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(-12px) scale(1.04);
  }
}

@keyframes platformHeroBaseFloat {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-8px);
  }
}

@keyframes platformHeroTopCardBounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(-1.2deg);
  }

  100% {
    transform: translateY(-28px) rotate(1.6deg);
  }
}

@keyframes platformHeroBadge1Float {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.03);
  }

  100% {
    transform: translateY(-24px) scale(1.07);
  }
}

@keyframes platformHeroBadge2Float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.4deg);
  }

  100% {
    transform: translateY(-22px) rotate(-1.3deg);
  }
}

@keyframes platformHeroChipRight {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-18px) translateX(4px);
  }

  100% {
    transform: translateY(-30px) translateX(8px);
  }
}

@keyframes platformHeroChipLeft {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-14px) translateX(-3px);
  }

  100% {
    transform: translateY(-24px) translateX(-6px);
  }
}

@media (max-width: 992px) {
  .platform-hero-section {
    padding: 4rem 0 5rem;
  }

  .platform-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .platform-hero-content {
    align-items: flex-start;
    text-align: left;
  }

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

  .platform-hero-description {
    max-width: 100%;
  }

  .platform-hero-image-box {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .platform-hero-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   FACTAL INTRO SECTION (SECTION 2)
   ========================================================================== */
.factal-intro-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.factal-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.factal-intro-image-box {
  position: relative;
  width: 100%;
  background-color: #71B4D5;
  border-radius: 24px;
  padding: 3rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.factal-intro-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.factal-badge-img {
  position: absolute;
  height: auto;
  max-width: 230px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
  z-index: 3;
}

/* Badge 1: Top Left */
.badge-top-left {
  top: 18%;
  left: -7%;
  animation: promptBadgeFloat 4s ease-in-out infinite alternate;
}

/* Badge 2: Bottom Left */
.badge-bottom-left {
  bottom: 12%;
  left: -6%;
  animation: promptBadgeFloat 3.6s ease-in-out infinite alternate;
  animation-delay: -1.2s;
}

/* Badge 3: Bottom Right */
.badge-bottom-right {
  bottom: 14%;
  right: -6%;
  animation: promptBadgeFloat 4.2s ease-in-out infinite alternate;
  animation-delay: -2.4s;
}

.platform-hero-img,
.factal-intro-main-img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: productCardAmbientGlow 5s ease-in-out infinite alternate;
}

.platform-hero-img:hover,
.factal-intro-main-img:hover {
  transform: translateY(-8px) scale(1.015);
  filter: drop-shadow(0 25px 45px rgba(22, 131, 186, 0.35));
}

@keyframes promptBadgeFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }

  100% {
    transform: translateY(-20px) rotate(1.2deg);
  }
}

@keyframes productCardAmbientGlow {
  0% {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
  }

  100% {
    filter: drop-shadow(0 25px 45px rgba(22, 131, 186, 0.3));
  }
}

.factal-intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-tag {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1683BA;
  margin-bottom: 0.75rem;
}

.factal-intro-title {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-normal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.factal-intro-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ==========================================================================
   WHAT MAKES IT DIFFERENT SECTION (SECTION 3)
   ========================================================================== */
.factal-different-section {
  padding: 4rem 0 6rem;
  background-color: var(--white);
}

.factal-different-section .container {
  max-width: 1150px;
}

.factal-different-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}

.factal-different-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-normal);
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}

.factal-different-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text-muted);
}

.factal-different-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.factal-different-card {
  background: #EBF6FA;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.factal-card-image-box {
  width: 100%;
  min-height: 240px;
  /*border: 2px dashed rgba(22, 131, 186, 0.25);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.5);*/
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.factal-card-body {
  display: flex;
  flex-direction: column;
}

.factal-card-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-normal);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.factal-card-desc {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.factal-different-cta {
  display: flex;
  justify-content: center;
}

.btn-try-factal {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background-color: #1683BA;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(22, 131, 186, 0.35);
}

.btn-try-factal:hover {
  background-color: #126d9b;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 131, 186, 0.45);
}

.cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-main {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-sub {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.cta-arrow {
  width: 22px;
  height: 22px;
}

@media (max-width: 992px) {

  .factal-intro-grid,
  .factal-different-grid {
    grid-template-columns: 1fr;
  }

  .factal-different-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   SIGNALS INTRO SECTION (SECTION 4)
   ========================================================================== */
.signals-intro-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
}

.signals-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.signals-intro-image-box {
  width: 100%;
  height: 100%;
  background-color: #71B4D5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.signals-intro-image-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.signals-intro-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signals-intro-title {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-normal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.signals-intro-description {
  font-size: 1.025rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.signals-intro-description:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   SIGNALS WHAT MAKES IT DIFFERENT SECTION (SECTION 5)
   ========================================================================== */
.signals-different-section {
  padding: 4rem 0 5rem;
  background-color: var(--light-bg);
}

.signals-different-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.signals-different-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-normal);
  letter-spacing: -0.4px;
}

.signals-different-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.signals-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.signals-card-image-box {
  width: 100%;
  max-width: 250px;
  min-height: 200px;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signals-card-body {
  display: flex;
  flex-direction: column;
}

.signals-card-text {
  font-size: 0.975rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.platform-hero-image-box img,
.factal-card-image-box img,
.signals-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.signals-card-text strong {
  color: var(--text-normal);
  font-weight: 700;
}

/* ==========================================================================
   SIGNALS EXAMPLE & CTA SECTION (SECTION 6)
   ========================================================================== */
.signals-example-section {
  padding: 2rem 0 6rem;
  background-color: var(--light-bg);
}

.signals-example-grid {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 3.5rem;
  align-items: center;
}

.signals-example-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.example-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.example-title {
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--text-normal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.3px;
}

.example-description {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.signals-cta {
  display: flex;
  align-items: center;
}

.signals-example-image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.signals-example-img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {

  .signals-intro-grid,
  .signals-different-grid,
  .signals-example-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   TIME-SAVINGS CALCULATOR SECTION (SECTION 7)
   ========================================================================== */
.calculator-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.calculator-card-dark {
  background-color: #041A25;
  border-radius: 24px;
  padding: 4rem 3.5rem 3.5rem;
  color: var(--white);
}

.calculator-title {
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
}

.calculator-inner-white {
  background-color: var(--white);
  border-radius: 20px;
  padding: 3rem;
  color: var(--text-normal);
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.1fr 1px 0.9fr;
  gap: 3rem;
  align-items: center;
}

.calc-divider {
  background-color: rgba(22, 131, 186, 0.15);
  height: 100%;
}

.calculator-controls {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-normal);
}

.calc-value {
  font-weight: 700;
  color: var(--text-normal);
}

.calc-range {
  width: 100%;
  accent-color: #1683BA;
  cursor: pointer;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.res-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: #1683BA;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
}

.res-num {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-normal);
  display: block;
}

.calc-info-box {
  background-color: #EBF6FA;
  border-radius: 12px;
  padding: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.calc-info-box strong {
  color: var(--text-normal);
}

.calculator-cta {
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   BUILT FOR BUSINESS LEADERS SECTION (SECTION 8)
   ========================================================================== */
.leaders-section {
  padding: 5rem 0 6rem;
  background-color: var(--white);
}

.leaders-section .comtainer {
  max-width: 1050px;
}

.leaders-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-normal);
  margin-bottom: 2.5rem;
  letter-spacing: -0.4px;
}

.leaders-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  border-bottom: 2px solid rgba(22, 131, 186, 0.15);
  margin-bottom: 3rem;
}

.tab-btn {
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-normal);
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
  color: #1683BA;
  font-weight: 700;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #1683BA;
  border-radius: 3px;
}

.leaders-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 950px;
  margin: 0 auto;
}

.leaders-card {
  background-color: #E2F1F7;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leaders-card-icon {
  margin-bottom: 1rem;
}

.leaders-card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.leaders-card-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1683BA;
  margin-bottom: 1rem;
}

.leaders-card-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-normal);
  max-width: 440px;
}

@media (max-width: 992px) {
  .calculator-section {
    padding: 3.5rem 0;
  }

  .calculator-card-dark {
    padding: 2.5rem 2rem 2rem;
    border-radius: 20px;
  }

  .calculator-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .calculator-inner-white {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .calc-divider {
    display: none;
  }

  .leaders-tabs {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .leaders-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .calculator-card-dark {
    padding: 1.75rem 1rem 1.5rem;
    border-radius: 16px;
  }

  .calculator-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .calculator-inner-white {
    padding: 1.25rem 1rem;
    border-radius: 12px;
  }

  .calculator-controls {
    gap: 1.25rem;
  }

  .calc-label-row {
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .calc-value {
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .res-num {
    font-size: 2.2rem;
  }

  .calc-info-box {
    padding: 0.85rem;
    font-size: 0.825rem;
  }
}

/* ==========================================================================
   PLATFORM HOW IT WORKS SECTION (SECTION 9)
   ========================================================================== */
.platform-hiw-section {
  background-color: #1683BA;
  color: #FFFFFF;
  padding: 6rem 0;
}

.platform-hiw-section .hiw-title {
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 500;
}

.platform-hiw-section .hiw-line-track {
  background-color: rgba(255, 255, 255, 0.3);
  width: 2px;
}

.platform-hiw-section .hiw-line-fill {
  background-color: #FFFFFF;
  width: 4px;
}

.platform-hiw-section .hiw-step-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
}

.platform-hiw-section .hiw-divider {
  background-color: rgba(255, 255, 255, 0.25);
  height: 1px;
  width: 100%;
  margin: 2.25rem 0;
}

/* ==========================================================================
   INTEGRATIONS SECTION (SECTION 10)
   ========================================================================== */
.integrations-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.integrations-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.integrations-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-normal);
  margin-bottom: 3rem;
  letter-spacing: -0.4px;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.integration-card {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.integration-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.integration-card img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.integrations-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.roadmap-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roadmap-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-normal);
  margin-bottom: 0.5rem;
}

.roadmap-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PLATFORM COMPARISON SECTION (SECTION 11)
   ========================================================================== */
.comparison-table-section {
  padding: 0 0 6rem 0;
  background-color: var(--white);
}

.comparison-table-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-normal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.4px;
}

.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  padding-top: 50px;
}

.comparison-table-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(215px, 1fr));
  gap: 1rem;
  min-width: 1140px;
  border: 1px solid #1683BA;
  background: #F2FBFF;
  border-radius: 22px;
}

.comparison-column {
  border: 1.5px solid #1683BA;
  border-radius: 20px;
  padding: 1rem 0.85rem 1.25rem;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
}

.criteria-column {
  background-color: #1683BA;
  border-color: #1683BA;
  color: var(--white);
}

.factal-column {
  border-color: #1683BA;
  background-color: #F7FCFE;
}

.column-header {
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
}

.header-pill {
  background-color: var(--white);
  color: var(--text-normal);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.6rem 0.75rem;
  border-radius: 12px;
  border: 1.5px solid #1683BA;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  margin-top: -40px;
  white-space: nowrap;
}

.criteria-column .header-pill {
  border-color: transparent;
  color: var(--text-normal);
  border: 1.5px solid #1683BA;
}

.column-cells {
  display: flex;
  flex-direction: column;
}

.comparison-column .cell {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px dashed rgba(22, 131, 186, 0.15);
  box-sizing: border-box;
}

.comparison-column .cell:last-child {
  border-bottom: none;
}

.comparison-column .cell:nth-child(1) {
  height: 70px;
}

.comparison-column .cell:nth-child(2) {
  height: 140px;
}

.comparison-column .cell:nth-child(3) {
  height: 140px;
}

.comparison-column .cell:nth-child(4) {
  height: 120px;
}

.comparison-column .cell:nth-child(5) {
  height: 90px;
}

.criteria-column .cell {
  color: var(--white);
  font-weight: 600;
  font-size: 0.925rem;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.factal-column .cell {
  color: var(--text-normal);
  font-weight: 500;
}

/* ==========================================================================
   PLATFORM CTA SECTION (SECTION 12)
   ========================================================================== */
.platform-cta-section {
  padding: 5.5rem 0 6.5rem;
  background-color: #E5F3F9;
}

.platform-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.platform-cta-title {
  font-size: 2.3rem;
  font-weight: 500;
  color: var(--text-normal);
  margin-bottom: 2.5rem;
  letter-spacing: -0.4px;
}

.platform-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   BLOGS PAGE STYLES
   ========================================================================== */
.blogs-hero-section {
  padding: 6rem 0 7rem;
  background-color: var(--dark-bg);
  color: var(--white);
}

.blogs-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.blogs-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blogs-hero-title {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.blogs-hero-title .text-blue {
  color: #1683BA;
  display: inline;
}

.blogs-hero-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 520px;
}

.blogs-hero-image-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.blogs-hero-image-box svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 35px rgba(22, 131, 186, 0.35));
  transition: filter 0.5s ease;
}

.blogs-hero-image-box svg:hover {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 50px rgba(22, 131, 186, 0.55));
}

/* ==========================================================================
   BLOG HERO SVG SUB-ELEMENT ANIMATIONS
   ========================================================================== */

/* 1. Main 3D Book Base Float */
.blog-hero-svg-main-book {
  animation: blogHeroBookFloat 4.8s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 2. Floating Pencil/Quill Pointer Tool */
.blog-hero-svg-floating-pencil {
  animation: blogHeroPencilBounce 3.6s ease-in-out 0.3s infinite alternate;
  transform-box: fill-box;
  transform-origin: center center;
}

/* 3. Top 3D Blue Badge Card */
.blog-hero-svg-top-badge {
  animation: blogHeroTopBadgeBounce 4.2s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center bottom;
}

/* Keyframes */
@keyframes blogHeroBookFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1deg);
  }

  100% {
    transform: translateY(-18px) rotate(1.2deg);
  }
}

@keyframes blogHeroPencilBounce {
  0% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) translateX(-6px) rotate(-3deg);
  }

  100% {
    transform: translateY(-28px) translateX(-12px) rotate(4deg);
  }
}

@keyframes blogHeroTopBadgeBounce {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-14px) scale(1.03);
  }

  100% {
    transform: translateY(-24px) scale(1.06);
  }
}

/* OUR BLOGS SECTION */
.our-blogs-section {
  padding: 5rem 0 7rem;
  background-color: var(--white);
}

.our-blogs-title {
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-normal);
  margin-bottom: 4rem;
  letter-spacing: -0.4px;
}

.blogs-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.blog-post-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.blog-img-box {
  width: 280px;
  min-width: 280px;
  height: 180px;
  border-radius: 16px;

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.blog-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.blog-date {
  font-size: 0.95rem;
  font-weight: 500;
  color: #8899A6;
  margin-bottom: 0.75rem;
}

.blog-post-title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1.25rem;
}

.blog-post-title a {
  color: var(--text-normal);
  transition: color var(--transition-fast);
}

.blog-post-title a:hover {
  color: #1683BA;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1683BA;
  transition: transform var(--transition-fast);
}

.blog-read-more:hover {
  transform: translateX(4px);
}

.blog-divider {
  height: 1px;
  background-color: #E2E8F0;
  width: 100%;
}

@media (max-width: 992px) {
  .blogs-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .blog-post-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .blog-img-box {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }

  .blogs-hero-title {
    font-size: 2.2rem;
  }

  .our-blogs-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}

/* ==========================================================================
   USE CASES PAGE STYLES
   ========================================================================== */
.use-cases-hero-section {
  padding: 6rem 0 7rem;
  background-color: var(--dark-bg);
  color: var(--white);
}

.use-cases-hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 0rem;
  align-items: center;
}

.use-cases-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.use-cases-hero-title {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.use-cases-hero-title .text-blue {
  color: #1683BA;
  display: inline;
}

.use-cases-hero-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 540px;
}

.use-cases-hero-image-box {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.use-cases-hero-img,
.use-cases-hero-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 15px 35px rgba(22, 131, 186, 0.25));
  animation: heroSvgAmbientGlow 4s ease-in-out infinite alternate;
}

/* Solid Grounded Base Blocks */
.use-cases-hero-svg .svg-animated-layer-1,
.use-cases-hero-svg .svg-animated-layer-2,
.use-cases-hero-svg .svg-animated-layer-3,
.use-cases-hero-svg .svg-animated-layer-4,
.use-cases-hero-svg .svg-animated-layer-5,
.use-cases-hero-svg .svg-animated-layer-6,
.use-cases-hero-svg .svg-animated-layer-7,
.use-cases-hero-svg .svg-animated-layer-8,
.use-cases-hero-svg .svg-animated-layer-9,
.use-cases-hero-svg .svg-animated-layer-10,
.use-cases-hero-svg .svg-animated-layer-11,
.use-cases-hero-svg .svg-animated-layer-12,
.use-cases-hero-svg .svg-animated-layer-13,
.use-cases-hero-svg .svg-animated-layer-14 {
  /* Keep all base blocks & platform plates grounded */
  transform: translateY(0);
}

/* All User Persona Badges standing on top of blocks bounce continuously */
.use-cases-hero-svg .svg-badge-user-scallop,
.use-cases-hero-svg .svg-badge-user-circle,
.use-cases-hero-svg .svg-role-badge {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: badgeUserCircleBounce 3.6s ease-in-out infinite alternate;
}

.use-cases-hero-svg .svg-badge-user-scallop {
  animation: badgeUserScallopBounce 3.4s ease-in-out infinite alternate;
}

.use-cases-hero-svg .svg-role-badge-2 {
  animation: badgeUserCircleBounce 3.2s ease-in-out infinite alternate;
  animation-delay: -0.6s;
}

.use-cases-hero-svg .svg-role-badge-3 {
  animation: badgeUserCircleBounce 3.8s ease-in-out infinite alternate;
  animation-delay: -1.2s;
}

.use-cases-hero-svg .svg-role-badge-4 {
  animation: badgeUserCircleBounce 3.4s ease-in-out infinite alternate;
  animation-delay: -1.8s;
}

.use-cases-hero-svg .svg-role-badge-5 {
  animation: badgeUserCircleBounce 3.6s ease-in-out infinite alternate;
  animation-delay: -2.4s;
}

.use-cases-hero-svg .svg-badge-user-circle {
  animation: badgeUserCircleBounce 3.5s ease-in-out infinite alternate;
  animation-delay: -3.0s;
}

/* Connecting Nodes & Data Lines Animation */
.use-cases-hero-svg .svg-node-dot {
  animation: heroNodePulse 2.2s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}

.use-cases-hero-svg .svg-pulse-path {
  animation: heroLineShimmer 3s ease-in-out infinite alternate;
}

/* Keyframe Definitions for User Badges */
@keyframes badgeUserScallopBounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(-1.5deg);
  }

  100% {
    transform: translateY(-26px) rotate(1.8deg);
  }
}

@keyframes badgeUserCircleBounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(1.5deg);
  }

  100% {
    transform: translateY(-28px) rotate(-2deg);
  }
}

@keyframes heroNodePulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
    fill: #CED5EB;
  }

  100% {
    transform: scale(1.8);
    opacity: 1;
    fill: #40B5F0;
  }
}

@keyframes heroLineShimmer {
  0% {
    opacity: 0.4;
    stroke: #CED5EB;
  }

  100% {
    opacity: 1;
    stroke: #1683BA;
  }
}

@keyframes heroSvgAmbientGlow {
  0% {
    filter: drop-shadow(0 15px 30px rgba(22, 131, 186, 0.18));
  }

  100% {
    filter: drop-shadow(0 25px 45px rgba(64, 181, 240, 0.4));
  }
}

/* USE CASES TABS SECTION */
.use-cases-main-section {
  padding: 5rem 0 0rem;
  background-color: var(--white);
}

.use-cases-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-bottom: 2px solid #E2E8F0;
  margin-bottom: 4rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.uc-tab-btn {
  background: none;
  border: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.uc-tab-btn:hover {
  color: #1683BA;
}

.uc-tab-btn.active {
  color: #1683BA;
  font-weight: 600;
}

.uc-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3.5px;
  background-color: #1683BA;
  border-radius: 2px;
}

/* ROLE DETAIL DISPLAY */
.use-case-detail-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.role-display-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  color: var(--text-normal);
  margin-bottom: 0.2rem;
  letter-spacing: -0.4px;
}

.uc-block {
  width: 100%;
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.uc-sub-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--text-normal);
  margin-bottom: .25rem;
  margin-top: .5rem;
  letter-spacing: -0.3px;
  text-align: center;
}

.uc-block-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.sample-questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
  justify-content: center;
}

.sample-questions-grid.two-cards {
  grid-template-columns: repeat(2, 1fr);
  max-width: 660px;
  margin: 2rem auto 0;
}

.sample-question-card {
  background-color: #EBF6FA;
  border-radius: 16px;
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sq-icon-box {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sq-icon {
  width: 32px;
  height: 32px;
}

.sq-text {
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-normal);
  text-align: center;
}

.btn-book-demo {
  padding: 0.75rem 2.25rem;
  font-size: 1.05rem;
  border-radius: 10px;
  margin: 1.5rem auto 0;
  display: inline-block;
}

/* FOUNDER VIDEO SECTION */
.founder-video-section {
  padding: 3rem 0 6rem;
  background-color: var(--white);
}

.founder-video-card {
  background-color: #041A25;
  border-radius: 24px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
  padding: 4rem 2rem;
}

.founder-video-title {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.5px;
}

.animated-play-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #1683BA;
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(22, 131, 186, 0.5);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.animated-play-btn:hover {
  transform: scale(1.1);
  background-color: #126FA0;
}

.play-pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(22, 131, 186, 0.6);
  animation: playPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes playPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* VIDEO MODAL POPUP */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(4, 26, 37, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-container {
  width: 100%;
  max-width: 900px;
  position: relative;
  background-color: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.video-modal-overlay.active .video-modal-container {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: opacity var(--transition-fast);
  z-index: 10;
}

.video-modal-close:hover {
  opacity: 0.8;
}

.video-modal-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-modal-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Why We Built This Quote Section */
.why-built-quote-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-paragraph {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.quote-mark {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.quote-mark-start {
  margin-right: 0.5rem;
  vertical-align: -2px;
}

.quote-mark-end {
  margin-left: 0.5rem;
  vertical-align: -2px;
}

.quote-mark img {
  width: 22px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.founder-info {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.founder-role {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
  .use-cases-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .founder-video-card {
    min-height: 340px;
  }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */
.about-hero-section {
  padding: 6rem 0 7rem;
  background-color: var(--dark-bg);
  color: var(--white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero-title {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.about-hero-title .text-blue {
  color: #1683BA;
  display: inline;
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-light);
}

.about-hero-image-box {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.about-hero-image-box svg,
.about-hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  overflow: visible;
  animation: aboutHeroFloat 4.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 35px rgba(22, 131, 186, 0.2));
}

/* MISSION SECTION */
.mission-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.mission-card {
  background-color: #1683BA;
  border-radius: 24px;
  padding: 0rem 3.5rem;
  color: var(--white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.mission-image-box {
  width: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: 3rem 0 0 0;
}

.mission-image-box svg,
.mission-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  overflow: visible;
  animation: missionFloat 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 30px rgba(255, 255, 255, 0.25));
}

@keyframes aboutHeroFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
    filter: drop-shadow(0 15px 30px rgba(22, 131, 186, 0.18));
  }

  50% {
    transform: translateY(-14px) rotate(-0.8deg);
  }

  100% {
    transform: translateY(-24px) rotate(1deg);
    filter: drop-shadow(0 25px 50px rgba(64, 181, 240, 0.4));
  }
}

@keyframes missionFloat {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.015);
  }

  100% {
    transform: translateY(-20px) scale(1.025);
  }
}

.about-hero-image-box .about-hero-svg-floating-card-1 {
  animation: aboutHeroBadgeBounce 3.6s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center bottom;
}

@keyframes aboutHeroBadgeBounce {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(-1.2deg);
  }

  100% {
    transform: translateY(-26px) rotate(1.5deg);
  }
}



.mission-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission-tag {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.mission-title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.mission-description {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

/* WHY WE BUILT THIS SECTION */
.why-built-section {
  padding: 6rem 0 7rem;
  background-color: #041A25;
  color: var(--white);
}

.why-built-title {
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3.5rem;
  letter-spacing: -0.4px;
}

.why-built-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.why-built-quote-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--white);
}

.quote-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.founder-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

.founder-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.95rem;
  color: var(--text-light);
}

.founder-avatar-box {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px dashed rgba(22, 131, 186, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}

.founder-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOW WE THINK ABOUT AI SECTION */
.ai-ethos-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.ai-ethos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-ethos-image-box {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ai-ethos-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ai-ethos-title {
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--text-normal);
  margin-bottom: 1.25rem;
  letter-spacing: -0.4px;
}

.ai-ethos-description {
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 992px) {

  .about-hero-grid,
  .mission-grid,
  .why-built-grid,
  .ai-ethos-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .founder-avatar-box {
    width: 240px;
    height: 240px;
  }
}

/* ==========================================================================
   CONTACT US PAGE STYLES
   ========================================================================== */
.contact-hero-section {
  padding: 5rem 0 6rem;
  background-color: var(--dark-bg);
  color: var(--white);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-hero-title {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.contact-hero-title .text-blue {
  color: #1683BA;
  display: inline;
}

.contact-hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.contact-hero-image-box {
  width: 100%;
  max-width: 420px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* CONTACT FORM CARD */
.contact-form-card {
  background-color: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  color: var(--text-normal);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-group {
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text-normal);
  background-color: var(--white);
  border: 1px solid #D1D5DB;
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  font-family: inherit;
}

.form-control::placeholder {
  color: #9CA3AF;
}

.form-control:focus {
  border-color: #1683BA;
  box-shadow: 0 0 0 3px rgba(22, 131, 186, 0.15);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn-contact-submit {
  padding: 0.75rem 2.5rem;
  font-size: 1.05rem;
  border-radius: 10px;
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* PATHS SECTION */
.contact-paths-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.contact-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.path-card {
  background-color: #EBF6FA;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.path-card-title {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-normal);
  margin-bottom: 1rem;
}

.path-card-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* MAP SECTION */
.contact-map-section {
  padding: 0 0 6rem;
  background-color: var(--white);
}

.contact-map-box {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #E2E8F0;
  height: 420px;
  background-color: #F8FAFC;
}

.contact-google-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 992px) {

  .contact-hero-grid,
  .contact-paths-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .btn-contact-submit {
    width: 100%;
  }
}

/* ==========================================================================
   BLOG POST DETAIL PAGE STYLES (Dark Hero Header & White 2-Col Layout)
   ========================================================================== */

/* Dark Hero Header Section (Title, Breadcrumbs, Meta) */
.blog-detail-hero {
  width: 100%;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
}

.blog-hero-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blog-detail-title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

/* Meta & Breadcrumb Bar below Title inside Dark Section */
.blog-detail-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: 0;
  padding-top: 0.5rem;
  flex-wrap: wrap;
}

.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  flex-wrap: wrap;
}

.blog-breadcrumbs a {
  color: #1683BA;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.blog-breadcrumbs a:hover {
  color: #40B5F0;
}

.blog-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.4);
}

.blog-breadcrumbs .current {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.blog-meta-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.blog-meta-info .sep {
  color: rgba(255, 255, 255, 0.35);
}

/* Main Article Body Container (1050px width - White BG) */
.blog-detail-main {
  background-color: var(--white);
  padding: 3.5rem 0 6rem;
}

.blog-detail-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Stacked Top Layout on White BG: Featured Image (Top) & Article Summary (Below) */
.blog-top-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.blog-featured-image-box {
  width: 100%;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background-color: #041A25;
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Article Summary Card (On White BG) */
.blog-summary-card {
  background-color: #F2FBFF;
  border: 1.5px solid #1683BA;
  border-radius: 16px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.summary-label {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1683BA;
  margin-bottom: 0.75rem;
  letter-spacing: 0.2px;
}

.blog-summary-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 0;
}

/* Body Content Typography */
.blog-post-body {
  color: #000000;
}

.blog-post-body h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin: 3.5rem 0 1.25rem;
  letter-spacing: -0.4px;
  line-height: 1.3;
}

.blog-post-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #000000;
  margin: 2.25rem 0 1rem;
}

.blog-post-body p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #000000;
  margin-bottom: 1.6rem;
}

.blog-post-body ul,
.blog-post-body ol {
  font-size: 1.075rem;
  line-height: 1.75;
  color: #000000;
  margin-bottom: 2rem;
  padding-left: 1.75rem;
}

.blog-post-body li {
  margin-bottom: 0.75rem;
  color: #000000;
}

.blog-post-body strong {
  color: #000000;
}

/* Key Takeaways Card */
.key-takeaways-card {
  background-color: #041A25;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  margin: 4rem 0;
}

.blog-post-body .key-takeaways-card h3.takeaways-title,
.key-takeaways-card .takeaways-title {
  font-size: 1.8rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem !important;
  margin-top: 0 !important;
  letter-spacing: -0.3px !important;
}

.key-takeaways-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.key-takeaways-card li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.075rem;
  line-height: 1.65;
  color: #FFFFFF !important;
  margin-bottom: 1rem;
}

.key-takeaways-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #1683BA;
  font-size: 1.5rem;
  line-height: 1;
}

.key-takeaways-card li:last-child {
  margin-bottom: 0;
}

/* FAQ Accordion Section in Blog Post */
.blog-faq-section {
  margin: 4rem 0;
}

.faq-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2rem;
  letter-spacing: -0.4px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-item {
  background-color: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-accordion-item.active {
  border-color: #1683BA;
  background-color: var(--white);
  box-shadow: 0 4px 14px rgba(22, 131, 186, 0.08);
}

.faq-accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  gap: 1rem;
  font-family: inherit;
  transition: color var(--transition-fast);
}

.faq-accordion-header:hover {
  color: #1683BA;
}

.faq-icon {
  color: #1683BA;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
  padding: 0 1.5rem;
}

.faq-accordion-item.active .faq-accordion-body {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-accordion-body p {
  font-size: 1.025rem;
  line-height: 1.65;
  color: #000000;
  margin-bottom: 0;
}

/* Post Bottom CTA Banner */
.blog-post-cta {
  background-color: #EBF6FA;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 4rem;
}

.blog-post-cta h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.blog-post-cta p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #000000;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.cta-btns-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .blog-detail-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .blog-detail-title {
    font-size: 2.1rem;
  }

  .blog-top-grid {
    gap: 1.75rem;
    margin-bottom: 2.5rem;
  }

  .blog-featured-image-box {
    height: 320px;
  }
}

@media (max-width: 576px) {
  .blog-detail-hero {
    padding: 2.5rem 0 2rem;
  }

  .blog-detail-title {
    font-size: 1.6rem;
  }

  .blog-detail-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .blog-featured-image-box {
    height: 240px;
    border-radius: 12px;
  }

  .blog-summary-card,
  .key-takeaways-card,
  .blog-post-cta {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }
}

/* ==========================================================================
   SCROLL & ENTRY ANIMATIONS (SUBTLE FADE-UP & FADE-IN FOR ALL ELEMENTS)
   ========================================================================== */

/* Default reveal state (hidden before scroll into view) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Revealed state (visible when scrolled into view) */
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scale-in subtle variant for images & cards */
.reveal-scale {
  opacity: 0;
  transform: scale(0.96) translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger Delays for Grid Children & Lists */
.reveal-delay-1 {
  transition-delay: 0.05s;
}

.reveal-delay-2 {
  transition-delay: 0.10s;
}

.reveal-delay-3 {
  transition-delay: 0.15s;
}

.reveal-delay-4 {
  transition-delay: 0.20s;
}

.reveal-delay-5 {
  transition-delay: 0.25s;
}

.reveal-delay-6 {
  transition-delay: 0.30s;
}

/* Accessible fallback for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

  .reveal-on-scroll,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}