html {
  scroll-behavior: smooth;
}

:root {
  --dark-teal: #1c1c1c;
  --mid-teal: #134040;
  --teal: #1b5454;
  --accent-gold: #e8b84b;
  --accent-light: #f5c842;
  --soft-green: #3d7a6e;
  --bg-light: #f4f6f2;
  --bg-card: #ffffff;
  --text-dark: #0d2b2b;
  --text-muted: #5a6a65;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Mulish", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

.container h1 {
  font-size: 56px;
  font-weight: 800;
  color: #023333;
}

h2 {
  font-weight: 800;
}

.navbar {
  background: #f4f3f0;
  padding: 14px 0;
}

.navbar-brand {
  font-family: "Mulish", sans-serif;
  font-size: 1.4rem;
  color: var(--dark-teal) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-brand .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-brand .logo-icon svg {
  fill: var(--white);
  width: 18px;
}

.nav-link {
  color: #034848;
  font-size: 16px;
  font-weight: 500;
  padding: 6px 16px !important;
}

.nav-link:hover {
  color: #35bfbf;
}

.btn-book-demo {
  background: var(--accent-gold);
  color: var(--dark-teal);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  transition: background 0.2s;
}

.btn-book-demo:hover {
  background: var(--accent-light);
  color: var(--dark-teal);
}

.btn-contact-nav {
  background: transparent;
  color: var(--dark-teal);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1.5px solid var(--dark-teal);
  padding: 9px 20px;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-contact-nav:hover {
  background: var(--dark-teal);
  color: var(--white);
}

.hero-stats-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.hero-section {
  background: var(--bg-light);
  padding: 80px 0 60px;
  position: relative;
  overflow: visible;
}

.hero-section h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: #023333;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-section p.lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-float-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.fi-1 {
  top: 100px;
  left: 19.9%;
}
.fi-2 {
  top: 220px;
  left: 16%;
}
.fi-3 {
  top: 320px;
  left: 22%;
}
.fi-4 {
  top: 90px;
  right: 24%;
}
.fi-5 {
  top: 220px;
  right: 19%;
}
.fi-6 {
  top: 320px;
  right: 22%;
}

.hero-shape-left {
  position: absolute;
  left: 0;
  bottom: -300px;
  width: 400px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape-right {
  position: absolute;
  right: 0;
  bottom: -300px;
  width: 400px;
  height: 400px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.btn-hero-primary {
  background: var(--accent-gold);
  color: var(--dark-teal);
  font-weight: 800;
  font-size: 18px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  transition: background 0.2s;
}

.btn-hero-primary:hover {
  background: var(--accent-light);
  color: var(--dark-teal);
}

.btn-hero-outline {
  background: transparent;
  color: var(--dark-teal);
  font-weight: 800;
  font-size: 18px;
  padding: 11px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--dark-teal);
  transition: all 0.2s;
}

.btn-hero-outline:hover {
  background: #f8e192;
}

.stats-bar {
  background: transparent;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: #034848;
  border-radius: 12px;
  padding: 40px 12px 40px 12px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-card .stat-num {
  font-family: "Mulish", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  align-self: center;
}

.problem-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.problem-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.problem-bg-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.problem-section .container {
  position: relative;
  z-index: 1;
}

.problem-section h2 {
  font-size: 32px;
  color: #1c1c1c;
  line-height: 40px;
  margin-bottom: 20px;
  font-weight: 800;
}

.problem-section p {
  color: var(--text-muted);
  line-height: 24px;
  font-size: 18px;
}

.problem-card {
  background: var(--accent-gold);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: 477px;
  width: 620px;
}

.problem-card h3 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 800;
  position: relative;
  z-index: 2;
  line-height: 40px;
}

.problem-card-img {
  position: absolute;
  width: 560px;
  height: 363px;
  left: 30px;
  top: 138px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 1;
  object-fit: cover;
}

.mockup-bar {
  height: 8px;
  background: var(--teal);
  border-radius: 4px;
  margin-bottom: 6px;
}

.mockup-bar.short {
  width: 60%;
}
.mockup-bar.med {
  width: 80%;
  background: var(--soft-green);
}
.mockup-bar.accent {
  width: 45%;
  background: var(--accent-gold);
}

.mockup-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.mockup-cell {
  height: 10px;
  border-radius: 3px;
  background: #e5ebe8;
  flex: 1;
}

.mockup-cell.filled {
  background: var(--teal);
}
.mockup-cell.gold {
  background: var(--accent-gold);
}

@media (min-width: 992px) {
  .features-dark .row.g-4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px !important;
    flex-wrap: unset;
  }

  .features-dark .row.g-4 > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    flex: none !important;
  }
}

.features-dark {
  background: #023333;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.fd-shape-topright {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}

.fd-shape-topright svg {
  display: block;
  width: 100%;
  height: 100%;
}

.fd-shape-bottomleft {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 159px;
  z-index: 0;
  pointer-events: none;
  line-height: 0;
}

.fd-shape-bottomleft svg {
  display: block;
  width: 100%;
  height: 100%;
}

.features-dark .container {
  position: relative;
  z-index: 1;
}

.features-dark h2 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 10px;
}

.features-dark .section-subtitle {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 48px;
}

.feature-card-dark {
  background: #034848;
  border-radius: 12px;
  width: 100%;
  padding: 22px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.feature-card-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 184, 75, 0.3);
}

