:root {
  --bg: #f6f5fc;
  --card: #ffffff;
  --ink: #1d1b2e;
  --ink-soft: #5b5872;
  --ink-faint: #8b87a3;
  --line: #e7e4f3;

  --indigo: #5b5fef;
  --indigo-deep: #4448c9;
  --indigo-wash: #ededfd;

  --coral: #ff6f59;
  --coral-wash: #ffe9e4;

  --yellow: #ffc857;
  --yellow-deep: #e8a93c;
  --yellow-wash: #fff6e0;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.display {
  font-family: "Sora", system-ui, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: var(--bg);
  position: relative;
  z-index: 100;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 44px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-4deg);
}
.logo-mark svg {
  width: 17px;
  height: 17px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 600;
}
.nav-links a {
  display: flex;
  gap: 6px;
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: var(--indigo-deep);
}
.caret {
  width: 9px;
  height: 9px;
  opacity: 0.7;
  transition: transform 0.2s ease;
  display: inline-block;
  flex-shrink: 0;
  align-self: center;
}
.nav-cta {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 100px;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--indigo-deep);
}

/* Nav Actions & Mobile Toggle */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Submenus & Dropdowns */
.nav-item {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
}
.nav-item.has-dropdown:hover .caret {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px -15px rgba(29, 27, 46, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 100;
}
.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  width: 720px;
  left: 0;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mega-heading {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--indigo-deep);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.mega-item {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.mega-item:hover {
  background: var(--indigo-wash);
  color: var(--indigo-deep);
}
.mega-item .mega-icon {
  font-size: 20px;
  margin-bottom: 4px;
}
.mega-item .mega-title {
  font-weight: 700;
}
.mega-item .mega-desc {
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-top: 2px;
  font-weight: 500;
}

.simple-menu {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
}
.dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--ink);
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.dropdown-link:hover {
  background: var(--indigo-wash);
  color: var(--indigo-deep);
}
.dropdown-title {
  font-weight: 700;
}
.dropdown-desc {
  font-size: 11.5px;
  color: var(--ink-faint);
  margin-top: 2px;
  font-weight: 500;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 76px 40px 100px;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
}
.blob-1 {
  width: 480px;
  height: 480px;
  background: var(--indigo-wash);
  top: -160px;
  right: -60px;
}
.blob-2 {
  width: 320px;
  height: 320px;
  background: var(--coral-wash);
  bottom: -100px;
  right: 22%;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}
.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  background: var(--indigo-wash);
  padding: 8px 15px 8px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

h1 {
  font-size: 44px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 0 0 22px;
}
.underline {
  position: relative;
  white-space: nowrap;
}
.underline svg {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
}

.sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 0 34px;
  font-weight: 500;
}

