:root {
  /* Simple, high-contrast palette (3-5 colors total) */
  --instant-primary: #2563eb; /* blue-600 */
  --instant-accent: #06b6d4; /* cyan-500 */
  --instant-dark: #0f172a; /* slate-900 */
  --instant-muted: #64748b; /* slate-500 */
  --instant-bg: #f8fafc; /* slate-50 */
  --instant-radius: 1rem;
}

body.instant-body {
  background-color: var(--instant-bg);
  color: var(--instant-dark);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  font-family: "Poppins", "sans-serif";
}

/* Hero */
.instant-hero {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.instant-heading {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  /* Mobile-first responsive sizing */
  font-size: clamp(2rem, 4vw + 0.5rem, 1.25rem);
}
.instant-subtitle {
  color: var(--instant-muted);
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.125rem);
  max-width: 46ch;
}

.instant-cta-group .instant-btn-primary {
  background-color: var(--instant-primary);
  border-color: var(--instant-primary);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.125rem;
  border-radius: 0.75rem;
}
.instant-cta-group .instant-btn-primary:hover {
  background-color: #1d4ed8; /* blue-700 */
  border-color: #1d4ed8;
}

.instant-cta-group .instant-btn-secondary {
  background-color: #fff;
  color: var(--instant-dark);
  border: 1px solid #e2e8f0; /* slate-200 */
  font-weight: 600;
  padding: 0.75rem 1.125rem;
  border-radius: 0.75rem;
}
.instant-cta-group .instant-btn-secondary:hover {
  background-color: #f1f5f9; /* slate-100 */
  border-color: #cbd5e1; /* slate-300 */
}
.instant-play-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  flex: 0 0 auto;
}