.card-number-bg {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: auto;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.feature-card-dark h5,
.feature-card-dark p,
.feature-card-dark .fc-icon {
  position: relative;
  z-index: 1;
}

.feature-card-dark .fc-icon {
  width: 42px;
  height: 42px;
  background: rgba(232, 184, 75, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.feature-card-dark h5 {
  color: var(--white);
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 18px);
  gap: 40px;
  line-height: 24px;
  min-height: 72px;
}

.feature-card-dark p {
  color: #ffffff;
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.6;
  margin: 0;
}

.everything-section {
  padding: 80px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.ev-shapes {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.everything-section .container {
  position: relative;
  z-index: 1;
}

.everything-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--dark-teal);
  margin-bottom: 10px;
  font-weight: 800;
}

.everything-section .section-sub {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 12px;
}

.everything-visual {
  position: relative;
  background: var(--accent-gold);
  border-radius: 20px;
  height: 594px;
  width: 412px;
  overflow: hidden;
}

.ev-img-top {
  position: absolute;
  width: 366px;
  height: 238px;
  left: 0;
  top: 41px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 2;
  object-fit: cover;
}

.ev-img-bottom {
  position: absolute;
  width: 366px;
  height: 238px;
  right: 0;
  top: 315px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 3;
  object-fit: cover;
}

.feature-list-item {
  margin-bottom: 20px;
  padding-top: 20px;
}

.feature-list-item:first-of-type {
  padding-top: 0;
}

.feature-list-item h5 {
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--dark-teal);
  margin-bottom: 6px;
}

.feature-list-item p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.feature-divider {
  border: none;
  border-top: 1px solid #dde4e0;
  margin: 0;
}

.dashboard-visual {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.dash-screen {
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.dash-header-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  align-items: center;
}

.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.dash-dot.gold {
  background: var(--accent-gold);
}
.dash-dot.red {
  background: #e05c5c;
}

.dash-title-mock {
  height: 8px;
  width: 120px;
  background: #dde4e0;
  border-radius: 4px;
}

.dash-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.dash-bar {
  height: 8px;
  border-radius: 4px;
  background: #dde4e0;
  flex: 1;
}

.dash-bar.teal {
  background: var(--teal);
}
.dash-bar.gold {
  background: var(--accent-gold);
}
.dash-bar.short {
  max-width: 60%;
}

.dash-table {
  width: 100%;
  margin-top: 8px;
}

.dash-table-row {
  display: flex;
  gap: 6px;
  margin-bottom: 5px;
}

.dash-cell {
  height: 7px;
  border-radius: 3px;
  background: #eef2ef;
  flex: 1;
}

.dash-cell.hl {
  background: rgba(27, 84, 84, 0.2);
}

.dash-bottom {
  background: var(--accent-gold);
  border-radius: 10px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-bottom-inner {
  display: flex;
  gap: 12px;
  padding: 0 16px;
}

.dash-mini-bar {
  width: 30px;
  border-radius: 4px;
}

.deploy-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.deploy-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--dark-teal);
  margin-bottom: 10px;
}

.deploy-section .section-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.deploy-card {
  background: #efede7;
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid #e5ebe8;
  transition: box-shadow 0.2s;
}

.deploy-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.deploy-card .dc-icon {
  width: 44px;
  height: 44px;
  background: #034848;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.deploy-card h5 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-teal);
  margin-bottom: 8px;
}

.deploy-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
/* .testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-section h2 {
  font-size: 40px;
  color: var(--dark-teal);
  margin-bottom: 48px;
  font-weight: 800;
}

.testimonial-card {
  background: #EFEDE7;
  border-radius: 14px;
  padding: 32px 28px;
  height: 100%;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author strong {
  display: block;
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--dark-teal);
}

.testimonial-author span {
  font-size: 16px;
  color: var(--text-muted);
} */

.stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.cta-section {
  padding: 60px 0;
}

.cta-card {
  background: #034848;
  border-radius: 32px;
  padding: 52px;
  gap: 32px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.cta-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-card p {
  color: #d7d7d7;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 38px;
  border-radius: 999px;
  background: #f4f3f0;
  color: #034848;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: #35bfbf;
}

.cta-shapes {
  position: absolute;
  right: -35%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  border-radius: 32px;
  overflow: hidden;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  padding: 52px 56px;
}

.cta-content {
  flex: 0 0 38%;
  max-width: 38%;
  z-index: 2;
}

.cta-form-wrap {
  flex: 1;
  z-index: 2;
  position: relative;
}

.cta-label {
  display: block;
  color: #f8f8f8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.span-label {
  color: #efb902;
}

.cta-input {
  width: 100%;
  background: #f8f8f8;
  border: none;
  font-size: 14px;
  font-family: "Mulish", sans-serif;
  padding: 16px;
  outline: none;
  border-radius: 8px;
  transition: border-color 0.2s;
}

.cta-input::placeholder {
  color: #5c5c5c;
}

.cta-select {
  appearance: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.cta-select-wrapper {
  position: relative;
  width: 100%;
}

.cta-select-wrapper .cta-input {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
}

.cta-select-arrow {
  position: absolute;
  right: 14px;
  top: 52%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

.cta-select option {
  background: #f8f8f8;
  color: #5c5c5c;
}

.cta-textarea {
  resize: none;
  height: 80px;
}

.btn-cta-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #f4f3f0;
  color: #034848;
  font-size: 16px;
  font-weight: 700;
  font-family: "Mulish", sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}

.btn-cta-submit:hover {
  background: #35bfbf;
}

.footer {
  background: #0a2020;
  padding: 48px 0 28px;
}

.footer-brand {
  font-family: "Mulish", sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-brand img {
  height: 80px;
  width: auto;
}

.footer-brand .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer p.tagline {
  color: #f4f3f0;
  font-size: 14px;
}

.footer-heading {
  color: #35bfbf;
  font-family: "Mulish", sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-heading a {
  text-decoration: none;
  color: #35bfbf;
}

.footer-link {
  display: block;
  color: #f4f3f0;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #35bfbf;
}

.footer-btm {
  background: #022929;
  padding: 12px 0;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-btm .footer-bottom {
  color: #f4f3f0;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-right: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.social-icon:hover {
  background: var(--teal);
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.hero-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal-delay-1 {
  transition-delay: 0.1s;
}
.hero-reveal-delay-2 {
  transition-delay: 0.4s;
}
.hero-reveal-delay-3 {
  transition-delay: 0.7s;
}

@keyframes floatIconPopIn {
  0% {
    opacity: 0;
    transform: scale(0.4) translateY(16px);
  }
  65% {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
  }
  82% {
    transform: scale(0.96) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatBob {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}

.hero-float-reveal {
  opacity: 0;
  transform: scale(0.5);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--fi-delay, 0s);
}
.hero-float-reveal.visible {
  opacity: 1;
  animation:
    floatIconPopIn 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) var(--fi-delay, 0s)
      both,
    floatBob var(--fi-bob-duration, 4s) ease-in-out
      calc(var(--fi-delay, 0s) + 0.65s) infinite;
}

@media (max-width: 768px) {
  .hero-float-icon {
    display: none;
  }

  .hero-shape-left,
  .hero-shape-right {
    display: none;
  }

  .problem-bg-shape {
    display: none;
  }

  .problem-card {
    width: 100%;
    height: 420px;
  }

  .problem-card h3 {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 16px;
  }

  .problem-card-img {
    width: calc(100% - 60px);
    height: 240px;
    left: 30px;
    top: 150px;
    object-fit: cover;
  }

  .fd-shape-topright,
  .fd-shape-bottomleft {
    display: none;
  }

  .features-dark .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

  .features-dark .row.g-4 {
    flex-wrap: wrap !important;
    gap: 16px !important;
  }

  .features-dark .row.g-4 > [class*="col-"] {
    flex: 0 0 100% !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .feature-card-dark {
    width: 100%;
    height: auto;
    min-height: 160px;
    padding: 28px 24px;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
  }

  .feature-card-dark h5 {
    font-size: 20px;
    line-height: 28px;
  }

  .feature-card-dark p {
    font-size: 14px;
    margin-top: 0;
  }

  .card-number-bg {
    height: 90%;
    opacity: 0.6;
  }

  .ev-shapes {
    display: none;
  }

  .stat-card {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
  }

  .stat-card .stat-num {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .stat-card .stat-label {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .deploy-section {
    padding-top: 40px;
  }

  .everything-section {
    padding-bottom: 40px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 24px;
    border-radius: 20px;
    min-height: unset;
  }

  .cta-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .cta-form-wrap {
    width: 100%;
    flex: unset;
  }

  .cta-form-wrap .row > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cta-input,
  .cta-select,
  .cta-textarea {
    font-size: 14px;
    padding: 14px 16px;
  }

  .cta-textarea {
    height: 80px;
  }

  .btn-cta-submit {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
  }

  .cta-shapes {
    display: none;
  }
}

.navbar-logo {
  height: 36px;
  width: auto;
}

.hero-content-container {
  position: relative;
  z-index: 1;
}

.hero-float-icon.fi-1 {
  --fi-delay: 0.3s;
  --fi-bob-duration: 0.8s;
}

.hero-float-icon.fi-2 {
  --fi-delay: 0.5s;
  --fi-bob-duration: 0.8s;
}

.hero-float-icon.fi-3 {
  --fi-delay: 0.7s;
  --fi-bob-duration: 0.8s;
}

.hero-float-icon.fi-4 {
  --fi-delay: 0.4s;
  --fi-bob-duration: 0.9s;
}

.hero-float-icon.fi-5 {
  --fi-delay: 0.6s;
  --fi-bob-duration: 0.9s;
}

.hero-float-icon.fi-6 {
  --fi-delay: 0.8s;
  --fi-bob-duration: 0.9s;
}

@media (max-width: 1200px) {
  .hero-float-icon {
    display: none;
  }

  .hero-shape-left,
  .hero-shape-right {
    display: none;
  }

  .stat-card {
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 12px;
  }

  .problem-bg-shape {
    display: none;
  }

  .problem-card {
    width: 100%;
    height: 400px;
  }

  .problem-card h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .problem-card-img {
    width: calc(100% - 60px);
    height: 280px;
    left: 30px;
    top: 110px;
  }

  .fd-shape-topright,
  .fd-shape-bottomleft {
    display: none;
  }

  .ev-shapes {
    display: none;
  }

  .everything-visual {
    left: -10px;
    width: 400px;
    height: 594px;
  }

  .cta-shapes {
    display: none;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 40px;
    gap: 32px;
    border-radius: 24px;
  }

  .cta-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cta-form-wrap {
    width: 100%;
  }

  .btn-cta-submit {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .problem-card {
    width: 100%;
    height: 380px;
    padding: 22px 24px;
  }

  .problem-card h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .problem-card-img {
    width: calc(100% - 50px);
    height: 250px;
    left: 20px;
    top: 30%;
  }
}