.trustbar {
  margin-bottom: 34px;
}
.trust-label {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-label::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.trust-logo {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.trust-logo img {
  max-height: 24px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.trust-logo-dark {
  background: #0b3d2e;
  border-color: #0b3d2e;
}
.trust-logo-navy {
  background: #06304b;
  border-color: #06304b;
}
.trust-logo-gray {
  background: #666666;
  border-color: #666666;
}
.trust-logo-trustpilot {
  background: #151434;
  border-color: #151434;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 50px;
}
.btn-primary {
  background: var(--indigo);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 100px;
  display: inline-block;
  box-shadow: 0 10px 24px -8px rgba(91, 95, 239, 0.55);
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}
.btn-primary:hover {
  background: var(--indigo-deep);
  transform: translateY(-2px);
}
.btn-secondary {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover {
  color: var(--indigo-deep);
}

.diffs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.diff-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 9px 16px 9px 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.diff-check {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--indigo-wash);
  color: var(--indigo-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- SIGNATURE ELEMENT: match-card stack ---------- */
.hero-visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.deck {
  position: relative;
  height: 420px;
  margin-top: 56px;
}

.review-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 20px;
  margin-top: 22px;
  box-shadow: 0 10px 24px -18px rgba(29, 27, 46, 0.2);
}
.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.review-number {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}
.review-stars {
  color: #ffb93d;
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 3px;
}
.review-divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
.review-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}
.review-platforms-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.review-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--bg);
}
.review-mark img {
  max-height: 14px;
  max-width: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.review-mark-dark {
  background: #151434;
}
.meet-badge {
  position: absolute;
  top: -38px;
  left: -18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 20px 8px 8px;
  box-shadow: 0 14px 30px -14px rgba(29, 27, 46, 0.28);
  animation: floatBadge 0.6s ease both;
  animation-delay: 0.15s;
}
.meet-label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.meet-name {
  font-size: 14px;
  font-weight: 700;
}
.meet-sub {
  font-size: 11.5px;
  color: var(--ink-faint);
  font-weight: 600;
}
@keyframes floatBadge {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -20px rgba(29, 27, 46, 0.18);
  padding: 26px;
}
.card-back-1 {
  transform: rotate(7deg) translateY(18px);
  background: var(--yellow-wash);
  z-index: 1;
  height: 400px;
}
.card-back-2 {
  transform: rotate(-5deg) translateY(10px);
  background: var(--coral-wash);
  z-index: 2;
  height: 400px;
}
.card-front {
  z-index: 3;
  height: 400px;
  transform: rotate(1.5deg);
}
.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -4px rgba(29, 27, 46, 0.25);
}
.avatar svg {
  display: block;
}
.card-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.card-role {
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 600;
  margin-top: 2px;
}

.tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.tag {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
}
.tag-a {
  background: var(--indigo-wash);
  color: var(--indigo-deep);
}
.tag-b {
  background: var(--coral-wash);
  color: #c94a37;
}
.tag-c {
  background: var(--yellow-wash);
  color: #8a6511;
}

.card-note {
  background: var(--bg);
  border-radius: 14px;
  padding: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 20px;
}
.card-note b {
  color: var(--ink);
}

.ready-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 15px;
  border-radius: 100px;
}
.ready-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8be0a6;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(14px) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1.5deg);
  }
}
.card-front {
  animation: floatIn 0.6s ease both;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    width: 300px;
    background: var(--card);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 90px 28px 40px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 90;
    overflow-y: auto;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 12px;
    display: none;
    width: 100% !important;
    text-align: left;
    align-items: flex-start;
  }
  .nav-item.has-dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .mega-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    text-align: left;
  }
  .mega-item,
  .dropdown-link {
    text-align: left;
    align-items: flex-start;
  }
  .nav {
    padding: 16px 20px;
  }
  .hero {
    padding: 48px 20px 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  h1 {
    font-size: 36px;
  }
  .hero-visual {
    display: none;
  }
  .deck {
    height: 380px;
    max-width: 400px;
    margin: 56px auto 0;
  }
  .meet-badge {
    top: -30px;
    left: 0;
  }
  .trust-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 520px) {
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .features {
    flex-direction: column;
  }
  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .card-front {
    animation: none;
  }
  .meet-badge {
    animation: none;
  }
}

/* ---------- CAPABILITIES ---------- */
.capabilities {
  background: var(--card);
  padding: 88px 40px 100px;
  border-top: 1px solid var(--line);
}
.services {
  background: var(--card);
  padding: 20px 40px 100px;
}
.cap-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cap-head {
  max-width: 560px;
  margin-bottom: 48px;
}
.cap-head h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 14px 0 10px;
}
.cap-sub {
  font-size: 16.5px;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cap-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.cap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(29, 27, 46, 0.25);
}

/* ---- grouped service categories + selectable task chips ---- */
.service-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-group {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 20px 24px;
}
.service-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.service-group-head .cap-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}
.service-group-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 13px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease;
}
.chip:hover {
  border-color: var(--indigo);
  transform: translateY(-1px);
}
.chip:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
}
.chip.selected {
  background: var(--indigo);
  border-color: var(--indigo);
  color: #ffffff;
}
.service-group:nth-child(3n + 1) .cap-icon {
  background: var(--indigo-wash);
  border-color: transparent;
}
.service-group:nth-child(3n + 2) .cap-icon {
  background: var(--coral-wash);
  border-color: transparent;
}
.service-group:nth-child(3n) .cap-icon {
  background: var(--yellow-wash);
  border-color: transparent;
}