/* Feature bullets */
.instant-bullets {
  margin-top: 1.5rem;
}
.instant-bullets .instant-bullet {
  color: var(--instant-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.instant-bullets .instant-dot {
  width: 8px;
  height: 8px;
  background-color: var(--instant-primary);
  border-radius: 999px;
  display: inline-block;
}

/* Product image */
.instant-device-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.instant-device-img {
  animation: float 3s ease-in-out infinite;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
  border-radius: 12px; /* optional: smooth rounded corners */
  transition: transform 0.3s ease;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Optional hover effect */
.instant-device-img:hover {
  /* box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); */
  transform: scale(1.05);
}

.instant-device-wrap {
  position: relative;
}
.instant-device-img {
  max-width: 640px;
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 20px 30px rgba(2, 6, 23, 0.15));
}

/* Divider */
.instant-divider {
  border-top: 2px solid var(--instant-primary);
  box-shadow: 0 1px 0 0 rgba(37, 99, 235, 0.08);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Section 2 */
.instant-section {
  padding-top: 5.5rem;
  padding-bottom: 4.5rem;
  /* max-width: 1200px; */
  /* margin: auto; */
}

.instant-card-img {
  width: 90%;
  margin: auto;
  display: flex;
  /* max-width: 640px; */
  /* width: 100%; */
  /* height: 100%; */
  /* max-height: 320px; */
  object-fit: cover;
  border-radius: var(--instant-radius);
  /* box-shadow: 0 10px 24px rgba(2, 6, 23, 0.12); */
}
.instant-section-heading {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 2.2vw + 0.75rem, 1.25rem);
}
.instant-section-text {
  color: var(--instant-muted);
  font-size: clamp(1rem, 0.8vw + 0.6rem, 1.05rem);
  max-width: 60ch;
}
.instant-ghost-btn {
  background-color: #e6f4ff;
  color: var(--instant-primary);
  border: 1px solid rgba(37, 99, 235, 0.12);
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}
.instant-ghost-btn:hover {
  background-color: #dbeafe;
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.22);
}

/* Spacing adjustments at larger breakpoints */
@media (min-width: 992px) {
  .instant-hero {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }
  .instant-bullets {
    margin-top: 1.75rem;
  }
}

/* Small devices fine-tuning */
@media (max-width: 575.98px) {
  .instant-cta-group .btn {
    width: 100%;
  }
}

/* Core benefits */
:root {
  /* Color tokens (3-5 colors total) */
  --core-primary: #0ea5e9; /* brand blue */
  --core-primary-50: #e6f6fd; /* light blue background */
  --core-text: #0f172a; /* near-black */
  --core-muted: #64748b; /* gray for descriptions */
  --core-border: #e5e7eb; /* light gray border */
  --core-bg: #ffffff; /* card/background */
  --core-radius: 16px;
  --core-radius-sm: 12px;
}

/* Layout */
.core-section {
  padding: 56px 16px 80px;
  background: var(--core-bg);
  color: var(--core-text);
}
.core-container {
  max-width: 1100px;
  margin-inline: auto;
}
.core-title {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 36px;
}

/* Cards grid */
.core-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 768px) {
  .core-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .core-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.core-card {
  border: 1px solid var(--core-border);
  border-radius: var(--core-radius);
  background: var(--core-bg);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.core-card:hover {
  box-shadow: 0 6px 24px rgba(2, 6, 23, 0.08);
  transform: translateY(-2px);
}

/* Card media */
.core-card-image {
  width: 100%;
  /* height: 180px; */
  object-fit: cover;
  object-position: center;
  border-radius: var(--core-radius-sm);
  display: block;
}

/* Card body */
.core-card-body {
  padding: 14px 6px 4px;
}
.core-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.core-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--core-primary-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
}
.core-icon svg {
  width: 22px;
  height: 22px;
  color: var(--core-primary);
}
.core-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.core-card-desc {
  color: var(--core-muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 4px 0 4px;
}

/* Utilities */
.core-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Deep dive */
:root {
  /* 5-color palette (1 primary, 2 neutrals, 2 accents) */
  --dive-brand: #0ea5e9; /* primary blue */
  --dive-ink: #0f172a; /* neutral ink */
  --dive-muted: #64748b; /* neutral muted */
  --dive-accent-green: #22c55e; /* accent */
  --dive-accent-purple: #a855f7; /* accent */
  /* surfaces */
  --dive-surface: #ffffff;
  --dive-soft-blue: #e6f4fd;
  --dive-soft-blue-2: #eef7fe;
  --dive-shadow: 0 10px 30px rgba(2, 32, 71, 0.08);
  --dive-radius: 16px;
}

/* Section layout */
.dive-section {
  max-width: 800px;
  margin-inline: auto;
}

.dive-header {
  text-align: center;
}
.dive-eyebrow {
  color: var(--dive-muted);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dive-title {
  color: var(--dive-ink);
  font-weight: 800;
}
.dive-title .dive-brand {
  color: var(--dive-brand);
}
.dive-subtitle {
  color: var(--dive-muted);
}

/* Accordion shell */
.dive-accordion.accordion {
  --bs-accordion-border-color: transparent;
  --bs-accordion-bg: transparent;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-active-color: var(--dive-ink);
  --bs-accordion-active-bg: transparent;
  --bs-accordion-btn-icon: none;
  --bs-accordion-btn-active-icon: none;
}

.dive-accordion-item.accordion-item {
  background: var(--dive-surface);
  border: 0;
  border-radius: var(--dive-radius);
  box-shadow: var(--dive-shadow);
  overflow: hidden;
  transition: transform 0.5s ease !important;
}
/* .dive-accordion-item {
        transition: transform 0.5s ease !important;
      } */

.dive-accordion-item.accordion-item:hover {
  scale: 1.03;
}

.dive-accordion-item + .dive-accordion-item {
  margin-top: 16px;
}

/* Header button */
.dive-accordion-header .dive-accordion-button.accordion-button {
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(
    180deg,
    rgba(14, 165, 233, 0.06) 0%,
    rgba(14, 165, 233, 0) 100%
  );
  color: var(--dive-ink);
}
.dive-accordion-header .dive-accordion-button.accordion-button.collapsed {
  background: var(--dive-surface);
}
.dive-accordion-button:focus {
  box-shadow: none;
}

/* Right caret */
.dive-accordion-button::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: auto;
  background: var(--btn-blue-1);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000000" viewBox="0 0 16 16"><path d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>')
    center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23000000" viewBox="0 0 16 16"><path d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>')
    center/contain no-repeat;
  transform: rotate(-90deg);
  opacity: 1;
}
.dive-accordion-button.collapsed::after {
  transform: rotate(0deg);
}

/* Icon pills */
.dive-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.25) inset,
    0 2px 4px rgba(2, 32, 71, 0.06);
}
.dive-icon--blue {
  background: radial-gradient(
    95% 95% at 30% 30%,
    #bfe8ff 0%,
    var(--dive-brand) 100%
  );
}
.dive-icon--purple {
  background: radial-gradient(
    95% 95% at 30% 30%,
    #e9d5ff 0%,
    var(--dive-accent-purple) 100%
  );
}
.dive-icon--green {
  background: radial-gradient(
    95% 95% at 30% 30%,
    #bbf7d0 0%,
    var(--dive-accent-green) 100%
  );
}

