
/* ════════════════════════════════════════════════════════════
   STYLE.CSS — Ecommerce Website Maintenance landing page
   Only the pieces Bootstrap utilities/components can't express:
   brand gradients, icon boxes, card hover lift. Layout, grid,
   spacing, buttons and typography scaffolding are Bootstrap.
════════════════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

/* ── Uniform section spacing ─────────────────────────────── */
.ecm-section-py {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ── Header ──────────────────────────────────────────────── */
.ecm-navy-text {
  color: var(--ecm-navy);
}

.ecm-header-cta {
  padding: 10px 20px;
  font-size: 14px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.ecm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 26px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.ecm-btn-primary {
  background: linear-gradient(120deg, var(--ecm-red) 0%, var(--ecm-red-2) 100%);
  color: #fff;
  border-color: transparent;
}

.ecm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -14px rgba(170, 33, 33, 0.48);
  color: #fff;
}

.ecm-btn-primary svg {
  transition: transform 0.2s ease;
}

.ecm-btn-primary:hover svg {
  transform: translateX(3px);
}

.ecm-btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.ecm-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ecm-btn-outline.is-dark {
  border-color: var(--ecm-line);
  color: var(--ecm-navy);
}

.ecm-btn-outline.is-dark:hover {
  border-color: var(--ecm-navy);
  background: var(--ecm-bg-soft);
}

/* ── Section 1: Hero ─────────────────────────────────────── */
/* .ecm-hero {
  background: linear-gradient(135deg, var(--ecm-navy) 0%, var(--ecm-navy-2) 55%, #182a5c 100%);
} */
.ecm-hero {
    background-image: linear-gradient(135deg, rgb(0 0 0 / 94%) 0%, rgb(0 0 0 / 80%) 55%, rgb(0 0 0 / 87%) 100%), url(https://static.janbaskdigitaldesign.com/1787235979_ecom-img.webp);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.ecm-hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.16) 0%, rgba(255, 185, 22, 0) 70%);
  pointer-events: none;
}

.ecm-hero-form {
  position: relative;
  z-index: 1;
}

.ecm-hero-form .form-control:focus {
  border-color: var(--ecm-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 185, 22, 0.25);
}

.ecm-check-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: transparent;
    color: var(--ecm-gold);
    border: .1px solid var(--ecm-gold);
    border-radius: 50%;
}

/* ── Client logos strip (marquee) ─────────────────────────── */
.ecm-client-logos-section {
  padding: 36px 0;
  border-top: 1px solid var(--ecm-line);
  border-bottom: 1px solid var(--ecm-line);
}

.ecm-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.ecm-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  animation: ecm-marquee-scroll 36s linear infinite;
}

.ecm-marquee:hover .ecm-marquee-track {
  animation-play-state: paused;
}


@keyframes ecm-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

.ecm-client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  flex-shrink: 0;
}
.card-body {
    /* display: flex; */
    padding: 5px;
    gap: 10px;
}
.ecm-client-logo-item img {
    max-height: 100px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
}

/* ── Trusted reviews ──────────────────────────────────────── */
.ecm-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ecm-navy);
}

.ecm-eyebrow-line::before,
.ecm-eyebrow-line::after {
  content: "";
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: var(--ecm-line);
}

.ecm-review-logo {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.ecm-star-rating {
  color: var(--ecm-gold);
  font-size: 15px;
  letter-spacing: 1px;
}

.ecm-star-score {
  color: var(--ecm-navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
}

@media (min-width: 992px) {
  .ecm-review-col:not(:last-child) {
    border-right: 1px solid var(--ecm-line);
  }
}

/* ── Section 2: Services ─────────────────────────────────── */
.ecm-service-card {
    background: #ffffff;
    border-radius: 16px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.ecm-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(10, 18, 48, 0.25);
}
.ecm-service-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(2, 53, 117, 0.1);
}

/* ── Pain points section (colorful icons + light bg) ─────── */
.ecm-pain-points-bg {
  background: linear-gradient(135deg, #eef4ff 0%, #f6f7fb 45%, #fdf2f4 100%);
}

.ecm-icon-blue {
  background: #e6eefd;
  color: #2f6fed;
}

.ecm-icon-red {
  background: #fce9ea;
  color: #e5484d;
}

.ecm-icon-amber {
  background: #fef3e0;
  color: #d98c0f;
}

.ecm-icon-purple {
  background: #f1edfd;
  color: #8b5cf6;
}

.ecm-icon-green {
  background: #e4f4ed;
  color: #22a06b;
}

.ecm-icon-teal {
  background: #e3f6f4;
  color: #0f9c8f;
}

.ecm-icon-pink {
  background: #fde9f3;
  color: #ec4899;
}

.ecm-icon-indigo {
  background: #ecedfd;
  color: #6366f1;
}

/* ── Pain points scroll-linked timeline ──────────────────── */
.ecm-solutions-intro {
  padding-bottom: 8px;
}

@media (min-width: 992px) {
  .ecm-solutions-intro {
    position: sticky;
    top: 110px;
  }
}

.ecm-solutions-media img {
    width: 100%;
    /* box-shadow: 0 20px 40px -24px rgba(10, 18, 48, 0.35); */
}

.ecm-solutions-slider {
  position: relative;
}

.ecm-solutions-slider::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 16px;
  left: 16.5px;
  width: 3px;
  border-radius: 3px;
  background: rgba(10, 18, 48, 0.1);
}

.ecm-solutions-line-fill {
  position: absolute;
  top: 4px;
  left: 16.5px;
  width: 3px;
  height: 0;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--ecm-red), var(--ecm-gold));
  transition: height 0.12s linear;
}

.ecm-solutions-slide {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 56px;
}

.ecm-solutions-slide:last-child {
  margin-bottom: 0;
}

.ecm-solutions-card {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(2, 8, 20, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.3s ease;
}

.ecm-solutions-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 24px -12px rgba(2, 8, 20, 0.18);
}

.ecm-solutions-icon {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: -56px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  line-height: 1;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--ecm-navy), 0 6px 16px -6px rgba(10, 18, 48, 0.35);
}

.ecm-solutions-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.65);
}

.ecm-solutions-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ecm-solutions-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ecm-body);
}

.ecm-solutions-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ecm-red);
}

/* ── Free Health Check ───────────────────────────────────── */
.ecm-health-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ecm-navy) 0%, var(--ecm-navy-2) 55%, #182a5c 100%);
}

