:root {
  /* DIFFERENT THEME (teal + indigo) */
  --brand: #18b0a8;
  --brand-2: #5c6cff;
  --ink: #0f172a;
  --muted: #5b6475;
  --bg: #f7f9fc;
  --card: #ffffff;
}
* {
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
}

/* ===== NAVBAR ===== */
.navbar {
  --bs-navbar-color: #0f172a;
  --bs-navbar-hover-color: var(--brand);
  --bs-navbar-brand-color: #0f172a;
  transition: all 0.3s ease;
}
/* After scroll */
.navbar.scrolled {
  position: fixed; /* force top */
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050; /* above everything */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff; /* or any solid background */
}
.navbar .btn-cta {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  border: none;
}
.navbar .btn-cta:hover {
  opacity: 0.9;
}
.navbar .dropdown-menu {
  border: 0;
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.12);
  border-radius: 14px;
}
.nav-link {
  font-weight: 600;
}
/* Hover dropdown on lg+ */
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .navbar .dropdown-toggle::after {
    display: none;
  } /* cleaner caret */
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(180deg, #f2f5ff, #cbe4ff);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
}
.hero h1 {
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.02em;
}
.hero-highlight {
  color: var(--brand-2);
}
.hero p.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.hero-cta .btn {
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
}
.btn-gradient {
  background: linear-gradient(90deg, #06a39b, #a3acff);
  color: #fff !important;
  border: none;
}
.btn-gradient:hover {
  opacity: 0.9;
  color: #fff;
}
.btn-ghost {
  border: 2px solid rgba(92, 108, 255, 0.25);
  color: var(--brand-2);
  background: #fff;
}
.btn-ghost:hover {
  background: rgba(92, 108, 255, 0.06);
  color: var(--brand-2);
}

.hero-btn a {
  border: 1px solid;
}

.hero-card {
  border-radius: 18px;
  padding: 14px;
}
.hero-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* Tiny helper for icon text rows */
.bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #0f2936;
  font-weight: 600;
}
.bullet i {
  color: var(--brand);
}

/* Make offcanvas wider on xl for a nicer look */
@media (min-width: 1200px) {
  .offcanvas-end {
    width: 420px;
  }
}

/* ===== Logo / Brands Section (matches your theme) ===== */
.brands {
  background: #f8fafc;
  padding: clamp(48px, 8vw, 60px) 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}
.brands .section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.brands h2 {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brands h2 .accent {
  color: var(--brand-2);
}
.brands .lead {
  color: var(--muted);
  max-width: 980px;
}

.logo-card {
  background: #fff;
  border: 1px solid #e9eef6;
  border-radius: 16px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.logo-card img {
  max-height: 60px;
  width: 100%;
  height: auto;
  filter: grayscale(50%);
  opacity: 0.9;
  transition: filter 0.25s, opacity 0.25s, transform 0.25s;
}
.logo-card:hover {
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
  border-color: rgba(92, 108, 255, 0.28);
}
.logo-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}

/* Swiper layout */
.brands-swiper {
  padding: 6px 2px;
}

.brands-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.brands-swiper .swiper-slide {
  width: auto;
}

/* ====== THEME (from earlier) ====== */
.fw-800 {
  font-weight: 800;
}
.accent {
  color: var(--brand-2);
}
.py-section {
  padding: clamp(48px, 8vw, 80px) 0;
}
.btn-gradient {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #fff;
  border: none;
}
.btn-gradient:hover {
  opacity: 0.9;
  color: #fff;
}
.btn-outline-brand {
  border: 2px solid rgba(92, 108, 255, 0.28);
  color: var(--brand-2);
  background: #fff;
}
.btn-outline-brand:hover {
  background: rgba(92, 108, 255, 0.06);
  color: var(--brand-2);
}
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* ====== FEATURES ====== */
.features .lead {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}
.feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin: 0.55rem 0;
  color: #0f2936;
  font-size: 18px;
}
.feature-list i {
  color: var(--brand);
  margin-top: 0.15rem;
}