.dive-icon svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

/* Title/desc stack */
.dive-headings .dive-line {
  display: block;
  line-height: 1.15;
}
.dive-headings .dive-line--title {
  font-weight: 700;
}
.dive-headings .dive-line--desc {
  font-size: 0.95rem;
  color: var(--dive-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Body when open */
.dive-accordion-body.accordion-body {
  background: linear-gradient(
    180deg,
    var(--dive-soft-blue) 0%,
    var(--dive-soft-blue-2) 100%
  );
  padding: 18px 20px 22px 20px;
}

/* Bullets */
.dive-bullets {
  padding-left: 0;
}
.dive-bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--dive-ink);
  margin: 8px 0;
}
.dive-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  background: var(--dive-brand);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Illustration tile (first item) */
.dive-illustration {
  position: relative;
}
.dive-graphic {
  width: 180px;
  height: 110px;
  background: #0b2740;
  border-radius: 14px;
  margin-left: auto;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(2, 32, 71, 0.15) inset,
    0 8px 20px rgba(2, 32, 71, 0.15);
}
.dive-graphic svg {
  width: 52px;
  height: 52px;
  color: #3abff8;
  opacity: 0.9;
}
.dive-status-dot {
  position: absolute;
  right: -4px;
  top: -6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--dive-accent-green);
  border: 3px solid #e6f7ff;
}

/* Responsive polish */
@media (min-width: 768px) {
  .dive-accordion-button {
    padding: 20px 22px;
  }
  .dive-accordion-body {
    padding: 20px 24px 26px 24px;
  }
}

/* How it works */
/* Theme (custom classes all prefixed with works-) */
:root {
  --works-primary: #16a3ff;
  --works-accent: #7a5cff;
  --works-bg: #f7fbff;
  --works-text: #0f172a;
  --works-muted: #64748b;
  --works-card-border: #e6eff7;
}

.works-section {
  background: #ffffff;
}

.works-title {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--works-text);
}
.works-title .works-highlight {
  color: var(--works-primary);
}
.works-subtitle {
  color: var(--works-muted);
}

.works-card {
  border: 1px solid var(--works-card-border);
  border-radius: 18px;
  background: #ffffff;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.works-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(22, 163, 255, 0.08);
}

.works-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 8px;
  margin-top: -12px;
  background: radial-gradient(
    120% 120% at 30% 20%,
    #9bd7ff 0%,
    #3bb6ff 60%,
    #249bff 100%
  );
  box-shadow: 0 4px 18px rgba(36, 155, 255, 0.28),
    inset 0 0 0 8px rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
}
.works-badge-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: #ffffff;
}

.works-icon {
  color: var(--works-primary);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-inline: auto;
  background: linear-gradient(180deg, #eef7ff 0%, #f7fbff 100%);
  box-shadow: inset 0 -2px 0 rgba(22, 163, 255, 0.06);
  font-size: 28px; /* for bi icons size fallback */
}

.works-card-title {
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--works-text);
}

.works-card-desc {
  color: var(--works-muted);
  font-size: 12px;
  text-align: start;
}