.ecm-health-bg::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.14) 0%, rgba(255, 185, 22, 0) 70%);
  pointer-events: none;
}

.ecm-health-input-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.ecm-health-input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.ecm-health-input {
  width: 100%;
  padding: 13px 16px 13px 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 15px;
}

.ecm-health-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ecm-health-input:focus {
  outline: none;
  border-color: var(--ecm-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 185, 22, 0.2);
}

.ecm-health-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  font-weight: 600;
}

.ecm-health-trust li svg {
  color: var(--ecm-gold);
  flex-shrink: 0;
}

.ecm-callout-box {
    max-width: 900px;
    padding: 10px 32px;
    border: 1px solid var(--ecm-line);
    border-radius: 83px;
    background: var(--ecm-bg-soft);
}

.ecm-callout-box-wide {
  max-width: 100%;
  width: 100%;
  padding: 22px 40px;
  border-radius: 20px;
}
.ecm-callout-text {
  color: var(--ecm-navy);
  font-weight: 600;
}

/* ── Section 3: Value proposition ───────────────────────── */
.ecm-soft-bg {
  background: linear-gradient(135deg, #e6ecfb 0%, #eef1fa 40%, #fbeaf0 100%);
}

.ecm-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ecm-line);
}

.ecm-feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ecm-feature-row:first-child {
  padding-top: 0;
}

.ecm-feature-num {
  flex-shrink: 0;
  width: 40px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ecm-gold);
  line-height: 1.3;
}

.ecm-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ecm-navy);
  color: var(--ecm-gold);
}

.ecm-feature-row .ecm-card-title {
  margin-top: 0;
}

/* ── "Our Approach" 3-column section ─────────────────────── */
.ecm-approach-section {
  background: linear-gradient(135deg, var(--ecm-navy) 0%, var(--ecm-navy-2) 55%, #182a5c 100%);
}

.ecm-approach-section::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 69, 69, 0.28) 0%, rgba(214, 69, 69, 0) 70%);
  pointer-events: none;
}

.ecm-approach-section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.14) 0%, rgba(255, 185, 22, 0) 70%);
  pointer-events: none;
}

.ecm-approach-card-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
}

.ecm-approach-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ecm-step-blue) 0%, var(--ecm-navy-2) 100%);
  color: #fff;
  margin-bottom: 18px;
}

.ecm-approach-divider {
  display: block;
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--ecm-gold);
  margin-bottom: 20px;
}

.ecm-approach-card-main .ecm-lead {
  color: rgba(255, 255, 255, 0.72);
}

.ecm-approach-card-main img {
  margin-top: auto;
}

.ecm-approach-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
}

.ecm-approach-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.ecm-approach-strip-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.ecm-approach-strip-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.ecm-approach-strip-icon.c-red {
  background: rgba(229, 72, 77, 0.18);
  color: #ff8a8f;
}

.ecm-approach-strip-icon.c-teal {
  background: rgba(20, 184, 166, 0.18);
  color: #5eead4;
}

.ecm-approach-strip-icon.c-amber {
  background: rgba(245, 166, 35, 0.18);
  color: #ffcf6b;
}

.ecm-approach-strip-icon.c-blue {
  background: rgba(78, 161, 232, 0.18);
  color: #8ec9f5;
}

.ecm-approach-strip-icon.c-purple {
  background: rgba(155, 124, 240, 0.18);
  color: #c7b6fb;
}

.ecm-approach-strip-icon.c-green {
  background: rgba(34, 160, 107, 0.18);
  color: #7be0b3;
}

/* ── Book Consultation ───────────────────────────────────── */
.ecm-consult-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.ecm-consult-image-wrap img {
  display: block;
  width: 100%;
}

.ecm-consult-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(0 37 86) 0%, rgb(0 0 0 / 2%) 40%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

.ecm-consult-image-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 32px 24px 22px;
}

.ecm-consult-image-overlay p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* ── Platforms We Support ────────────────────────────────── */
.ecm-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 150px;
}

.ecm-platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ecm-bg-soft);
  border: 1px solid var(--ecm-line);
  color: var(--ecm-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-platform-logo img {
  max-width: 46px;
  max-height: 46px;
  width: auto;
  object-fit: contain;
}

.ecm-platform:hover .ecm-platform-logo {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -18px rgba(10, 18, 48, 0.35);
}

.ecm-platforms-card {
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  border: 1px solid var(--ecm-line);
  background: linear-gradient(180deg, var(--ecm-bg-soft) 0%, #ffffff 65%);
  padding: 100px 24px;
  min-height: 480px;
}

.ecm-platforms-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background-image: linear-gradient(to right, var(--ecm-line) 50%, transparent 0%);
  background-size: 12px 1px;
  background-repeat: repeat-x;
}

.ecm-platforms-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.ecm-platforms-glow-1 {
  top: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.16) 0%, rgba(255, 185, 22, 0) 70%);
}

.ecm-platforms-glow-2 {
  bottom: -140px;
  right: -80px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(10, 18, 48, 0.1) 0%, rgba(10, 18, 48, 0) 70%);
}

.ecm-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ecm-navy);
  background: #fff;
  border: 1px solid var(--ecm-line);
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 0 10px 20px -14px rgba(10, 18, 48, 0.3);
}

.ecm-platforms-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.ecm-platforms-icon {
  position: absolute;
  z-index: 1;
  animation: ecm-platform-float 5s ease-in-out infinite;
}

.ecm-platforms-icon .ecm-platform-logo {
  width: 64px;
  height: 64px;
  background: #fff;
  box-shadow: 0 16px 30px -14px rgba(10, 18, 48, 0.28);
}

.ecm-platforms-icon .ecm-platform-logo img {
  max-width: 32px;
  max-height: 32px;
}

.ecm-platforms-icon-1 {
  top: 16%;
  left: 8%;
  animation-delay: 0s;
}

.ecm-platforms-icon-2 {
  top: 14%;
  right: 10%;
  animation-delay: 0.6s;
}

.ecm-platforms-icon-2 .ecm-platform-logo {
  width: 56px;
  height: 56px;
}

.ecm-platforms-icon-3 {
  top: 55%;
  left: 4%;
  animation-delay: 1.2s;
}

.ecm-platforms-icon-3 .ecm-platform-logo {
  width: 52px;
  height: 52px;
}

.ecm-platforms-icon-4 {
  top: 56%;
  right: 6%;
  animation-delay: 1.8s;
}

