/* ============================================================
   SERVICE DETAIL PAGES – Premium Dark Theme Design System
   ============================================================ */

:root {
  --bg: #0a0a0f;
  --bg-alt: #0e0e15;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --surface: #12121a;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(200, 169, 110, 0.25);
  --accent: #c8a96e;
  --accent-light: #e0c98a;
  --accent-dark: #a8893e;
  --text: #e8e6e3;
  --text-muted: #8a8a95;
  --text-dim: #55555f;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 18px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- keyframes ---- */

@keyframes heroPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.18; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 0.28; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

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

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

/* ============================================================
   1. HERO
   ============================================================ */

.cwp-sv-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  background: var(--bg);
  min-height: 520px;
}

.cwp-sv-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200, 169, 110, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: heroPulse 6s ease-in-out infinite;
}

.cwp-sv-hero .cwp-sv-hero-label {
  position: relative;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.cwp-sv-hero h1 {
  position: relative;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  max-width: 800px;
  margin: 0 0 20px;
}

.cwp-sv-hero h1 span {
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent), var(--accent-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.cwp-sv-hero .cwp-sv-hero-desc {
  position: relative;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto 32px;
}

/* trust bar */
.cwp-sv-hero .cwp-sv-hero-trust {
  position: relative;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.cwp-sv-hero .cwp-sv-hero-trust .cwp-sv-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cwp-sv-hero .cwp-sv-hero-trust .cwp-sv-hero-stat strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.cwp-sv-hero .cwp-sv-hero-trust .cwp-sv-hero-stat span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* price note bar */
.cwp-sv-hero .cwp-sv-hero-price-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.18);
  border-radius: 100px;
  font-size: 0.88rem;
  color: var(--text);
}

.cwp-sv-hero .cwp-sv-hero-price-note svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

/* ============================================================
   2. SECTION
   ============================================================ */

.cwp-sv-section {
  padding: 80px 24px;
  background: var(--bg);
}

.cwp-sv-section.alt {
  background: var(--bg-alt);
}

.cwp-sv-section.bg {
  background: var(--surface);
}

/* ============================================================
   3. HEAD (Section Headers)
   ============================================================ */

.cwp-sv-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.cwp-sv-head .cwp-sv-head-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.cwp-sv-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 16px;
}

.cwp-sv-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   4. FEATURES GRID
   ============================================================ */

.cwp-sv-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cwp-sv-feat {
  position: relative;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.cwp-sv-feat:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 169, 110, 0.08);
}

.cwp-sv-feat .cwp-sv-feat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(200, 169, 110, 0.1);
  color: var(--accent);
  margin-bottom: 20px;
}

.cwp-sv-feat .cwp-sv-feat-icon svg {
  width: 24px;
  height: 24px;
}

.cwp-sv-feat h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.cwp-sv-feat p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   5. INCLUDES LIST
   ============================================================ */

.cwp-sv-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.cwp-sv-inc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.cwp-sv-inc:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.cwp-sv-inc .cwp-sv-inc-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(200, 169, 110, 0.1);
  color: var(--accent);
}

.cwp-sv-inc .cwp-sv-inc-icon svg {
  width: 18px;
  height: 18px;
}

.cwp-sv-inc span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

/* ============================================================
   6. STEPS / PROCESS TIMELINE
   ============================================================ */

.cwp-sv-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* connecting line */
.cwp-sv-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--border), rgba(200, 169, 110, 0.3), var(--border));
  z-index: 0;
}

.cwp-sv-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cwp-sv-step .cwp-sv-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  background: var(--bg);
  border: 2px solid rgba(200, 169, 110, 0.35);
  margin-bottom: 20px;
  transition: var(--transition);
}

.cwp-sv-step:hover .cwp-sv-step-num {
  background: rgba(200, 169, 110, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(200, 169, 110, 0.15);
}

.cwp-sv-step .cwp-sv-step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}

.cwp-sv-step .cwp-sv-step-icon svg {
  width: 22px;
  height: 22px;
}

.cwp-sv-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.cwp-sv-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 180px;
}

/* ============================================================
   7. PRICING
   ============================================================ */

.cwp-sv-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.cwp-sv-price-card {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}

.cwp-sv-price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border);
  transition: var(--transition);
}

.cwp-sv-price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(200, 169, 110, 0.08);
}

/* featured */
.cwp-sv-price-card.featured {
  border-color: rgba(200, 169, 110, 0.35);
  background: rgba(200, 169, 110, 0.04);
}

.cwp-sv-price-card.featured::before {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  height: 5px;
}

.cwp-sv-price-card .cwp-sv-price-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200, 169, 110, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.cwp-sv-price-card .cwp-sv-price-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.cwp-sv-price-card .cwp-sv-price-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}

.cwp-sv-price-card .cwp-sv-price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.cwp-sv-price-card .cwp-sv-price-value .cwp-sv-price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.cwp-sv-price-card .cwp-sv-price-value .cwp-sv-price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.cwp-sv-price-card .cwp-sv-price-value .cwp-sv-price-period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cwp-sv-price-card .cwp-sv-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.cwp-sv-price-card .cwp-sv-price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
}

.cwp-sv-price-card .cwp-sv-price-features li:last-child {
  border-bottom: none;
}

.cwp-sv-price-card .cwp-sv-price-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.cwp-sv-price-card .cwp-sv-price-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}

.cwp-sv-price-card .cwp-sv-price-cta:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  color: var(--white);
}

.cwp-sv-price-card.featured .cwp-sv-price-cta {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--bg);
  border: none;
}