.ocrloader {
  width: 94px;
  height: 77px;
  /* position: absolute; */

  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 20px;
    background-color: rgba(45, 183, 183, 0.54);
    z-index: 1;
    transform: translateY(135%);
    animation: move 0.7s cubic-bezier(0.15, 0.44, 0.76, 0.64);
    animation-iteration-count: infinite;
  }
  > div {
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48%;
    backface-visibility: hidden;
  }
  i {
    display: block;
    height: 1px;
    background: #000;
    margin: 0 auto 2px;
    margin: 0 auto 2.2px;
    backface-visibility: hidden;
    &:nth-child(2) {
      width: 75%;
    }
    &:nth-child(3) {
      width: 81%;
    }
    &:nth-child(4) {
      width: 87%;
    }
    &:nth-child(6) {
      width: 71%;
    }
    &:nth-child(7) {
      width: 81%;
    }
    &:nth-child(8) {
      width: 65%;
    }
    &:nth-child(9) {
      width: 83%;
    }
    &:nth-child(10) {
      width: 75%;
    }
    &:nth-child(12) {
      width: 86%;
    }
    &:nth-child(14) {
      width: 65%;
    }
    &:nth-child(16) {
      width: 75%;
    }
    &:nth-child(18) {
      width: 83%;
    }
  }
  &:before,
  &:after,
  em:after,
  em:before {
    border-color: #000;
    content: "";
    position: absolute;
    width: 19px;
    height: 16px;
    border-style: solid;
    border-width: 0px;
  }
  &:before {
    left: 0;
    top: 0;
    border-left-width: 1px;
    border-top-width: 1px;
  }
  &:after {
    right: 0;
    top: 0;
    border-right-width: 1px;
    border-top-width: 1px;
  }
  em:before {
    left: 0;
    bottom: 0;
    border-left-width: 1px;
    border-bottom-width: 1px;
  }
  em:after {
    right: 0;
    bottom: 0;
    border-right-width: 1px;
    border-bottom-width: 1px;
  }
}

@keyframes move {
  0%,
  100% {
    transform: translateY(105%);
  }
  50% {
    transform: translateY(0%);
  }
  75% {
    transform: translateY(252%);
  }
}

.works-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f2fbf5;
  color: #0f7a2e;
  font-weight: 600;
  border: 1px solid #d7f1df;
}
.works-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #16c172;
  box-shadow: 0 0 0 4px rgba(22, 193, 114, 0.12);
}

/* Connector dots (decorative) for md+ screens */
@media (min-width: 768px) {
  .works-connector {
    position: relative;
  }
  .works-connector::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: var(--works-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(22, 163, 255, 0.15);
  }
  .works-connector-last::after {
    display: none;
  }
}

/* Mobile responsiveness adjustments */
@media (max-width: 767.98px) {
  .works-section {
    padding-bottom: 2rem;
  }

  .works-card {
    margin-bottom: 1.5rem;
    border-radius: 12px;
  }

  .works-badge {
    width: 56px;
    height: 56px;
    padding: 6px;
    margin-top: -8px;
  }

  .works-badge-img {
    width: 34px;
    height: 34px;
  }

  .works-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .works-card-title {
    font-size: 1rem;
    letter-spacing: 0.2px;
  }

  .works-card-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0.5rem 0 0;
    text-align: left;
    padding: 0 0.5rem;
  }

  .works-status-pill {
    padding: 6px 12px;
    font-size: 0.875rem;
  }

  .works-status-dot {
    width: 8px;
    height: 8px;
  }

  .row {
    --bs-gutter-x: 1rem;
  }
}

/* Why Tentovision is the Smarter Choice */
:root {
  /* 3-5 color palette */
  --brand: #0ea5a0; /* primary brand (teal) */
  --neutral-0: #ffffff; /* white */
  --neutral-50: #f5f7fa; /* card bg */
  --neutral-200: #e5e7eb; /* borders */
  --text: #111827; /* text color */
  --accent-green: #16a34a; /* checks */
  --accent-red: #e11d48; /* crosses */
  --cell-hover: rgba(14, 165, 160, 0.12);
  --radius: 0.75rem;
}

.page-title {
  letter-spacing: 0.2px;
}

.table-card {
  /* background: var(--neutral-0); */
  border-radius: var(--radius);
  /* box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 8px 24px rgba(16,24,40,.06); */
  /* border: 1px solid var(--neutral-200); */
}

/* Make the table feel roomy */
.comparison-table thead th,
.comparison-table tbody td,
.comparison-table tbody th {
  padding: 1rem 1.25rem;
  vertical-align: middle;
}

.comparison-table thead th {
  background: #f3f4f6; /* subtle header */
  font-weight: 600;
  white-space: nowrap;
}

.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  border-top: 1px solid var(--neutral-200);
}

.comparison-table thead th:first-child {
  border-top-left-radius: var(--radius);
}

.comparison-table thead th:last-child {
  border-top-right-radius: var(--radius);
}

.comparison-table tr:last-child td:first-child {
  border-bottom-left-radius: var(--radius);
}
.comparison-table tr:last-child td:last-child {
  border-bottom-right-radius: var(--radius);
}