.ecm-platforms-icon-4 .ecm-platform-logo {
  width: 68px;
  height: 68px;
}

.ecm-platforms-icon-5 {
  bottom: 10%;
  left: 26%;
  animation-delay: 2.4s;
}

.ecm-platforms-icon-5 .ecm-platform-logo {
  width: 58px;
  height: 58px;
}

@keyframes ecm-platform-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Process: journey diagram ────────────────────────────── */
.ecm-process-dark {
  background: linear-gradient(135deg, var(--ecm-navy) 0%, var(--ecm-navy-2) 55%, #182a5c 100%);
}

.ecm-process-dark::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.14) 0%, rgba(255, 185, 22, 0) 70%);
  pointer-events: none;
}

.ecm-process-dark .ecm-card-title {
  color: #fff;
}

.ecm-process-dark .ecm-card-desc {
  color: rgba(255, 255, 255, 0.65);
}


.hwr-approach .ecm-card-title {
  color: #fff;
}

.hwr-approach .ecm-card-desc {
  color: rgba(255, 255, 255, 0.65);
}

.ecm-journey {
  display: flex;
  justify-content: center;
  gap: 22px;
  width: 100%;
  position: relative;
  padding-top: 64px;
}

.ecm-journey-line-track {
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.22) 50%, transparent 0%);
  background-size: 10px 2px;
  background-repeat: repeat-x;
}

.ecm-journey-line-fill {
  position: absolute;
  top: 32px;
  height: 2px;
  background: var(--step-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s linear;
}

.ecm-journey-line-fill[data-segment="0"] {
  left: 12.5%;
  right: 62.5%;
}

.ecm-journey-line-fill[data-segment="1"] {
  left: 37.5%;
  right: 37.5%;
}

.ecm-journey-line-fill[data-segment="2"] {
  left: 62.5%;
  right: 12.5%;
}

.ecm-journey-card {
  position: relative;
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 44px 24px 48px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ecm-journey-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.5);
}

.ecm-journey-card::before,
.ecm-journey-card::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--step-color);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
}

.ecm-journey-card::before {
  top: 9px;
  left: 9px;
  border-right: none;
  border-bottom: none;
  border-radius: 4px 0 0 0;
}

.ecm-journey-card::after {
  bottom: 9px;
  right: 9px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 4px 0;
}

.ecm-journey-card:hover::before,
.ecm-journey-card:hover::after {
  width: 20px;
  height: 20px;
  opacity: 1;
}

.ecm-journey-node {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ecm-navy-2);
  border: 3px solid var(--step-color);
  color: var(--step-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.ecm-journey-node svg {
  width: 21px;
  height: 21px;
}

/* ── Why Choose Us ───────────────────────────────────────── */
.ecm-why-row {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-why-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(10, 18, 48, 0.25);
}

.ecm-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 185, 22, 0.18);
  color: var(--ecm-navy);
}

/* ── Frequently Requested Tasks ──────────────────────────── */
.ecm-tasks-light {
  background: var(--ecm-bg-soft);
}

.ecm-task-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ecm-line);
  color: var(--ecm-dark);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ecm-task-pill svg {
  color: var(--ecm-red-2);
  flex-shrink: 0;
}

.ecm-task-pill:hover {
  background: #fff;
  border-color: var(--ecm-red-2);
  box-shadow: 0 12px 24px -16px rgba(10, 18, 48, 0.25);
  transform: translateY(-2px);
}

/* ── Section 4: CTA ──────────────────────────────────────── */
.ecm-cta {
  background: linear-gradient(135deg, var(--ecm-navy) 0%, #182a5c 100%);
}

/* ── Final banner + glass form ───────────────────────────── */
.ecm-banner-dark {
  background: linear-gradient(160deg, #fff8ec 0%, #fdf3f0 55%, #eef1fa 100%);
}

.ecm-banner-dark::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.16) 0%, rgba(255, 185, 22, 0) 70%);
  pointer-events: none;
}

.ecm-banner-dark::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 33, 33, 0.25) 0%, rgba(170, 33, 33, 0) 70%);
  pointer-events: none;
}

.ecm-glass-form {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ecm-glass-form-title {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.ecm-banner-dark .ecm-glass-form-title {
  color: var(--ecm-navy);
}

.ecm-glass-field {
  position: relative;
}

.ecm-glass-field svg {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 17px;
  height: 17px;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.ecm-glass-field input,
.ecm-glass-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px 14px 12px 42px;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.ecm-glass-field-textarea svg {
  top: 14px;
}

.ecm-glass-field-textarea textarea {
  resize: none;
}

.ecm-glass-field input::placeholder,
.ecm-glass-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.ecm-glass-field input:focus,
.ecm-glass-field textarea:focus {
  outline: none;
  border-color: var(--ecm-red-2);
  background: rgba(255, 255, 255, 0.1);
}

#ecmBannerFormMsg {
  color: rgba(255, 255, 255, 0.85);
}

#ecmBannerFormMsg.text-success {
  color: #6fe89a;
}

#ecmBannerFormMsg.text-danger {
  color: #ff9b9b;
}

.ecm-glass-field label.error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #ff9b9b;
}

.ecm-glass-field input.error,
.ecm-glass-field textarea.error {
  border-color: #ff9b9b;
}

.ecm-banner-dark .ecm-glass-form {
  background: #fff;
  border-color: var(--ecm-line);
  box-shadow: 0 24px 50px -30px rgba(10, 18, 48, 0.25);
}

.ecm-banner-dark .ecm-glass-field svg {
  color: rgba(10, 18, 48, 0.4);
}

.ecm-banner-dark .ecm-glass-field input,
.ecm-banner-dark .ecm-glass-field textarea {
  background: var(--ecm-bg-soft);
  border-color: var(--ecm-line);
  color: var(--ecm-navy);
}

.ecm-banner-dark .ecm-glass-field input::placeholder,
.ecm-banner-dark .ecm-glass-field textarea::placeholder {
  color: rgba(10, 18, 48, 0.4);
}

.ecm-banner-dark .ecm-glass-field input:focus,
.ecm-banner-dark .ecm-glass-field textarea:focus {
  background: #fff;
  border-color: var(--ecm-gold);
}

.ecm-banner-dark #ecmBannerFormMsg {
  color: var(--ecm-navy);
}