/* Media frame with soft shapes */
.media-wrap {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  background: var(--card);
  border: 1px solid #e9eef6;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}
.media-img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

/* Spacing tuning for huge screens (up to 2560px) */
@media (min-width: 1400px) {
  .features .lead {
    max-width: 720px;
  }
}

/* ================================= TAB switch  */
/* ===== Theme ===== */
:root {
  --brand: #18b0a8;
  --brand-2: #5c6cff;
  --ink: #0f172a;
  --muted: #5b6475;
  --bg: #f7f9fc;
  --card: #ffffff;
}
.section-pad {
  padding: clamp(48px, 8vw, 40px) 0;
}
.accent {
  color: var(--brand-2);
}

/* ===== Section Head ===== */
.howit3 {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  overflow: hidden;
}

.howit3-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 20px;
}
.howit3-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.24);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.howit3-title {
  font-weight: 800;
  margin: 0.35rem 0 0.4rem;
}
.howit3-sub {
  color: var(--muted);
}

/* ===== Card ===== */
.howit3-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgb(196 217 253 / 82%),
    rgb(255 237 237 / 94%)
  );
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12),
    inset 0 0 0 1px rgba(232, 238, 247, 0.9);
  padding: clamp(14px, 2vw, 20px);
}

/* Tabs inside card */
.howit3-tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 6px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px #e7edf7;
  margin: 4px auto 18px;
  max-width: 1080px;
}
.howit3-tab {
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-weight: 800;
  color: #162234;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 1;
  transition: color 0.25s ease, transform 0.2s ease;
}
.howit3-tab i {
  color: var(--brand);
}
.howit3-tab:hover {
  transform: translateY(-1px);
}
.howit3-tab.is-active {
  color: #fff;
}
.howit3-tab.is-active i {
  color: #fff;
}

/* Animated pill underline */
.howit3-underline {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 46px;
  width: 160px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 22px rgba(92, 108, 255, 0.25);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), width 0.25s ease;
}

/* Panels */
.howit3-panels {
  max-width: 1320px;
  margin: 0 auto;
}
.howit3-panel {
  display: none;
}
.howit3-panel.is-active {
  display: block;
}
.howit3-panel.is-animating .howit3-grid {
  animation: howit3FadeSlide 0.42s ease both;
}
@keyframes howit3FadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Grid */
.howit3-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(16px, 2.4vw, 26px);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.08);
}
@media (min-width: 992px) {
  .howit3-grid {
    grid-template-columns: 1.05fr 1.2fr;
  }
}

/* Media & content */
.howit3-media {
  border-radius: 14px;
  overflow: hidden;
  background: #f5f7fb;
}
.howit3-media img {
  width: 100%;
  height: 400px;
  display: block;
  object-fit: contain;
}
@media (max-width: 576px) {
  .howit3-media img {
    max-height: 260px;
    object-fit: contain;
  }
  .footx__formcard {
    width: 100% !important;
  }
}

.howit3-h3 {
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.howit3-lead {
  color: #153647;
}
.howit3-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.howit3-list li {
  display: flex;
  gap: 0.55rem;
  margin: 0.45rem 0;
  font-size: 18px;
  color: #0f2936;
}
.howit3-list i {
  color: var(--brand);
  margin-top: 0.2rem;
}

/* Widescreen comfort */
@media (min-width: 1600px) {
  .howit3-panels {
    max-width: 1440px;
  }
}

/* ===== Section background: gradient mesh + subtle grid ===== */
.devices {
  display: none;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      900px 420px at 12% 8%,
      rgba(24, 176, 168, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 92%,
      rgba(92, 108, 255, 0.2),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fafc 0%, #eef4ff 100%);
}
.devices::before {
  /* faint grid overlay */
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(2, 8, 23, 0.035) 0.5px,
      transparent 0.1px
    ),
    linear-gradient(90deg, rgba(2, 8, 23, 0.035) 0.5px, transparent 0.1px);
  background-size: 60px 60px;
  pointer-events: none;
  mix-blend-mode: normal;
}

/* ===== Head ===== */
.devices__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px;
}
.devices__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.devices__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.6rem;
}
.devices__subtitle {
  color: var(--muted);
}

/* ===== Grid ===== */
.devices__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1400px;
  margin: 18px auto 0;
}

/* ===== Card ===== */
.devices__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(18px, 2.6vw, 26px);
  background: var(--card);
  border: 1px solid #e9eef6;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.devices__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.12);
  border-color: rgba(92, 108, 255, 0.28);
}

/* Image area */
.devices__figure {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f6f9ff);
  margin: 0 0 16px 0;
  overflow: hidden;
}
.devices__figure img {
  width: auto;
  height: 85%;
  max-width: 90%;
  object-fit: contain;
  display: block;
}