.services-summary {
  margin-top: 28px;
  padding: 16px 22px;
  border-radius: 14px;
  background: var(--indigo-wash);
  border: 1px dashed var(--indigo);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  transition: opacity 0.15s ease;
}
.services-summary-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.services-summary.empty {
  background: var(--card);
  border-style: solid;
  border-color: var(--line);
  color: var(--ink-faint);
  font-weight: 500;
}
.services-summary-cta {
  display: none;
  flex-shrink: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  background: var(--ink);
  border-radius: 100px;
  padding: 9px 16px;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.services-summary-cta:hover {
  transform: translateY(-1px);
}
.services-summary:not(.empty) .services-summary-cta {
  display: inline-block;
}

.cap-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.cap-card:nth-child(3n + 1) .cap-icon {
  background: var(--indigo-wash);
  border-color: transparent;
}
.cap-card:nth-child(3n + 2) .cap-icon {
  background: var(--coral-wash);
  border-color: transparent;
}
.cap-card:nth-child(3n) .cap-icon {
  background: var(--yellow-wash);
  border-color: transparent;
}
.cap-label {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.cap-desc {
  font-size: 12.5px;
  color: var(--ink-faint);
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 900px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .service-groups {
    grid-template-columns: 1fr;
  }
  .services-summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .services-summary-cta {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .capabilities {
    padding: 56px 20px 64px;
  }
  .services {
    padding: 12px 20px 56px;
  }
  .cap-head h2 {
    font-size: 26px;
  }
}

/* ---------- PRICING ---------- */
.pricing {
  background: var(--bg);
  padding: 88px 40px;
}

.cost-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
.cost-col {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
}
.cost-col-local {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cost-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  position: relative;
  z-index: 2;
}
.cost-vs span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(29, 27, 46, 0.4);
}
.cost-col-title {
  font-size: 15px;
  font-weight: 800;
}
.cost-col-sub {
  font-size: 12.5px;
  color: var(--ink-faint);
  font-weight: 600;
  margin-top: 3px;
  margin-bottom: 18px;
}
.cost-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.cost-line span:first-child {
  color: var(--ink);
}
.cost-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

/* ---- the Plugwork column doubles as the pricing card ---- */
.cost-col-pwd {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: linear-gradient(
    135deg,
    var(--indigo) 0%,
    var(--indigo-deep) 100%
  );
  border-color: transparent;
  padding: 28px 30px 32px;
}
.price-blob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.18;
  filter: blur(20px);
  top: -90px;
  right: -70px;
  pointer-events: none;
}
.price-blob-2 {
  background: var(--yellow);
  opacity: 0.14;
  width: 170px;
  height: 170px;
  top: auto;
  bottom: -80px;
  left: -60px;
  right: auto;
}
.cost-col-head-pwd,
.cost-line-pwd,
.price-reveal {
  position: relative;
  z-index: 1;
}
.cost-col-title-pwd {
  color: #ffffff;
}
.cost-col-sub-pwd {
  color: rgba(255, 255, 255, 0.7);
}
.cost-line-pwd {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
}
.cost-line-pwd span:first-child {
  color: #ffffff;
}
.cost-yes-pwd {
  color: #ffffff;
  font-weight: 800;
}

.price-reveal {
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.price-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 6px;
}
.price-currency {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}
.price-number {
  font-family: "Sora", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.price-unit {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.price-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 20px;
  line-height: 1.5;
}
.price-subnote {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  margin: -14px 0 20px;
  line-height: 1.5;
  font-weight: 500;
}
.price-cta {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: none;
  display: block;
  text-align: center;
}
.price-cta:hover {
  background: var(--yellow-deep);
  color: var(--ink);
}

.cost-savings {
  text-align: center;
  max-width: 940px;
  margin: 24px auto 0;
  background: var(--coral-wash);
  color: var(--ink);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 600;
}
.cost-savings strong {
  color: var(--coral);
}
.cost-disclaimer {
  text-align: center;
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 11.5px;
  color: var(--ink-faint);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .cost-compare {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cost-col,
  .cost-col-local,
  .cost-col-pwd {
    border-radius: 18px;
  }
  .cost-vs {
    padding: 2px 0;
  }
  .cost-vs span {
    margin: 0 auto;
  }
}
@media (max-width: 520px) {
  .pricing {
    padding: 56px 20px;
  }
  .price-number {
    font-size: 38px;
  }
}

/* ---------- WHY IT WORKS ---------- */
.terms {
  background: var(--card);
  padding: 88px 40px;
}
.terms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.term-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 22px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.term-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(29, 27, 46, 0.22);
}
.term-featured {
  background: var(--card);
  border: 1.5px solid var(--indigo);
  box-shadow: 0 14px 30px -20px rgba(91, 95, 239, 0.5);
}
.term-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 16px;
}
.term-icon-indigo {
  background: var(--indigo-wash);
}
.term-icon-coral {
  background: var(--coral-wash);
}
.term-icon-yellow {
  background: var(--yellow-wash);
}
.term-title {
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.term-underline {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.term-underline-indigo {
  background: var(--indigo);
}
.term-underline-coral {
  background: var(--coral);
}
.term-underline-yellow {
  background: var(--yellow);
}
.term-desc {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-faint);
}

.terms-strip {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1180px;
  margin: 32px auto 0;
  background: var(--indigo-wash);
  border-radius: 16px;
  padding: 22px 30px;
}
.terms-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.terms-strip-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--indigo);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.terms-strip-title {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.terms-strip-desc {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}
.terms-strip-tagline {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--indigo-deep);
  line-height: 1.4;
}
.terms-strip-divider {
  width: 1px;
  align-self: stretch;
  background: var(--indigo);
  opacity: 0.25;
  margin: 0 30px;
}

@media (max-width: 980px) {
  .terms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .terms-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .terms-strip-divider {
    display: none;
  }
}
@media (max-width: 520px) {
  .terms {
    padding: 56px 20px;
  }
  .terms-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- HOW IT WORKS ---------- */
.howit {
  background: var(--bg);
  padding: 88px 40px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
}
.step-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}
.step:nth-child(2) .step-num {
  background: var(--coral);
}
.step:nth-child(3) .step-num {
  background: #e0a82e;
}
.step:nth-child(4) .step-num {
  background: var(--indigo-deep);
}
.step-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 500;
}