/* ── Trust bar (V1) ──────────────────────────────────────── */
.ecm-trust-bar {
  background: var(--ecm-navy-2);
  padding: 20px 0;
}

.ecm-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}

.ecm-trust-item svg {
  color: var(--ecm-gold);
  flex-shrink: 0;
}

/* ── Pain points bottom callout (V1) ─────────────────────── */
.ecm-callout-box-cta {
  max-width: 620px;
  padding: 40px 32px;
  border-radius: 20px;
}

/* ── Services dashboard list (V1) ────────────────────────── */
.ecm-dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ecm-dashboard-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--ecm-line);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ecm-dashboard-row:hover {
  border-color: var(--ecm-gold);
  box-shadow: 0 16px 30px -20px rgba(10, 18, 48, 0.25);
}

.ecm-dashboard-row-text {
  flex: 1;
}

.ecm-dashboard-row-text .ecm-card-title {
  margin: 0 0 4px;
}

.ecm-dashboard-arrow {
  display: inline-flex;
  color: var(--ecm-navy);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.ecm-dashboard-row:hover .ecm-dashboard-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Platform detail cards (V1) ──────────────────────────── */
.ecm-platform-card {
  height: 100%;
  padding: 28px 22px;
  border: 1px solid var(--ecm-line);
  border-radius: 16px;
  background: var(--ecm-bg-soft);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(10, 18, 48, 0.25);
}

.ecm-platform-card .ecm-platform-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ecm-line);
}

.ecm-platform-card .ecm-platform-logo img {
  max-width: 34px;
  max-height: 34px;
}

/* ── Headless commerce feature card (V1) ─────────────────── */
.ecm-headless-card {
  border-radius: 20px;
  border: 1px solid var(--ecm-line);
  background: linear-gradient(120deg, var(--ecm-navy) 0%, var(--ecm-navy-2) 100%);
  color: #fff;
  padding: 28px 32px;
}

.ecm-headless-card .ecm-card-title,
.ecm-headless-card .ecm-card-desc {
  color: #fff;
}

.ecm-headless-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 185, 22, 0.16);
  color: var(--ecm-gold);
}

.ecm-headless-card .ecm-btn-outline.is-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.ecm-headless-card .ecm-btn-outline.is-dark:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Case study (V1) ──────────────────────────────────────── */
.ecm-case-study-card {
  max-width: 900px;
  border: 1px solid var(--ecm-line);
  border-radius: 20px;
  background: var(--ecm-bg-soft);
  padding: 36px;
}

.ecm-case-study-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ecm-gold);
  margin-bottom: 10px;
}

.ecm-case-study-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ecm-case-study-list li {
  font-size: 14.5px;
  color: var(--ecm-body);
  padding-left: 18px;
  position: relative;
}

.ecm-case-study-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ecm-navy);
}

.ecm-case-study-note {
  font-size: 12.5px;
  color: var(--ecm-muted);
  text-align: center;
  margin-top: 24px;
  font-style: italic;
}

/* ── Testimonials (V1) ───────────────────────────────────── */
.ecm-testimonial-card {
  height: 100%;
  padding: 26px 24px;
  border: 1px dashed var(--ecm-line);
  border-radius: 16px;
  background: #fff;
  position: relative;
}

.ecm-testimonial-placeholder-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--ecm-muted);
  background: var(--ecm-bg-soft);
  border: 1px solid var(--ecm-line);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.ecm-testimonial-quote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ecm-body);
  font-style: italic;
  margin-bottom: 16px;
}

.ecm-testimonial-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--ecm-dark);
  line-height: 1.5;
}

/* ── Plans (V1) ───────────────────────────────────────────── */
.ecm-plan-card {
  padding: 30px 26px;
  border: 1px solid var(--ecm-line);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(10, 18, 48, 0.25);
}

.ecm-plan-card-highlight {
  border-color: var(--ecm-gold);
  box-shadow: 0 20px 40px -24px rgba(255, 185, 22, 0.4);
}

.ecm-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ecm-plan-list li {
  font-size: 14.5px;
  color: var(--ecm-body);
  padding-left: 22px;
  position: relative;
}

.ecm-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ecm-gold);
}

/* ── Emergency CTA (V1) ──────────────────────────────────── */
.ecm-emergency-cta {
  background: linear-gradient(135deg, var(--ecm-navy) 0%, #182a5c 100%);
  padding: 56px 0;
}

.ecm-emergency-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ── FAQ (V1) ─────────────────────────────────────────────── */
.ecm-faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ecm-faq-item {
  border: 1px solid var(--ecm-line);
  border-radius: 12px;
  padding: 16px 20px;
  background: var(--ecm-bg-soft);
}

.ecm-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ecm-dark);
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ecm-faq-item summary::-webkit-details-marker {
  display: none;
}

.ecm-faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: var(--ecm-gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.ecm-faq-item[open] summary::after {
  content: "\2212";
}

.ecm-faq-item p {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ecm-body);
}

/* ── End CTA strip ───────────────────────────────────────── */
.ecm-cta-strip .container {
  background: linear-gradient(135deg, #050b1f 0%, #0d1a3d 45%, #1a0508 100%);
 
    border-radius: 21px;
    padding: 40px;
    margin-top: -29px;

}

.ecm-cta-strip-title {
  font-size: clamp(17px, calc(15.5px + 0.6vw), 22px);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.ecm-cta-strip-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.ecm-cta-strip .ecm-btn {
  padding: 10px 22px;
  font-size: 14px;
}

/* ── Site footer (slim bar) ──────────────────────────────── */
.ecm-mini-footer {
  background: var(--ecm-navy);
}

.ecm-mini-footer-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

.ecm-mini-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  color: #111318;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ecm-mini-footer-social:hover {
  transform: translateY(-2px);
  opacity: 0.85;
  color: #111318;
}

.ecm-mini-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14.5px;
}

.ecm-mini-footer-phone:hover {
  color: #ffffff;
}

.ecm-mini-footer-cta {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(to right, var(--ecm-red) 50%, var(--ecm-red-2));
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-mini-footer-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(170, 33, 33, 0.6);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 575.98px) {
  .ecm-hero-badge {
    font-size: 11px;
    padding: 7px 16px;
  }
}

@media (max-width: 767.98px) {
  .ecm-journey {
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    padding-top: 0;
  }

  .ecm-journey-line-track,
  .ecm-journey-line-fill {
    display: none;
  }

  .ecm-journey-node {
    position: static;
    transform: none;
    margin: 0 auto 12px;
  }
}