/* Content */
.devices__name {
  font-weight: 800;
  margin: 4px 0 6px;
}
.devices__desc {
  color: #203646;
  min-height: 2.6em;
}

/* CTA button (soft pill with gradient border) */
.devices__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 12px;
  padding: 0.7rem 1.05rem;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  color: #142235;
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    /* button fill */ linear-gradient(90deg, var(--brand), var(--brand-2)); /* gradient border */
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.devices__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(92, 108, 255, 0.18);
  color: #0f172a;
}
.devices__chev {
  transition: transform 0.2s ease;
}
.devices__cta:hover .devices__chev {
  transform: translateX(4px);
}

/* Big screens */
@media (min-width: 1600px) {
  .devices__grid {
    max-width: 1500px;
  }
}

/* ======== */
/* ===== Section background: deep navy with teal/indigo glow ===== */
.benefits {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      800px 420px at 10% -10%,
      rgba(24, 176, 168, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 110% 120%,
      rgba(92, 108, 255, 0.2),
      transparent 60%
    ),
    linear-gradient(180deg, #0f2335 0%, #092032 100%);
}
.benefits::before {
  /* faint dotted grid */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  opacity: 0.25;
}

/* ===== Header ===== */
.benefits__head {
  text-align: center;
  color: #eaf3ff;
  max-width: 980px;
  margin: 0 auto 26px;
}
.benefits__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #18b0a8;
  background: rgba(24, 176, 168, 0.25);
  border: 1px solid rgba(24, 176, 168, 0.35);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.benefits__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.55rem 0 0.4rem;
  color: #ffffff;
}
.benefits__sub {
  color: #b7c7d9;
}

/* ===== Grid ===== */
.benefits__grid {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 22px auto 0;
}

/* ===== Card ===== */
.benefits__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 22px;
  color: #0d2131;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(6, 16, 30, 0.35),
    inset 0 0 0 1px rgba(233, 238, 246, 0.95);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefits__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(9, 32, 50, 0.55),
    inset 0 0 0 1px rgba(92, 108, 255, 0.35);
}

/* Notched corner accent (unique look) */
.benefits__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  border-bottom-left-radius: 18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: -6px 8px 20px rgba(92, 108, 255, 0.35);
  z-index: 0;
  opacity: 0.9;
  /* cut-out triangle effect */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

/* Content inside card */
.benefits__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 18px rgba(24, 176, 168, 0.25);
}
.benefits__name {
  font-weight: 800;
  margin: 0.2rem 0 0.35rem;
}
.benefits__desc {
  color: #213a4b;
}

/* Big screens */
@media (min-width: 1600px) {
  .benefits__grid {
    max-width: 1500px;
  }
}

