/* =========================================================
   NAMAALY — INDEX PAGE STYLESHEET (assets/css/index.css)
   Only loaded on index.php.
   Depends on the CSS variables defined in style.css.
   Column/grid layout is handled by Bootstrap's row/col-*
   classes in the markup — this file only carries the visual
   skin (color, spacing, hover/scroll animation) that
   Bootstrap doesn't provide.
   ========================================================= */

/* ---- Hero / Banner ---- */
.namaaly-scope .hero {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  background-size: 22px 22px, 100% 100%;
  color: #fff;
  padding:5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.namaaly-scope .hero-grid {
  position: relative;
  z-index: 1;
  /* margin-bottom: 52px; */
}

/* ---- Floating product-mockup panel (right side of the banner) ---- */
.namaaly-scope .hero-mock-wrap {
  position: relative;
  padding: 34px 26px 30px 34px;
}

.namaaly-scope .hero-mock-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .06);
  overflow: hidden;
  transform: rotate(1.1deg);
  animation: nexMockFloat 6s ease-in-out infinite;
}

.namaaly-scope .mock-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  background: #F3EEE2;
  border-bottom: 1px solid #E2DCCF;
}

.namaaly-scope .mock-dot { width: 9px; height: 9px; border-radius: 50%; background: #C9C4B9; }
.namaaly-scope .mock-dot:nth-child(1) { background: #F0625B; }
.namaaly-scope .mock-dot:nth-child(2) { background: #F0B429; }
.namaaly-scope .mock-dot:nth-child(3) { background: #3CB878; }

.namaaly-scope .mock-path {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(26, 31, 43, .5);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.namaaly-scope .mock-tabs {
  display: flex;
  gap: 2px;
  padding: 0 10px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}

.namaaly-scope .mock-tab {
  font-family: var(--mono);
  font-size: 11px;
  padding: 10px 12px;
  color: rgba(26, 31, 43, .5);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.namaaly-scope .mock-tab.active {
  color: var(--teal-deep);
  border-bottom-color: var(--teal);
  font-weight: 600;
}

.namaaly-scope .mock-body { padding: 20px; }

.namaaly-scope .mock-row-head {
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 14px;
}

.namaaly-scope .mock-status {
  font-family: var(--mono);
  font-size: 10.5px;
  background: rgba(11, 110, 79, .12);
  color: #0B6E4F;
  border: 1px solid rgba(11, 110, 79, .35);
  padding: 3px 9px;
  border-radius: 20px;
  margin-left: 8px;
}

.namaaly-scope table.mock-table { width: 100%; border-collapse: collapse; font-size: 12.5px; margin-bottom: 16px; }
.namaaly-scope table.mock-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(26, 31, 43, .45);
  padding: 0 0 8px;
  border-bottom: 1px solid var(--line);
}
.namaaly-scope table.mock-table td { padding: 9px 0; border-bottom: 1px solid var(--line); color: rgba(26, 31, 43, .78); }
.namaaly-scope table.mock-table tr:last-child td { border-bottom: none; }

.namaaly-scope .mock-actions { display: flex; gap: 8px; }
.namaaly-scope .mock-btn { font-family: var(--mono); font-size: 11px; padding: 8px 16px; border-radius: 7px; background: var(--navy); color: #fff; font-weight: 600; }
.namaaly-scope .mock-btn.ghost { background: transparent; border: 1px solid var(--line-strong); color: var(--navy); }

@keyframes nexMockFloat {
  0%, 100% { transform: rotate(1.1deg) translateY(0); }
  50% { transform: rotate(1.1deg) translateY(-10px); }
}

.namaaly-scope .hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .97);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 30px;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, .4);
  white-space: nowrap;
  animation: nexChipFloat 5s ease-in-out infinite;
}
.namaaly-scope .hero-chip i { color: var(--teal-deep); }
.namaaly-scope .hero-chip.chip-a { top: 4px; left: 4px; animation-delay: .2s; }
.namaaly-scope .hero-chip.chip-b { bottom: 84px; right: -6px; animation-delay: 1.1s; }
.namaaly-scope .hero-chip.chip-c { bottom: -6px; left: 54px; animation-delay: 2s; }

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

@media(max-width: 991.98px) {
  .namaaly-scope .hero-mock-wrap { padding: 44px 16px 32px; }
  .namaaly-scope .hero-chip { position: static; display: inline-flex; margin: 8px 8px 0 0; animation: none; }
  .namaaly-scope .hero-mock-card { transform: none; animation: none; }
}

@media(prefers-reduced-motion: reduce) {
  .namaaly-scope .hero-mock-card, .namaaly-scope .hero-chip { animation: none; }
}

/* Soft drifting glow blobs behind the banner content — gives the hero
   a premium, alive feel instead of a flat gradient slab. */
.namaaly-scope .hero::before,
.namaaly-scope .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .32;
  pointer-events: none;
  z-index: 0;
}

.namaaly-scope .hero::before {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  top: -160px;
  right: -110px;
  animation: nexDriftA 15s ease-in-out infinite;
}

.namaaly-scope .hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--copper) 0%, transparent 70%);
  bottom: -180px;
  left: -90px;
  animation: nexDriftB 17s ease-in-out infinite;
}