/* ── Proven Designs portfolio (Slick carousel) ───────────── */
section.workBg {
    height: 490px;
    position: relative;
    padding-top: 80px;
}

section.workBgPort {
    margin-top: -251px;
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

.cstm-clss-slide-new-card1 img {
  position: relative;
  border-radius: 0 0 6px 6px;


   width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.cstm-clss-slide-new-card1.slick-slide {
  padding: 0 6px;
}

.portRightCTA {
    padding: 0;
    border-radius: 30px;
}
.project-cta-content {
    background: #023575;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 0 26px;
    text-align: center;
    border-radius: 30px 0 0 30px;
}

.cstm-clss-slide-new-cta-btn {
  background: #ffffff;
  color: #023575;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.cstm-clss-slide-new-cta-btn:hover {
  color: #023575;
}

#sliderProt .slick-prev::before,
#sliderProt .slick-next::before {
  content: none;
}

#sliderProt .slick-prev:hover,
#sliderProt .slick-next:hover {
  opacity: 1;
}

#sliderProt .slick-prev,
#sliderProt .slick-next {
  height: 44px;
  width: 44px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

#sliderProt .slick-prev {
  left: 8px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#sliderProt .slick-next {
  right: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  section.workBg {
    height: auto;
    padding-bottom: 60px;
  }

section.workBgPort {
    margin-top: -58px;
}

  section.workBgPort .col-lg-10 {
    width: 100%;
  }

  section.workBgPort .col-lg-2.portRightCTA {
    width: 100%;
    margin-top: 20px;
  }

  .project-cta-content {
    padding: 24px 26px;
  }
}

@media (max-width: 767.98px) {
  section.workBgPort {
    padding-bottom: 40px;
  }

  .cstm-clss-slide-new-card1 img {
    height: 225px;
  }
.ecm-health-input-wrap {

    max-width: 100%;
}
  #sliderProt .slick-prev,
  #sliderProt .slick-next {
    height: 34px;
    width: 34px;
    background-size: 14px;
  }
  section.workBg {
   
    padding-top: 35px;
}
.ecm-health-bg .ecm-btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.ecm-lead {

    margin: 0 0 0px;
}
.ecm-glass-form .ecm-btn {
    padding: 10px 9px;
   
}
.ecm-marquee-track {
  
    gap: 10px;

}
.ecm-review-logo {
    max-height: 28px;
    width: 120px;
   
}
}

@media (max-width: 575.98px) {
  .cstm-clss-slide-new-card1 img {
    height: 255px;
}
}

/* ── Mobile: tighten spacing across all sections ─────────── */
@media (max-width: 767.98px) {
  .ecm-section-py {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .ecm-hero .row.g-5 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 2rem;
  }

  #services .row.gy-5 {
    --bs-gutter-y: 2rem;
  }

  .text-center.mb-5 {
    margin-bottom: 32px !important;
  }

  .ecm-glass-form {
    padding: 22px;
  }

  .ecm-platform-card {
    padding: 20px 18px;
  }

  .ecm-journey {
    gap: 22px;
  }

  .ecm-journey-card {
    padding: 30px 20px 26px;
  }
}

/* ── Glass field: select (WordPress maintenance page - biggest-headache dropdown) ── */
.ecm-glass-field select.ecm-glass-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ecm-glass-field select.ecm-glass-select:focus {
  outline: none;
  border-color: var(--ecm-red-2);
  background-color: rgba(255, 255, 255, 0.1);
}

.ecm-glass-field select.ecm-glass-select option {
  color: var(--ecm-navy);
}

/* ── Risk section (WordPress maintenance "Risks You Don't See") ─────────
   70/30 split, single-fold: compact heading, 2x2 icon-row cards on the
   left, a full-height sidebar CTA on the right. ─────────────────────── */
#pain-points.bg-white {
  background: linear-gradient(180deg, #f8f9fd 0%, #ffffff 30%) !important;
  position: relative;
  overflow: hidden;
}

#pain-points::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.08) 0%, rgba(47, 111, 237, 0) 70%);
  pointer-events: none;
}

.ecm-risk-section-compact {
  padding-top: 52px;
  padding-bottom: 52px;
}

.ecm-risk-h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.ecm-risk-split {
  align-items: stretch;
}

.ecm-risk-main {
  flex: 0 0 60%;
  max-width: 60%;
}

.ecm-risk-sidebar {
  flex: 0 0 40%;
  max-width: 40%;
}

/* 2x2 compact icon-row cards */
.ecm-risk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.ecm-risk-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--ecm-line);
  background: #fff;
  box-shadow: 0 8px 22px -16px rgba(10, 18, 48, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-risk-card::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
}

.ecm-risk-card.accent-amber::before { background: #d98c0f; }
.ecm-risk-card.accent-red::before { background: #e5484d; }
.ecm-risk-card.accent-blue::before { background: #2f6fed; }
.ecm-risk-card.accent-purple::before { background: #8b5cf6; }

.ecm-risk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(10, 18, 48, 0.24);
}

.ecm-risk-card .ecm-service-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  box-shadow: none;
}

.ecm-risk-card .ecm-card-title {
  font-size: 14.5px;
  line-height: 1.3;
}

.ecm-risk-card .ecm-card-desc {
  font-size: 12.5px;
  line-height: 1.45;
}

.ecm-risk-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ecm-risk-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.4;
  color: #000;
}

.ecm-risk-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 8px;
}

.ecm-risk-card.accent-amber .ecm-risk-bullets li::before {
  background-color: rgba(217, 140, 15, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23d98c0f' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ecm-risk-card.accent-red .ecm-risk-bullets li::before {
  background-color: rgba(229, 72, 77, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23e5484d' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ecm-risk-card.accent-blue .ecm-risk-bullets li::before {
  background-color: rgba(47, 111, 237, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%232f6fed' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.ecm-risk-card.accent-purple .ecm-risk-bullets li::before {
  background-color: rgba(139, 92, 246, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%238b5cf6' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Consequence line - compact, inline, sits under the grid instead of its
   own full-width banner so the section stays within a single fold. */
.ecm-risk-consequence {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ecm-body);
  padding-top: 4px;
  border-top: 1px dashed var(--ecm-line);
}

.ecm-risk-consequence svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #e5484d;
}

.ecm-risk-consequence strong {
  color: var(--ecm-navy);
}

/* Sidebar audit CTA card - fills the full height of the column */
.ecm-risk-cta-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ecm-navy) 0%, #182a5c 100%);
  box-shadow: 0 30px 60px -30px rgba(10, 18, 48, 0.5);
}

.ecm-risk-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(280px 160px at 15% 0%, rgba(255, 185, 22, 0.18), transparent 60%),
    radial-gradient(280px 180px at 90% 100%, rgba(47, 111, 237, 0.22), transparent 60%);
  pointer-events: none;
}