/* ===== Section background: soft gradient mesh ===== */
.supportx {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      900px 480px at 10% 0%,
      rgba(24, 176, 168, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 480px at 100% 100%,
      rgba(92, 108, 255, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fafc 0%, #eef4ff 100%);
}

/* Layout */
.supportx__grid {
  display: grid;
  gap: clamp(22px, 3vw, 40px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 992px) {
  .supportx__grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Text side */
.supportx__content {
  max-width: 760px;
}
.supportx__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.supportx__title {
  margin: 0.5rem 0 0.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.supportx__lead {
  color: var(--muted);
  margin-bottom: 14px;
}

.supportx__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.supportx__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #0f2936;
  margin: 0.5rem 0;
}
.supportx__list i {
  color: var(--brand);
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

/* CTA */
.supportx__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  color: #0e2030;
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, var(--brand), var(--brand-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.supportx__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(92, 108, 255, 0.18);
}

/* Media side */
.supportx__media {
  position: relative;
}
.supportx__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e9eef6;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  /* offset frame */
  --offset: 18px;
}
.supportx__frame::before {
  content: "";
  position: absolute;
  inset: calc(var(--offset) * -1);
  border-radius: 28px;
  background: #f6eedd;
  z-index: -1;
}
.supportx__frame img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: contain;
}

/* Decorative glow blobs */
.supportx__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.35;
}
.supportx__blob--one {
  width: 180px;
  height: 180px;
  background: var(--brand);
  top: -30px;
  right: -20px;
}
.supportx__blob--two {
  width: 220px;
  height: 220px;
  background: var(--brand-2);
  bottom: -30px;
  left: -20px;
}

/* Tall phone tweaks */
@media (max-width: 576px) {
  .supportx__frame {
    --offset: 12px;
  }
  .supportx__frame::before {
    border-radius: 22px;
  }
}

/* ========== Section background (mesh + soft grid) =========== */
.flowsteps {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      900px 480px at 8% 0%,
      rgba(24, 176, 168, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 100% 100%,
      rgba(92, 108, 255, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fafc 0%, #eef4ff 100%);
}
.flowsteps::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(2, 8, 23, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 8, 23, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
}

/* Light gradient backgrounds for the four step cards (no :root, no CSS vars) */
.flowsteps__grid .flowsteps__card:nth-child(1) {
  /* Sky blue */
  background: radial-gradient(
      120% 120% at 110% -10%,
      rgba(30, 144, 255, 0.16) 0%,
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(145deg, #bbd7ff 0%, #ffe5e5 100%);
}

.flowsteps__grid .flowsteps__card:nth-child(2) {
  /* Fresh aqua/mint */
  background: radial-gradient(120% 120% at 110% -10%, rgba(32, 201, 151, 0.16) 0%, rgba(0, 0, 0, 0) 55%), linear-gradient(145deg, #ebfff7 0%, #e0deff 100%)
}

.flowsteps__grid .flowsteps__card:nth-child(3) {
  /* Soft lavender/periwinkle */
  background: radial-gradient(120% 120% at 110% -10%, rgba(138, 125, 255, 0.18) 0%, rgba(0, 0, 0, 0) 55%), linear-gradient(145deg, #e8ffd5 0%, #fffbe2 100%)
}

.flowsteps__grid .flowsteps__card:nth-child(4) {
  /* Warm peach for launch/growth */
  background: radial-gradient(
      120% 120% at 110% -10%,
      rgba(255, 155, 106, 0.2) 0%,
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(145deg, #fff5ef 0%, #ffffff 100%);
}

/* ===== Header ===== */
.flowsteps__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 24px;
}
.flowsteps__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.flowsteps__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.4rem;
}
.flowsteps__sub {
  color: var(--muted);
}

/* ===== Grid ===== */
.flowsteps__grid {
  counter-reset: steps; /* not required for badges, but handy if needed */
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1400px;
  position: relative;
}

/* ===== Card ===== */
.flowsteps__card {
  position: relative;
  z-index: 1;
  padding: clamp(18px, 2.6vw, 26px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e6edf6;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.flowsteps__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(16, 24, 40, 0.14);
  border-color: rgba(92, 108, 255, 0.28);
}

/* Number badge */
.flowsteps__badge {
  position: absolute;
  top: -14px;
  left: -14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 22px rgba(92, 108, 255, 0.25);
}

/* Icon circle */
.flowsteps__icon {
  width: 62px;
  height: 62px;
  margin: 6px auto 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(24, 176, 168, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #fff, #f2f6ff);
  border: 1px solid #e6edf6;
  color: var(--brand-2);
  font-size: 1.25rem;
}

/* Text */
.flowsteps__name {
  font-weight: 800;
  margin: 0.35rem 0 0.25rem;
}
.flowsteps__desc {
  color: #183a4b;
}

/* Widescreens */
@media (min-width: 1600px) {
  .flowsteps__grid {
    max-width: 1500px;
  }
}

/* =========================== Slider cards 5  ================== */
/* Background */
.solutionsx {
  background: radial-gradient(
      900px 420px at 12% 8%,
      rgba(24, 176, 168, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 92%,
      rgba(92, 108, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fafc 0%, #eef4ff 100%);
}
.solutionsx__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 24px;
}
.solutionsx__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.solutionsx__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.35rem;
}
.solutionsx__sub {
  color: var(--muted);
}

/* Wrapper keeps arrows aligned to container edges */
.solutionsx__wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .solutionsx__wrap {
    max-width: 1500px;
  }
}

/* Swiper */
.solutionsx__swiper {
  padding: 10px 10px 44px;
}
.swiper-slide {
  height: -webkit-fill-available !important;
} /* allow card height */

/* Card */
.solutionsx__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e9eef6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.solutionsx__card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 108, 255, 0.28);
  box-shadow: 0 20px 48px rgba(16, 24, 40, 0.12);
}

/* Media */
.solutionsx__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.solutionsx__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.solutionsx__label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 18px rgba(92, 108, 255, 0.25);
}

/* Body */
.solutionsx__body {
  padding: 18px 18px 20px;
}
.solutionsx__name {
  font-weight: 800;
  margin: 0 0 0.35rem;
}
.solutionsx__desc {
  color: #213a4b;
  margin: 0 0 0.6rem;
}
.solutionsx__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.6rem;
  display: grid;
  gap: 0.35rem;
}
.solutionsx__list li {
  color: #102a3a;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.solutionsx__list i {
  color: var(--brand);
  margin-top: 0.2rem;
}

/* CTA — pill with gradient border */
.solutionsx__cta {
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  color: #0e2030;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, var(--brand), var(--brand-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.solutionsx__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(92, 108, 255, 0.18);
}

/* Nav buttons — pinned to container edges, centered vertically */
.solutionsx__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 22px rgba(92, 108, 255, 0.25);
}
.solutionsx__nav--prev {
  left: -18px;
}
.solutionsx__nav--next {
  right: -18px;
}
@media (max-width: 576px) {
  .solutionsx__nav {
    width: 42px;
    height: 42px;
    left: 6px;
    right: 6px;
  }
  .solutionsx__nav--prev {
    left: 6px;
  }
  .solutionsx__nav--next {
    right: 6px;
  }
}

/* Pagination bullets */
.solutionsx__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
}
.solutionsx__pagination .swiper-pagination-bullet {
  background: #c9d4ff;
  opacity: 1;
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
}
.solutionsx__pagination .swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

/* ==========================  CTA band  ========================== */
.ctax {
  position: relative;
  overflow: hidden;
  color: #fff;
  /* height scales with viewport but stays comfy on mobile */
  padding: clamp(56px, 12vw, 60px) 0;
  isolation: isolate; /* make overlay stacking safe */
}

/* Background image + overlay */
.ctax__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.ctax__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02); /* subtle crop to hide blur edges */
}
.ctax__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* dark gradient with a hint of our theme */
  background: linear-gradient(
      180deg,
      rgba(10, 16, 28, 0.75) 0%,
      rgba(10, 16, 28, 0.7) 55%,
      rgba(10, 16, 28, 0.65) 100%
    ),
    radial-gradient(
      900px 420px at 20% 15%,
      rgba(24, 176, 168, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 80% 85%,
      rgba(92, 108, 255, 0.25),
      transparent 60%
    );
  mix-blend-mode: multiply;
}

/* Content */
.ctax__inner {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 3vw, 32px);
}
.ctax__title {
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 3.3vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.6rem;
}
.ctax__sub {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.6;
  margin: 0 auto 1.2rem;
  max-width: 980px;
  color: #e9eef7;
}

/* Button */
.ctax__btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0e2030;
  background: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(90deg, var(--brand), var(--brand-2));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(92, 108, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.25s ease, color 0.2s ease;
}
.ctax__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 6px rgba(92, 108, 255, 0.18);
}