@keyframes nexDriftA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-34px, 30px); }
}

@keyframes nexDriftB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(32px, -26px); }
}

.namaaly-scope .hero > .container {
  position: relative;
  z-index: 1;
}

@media(prefers-reduced-motion:reduce) {
  .namaaly-scope .hero::before,
  .namaaly-scope .hero::after { animation: none; }
}

.namaaly-scope .hero-eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.namaaly-scope .hero-eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--copper);
}

.namaaly-scope .hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 22px;
}

.namaaly-scope .hero h1 em {
  font-style: normal;
  color: var(--copper);
}

.namaaly-scope .hero p.lead {
  color: rgba(255, 255, 255, .78);
  font-size: 17.5px;
  margin-bottom: 34px;
}

.namaaly-scope .hero-ctas .btn-outline {
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
}

.namaaly-scope .hero-ctas .btn-outline:hover {
  border-color: #fff;
}

.namaaly-scope .trust-row {
  padding-top: 22px;
}

.namaaly-scope .trust-item {
  font-family: var(--mono);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .68);
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.namaaly-scope .trust-item i {
  color: var(--copper);
  font-size: 14px;
}

.namaaly-scope .trust-item:last-child {
  border-right: none;
  margin-right: 0;
}

.namaaly-scope .trust-item strong {
  color: #fff;
  font-weight: 600;
}

.namaaly-scope .industry-strip {
  margin-top: 14px;
}

.namaaly-scope .industry-card {
  background: rgba(255, 255, 255, .06);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  height: 100%;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.namaaly-scope .industry-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(11, 110, 79, .4);
}

.namaaly-scope .industry-card .num {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: .06em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.namaaly-scope .industry-card h4 {
  font-family: var(--display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
}

.namaaly-scope .industry-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
}

/* ---- Calculator ---- */
.namaaly-scope #calculator {
  background: var(--navy-deep);
  color: #fff;
}

.namaaly-scope #calculator .eyebrow {
  color: var(--copper);
  background: rgba(11, 110, 79, .12);
  border-color: rgba(11, 110, 79, .35);
}

.namaaly-scope #calculator .eyebrow::before {
  background: var(--copper);
}

.namaaly-scope #calculator h2 {
  color: #fff;
}

.namaaly-scope #calculator .section-head p {
  color: rgba(255, 255, 255, .62);
}

.namaaly-scope .calc-panel {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 32px;
  border-radius: 12px;
}

.namaaly-scope .calc-step-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.namaaly-scope .calc-step-label i {
  font-size: 14px;
}

.namaaly-scope .chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.namaaly-scope .chip {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  font-size: 13.5px;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  transition: .15s;
}

.namaaly-scope .chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: scale(1.04);
}

.namaaly-scope .chip:hover:not(.active) {
  border-color: rgba(255, 255, 255, .5);
}

.namaaly-scope .module-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: 14.5px;
}

.namaaly-scope .module-row:last-child {
  border-bottom: none;
}

.namaaly-scope .module-row label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, .85);
}

.namaaly-scope .module-row .price {
  font-family: var(--mono);
  color: var(--copper);
  font-size: 13.5px;
}

.namaaly-scope input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
}

.namaaly-scope .calc-result {
  background: #fff;
  color: var(--ink);
  padding: 34px;
  position: sticky;
  top: 96px;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(17, 19, 22, .28);
}

.namaaly-scope .calc-result .tier-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 6px;
}

.namaaly-scope .calc-result .price {
  font-family: var(--mono);
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  transition: transform .2s ease;
}

.namaaly-scope .calc-result .price.price-bump {
  transform: scale(1.06);
}

.namaaly-scope .calc-result .price-note {
  font-size: 12.5px;
  color: rgba(26, 31, 43, .6);
  margin-bottom: 24px;
}