.ecm-risk-cta-card h3,
.ecm-risk-cta-card p,
.ecm-risk-cta-card a {
  position: relative;
}

.ecm-risk-cta-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.ecm-risk-cta-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
}

.ecm-risk-cta-micro {
  position: relative;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 12px;
}

.ecm-risk-cta-card {
  padding-bottom: 0;
}

.ecm-risk-cta-img {
  position: relative;
  display: block;
  width: 78%;
  margin: 20px auto 0;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center 15%;
}

@media (max-width: 991.98px) {
  .ecm-risk-main,
  .ecm-risk-sidebar {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ecm-risk-cta-card {
    height: auto;
  }
}

@media (max-width: 575.98px) {
  .ecm-risk-grid {
    grid-template-columns: 1fr;
  }
}

/* ── "What We'll Check" section bottom CTA ──────────────────────────────── */
/* Bottom CTA - full-width navy banner, same visual language as the sidebar
   CTA card but sized for a standalone closer instead of a narrow column. */
.ecm-audit-cta-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ecm-navy) 0%, #182a5c 100%);
  box-shadow: 0 30px 60px -30px rgba(10, 18, 48, 0.5);
}

.ecm-audit-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 200px at 15% 0%, rgba(255, 185, 22, 0.18), transparent 60%),
    radial-gradient(420px 220px at 90% 100%, rgba(47, 111, 237, 0.22), transparent 60%);
  pointer-events: none;
}

.ecm-audit-cta-card h3,
.ecm-audit-cta-card p,
.ecm-audit-cta-card a {
  position: relative;
}

.ecm-audit-cta-card h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

.ecm-audit-cta-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.ecm-audit-cta-micro {
  position: relative;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px;
}

/* ── "Complete Care Plan" interactive list + panel component ───────────── */
#audit-scope.bg-white {
  background: linear-gradient(180deg, #f8f9fd 0%, #ffffff 30%) !important;
  position: relative;
  overflow: hidden;
}

#audit-scope::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(170, 33, 33, 0.06) 0%, rgba(170, 33, 33, 0) 70%);
  pointer-events: none;
}

.ecm-care-grid {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.ecm-care-list {
  flex: 0 0 26%;
  max-width: 26%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.ecm-care-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--ecm-line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.ecm-care-item:hover {
  transform: translateY(-2px);
  border-color: #c9cee0;
}

.ecm-care-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: var(--ecm-bg-soft);
  color: var(--ecm-navy);
}

.ecm-care-item-label {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--ecm-navy);
  line-height: 1.3;
}

.ecm-care-item-arrow {
  display: flex;
  color: var(--ecm-red);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ecm-care-item.active {
  border-color: rgba(170, 33, 33, 0.35);
  background: rgba(170, 33, 33, 0.06);
}

.ecm-care-item.active .ecm-care-item-icon {
  background: rgba(170, 33, 33, 0.12);
  color: var(--ecm-red);
}

.ecm-care-item.active .ecm-care-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

.ecm-care-panel {
  position: relative;
  flex: 0 0 42%;
  max-width: 42%;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ecm-navy) 0%, #182a5c 100%);
  box-shadow: 0 30px 60px -28px rgba(10, 18, 48, 0.5);
  padding: 34px 32px;
  overflow: hidden;
}

.ecm-care-panel-watermark {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 230px;
  height: 230px;
  fill: #ffffff;
  opacity: 0.06;
  pointer-events: none;
}

.ecm-care-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(380px 200px at 10% 0%, rgba(255, 185, 22, 0.16), transparent 60%),
    radial-gradient(380px 220px at 100% 100%, rgba(47, 111, 237, 0.2), transparent 60%);
  pointer-events: none;
}

.ecm-care-panel-content {
  position: relative;
  display: none;
}

.ecm-care-panel-content.active {
  display: block;
  animation: ecmCareFadeIn 0.25s ease;
}

@keyframes ecmCareFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ecm-care-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ecm-care-panel-content h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.ecm-care-panel-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.ecm-care-panel-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ecm-care-panel-bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.ecm-care-panel-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.14);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
  .ecm-care-grid {
    flex-wrap: wrap;
  }
  .ecm-care-list {
    flex: 0 0 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    order: 2;
  }
  .ecm-care-list .ecm-care-item {
    flex: 1 1 calc(50% - 6px);
  }
  .ecm-care-panel {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
    margin-bottom: 8px;
  }
}

@media (max-width: 575.98px) {
  .ecm-care-list .ecm-care-item {
    flex: 1 1 100%;
  }
  .ecm-care-item-label {
    font-size: 13.5px;
  }
  .ecm-care-panel {
    padding: 26px 22px;
  }
}

/* ── Full-width CTA strip (beneath "What We Check") ─────────────────────── */
.ecm-audit-strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ecm-navy) 0%, #182a5c 100%);
  padding: 44px 0;
}

.ecm-audit-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 200px at 8% 0%, rgba(255, 185, 22, 0.16), transparent 60%),
    radial-gradient(420px 220px at 96% 100%, rgba(47, 111, 237, 0.22), transparent 60%);
  pointer-events: none;
}

.ecm-audit-strip-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ecm-audit-strip-text h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.ecm-audit-strip-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  max-width: 520px;
}

.ecm-audit-strip-action {
  flex-shrink: 0;
  text-align: center;
}

@media (max-width: 767.98px) {
  .ecm-audit-strip-inner {
    flex-direction: column;
    text-align: center;
  }
  .ecm-audit-strip-text p {
    max-width: 100%;
  }
}

/* ── "What You'll Get" — dark section, square-grid pattern ──────────────── */
#whats-included.ecm-whats-dark {
  position: relative;
  background: linear-gradient(135deg, var(--ecm-navy) 0%, #0d1730 100%);
  overflow: hidden;
}

#whats-included.ecm-whats-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}