/* Per-cell hover effect (not just whole row) */
.comparison-table tbody td:hover,
.comparison-table tbody th:hover,
.comparison-table tbody td:focus-within,
.comparison-table tbody th:focus-within {
  background: var(--cell-hover);
  transition: background-color 0.2s ease;
}

.comparison-table th[scope="row"] {
  /* min-width: 180px; */
  font-weight: 600;
}

/* Make the table horizontally scrollable on small screens */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Optional: subtle gradient hint that content scrolls */
  mask-image: linear-gradient(
    to right,
    transparent 0,
    black 24px,
    black calc(100% - 24px),
    transparent 100%
  );
}

/* Keep the first column visible while scrolling on small screens */
@media (max-width: 576px) {
  .sticky-first thead th:first-child,
  .sticky-first tbody th[scope="row"] {
    position: sticky;
    left: 0;
    z-index: 2; /* keep above cells */
    background: var(--neutral-0);
    box-shadow: 1px 0 0 var(--neutral-200);
  }

  /* Adjust padding for mobile to save space */
  .comparison-table thead th,
  .comparison-table tbody td,
  .comparison-table tbody th {
    padding: 0.75rem 0.75rem;
  }
}

/* Utility visuals for check/cross */
.check {
  color: var(--accent-green);
  font-weight: 600;
}
.cross {
  color: var(--accent-red);
  font-weight: 700;
}
.dollars {
  letter-spacing: 0.5px;
}

/* Security section */
:root {
  --security-primary: #1a9cff;
  --security-ink: #0b1320;
  --security-muted: #6b7a90;
  --security-surface: #ffffff;
  --security-success: #28d17c;
}

body {
  background-color: #f7fafc;
  color: var(--security-ink);
}

/* Section */
.security-section {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: radial-gradient(
    60rem 30rem at 50% -10%,
    rgba(26, 156, 255, 0.08),
    transparent 70%
  );
}

/* Moving background line */
.security-bg-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.security-bg-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 25%;
  width: 2px;
  height: 120%;
  transform: translateX(-50%) translateY(100%);
  background: linear-gradient(
    to top,
    rgba(26, 156, 255, 0) 0%,
    rgba(26, 156, 255, 0.15) 25%,
    rgba(26, 156, 255, 0.6) 50%,
    rgba(26, 156, 255, 0.15) 75%,
    rgba(26, 156, 255, 0) 100%
  );
  opacity: 0.6;
}
.security-section.security-in-view .security-bg-line::before {
  animation: security-line-move 1800ms ease-out forwards;
}
@keyframes security-line-move {
  from {
    transform: translateX(-50%) translateY(100%);
  }
  to {
    transform: translateX(-50%) translateY(-20%);
  }
}

/* Heading styles */
.security-heading {
  font-weight: 800;
  letter-spacing: 0.2px;
}
.security-heading .security-highlight {
  color: var(--security-primary);
}
.security-subtitle {
  font-weight: 800;
  color: var(--security-ink);
}
.security-subtitle .security-dot {
  color: var(--security-primary);
}

/* Lock + orbit */
.security-lock-wrap {
  position: relative;
  width: 190px;
  height: 190px;
  margin-inline: auto;
}
.security-lock {
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: linear-gradient(180deg, #1fb0ff 0%, #0d86e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 64px;
  box-shadow: 0 20px 50px rgba(13, 134, 230, 0.25),
    0 0 0 12px rgba(26, 156, 255, 0.08);
  z-index: 2;
}
.security-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
  animation: security-spin 7.5s linear infinite;
}
/* Only dots rotate (orbit rotates); lock does not rotate */
@keyframes security-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.security-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--security-primary);
  box-shadow: 0 0 0 4px rgba(26, 156, 255, 0.12);
}
/* place 12 dots around a ring */
.security-orbit .security-dot:nth-child(1) {
  transform: rotate(0deg) translate(88px);
}
.security-orbit .security-dot:nth-child(2) {
  transform: rotate(30deg) translate(88px);
}
.security-orbit .security-dot:nth-child(3) {
  transform: rotate(60deg) translate(88px);
}
.security-orbit .security-dot:nth-child(4) {
  transform: rotate(90deg) translate(88px);
}
.security-orbit .security-dot:nth-child(5) {
  transform: rotate(120deg) translate(88px);
}
.security-orbit .security-dot:nth-child(6) {
  transform: rotate(150deg) translate(88px);
}
.security-orbit .security-dot:nth-child(7) {
  transform: rotate(180deg) translate(88px);
}
.security-orbit .security-dot:nth-child(8) {
  transform: rotate(210deg) translate(88px);
}
.security-orbit .security-dot:nth-child(9) {
  transform: rotate(240deg) translate(88px);
}
.security-orbit .security-dot:nth-child(10) {
  transform: rotate(270deg) translate(88px);
}
.security-orbit .security-dot:nth-child(11) {
  transform: rotate(300deg) translate(88px);
}
.security-orbit .security-dot:nth-child(12) {
  transform: rotate(330deg) translate(88px);
}