.namaaly-scope .calc-includes {
  list-style: none;
  margin-bottom: 26px;
  padding: 0;
}

.namaaly-scope .calc-includes li {
  font-size: 13.5px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(26, 31, 43, .78);
}

.namaaly-scope .calc-result .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

/* ---- Stats ---- */
.namaaly-scope .stats-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.namaaly-scope .stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.namaaly-scope .stat .num {
  font-family: var(--mono);
  font-size: 32px;
  color: var(--navy);
  font-weight: 600;
}

.namaaly-scope .stat .label {
  font-size: 15px;
  color: rgba(26, 31, 43, .68);
  margin-top: 6px;
}

@media(min-width:768px) {
  .namaaly-scope .stat {
    border-bottom: none;
  }
}

/* ---- Module grid ---- */
.namaaly-scope .mod-cols { --acc: var(--teal-deep); }

.namaaly-scope .mod-col-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF9F4 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 26px 28px;
  box-shadow: 0 1px 2px rgba(17, 19, 22, .05), 0 14px 26px -20px rgba(17, 19, 22, .18);
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, border-color .35s ease;
}

.namaaly-scope .mod-col-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--acc) 0%, transparent 115%);
}

.namaaly-scope .col:nth-child(4n+1) .mod-col-card { --acc: var(--teal-deep); }
.namaaly-scope .col:nth-child(4n+2) .mod-col-card { --acc: var(--teal); }
.namaaly-scope .col:nth-child(4n+3) .mod-col-card { --acc: var(--copper-deep); }
.namaaly-scope .col:nth-child(4n+4) .mod-col-card { --acc: var(--navy); }

.namaaly-scope .mod-col-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 46px -24px rgba(17, 19, 22, .28), 0 4px 10px rgba(17, 19, 22, .06);
  border-color: rgba(22, 24, 27, .22);
}

.namaaly-scope .mod-col-label {
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--acc);
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.namaaly-scope .mod-col-label i {
  flex: none;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--acc) 14%, #fff);
  color: var(--acc);
  font-size: 16px;
}

.namaaly-scope .mod-item {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.namaaly-scope .mod-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.namaaly-scope .mod-item:last-child {
  padding-bottom: 0;
}

.namaaly-scope .mod-item h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.namaaly-scope .mod-item h4 i {
  flex: none;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: rgba(22, 24, 27, .06);
  color: var(--acc);
  font-size: 12.5px;
}

.namaaly-scope .mod-item p {
  font-size: 14.5px;
  color: rgba(26, 31, 43, .68);
  margin: 0 0 0 33px;
}

/* ---- Pricing tiers ---- */
.namaaly-scope .tier {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 10px rgba(17, 19, 22, .05);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.namaaly-scope .tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(17, 19, 22, .14);
}

.namaaly-scope .tier.popular {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 16px 34px rgba(17, 19, 22, .22);
}

.namaaly-scope .tier.popular .tier-name,
.namaaly-scope .tier.popular .tier-price {
  color: #fff;
}

.namaaly-scope .tier.popular .tier-includes li {
  color: rgba(255, 255, 255, .8);
}

.namaaly-scope .tier.popular .tier-includes li::before {
  color: var(--copper);
}

.namaaly-scope .badge-popular {
  position: absolute;
  top: -11px;
  right: 24px;
  background: var(--copper);
  color: #fff;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.namaaly-scope .tier-name {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 14px;
}

.namaaly-scope .tier-price {
  font-family: var(--mono);
  font-size: 34px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.namaaly-scope .tier-price-note {
  font-size: 14px;
  color: rgba(26, 31, 43, .6);
  margin-bottom: 22px;
  font-weight: 800;
}

.namaaly-scope .tier.popular .tier-price-note {
  color: rgba(255, 255, 255, .5);
}

.namaaly-scope .tier-includes {
  list-style: none;
  margin-bottom: 26px;
  padding: 0;
}

.namaaly-scope .tier-includes li {
  font-size: 15px;
  padding: 6px 0 6px 18px;
  position: relative;
}

.namaaly-scope .tier-includes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--copper);
}

.namaaly-scope .tier .btn {
  width: 100%;
  justify-content: center;
}

.namaaly-scope .guarantee-row {
  margin-top: 56px;
}

.namaaly-scope .g-num {
  font-family: var(--mono);
  color: var(--copper);
  font-size: 13px;
  margin-bottom: 10px;
}