#whats-included.ecm-whats-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 260px at 6% 0%, rgba(255, 185, 22, 0.12), transparent 60%),
    radial-gradient(420px 260px at 96% 100%, rgba(47, 111, 237, 0.18), transparent 60%);
  pointer-events: none;
}

#whats-included.ecm-whats-dark .container {
  position: relative;
}

#whats-included .ecm-h2 {
  color: #fff;
}

.ecm-whats-compact {
  padding-top: 52px;
  padding-bottom: 52px;
}

.ecm-whats-compact .ecm-h2 {
  font-size: clamp(22px, calc(18px + 1vw), 32px);
}

.ecm-whats-compact .ecm-lead {
  font-size: 14.5px;
  line-height: 1.55;
}

.ecm-includes-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.ecm-includes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ecm-includes-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ecm-includes-num {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 800;
  color: var(--ecm-gold);
  opacity: 0.55;
  line-height: 1.3;
  min-width: 30px;
}

.ecm-includes-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.ecm-includes-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}

.ecm-audit-mockup {
  position: relative;
  background: #fff;
  border: 1px solid var(--ecm-line);
  border-radius: 18px;
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, 0.55);
  padding: 22px 22px 18px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}

.ecm-audit-mockup:hover {
  box-shadow: 0 38px 70px -24px rgba(0, 0, 0, 0.6);
}

.ecm-audit-mockup-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a7a4c;
  background: rgba(26, 122, 76, 0.1);
  border: 1px solid rgba(26, 122, 76, 0.25);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.ecm-audit-mockup-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a7a4c;
  animation: ecmLivePulse 1.6s ease-in-out infinite;
}

@keyframes ecmLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.ecm-audit-mockup-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--ecm-line);
}

.ecm-audit-mockup-eyebrow {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ecm-navy);
  opacity: 0.55;
}

.ecm-audit-mockup-status {
  font-size: 15px;
  color: var(--ecm-body);
}

.ecm-audit-mockup-status strong {
  color: #b23b2e;
}

.ecm-audit-mockup-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.ecm-audit-mockup-score-bar {
  flex: 1;
  display: block;
  height: 6px;
  border-radius: 3px;
  background: var(--ecm-bg-soft);
  overflow: hidden;
}

.ecm-audit-mockup-score-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, #e5484d 0%, #d98c0f 100%);
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecm-audit-mockup-score-val {
  font-size: 12px;
  font-weight: 800;
  color: var(--ecm-navy);
  white-space: nowrap;
}

.ecm-audit-mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.ecm-audit-mockup-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 12px;
  background: var(--ecm-bg-soft);
  border: 1px solid transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.ecm-audit-mockup-stat:hover {
  transform: translateY(-2px);
}

.ecm-audit-mockup-stat.active.is-red { border-color: rgba(229, 72, 77, 0.4); background: rgba(229, 72, 77, 0.1); }
.ecm-audit-mockup-stat.active.is-amber { border-color: rgba(217, 140, 15, 0.4); background: rgba(217, 140, 15, 0.1); }
.ecm-audit-mockup-stat.active.is-green { border-color: rgba(26, 122, 76, 0.4); background: rgba(26, 122, 76, 0.1); }

.ecm-audit-mockup-stat .ecm-audit-mockup-dot {
  margin-bottom: 2px;
}

.ecm-audit-mockup-count {
  font-size: 22px;
  font-weight: 800;
  color: var(--ecm-navy);
  line-height: 1;
}

.ecm-audit-mockup-label {
  font-size: 11px;
  color: var(--ecm-body);
  line-height: 1.3;
}

.ecm-audit-mockup-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.is-red .ecm-audit-mockup-dot { background: #e5484d; }
.is-amber .ecm-audit-mockup-dot { background: #d98c0f; }
.is-green .ecm-audit-mockup-dot { background: #1a7a4c; }

.ecm-audit-mockup-findings {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ecm-audit-mockup-findings li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ecm-navy);
  font-weight: 600;
}

.ecm-audit-mockup-hint {
  font-size: 11px;
  color: var(--ecm-muted);
  font-style: italic;
  margin-bottom: 14px !important;
}

.ecm-audit-mockup-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ecm-red);
  text-decoration: none;
}

.ecm-audit-mockup-link:hover {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .ecm-audit-mockup-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .ecm-audit-mockup-count {
    font-size: 18px;
  }
  .ecm-audit-mockup {
    padding: 22px 18px 18px;
  }
}

/* ── Ongoing WordPress Care (light gradient section bg) ──────────────────── */
.ecm-perf-proof {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f6f7fb 0%, #ffffff 55%, #fbf5ec 100%);
}

.ecm-perf-proof::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.14) 0%, rgba(255, 185, 22, 0) 70%);
  pointer-events: none;
}

.ecm-perf-proof .container {
  position: relative;
}

.ecm-perf-proof-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px -30px rgba(10, 18, 48, 0.35);
  display: block;
}

.ecm-perf-proof-h2 {
  font-size: clamp(24px, calc(19.8px + 1.05vw), 36px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.3px;
  color: var(--ecm-navy);
}

.ecm-perf-proof-accent {
  background: linear-gradient(90deg, var(--ecm-red) 0%, #d98c0f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ecm-care-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ecm-care-mini-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ecm-line);
  border-radius: 14px;
  padding: 16px 16px 14px;
  overflow: hidden;
  box-shadow: 0 16px 34px -26px rgba(10, 18, 48, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ecm-care-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -24px rgba(10, 18, 48, 0.3);
}

.ecm-care-mini-card .ecm-service-icon {
  width: 32px;
  height: 32px;
  box-shadow: none;
}

.ecm-care-mini-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ecm-navy);
  line-height: 1.3;
  margin: 0 0 4px;
}

.ecm-care-mini-desc {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--ecm-body);
  margin: 0;
}

.ecm-care-mini-bar {
  display: block;
  height: 3px;
  width: 100%;
  margin-top: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ecm-gold) 0%, #d98c0f 100%);
}