/* Feature cards */
.security-features .security-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: var(--security-surface);
  box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.security-features .security-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(2, 8, 23, 0.08);
}
.security-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #1fb0ff 0%, #0d86e6 100%);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(13, 134, 230, 0.3);
}
.security-support {
  color: var(--security-muted);
  font-size: 0.8rem;
  text-align: justify;
}
.security-status-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 0.75rem;
}
.security-status-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--security-success);
  box-shadow: 0 0 0 3px rgba(40, 209, 124, 0.15) inset;
}
/* Pricing section */
:root {
  /* Palette approximated from the screenshot */
  --bg-soft: #f3f8fc;
  --card-bg: #ffffff;
  --card-tint: #f6f9ff;
  --border: #e6eef7;

  --brand-cyan: #22c7ff; /* header accent */
  --price-cyan: #12bff2; /* left price & general cyan */
  --link-blue: #1e90ff;

  --btn-blue-1: #00c2ff;
  --btn-blue-2: #2e66ff;

  --btn-purple-1: #8b5cf6;
  --btn-purple-2: #6366f1;

  --btn-pink-1: #ec4899;
  --btn-pink-2: #f472b6;

  --popular-1: #ffb800;
  --popular-2: #ff5a36;

  --check-green: #22c55e;
  --text-900: #141820;
  --text-700: #5b6472;
  --muted: #a7b3c4;

  --shadow-md: 0 8px 30px rgba(20, 24, 32, 0.08);
  --shadow-lg: 0 14px 45px rgba(20, 24, 32, 0.14);

  --radius-xl: 22px;
  --radius-lg: 14px;
  --radius-sm: 10px;
}