.namaaly-scope .guarantee-row h4 {
  font-family: var(--display);
  font-size: 16.5px;
  margin-bottom: 6px;
}

.namaaly-scope .guarantee-row p {
  font-size: 13.5px;
  color: rgba(26, 31, 43, .7);
}

/* ---- Comparison ---- */
.namaaly-scope .table-responsive {
  padding-top: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(22, 24, 27, .03), transparent 40px);
}

.namaaly-scope table.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(17, 19, 22, .04), 0 20px 40px -28px rgba(17, 19, 22, .25);
}

.namaaly-scope table.compare th,
.namaaly-scope table.compare td {
  padding: 17px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.namaaly-scope table.compare thead th {
  /* font-family: var(--mono); */
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color:#EFE2C4;
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
  background: #16181B;
}

.namaaly-scope table.compare thead th:first-child {
  border-top-left-radius: 14px;
}

.namaaly-scope table.compare th:first-child{
  color:#EFE2C4 !important;
}

.namaaly-scope table.compare td:first-child,
.namaaly-scope table.compare th:first-child {
  color:#16181B;
  font-size: 15px;
  font-weight: 500;
}

.namaaly-scope table.compare tr:last-child td {
  border-bottom: none;
}

.namaaly-scope table.compare tbody tr {
  transition: background .2s ease;
}

.namaaly-scope table.compare tbody tr:hover {
  background: rgba(22, 24, 27, .025);
}

/* Featured / winning column, styled as an elevated card inset into the table */
.namaaly-scope table.compare th.th-featured,
.namaaly-scope table.compare td.win {
  color: var(--teal-deep);
  font-weight: 600;
  background: linear-gradient(180deg, rgba(47, 111, 237, .1), rgba(47, 111, 237, .05));
  box-shadow: inset 1px 0 0 rgba(47, 111, 237, .18), inset -1px 0 0 rgba(47, 111, 237, .18);
  position: relative;
}

.namaaly-scope table.compare thead th.th-featured {
  border-top-right-radius: 14px;
  box-shadow: inset 1px 0 0 rgba(47, 111, 237, .22), inset -1px 0 0 rgba(47, 111, 237, .22), inset 0 3px 0 var(--teal-deep);
  padding-top: 26px;
}

.namaaly-scope table.compare tbody tr:last-child td.win {
  border-bottom-right-radius: 14px;
}

.namaaly-scope table.compare td.win i {
  color: var(--teal-deep);
  margin-right: 6px;
}

.namaaly-scope .best-chip {
  display: block;
  width: max-content;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  padding: 4px 10px 4px 8px;
  border-radius: 20px;
  box-shadow: 0 6px 14px -4px rgba(11, 110, 79, .5);
  margin-bottom: 8px;
}

.namaaly-scope .best-chip i {
  margin-right: 3px;
  font-size: 9px;
}

.namaaly-scope .compare-note {
  font-size: 12px;
  color: rgba(26, 31, 43, .55);
  margin-top: 16px;
  font-style: italic;
}

.namaaly-scope .compare-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(17, 19, 22, .04);
  height: 100%;
  background: var(--paper);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.namaaly-scope .compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px -20px rgba(17, 19, 22, .22);
}