.cwp-sv-price-card.featured .cwp-sv-price-cta:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
  transform: translateY(-2px);
}

/* ============================================================
   8. WHY US
   ============================================================ */

.cwp-sv-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.cwp-sv-why-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.cwp-sv-why-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(200, 169, 110, 0.08);
}

.cwp-sv-why-card .cwp-sv-why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.1);
  color: var(--accent);
  margin: 0 auto 18px;
}

.cwp-sv-why-card .cwp-sv-why-icon svg {
  width: 26px;
  height: 26px;
}

.cwp-sv-why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.cwp-sv-why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   9. FAQ ACCORDION
   ============================================================ */

.cwp-sv-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cwp-sv-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: var(--transition);
}

.cwp-sv-faq-item:hover {
  border-color: var(--border-hover);
}

.cwp-sv-faq-item details {
  display: contents;
}

.cwp-sv-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  user-select: none;
  transition: var(--transition);
}

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

.cwp-sv-faq-item summary::marker {
  content: '';
}

.cwp-sv-faq-item summary:hover {
  color: var(--accent);
}

.cwp-sv-faq-item summary .cwp-sv-faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cwp-sv-faq-item[open] summary .cwp-sv-faq-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.cwp-sv-faq-item .cwp-sv-faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cwp-sv-faq-item[open] .cwp-sv-faq-body {
  grid-template-rows: 1fr;
}

.cwp-sv-faq-item .cwp-sv-faq-body-inner {
  overflow: hidden;
}

.cwp-sv-faq-item .cwp-sv-faq-body-inner > div {
  padding: 0 24px 20px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   10. CTA
   ============================================================ */

.cwp-sv-cta {
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  background: var(--bg-alt);
  text-align: center;
}

.cwp-sv-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cwp-sv-cta .cwp-sv-cta-content {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cwp-sv-cta h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  line-height: 1.2;
}

.cwp-sv-cta p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 32px;
  line-height: 1.7;
}

.cwp-sv-cta .cwp-sv-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--bg);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.cwp-sv-cta .cwp-sv-cta-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  box-shadow: 0 8px 32px rgba(200, 169, 110, 0.3);
  transform: translateY(-2px);
}

.cwp-sv-cta .cwp-sv-cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cwp-sv-cta .cwp-sv-cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

.cwp-sv-cta .cwp-sv-cta-trust span svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ============================================================
   11. EDITOR CONTENT (WordPress WYSIWYG)
   ============================================================ */

.cwp-sv-editor {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

.cwp-sv-editor h2,
.cwp-sv-editor h3,
.cwp-sv-editor h4 {
  color: var(--white);
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.6em;
  line-height: 1.3;
}

.cwp-sv-editor h2 { font-size: 1.7rem; }
.cwp-sv-editor h3 { font-size: 1.35rem; }
.cwp-sv-editor h4 { font-size: 1.1rem; }

.cwp-sv-editor p {
  margin: 0 0 1.2em;
  color: var(--text);
}

.cwp-sv-editor a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.cwp-sv-editor a:hover {
  color: var(--accent-light);
}

.cwp-sv-editor ul,
.cwp-sv-editor ol {
  padding-left: 1.5em;
  margin: 0 0 1.2em;
}

.cwp-sv-editor li {
  margin-bottom: 0.5em;
}

.cwp-sv-editor blockquote {
  margin: 1.5em 0;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-style: italic;
}

.cwp-sv-editor img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5em 0;
}

.cwp-sv-editor code {
  font-size: 0.88em;
  padding: 3px 8px;
  background: rgba(200, 169, 110, 0.1);
  border-radius: 4px;
  color: var(--accent);
}

.cwp-sv-editor pre {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5em 0;
}

.cwp-sv-editor pre code {
  padding: 0;
  background: none;
}

.cwp-sv-editor table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.cwp-sv-editor th,
.cwp-sv-editor td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.cwp-sv-editor th {
  background: var(--surface);
  color: var(--white);
  font-weight: 600;
}

.cwp-sv-editor hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2em 0;
}

/* ============================================================
   12. RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .cwp-sv-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .cwp-sv-pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .cwp-sv-pricing .cwp-sv-price-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .cwp-sv-why {
    grid-template-columns: repeat(2, 1fr);
  }

  .cwp-sv-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .cwp-sv-steps::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .cwp-sv-hero {
    padding: 80px 20px 48px;
    min-height: auto;
  }

  .cwp-sv-hero .cwp-sv-hero-trust {
    gap: 24px;
  }

  .cwp-sv-section {
    padding: 60px 20px;
  }

  .cwp-sv-pricing {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .cwp-sv-pricing .cwp-sv-price-card:last-child {
    max-width: none;
  }

  .cwp-sv-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cwp-sv-includes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cwp-sv-hero h1 {
    font-size: 1.8rem;
  }

  .cwp-sv-hero .cwp-sv-hero-desc {
    font-size: 1rem;
  }

  .cwp-sv-hero .cwp-sv-hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .cwp-sv-head h2 {
    font-size: 1.5rem;
  }

  .cwp-sv-features {
    grid-template-columns: 1fr;
  }

  .cwp-sv-why {
    grid-template-columns: 1fr;
  }

  .cwp-sv-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cwp-sv-step {
    flex-direction: row;
    text-align: left;
    gap: 18px;
  }

  .cwp-sv-step .cwp-sv-step-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .cwp-sv-step h3 {
    font-size: 0.95rem;
  }

  .cwp-sv-step p {
    max-width: none;
  }

  .cwp-sv-cta .cwp-sv-cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