/* Very wide screens */
@media (min-width: 1600px) {
  .ctax__inner {
    max-width: 1240px;
  }
}

/* ================ faqs Section ================ */
/* Background (soft mesh + light gradient) */
.faqsx {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      900px 420px at 12% 8%,
      rgba(24, 176, 168, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 88% 92%,
      rgba(92, 108, 255, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, #f7fafc 0%, #eef4ff 100%);
}
.faqsx__head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 22px;
}
.faqsx__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #0b3b39;
  background: rgba(24, 176, 168, 0.12);
  border: 1px solid rgba(24, 176, 168, 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}
.faqsx__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.35rem;
}
.faqsx__sub {
  color: var(--muted);
}

/* Grid: 1 → 2 columns */
.faqsx__grid {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 18px auto 0;
}
@media (min-width: 992px) {
  .faqsx__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Column wrapper */
.faqsx__col {
  display: grid;
  gap: clamp(12px, 1.6vw, 16px);
}

/* Accordion items (native <details>) */
.faqsx__item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e7eef6;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
  overflow: hidden;
}

/* Question row */
.faqsx__q {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  font-weight: 800;
  color: #0e2232;
  background: linear-gradient(180deg, #fff, #f6f9ff);
}
.faqsx__q::-webkit-details-marker {
  display: none;
} /* hide default marker */
.faqsx__q span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.faqsx__q i.fa-fw {
  color: var(--brand-2);
}

/* Answer */
.faqsx__a {
  padding: 0 16px 16px 16px;
  color: #17394a;
  border-top: 1px solid #e7eef6;
}

/* Chevron animation */
.faqsx__chev {
  transition: transform 0.25s ease;
  color: var(--brand);
}
.faqsx__item[open] .faqsx__chev {
  transform: rotate(180deg);
}

/* Focus styles for accessibility */
.faqsx__q:focus {
  outline: none;
}
.faqsx__q:focus-visible {
  box-shadow: 0 0 0 3px rgba(92, 108, 255, 0.25) inset,
    0 0 0 3px rgba(92, 108, 255, 0.25);
  border-radius: 12px;
}

/* Widescreen spacing */
@media (min-width: 1600px) {
  .faqsx__grid {
    max-width: 1240px;
  }
}

/* ============================ Footer Section ============================ */
/* ===== Theme ===== */
:root {
  --brand: #18b0a8; /* teal */
  --brand-2: #5c6cff; /* indigo */
  --ink: #0f172a;
  --muted: #7d8797;
  --card: #ffffff;
}

/* Utilities */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* ============= Newsletter band ============= */
.footx__news {
  background: radial-gradient(
      900px 420px at 10% 10%,
      rgba(24, 176, 168, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 420px at 90% 90%,
      rgba(92, 108, 255, 0.18),
      transparent 60%
    ),
    linear-gradient(90deg, #0f172a, #15223d);
  color: #fff;
}
.footx__news-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: 1fr;
  padding: clamp(22px, 3vw, 32px) 0;
}
@media (min-width: 992px) {
  .footx__news-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}
.footx__news-title {
  font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  margin: 0 0 0.25rem;
}
.footx__news-sub {
  color: #dbe5ff;
  margin: 0;
}

.footx__subscribe {
  justify-self: end;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  align-items: center;
  background: #0f172a;
  padding: 8px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
@media (max-width: 575.98px) {
  .footx__subscribe {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.footx__subscribe-input {
  width: 100%;
  border: 0;
  outline: 0;
  height: 46px;
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
  color: #0b2030;
}
.footx__subscribe-btn {
  height: 46px;
  padding: 0 16px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 18px rgba(92, 108, 255, 0.25);
}
.footx__tos {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cfe4ff;
}

/* ============= Footer main ============= */
.footx__main {
  background: #0c172a;
  color: #c7d3e6;
  padding: clamp(28px, 4vw, 44px) 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footx__grid {
  justify-items: center;
  display: grid;
  gap: clamp(18px, 2.5vw, 26px);
  grid-template-columns: 1fr;
  align-items: start;
}
/* Desktop+: 4 columns on row 1, address sits BELOW About Us on row 2 */
/* Desktop+: 4 columns on row 1, address sits BELOW About Us on row 2 */
@media (min-width: 992px) {
  .footx__grid {
    grid-template-columns: 1fr; /* wide form, then 3 link cols */
    grid-template-areas:
      "form products services about"
      "form address  address  address";
  }

  .footx__formcard {
    grid-area: form;
  }
  .footx__col--products {
    grid-area: products;
  }
  .footx__col--services {
    grid-area: services;
  }
  .footx__col--about {
    grid-area: about;
  }
  .footx__contact {
    grid-area: auto;
  }

  /* Optional: keep the form card comfy */
  .footx__formcard {
    max-width: 520px;
  }
}

/* Left form card */
.footx__formcard {
  background: #fff;
  color: #1a2635;
  width: 700px;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}
.footx__brand {
  height: 80px;
  width: auto;
  margin-bottom: 6px;
}
.footx__formtitle {
  margin: 6px 0 12px;
  font-weight: 800;
}
.footx__form {
  display: grid;
  gap: 10px;
}
.footx__row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
.footx__field {
  width: 100%;
  border: 1px solid #e7eef6;
  height: 44px;
  border-radius: 999px;
  padding: 0 14px;
  background: #f7f9ff;
  outline: none;
}
.footx__field:focus {
  border-color: #cdd9ff;
  box-shadow: 0 0 0 3px rgba(92, 108, 255, 0.18);
}
.footx__submit {
  height: 44px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 22px rgba(92, 108, 255, 0.25);
}

/* Columns */
.footx__col {
  padding: 8px 6px;
}
.footx__heading {
  color: #fff;
  font-weight: 800;
  margin: 0 0 10px;
}
.footx__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footx__list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #c7d3e6;
  text-decoration: none;
  padding: 0.15rem 0;
}
.footx__list a::after {
  content: "\f061"; /* arrow-right-long */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s ease;
  color: #a7b6d4;
}
.footx__list a:hover {
  color: #ffffff;
}
.footx__list a:hover::after {
  opacity: 1;
  transform: translateX(4px);
  color: #fff;
}

/* Contact + socials */
.footx__contact p {
  margin: 0 0 12px;
}
.footx__socials {
  display: flex;
  gap: 10px;
}
.footx__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 20px rgba(92, 108, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footx__socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(92, 108, 255, 0.35);
}

/* Bottom row */
.footx__bottom {
  margin-top: clamp(20px, 3vw, 28px);
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
}
.footx__copy {
  margin: 0;
  color: #9fb1c9;
  font-size: 0.95rem;
}

/* Extra wide */
@media (min-width: 1600px) {
  .footx__grid {
    max-width: 1500px;
    margin: 0 auto;
  }
}
/* Layout */
.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}

/* Header */
.header {
  background: #004aad;
  color: #fff;
  padding: 1rem 0;
}
.site-title {
  margin: 0;
  font-size: 1.5rem;
}

/* Policy */
.policy-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.last-updated {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}
.policy h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.policy h4 {
  margin-top: 1rem;
  font-size: 1rem;
}
.policy p,
.policy ul {
  margin-bottom: 1rem;
}
.policy ul {
  padding-left: 1.5rem;
}
.policy ul li {
  margin-bottom: 0.4rem;
}

/* Table */
.summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.summary-table th,
.summary-table td {
  border: 1px solid #ccc;
  padding: 0.6rem;
  text-align: left;
}
.summary-table th {
  background: #eee;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #004aad;
  color: #fff;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 600px) {
  .policy-title {
    font-size: 1.5rem;
  }
  .policy h3 {
    font-size: 1.1rem;
  }
  .summary-table th,
  .summary-table td {
    font-size: 0.9rem;
  }
}

/* === POWERPOS Thank-you popup only === */
.pp-ty {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(3px);
  z-index: 9999;
}
.pp-ty.show {
  display: flex;
  animation: tyfade 0.18s ease-out;
}
@keyframes tyfade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pp-ty__card {
  position: relative;
  width: min(420px, calc(100% - 32px));
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 18px;
  color: #eaf2ff;
  transform: translateY(8px) scale(0.98);
  opacity: 0;
  animation: pop 0.2s ease-out forwards;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
@keyframes pop {
  to {
    transform: none;
    opacity: 1;
  }
}

.pp-ty__head {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.pp-ty__badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0b1324;
  background: radial-gradient(
    120% 120% at 20% 20%,
    #34d399 0%,
    #10b981 55%,
    #4cc9f0 130%
  );
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.pp-ty__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.pp-ty__text {
  margin: 4px 0 0;
  color: #cfe3ff;
  font-size: 14px;
}
.pp-ty__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #eaf2ff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

/* --- Position the Retail pill in the banner --- */
.hero {
  position: relative;
}

.stage[hidden] {
  display: none !important;
}
html,
body {
  overflow-x: hidden;
}
.swiper {
  overflow: hidden;
} /* guard against nested scrollbars */

.stage {
  view-transition-name: flip;
  min-height: 100%;
}

/* give the transition group the perspective so 3D looks real */
::view-transition-group(flip) {
  perspective: 1600px;
  transform-style: preserve-3d;
}

/* Flip keyframes */
@keyframes vtFlipOut {
  to {
    transform: rotateY(180deg);
    filter: brightness(0.95);
  }
}
@keyframes vtFlipIn {
  from {
    transform: rotateY(-180deg);
    filter: brightness(0.95);
  }
  to {
    transform: rotateY(0);
  }
}

/* Apply animations to the snapshots */
::view-transition-old(flip) {
  animation: vtFlipOut 600ms cubic-bezier(0.2, 0.6, 0.2, 1) both;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}
::view-transition-new(flip) {
  animation: vtFlipIn 600ms cubic-bezier(0.2, 0.6, 0.2, 1) both;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}

/* Fallback (no View Transitions) */
.flip-fallback .stage {
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.flip-fallback #homeSide[hidden] {
  transform: rotateY(180deg);
}
.flip-fallback #retailSide:not([hidden]) {
  transform: rotateY(0);
}

/* ======================= Logo Section =========================== */
/* Integrations strip under Payroll & Accounting */
.integrations-strip{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px 22px;
  margin-top:18px;
  padding:14px 16px;
  background: linear-gradient(180deg,#f7fbff 0%,#ffffff 100%);
  border:1px solid rgba(22,35,58,0.08);
  border-radius:12px;
  box-shadow: 0 8px 24px rgba(8,20,43,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
}

.integrations-strip__label{
  font-weight:700;
  font-size:14px;
  color:#2a3a52;
  background: rgba(255,255,255,0.8);
  padding:6px 10px;
  border-radius:999px;
  box-shadow: 0 4px 10px rgba(8,20,43,0.05);
  display:flex;
  align-items:center;
  gap:8px;
}

.integrations-strip__logo{
  height: clamp(22px, 3.2vw, 42px);
  width:auto;
  object-fit:contain;
  transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}

.integrations-strip__logo:hover{
  filter:none;
  opacity:1;
  transform: translateY(-2px);
}

@media (min-width: 992px){
  .integrations-strip{ padding:16px 20px; gap:16px 28px; }
}


/* ----- CTA pill look for Retail / Restaurant buttons ----- */
.retail-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.4rem;
  border-radius: 8px;
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  backdrop-filter: saturate(160%) blur(6px);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.retail-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.retail-pill:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
}

/* Responsive helpers (works 320px → 2560px) */
@media (min-width: 1600px) {
  .container-xxl {
    max-width: 1440px;
  }
}
@media (min-width: 2200px) {
  .container-xxl {
    max-width: 1680px;
  }
}

/* ========= */
.navbar .navbar-nav.mx-auto.d-lg-flex {
  position: relative;
  gap: 0.25rem; /* small space between pills */
  padding: 0.25rem; /* inner padding around pills */
  border-radius: 999px; /* fully rounded group */
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* individual links → make them look like pills */
.navbar .navbar-nav.mx-auto .nav-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  min-width: 9.25rem; /* keeps both pills similar width */
  border-radius: 999px;
  font-weight: 600;
  color: #0f172a; /* slate-900 */
  text-decoration: none;
  transition: color 0.18s ease, background-color 0.18s ease,
    transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

/* icon badge inside the pill */
.navbar .navbar-nav.mx-auto .nav-link .fa-solid {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  font-size: 0.9rem;
}

/* hover / focus */
.navbar .navbar-nav.mx-auto .nav-link:hover {
  transform: translateY(-1px);
  background: rgba(59, 109, 247, 0.08);
}
.navbar .navbar-nav.mx-auto .nav-link:focus-visible {
  outline: 3px solid rgba(59, 109, 247, 0.35);
  outline-offset: 2px;
}

/* active/current page styles (add .active or aria-current="page") */
.navbar .navbar-nav.mx-auto .nav-link.active,
.navbar .navbar-nav.mx-auto .nav-link[aria-current="page"],
.navbar .navbar-nav.mx-auto .nav-item.show > .nav-link {
  color: #fff;
  background: linear-gradient(180deg, #4f8cff 0%, #3b6df7 100%);
  box-shadow: 0 6px 16px rgba(59, 109, 247, 0.25);
}
.navbar .navbar-nav.mx-auto .nav-link.active .fa-solid,
.navbar .navbar-nav.mx-auto .nav-link[aria-current="page"] .fa-solid,
.navbar .navbar-nav.mx-auto .nav-item.show > .nav-link .fa-solid {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* optional: dark navbar support */
.navbar.bg-dark .navbar-nav.mx-auto.d-lg-flex {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}
.navbar.bg-dark .navbar-nav.mx-auto .nav-link {
  color: #e5e7eb; /* slate-200 */
}
.navbar.bg-dark .navbar-nav.mx-auto .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
}
.navbar.bg-dark .navbar-nav.mx-auto .nav-link .fa-solid {
  background: rgba(255, 255, 255, 0.12);
  color: #e5e7eb;
}

/* respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .navbar .navbar-nav.mx-auto .nav-link {
    transition: none;
  }
}

/* ============= Two Tabs Swithc Section ============== */