.namaaly-scope .compare-card h4 {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.namaaly-scope .compare-card h4 i {
  font-size: 15px;
}

.namaaly-scope .compare-cards .col:nth-child(1) .compare-card h4 i,
.namaaly-scope .compare-cards .col:nth-child(2) .compare-card h4 i {
  color: #C8102E;
}

.namaaly-scope .compare-cards .col:nth-child(3) .compare-card h4 i {
  color: var(--teal-deep);
}

.namaaly-scope .compare-card p {
  font-size: 15px;
  color: rgba(26, 31, 43, .72);
}

.namaaly-scope .compare-cards .col:nth-child(3) .compare-card {
  border-color: rgba(47, 111, 237, .35);
  background: linear-gradient(180deg, rgba(47, 111, 237, .07), transparent 60%);
  box-shadow: 0 4px 14px -6px rgba(11, 110, 79, .2);
}

/* ---- What we do (capabilities) ---- */
.namaaly-scope .cap-card {
  border-top: 2px solid var(--copper);
  padding-top: 18px;
  height: 100%;
  transition: transform .25s ease;
}

.namaaly-scope .cap-card:hover {
  transform: translateY(-6px);
}

.namaaly-scope .cap-num {
  font-family: var(--mono);
  color: rgba(26, 31, 43, .55);
  font-size: 20px;
  margin-bottom: 14px;
}

.namaaly-scope .cap-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.namaaly-scope .cap-card p {
  font-size: 15px;
  color: rgba(26, 31, 43, .7);
}

/* ---- Industries ---- */
.namaaly-scope .ind-card {
  background: var(--paper);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(17, 19, 22, .04);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.namaaly-scope .ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(17, 19, 22, .1);
}

.namaaly-scope .ind-card h4 {
  font-family: var(--display);
  font-size: 18px;
  margin-bottom: 8px;
}

.namaaly-scope .ind-card p {
  font-size: 15px;
  color: rgba(26, 31, 43, .68);
}

/* ---- Process ---- */
.namaaly-scope .process-step {
  border-left: 2px solid var(--line-strong);
  padding-left: 20px;
  height: 100%;
}

.namaaly-scope .process-step .p-num {
  font-family: var(--mono);
  color: var(--teal-deep);
  font-size: 13px;
  margin-bottom: 10px;
}

.namaaly-scope .process-step h4 {
  font-family: var(--display);
  font-size: 18px;
  margin-bottom: 8px;
}

.namaaly-scope .process-step p {
  font-size: 15px;
  color: rgba(26, 31, 43, .68);
  margin-bottom: 10px;
}

.namaaly-scope .process-step .p-time {
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 800;
}

/* ---- Working model ---- */
.namaaly-scope .work-card h4 {
  font-family: var(--display);
  font-size: 18px;
  margin-bottom: 8px;
}

.namaaly-scope .work-card p {
  font-size: 15px;
  color: rgba(26, 31, 43, .68);
}

.namaaly-scope .work-perks {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.namaaly-scope .perk {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(26, 31, 43, .72);
  padding: 16px 24px 16px 0;
  margin-right: 24px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
}

.namaaly-scope .perk:last-child {
  border-right: none;
  margin-right: 0;
}

/* ---- Proof ---- */
.namaaly-scope .proof-card {
  --pacc: var(--teal);
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 32px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .07);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06) inset, 0 24px 40px -26px rgba(17, 19, 22, .7);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease;
}

.namaaly-scope .proof-card::after {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--pacc) 35%, transparent), transparent 70%);
  pointer-events: none;
}

.namaaly-scope .col:nth-child(1) .proof-card { --pacc: #fff; }
.namaaly-scope .col:nth-child(2) .proof-card { --pacc: var(--copper); }
.namaaly-scope .col:nth-child(3) .proof-card { --pacc: #35C39A; }

.namaaly-scope .proof-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 32px 54px -22px rgba(17, 19, 22, .75);
}

.namaaly-scope .proof-card .proof-num {
  font-family: var(--mono);
  font-size: 34px;
  letter-spacing: -.01em;
  color: var(--pacc);
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
}

.namaaly-scope .proof-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .72);
  position: relative;
}

.namaaly-scope .proof-note {
  font-size: 12.5px;
  color: rgba(26, 31, 43, .58);
  margin-top: 20px;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---- Final CTA ---- */
.namaaly-scope .final-cta {
  background: var(--navy-deep);
  color: #fff;
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.namaaly-scope .final-cta h2 {
  color: #fff;
  margin-bottom: 14px;
}

.namaaly-scope .final-cta p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 36px;
  font-size: 16px;
}

/* =========================================================
   RESPONSIVE — small screens
   ========================================================= */
@media(max-width:991.98px) {

  /* Once the calc columns stack, drop the sticky pin so the
     result panel doesn't float oddly over the panel above it. */
  .namaaly-scope .calc-result {
    position: static;
    top: auto;
  }
}

@media(max-width:767.98px) {
  .namaaly-scope .hero {
    padding: 52px 0 60px;
  }

  .namaaly-scope .hero p.lead {
    font-size: 16px;
  }

  .namaaly-scope .trust-item {
    font-size: 11.5px;
    padding-right: 16px;
    margin-right: 16px;
  }

  .namaaly-scope .calc-panel,
  .namaaly-scope .calc-result {
    padding: 22px;
  }

  .namaaly-scope table.compare {
    font-size: 12.5px;
  }

  .namaaly-scope table.compare th,
  .namaaly-scope table.compare td {
    padding: 12px 10px;
    white-space: nowrap;
  }

  .namaaly-scope .final-cta {
    padding: 3rem 0;
  }

  .namaaly-scope .final-ctas {
    flex-direction: column;
    width: 100%;
  }

  .namaaly-scope .final-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}