@media (max-width: 575.98px) {
  .ecm-care-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Compact "Ongoing WordPress Care" — single-fold sizing ───────────────── */
.ecm-coverage-compact {
  padding-top: 48px;
  padding-bottom: 48px;
}

.ecm-coverage-compact .ecm-perf-proof-img {
  max-height: 320px;
  object-fit: cover;
}

.ecm-coverage-compact .ecm-perf-proof-h2 {
  font-size: clamp(21px, calc(17.5px + 0.9vw), 30px);
}

.ecm-coverage-compact .ecm-lead {
  font-size: 14px;
  line-height: 1.5;
}

.ecm-coverage-compact .ecm-callout-box-cta {
  padding: 22px 24px;
}

.ecm-coverage-compact .ecm-callout-box-cta h3 {
  font-size: 18px;
}

.ecm-coverage-compact .ecm-callout-box-cta p {
  font-size: 13px;
}

.ecm-coverage-compact .ecm-care-mini-grid {
  gap: 10px;
}

.ecm-coverage-compact .ecm-care-mini-card {
  padding: 12px 14px 11px;
}

.ecm-coverage-compact .ecm-care-mini-card .ecm-service-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 6px !important;
}

.ecm-coverage-compact .ecm-care-mini-bar {
  margin-top: 8px;
}

/* ── Trust logo marquee ───────────────────────────────────────────────── */
.ecm-logo-marquee-sec {
  position: relative;
  background: #fff;
  border-top: 1px solid var(--ecm-line);
  border-bottom: 1px solid var(--ecm-line);
  padding: 22px 0 26px;
  overflow: hidden;
}

.ecm-logo-marquee-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ecm-muted);
  margin: 0 0 16px;
}

.ecm-logo-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ecm-logo-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.ecm-logo-fade-l {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.ecm-logo-fade-r {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}

.ecm-logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ecmLogoMarquee 60s linear infinite;
}

.ecm-logo-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes ecmLogoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.ecm-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 28px;
  border-right: 1px solid var(--ecm-line);
  flex-shrink: 0;
}

.ecm-logo-item img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(0.1) opacity(0.85);
  transition: filter 0.2s ease;
}

.ecm-logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

@media (max-width: 575.98px) {
  .ecm-logo-marquee-fade {
    width: 50px;
  }
  .ecm-logo-item {
    height: 44px;
    padding: 0 18px;
  }
  .ecm-logo-item img {
    height: 32px;
    max-width: 110px;
  }
}

/* ── Client case studies (dark auto-scroll marquee) ──────────────────────── */
.ecm-cs-sec {
  position: relative;
  background: linear-gradient(160deg, #0d1530 0%, #141f45 45%, #0a1128 100%);
  padding: clamp(40px, 6vw, 64px) 0 clamp(32px, 5vw, 48px);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ecm-cs-sec::before,
.ecm-cs-sec::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ecm-cs-sec::before {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(170, 33, 33, 0.16) 0%, rgba(170, 33, 33, 0.08) 35%, transparent 70%);
  top: -260px;
  right: -240px;
}

.ecm-cs-sec::after {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 185, 22, 0.1) 0%, rgba(255, 185, 22, 0.05) 35%, transparent 70%);
  bottom: -230px;
  left: -220px;
}

.ecm-cs-sec .container,
.ecm-cs-sec .ecm-cs-marquee-wrap {
  position: relative;
  z-index: 1;
}

.ecm-cs-head {
  margin-bottom: clamp(14px, 2vw, 20px);
}

.ecm-cs-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ecm-gold);
  margin-bottom: 14px;
}

.ecm-cs-head-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ecm-cs-title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
  letter-spacing: -0.4px;
  margin: 0;
  flex: 1 1 380px;
}

.ecm-cs-sub {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  max-width: 380px;
  flex: 1 1 300px;
  padding-top: 4px;
  margin: 0;
}

.ecm-cs-head-rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: clamp(10px, 1.5vw, 16px);
}

.ecm-cs-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: clamp(10px, 1.5vw, 16px) 0 clamp(14px, 2vw, 20px);
}

.ecm-cs-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ecm-cs-stat:last-child {
  border-right: none;
}

.ecm-cs-stat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.ecm-cs-stat-val {
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 800;
  color: #fff;
}

.ecm-cs-marquee-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ecm-cs-marquee-wrap::-webkit-scrollbar {
  display: none;
}

.ecm-cs-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ecm-cs-marquee-fade-l {
  left: 0;
  background: linear-gradient(90deg, #0a1128, transparent);
}

.ecm-cs-marquee-fade-r {
  right: 0;
  background: linear-gradient(-90deg, #0a1128, transparent);
}

.ecm-cs-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  padding: 4px clamp(20px, 5vw, 40px) 10px;
  animation: none;
}

.ecm-cs-marquee-wrap.is-active .ecm-cs-track {
  animation: ecmCsMarquee 42s linear infinite;
}

.ecm-cs-marquee-wrap:hover .ecm-cs-track,
.ecm-cs-marquee-wrap.is-touching .ecm-cs-track {
  animation-play-state: paused;
}

@keyframes ecmCsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3334%); }
}

.ecm-cs-card {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: #111a35;
}

.ecm-cs-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ecm-cs-card:hover img {
  transform: scale(1.07);
}

.ecm-cs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 6, 18, 0.92) 0%, rgba(3, 6, 18, 0.15) 45%, rgba(3, 6, 18, 0.35) 100%);
}

.ecm-cs-card-top {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #fff;
}

.ecm-cs-card-bottom {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
}

.ecm-cs-card-stat {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.ecm-cs-card-quote {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ecm-cs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ecm-cs-card:hover .ecm-cs-card-link {
  opacity: 1;
  transform: none;
}

@media (max-width: 767.98px) {
  .ecm-cs-sub {
    max-width: 100%;
  }
  .ecm-cs-stats-row {
    gap: 18px;
  }
  .ecm-cs-stat {
    padding-right: 18px;
  }
}

/* ── Ratings platforms row (Clutch, GoodFirms, BBB, Bark, DesignRush) ───── */
.ecm-rating-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ecm-rating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--ecm-line);
  border-radius: 14px;
  padding: 26px 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ecm-rating-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -26px rgba(10, 18, 48, 0.25);
  border-color: #d6dae8;
}

.ecm-rating-card img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.ecm-rating-card img.ecm-rating-badge-lg {
  height: 52px;
}

.ecm-rating-stars {
  font-size: 13px;
  color: var(--ecm-gold);
  letter-spacing: 1px;
  white-space: nowrap;
}

.ecm-rating-stars b {
  font-size: 13px;
  font-weight: 700;
  color: var(--ecm-navy);
  letter-spacing: normal;
  margin-left: 4px;
}

@media (max-width: 767.98px) {
  .ecm-rating-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .ecm-rating-row {
    grid-template-columns: 1fr;
  }
}