body {
  background: linear-gradient(180deg, var(--bg-soft), #f9fcff 60%);
  color: var(--text-900);
  /* font-feature-settings: "ss01" on, "ss02" on; */
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-title .brand {
  color: var(--brand-cyan);
}
.section-subtitle {
  color: var(--text-700);
  text-transform: none;
}

.pricing-card {
  border: 1px solid var(--border);
  background: radial-gradient(
    120% 140% at 50% 0%,
    var(--card-tint) 0%,
    var(--card-bg) 50%
  );
  border-radius: var(--radius-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.5s ease;
}
.pricing-card:hover {
  transform: translateY(-30px);
  box-shadow: var(--shadow-lg);
}

.media-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 8px 24px rgba(20, 24, 32, 0.18); */
}
.media-wrap img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
}
.icon-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.badge-blue {
  background: linear-gradient(135deg, #1cc5ff, #316bff);
}
.badge-purple {
  background: linear-gradient(135deg, #9a73ff, #6a6cf5);
}
.badge-pink {
  background: linear-gradient(135deg, #ff6fae, #ee4b95);
}

.status-pill {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: #ffffff;
  color: var(--text-900);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(20, 24, 32, 0.12);
}
.dot {
  width: 9px;
  height: 9px;
  background: var(--check-green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
}

.plan-title {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.plan-subtitle {
  color: var(--text-700);
  font-size: 0.95rem;
}

.kv {
  font-weight: 800;
  color: var(--link-blue);
}
.kv-muted {
  color: var(--muted);
}

.feature {
  /* display: flex; */
  align-items: center;
  gap: 10px;
  color: var(--text-700);
  font-size: 0.8rem;
}
.feature .check {
  width: 18px;
  height: 18px;
  color: var(--check-green);
  flex: 0 0 auto;
}

.price {
  font-weight: 900;
  font-size: 2rem;
  color: var(--price-cyan);
}
.price-note {
  color: var(--muted);
  margin-top: -6px;
}

.btn-gradient {
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  width: 100%;
  border-radius: 12px;
}
.btn-blue {
  background: linear-gradient(90deg, var(--btn-blue-1), var(--btn-blue-2));
}
.btn-purple {
  background: linear-gradient(90deg, var(--btn-purple-1), var(--btn-purple-2));
}
.btn-pink {
  background: linear-gradient(90deg, var(--btn-pink-2), var(--btn-pink-1));
}

/* Most Popular badge (center card) */
.popular-wrap {
  position: relative;
}
.popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(90deg, var(--popular-1), var(--popular-2));
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(255, 134, 0, 0.45),
    0 2px 8px rgba(255, 90, 54, 0.35), 0 0 0 6px rgba(255, 184, 0, 0.18);
}
.popular svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Dividers */
.divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

/* Application in action */
:root {
  /* Palette: 1 brand + neutrals + 1–2 accents (max 5 total) */
  --action-brand: #4f8cff; /* primary blue */
  --action-accent: #58d38c; /* green accent */
  --action-neutral-100: #e6edf5;
  --action-neutral-300: #6b7c93;
  --action-bg-900: #0f1b2b; /* dark navy background */
  --action-card-800: #1a2636; /* card base */
  --action-radius: 16px;
  /* Dive soft blue for gradient - assuming light theme adjustment */
  --dive-soft-blue: #f8fbff;
  --dive-soft-blue-2: #e8f2ff;
}

.action-section {
  padding: 56px 0;
  background-color: var(--action-bg-900);
}

.action-eyebrow {
  color: #ffffff;
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-align: center;
}

.action-subtitle {
  color: #ffffff;
  opacity: 0.85;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: 2rem;
  font-weight: 300;
}

/* Card styles */
.action-card {
  background: linear-gradient(
    180deg,
    var(--dive-soft-blue) 0%,
    var(--dive-soft-blue-2) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--action-radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
  color: #0f1b2b;
}

.action-card:hover,
.action-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--action-brand);
}

.action-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.08) inset;
  color: #0f1b2b;
}

/* Accent variants for each card icon background */
.action-icon--purple {
  background: rgba(164, 126, 255, 0.16);
  color: #a47eff;
}
.action-icon--blue {
  background: rgba(79, 140, 255, 0.16);
  color: var(--action-brand);
}
.action-icon--orange {
  background: rgba(255, 165, 0, 0.16);
  color: #ffa500;
}
.action-icon--yellow {
  background: rgba(255, 193, 7, 0.16);
  color: #ffc107;
}
.action-icon--green {
  background: rgba(88, 211, 140, 0.16);
  color: var(--action-accent);
}
.action-icon--pink {
  background: rgba(255, 105, 180, 0.16);
  color: #ff69b4;
}
.action-icon--teal {
  background: rgba(0, 128, 128, 0.16);
  color: #008080;
}
.action-icon--cyan {
  background: rgba(0, 255, 255, 0.16);
  color: #00ffff;
}
.action-icon--red {
  background: rgba(255, 0, 0, 0.16);
  color: #ff0000;
}
.action-icon--gray {
  background: rgba(128, 128, 128, 0.16);
  color: #808080;
}

.action-card-title {
  font-weight: 700;
  color: #0f1b2b;
  margin-bottom: 10px;
}

.action-card-text {
  color: #0f1b2b;
  opacity: 0.9;
  line-height: 1.6;
}

/* Carousel controls */
.action-carousel .carousel-control-prev,
.action-carousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.action-carousel .carousel-control-prev:hover,
.action-carousel .carousel-control-next:hover {
  background: var(--action-brand);
  border-color: var(--action-brand);
}

.action-carousel .carousel-control-prev i,
.action-carousel .carousel-control-next i {
  color: #0f1b2b !important;
}

.action-carousel .carousel-control-prev:hover i,
.action-carousel .carousel-control-next:hover i {
  color: #ffffff !important;
}

/* Indicators */
.action-carousel .carousel-indicators button {
  background-color: rgba(154, 148, 148, 0.35);
  transition: background-color 0.2s ease;
}

.action-carousel .carousel-indicators button.active {
  background-color: var(--action-brand);
}

/* Track styles */
#actionTrack {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .action-card {
    max-width: 100%;
  }
  .flex-shrink-0 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .flex-shrink-0 {
    width: 33.333%;
  }
  .action-card {
    max-width: none;
  }
}