/* ---------- COMPARE ---------- */
.compare {
  background: var(--card);
  padding: 88px 40px;
}
.compare-table {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
}
.ct-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
}
.ct-row:not(:last-child) {
  border-bottom: 1px solid var(--line);
}
.ct-cell {
  padding: 16px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
}
.ct-label {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
}
.ct-head .ct-cell {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
}
.ct-highlight {
  background: var(--indigo-wash);
  color: var(--indigo-deep);
  font-weight: 700;
}
.ct-head .ct-highlight {
  background: var(--indigo);
  color: #fff;
}

/* ---------- TESTIMONIALS (animated wall) ---------- */
.testimonials {
  background: var(--bg);
  padding: 88px 0;
  overflow: hidden;
}
.testi2-viewport {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.testi2-row {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.testi2-row + .testi2-row {
  margin-top: 20px;
}
.testi2-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testi2-marquee-left 30s linear infinite;
}
.testi2-track-reverse {
  animation-name: testi2-marquee-right;
}
.testi2-row:hover .testi2-track {
  animation-play-state: paused;
}
@keyframes testi2-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes testi2-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .testi2-track {
    animation: none;
  }
}

.testi2-card {
  flex: 0 0 auto;
  width: 260px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 18px;
}
.testi2-placeholder {
  border-style: dashed;
  opacity: 0.65;
}
.testi2-stars {
  color: var(--yellow-deep);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.testi2-text {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
  min-height: 100px;
}
.testi2-attribution {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi2-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--indigo-wash);
  color: var(--indigo-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.testi2-logo-badge {
  height: 34px;
  min-width: 34px;
  max-width: 110px;
  flex-shrink: 0;
  border-radius: 8px;
  padding: 5px 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi2-logo-badge img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.testi2-logo-badge-dark {
  background: #0b3d2e;
  border-color: #0b3d2e;
}
.testi2-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.testi2-role {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-faint);
}

@media (max-width: 640px) {
  .testi2-card {
    width: 230px;
  }
  .testi2-text {
    min-height: 110px;
  }
}

/* ---------- TRUST ---------- */
.trust {
  background: var(--card);
  padding: 88px 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg);
  padding: 88px 40px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
}
.faq-q {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.faq-a {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 500;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--indigo);
  padding: 90px 40px;
  text-align: center;
}
.final-inner {
  max-width: 520px;
  margin: 0 auto;
}
.final-cta h2 {
  color: #fff;
  font-size: 34px;
  margin: 0 0 12px;
}
.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 28px;
}
.btn-final {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: none;
}
.btn-final:hover {
  background: var(--yellow-deep);
  color: var(--ink);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .compare-table {
    overflow-x: auto;
  }
  .ct-row {
    grid-template-columns: 140px repeat(3, 160px);
    min-width: 620px;
  }
}
@media (max-width: 520px) {
  .howit,
  .compare,
  .proof,
  .trust,
  .faq,
  .final-cta {
    padding: 56px 20px;
  }
  .final-cta h2 {
    font-size: 27px;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: #ffffff;
  padding: 32px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  font-weight: 500;
}
.footer-heading {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: var(--yellow);
}
.footer-bottom {
  text-align: center;
}
.footer-bottom .copyright {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 520px) {
  .site-footer {
    padding: 32px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
