/* ═══════════════════════════════════════════════
   STARK FREQUENCY — Global Stylesheet
   Use: link this in every HTML page
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Droid+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --navy:      #0D1B3E;
  --navy-2:    #1A2A4E;
  --accent:    #1A3A6E;
  --white:     #FFFFFF;
  --off-white: #F4F6FB;
  --border:    #D8DDE8;
  --subtext:   #9AA3B8;
  --glow:      rgba(26, 58, 110, 0.45);
  --glow-soft: rgba(26, 58, 110, 0.18);
  --blue-glow: rgba(100, 149, 237, 0.30);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Droid Serif', Georgia, serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAVBAR ── */
.sf-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 68px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(244, 246, 251, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.sf-nav.scrolled {
  background: rgba(244, 246, 251, 0.98);
  box-shadow: 0 4px 30px rgba(13, 27, 62, 0.07);
}
.sf-logo {
  font-family: 'Droid Serif', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.sf-logo span {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--subtext);
  display: block;
  margin-top: -2px;
}
.sf-nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.sf-nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--navy);
  position: relative;
  transition: color 0.2s;
}
.sf-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s;
}
.sf-nav-links a:hover { color: var(--accent); }
.sf-nav-links a:hover::after { width: 100%; }
.sf-nav-links a.active { color: var(--accent); }
.sf-nav-links a.active::after { width: 100%; }
.sf-nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.22);
}
.sf-nav-cta:hover {
  background: var(--accent) !important;
  box-shadow: 0 6px 28px rgba(26, 58, 110, 0.38) !important;
  transform: translateY(-1px);
}
.sf-nav-cta::after { display: none !important; }
.sf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.sf-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.28);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(26, 58, 110, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.87rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.26);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.18);
  font-size: 0.87rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: white;
  background: rgba(255,255,255,0.06);
}

/* ── SECTION HELPERS ── */
.section-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-tag::before, .section-tag::after { content: ' — '; opacity: 0.4; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  font-size: 0.88rem;
  color: var(--subtext);
  margin-top: 12px;
  line-height: 1.75;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOOTER ── */
.sf-footer {
  background: var(--navy);
  padding: 60px 6% 28px;
  color: rgba(255,255,255,0.45);
}
.sf-footer-inner { max-width: 1200px; margin: 0 auto; }
.sf-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 48px;
}
.sf-footer-brand .sf-logo { color: white; }
.sf-footer-brand .sf-logo span { color: rgba(255,255,255,0.28); }
.sf-footer-brand p {
  font-size: 0.8rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.38);
  margin-top: 14px;
  max-width: 260px;
}
.sf-footer-col h4 {
  font-family: 'Droid Serif', serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
  font-weight: 400;
}
.sf-footer-col a {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.32);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.sf-footer-col a:hover { color: rgba(255,255,255,0.72); }
.sf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.73rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 130px 6% 80px;
  background: linear-gradient(135deg, #F4F6FB 0%, #EEF1FA 50%, #E8EDF8 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 58, 110, 0.1) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--navy); margin-bottom: 14px; }
.page-hero p { font-size: 0.92rem; color: var(--subtext); line-height: 1.78; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--subtext);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { opacity: 0.5; }

/* ── GLOW UTILITIES ── */
.has-glow {
  box-shadow: 0 0 40px rgba(26, 58, 110, 0.12);
}
.has-glow:hover {
  box-shadow: 0 0 60px rgba(26, 58, 110, 0.2);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .sf-nav-links { display: none; }
  .sf-hamburger { display: flex; }
  .sf-nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 6%;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(13,27,62,0.08);
    z-index: 998;
  }
  .sf-footer-top { grid-template-columns: 1fr 1fr; }
  .sf-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) {
  .sf-footer-top { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════
   STARK FREQUENCY — Services Stylesheet
   ═══════════════════════════════════════════════ */

/* ── SERVICES PAGE ── */
.services-page-section {
  padding: 70px 6% 100px;
}
.services-page-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── SERVICE CARD ── */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 52px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--navy), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover {
  box-shadow: 0 24px 70px rgba(13, 27, 62, 0.1), 0 0 0 1px rgba(26,58,110,0.08);
  transform: translateY(-4px);
}
.svc-card:hover::before { opacity: 1; }

/* Alt layout (right-left flip) */
.svc-card-alt .svc-card-right { order: -1; }

/* Featured card */
.svc-card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.svc-card-featured:hover {
  box-shadow: 0 24px 70px rgba(13, 27, 62, 0.4), 0 0 60px rgba(26,58,110,0.25);
  transform: translateY(-4px);
}
.svc-card-featured::before { display: none; }
.svc-featured-glow {
  position: absolute;
  width: 500px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,149,237,0.12) 0%, transparent 70%);
  top: -80px; right: -80px;
  pointer-events: none;
}

.svc-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(100, 149, 237, 0.18);
  border: 1px solid rgba(100, 149, 237, 0.3);
  color: rgba(150, 200, 255, 0.9);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(100,149,237,0.15);
}

/* ── CARD LEFT ── */
.svc-num {
  font-family: 'Droid Serif', serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--subtext);
  margin-bottom: 16px;
}
.svc-icon-wrap {
  font-size: 2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.svc-icon-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  width: 56px; height: 56px;
  border-radius: 14px;
  font-size: 1.5rem;
  justify-content: center;
}
.svc-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 14px;
}
.svc-title em { font-style: italic; color: var(--accent); }
.svc-title-white { color: var(--white); }
.white-em { color: rgba(150, 200, 255, 0.85); }

.svc-desc {
  font-size: 0.88rem;
  color: var(--subtext);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 400px;
}
.svc-desc-white { color: rgba(255,255,255,0.5); }

.svc-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}
.svc-price-label {
  font-size: 0.72rem;
  color: var(--subtext);
  letter-spacing: 0.3px;
}
.svc-price {
  font-family: 'Droid Serif', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.svc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── CARD RIGHT ── */
.svc-feature-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 16px;
}
.svc-feature-box-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.svc-feature-title {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--subtext);
  font-weight: 600;
  margin-bottom: 16px;
}
.svc-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: #4A5568;
  line-height: 1.5;
}
.svc-feature-list li .check {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.svc-feature-list li.muted { color: var(--subtext); opacity: 0.6; }
.svc-feature-list li.muted span { color: var(--subtext); }
.svc-feature-list-dark li { color: rgba(255,255,255,0.62); }
.svc-feature-list-dark .check { color: rgba(120,190,255,0.8); }

.svc-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tag {
  font-size: 0.68rem;
  padding: 5px 12px;
  border-radius: 50px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--subtext);
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* ── PROCESS ── */
.process-section {
  padding: 90px 6%;
  background: var(--off-white);
}
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.process-num {
  font-family: 'Droid Serif', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.8rem;
  color: var(--subtext);
  line-height: 1.75;
}
.process-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 40px;
  position: relative;
}
.process-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -9px;
  color: var(--border);
  font-size: 0.8rem;
}

/* ── CTA ── */
.svc-cta-section {
  padding: 90px 6%;
  background: var(--white);
}
.svc-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-cta-glow {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,149,237,0.14) 0%, transparent 70%);
  top: -120px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.svc-cta-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: white;
  margin-bottom: 14px;
  position: relative;
}
.svc-cta-inner h2 em { font-style: italic; color: rgba(150,200,255,0.8); }
.svc-cta-inner p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════
   SERVICE DETAIL PAGE (launch/elevate/signature)
   ═══════════════════════════════════════ */
.detail-page-hero {
  padding: 130px 6% 70px;
  background: linear-gradient(135deg, #F4F6FB 0%, #EEF1FA 60%, #E8EDF8 100%);
  position: relative;
  overflow: hidden;
}
.detail-page-hero .page-hero-glow { left: 50%; }
.detail-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.detail-hero-left .breadcrumb { justify-content: flex-start; }
.detail-hero-left h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--navy); margin-bottom: 14px; }
.detail-hero-left h1 em { font-style: italic; color: var(--accent); }
.detail-hero-left p { font-size: 0.9rem; color: var(--subtext); line-height: 1.8; margin-bottom: 28px; }
.plan-price-hero {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 20px rgba(13,27,62,0.07);
}
.plan-price-hero .currency { font-size: 0.9rem; color: var(--subtext); }
.plan-price-hero .amount {
  font-family: 'Droid Serif', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.plan-price-hero .period { font-size: 0.75rem; color: var(--subtext); }
.detail-hero-right {
  background: var(--navy);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(13,27,62,0.28);
  position: relative;
  overflow: hidden;
}
.detail-hero-right::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100,149,237,0.12) 0%, transparent 70%);
}
.detail-hero-right h3 {
  font-family: 'Droid Serif', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-bottom: 20px;
}
.detail-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
}
.detail-features-list li .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(100,149,237,0.18);
  border: 1px solid rgba(100,149,237,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem;
  color: rgba(150,200,255,0.9);
  flex-shrink: 0;
  font-weight: 700;
}

/* Detail sections */
.detail-section {
  padding: 80px 6%;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: flex-start;
}
.timeline-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Droid Serif', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.timeline-content { padding-top: 10px; }
.timeline-content h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 0.83rem; color: var(--subtext); line-height: 1.75; }

/* Comparison add-ons */
.compare-plans {
  background: var(--navy);
  padding: 80px 6%;
}
.compare-inner { max-width: 1000px; margin: 0 auto; }
.compare-inner .section-title { color: white; }
.compare-inner .section-tag { color: rgba(150,200,255,0.7); }
.compare-table {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.compare-row:last-child { border-bottom: none; }
.compare-row.header { background: rgba(255,255,255,0.06); }
.compare-cell {
  padding: 14px 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
}
.compare-row.header .compare-cell {
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}
.compare-cell.highlight { color: rgba(150,200,255,0.85); font-weight: 500; }
.compare-row:nth-child(even) { background: rgba(255,255,255,0.02); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .svc-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 2rem;
  }
  .svc-card-alt .svc-card-right { order: 0; }
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-connector { width: 1px; height: 30px; margin-top: 0; }
  .process-connector::after { content: '↓'; top: auto; bottom: -10px; right: -5px; }
  .detail-hero-inner { grid-template-columns: 1fr; }
  .svc-cta-inner { padding: 40px 24px; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .compare-row.header .compare-cell:first-child { display: none; }
  .compare-cell:first-child { display: none; }
}
@media (max-width: 560px) {
  .services-page-section { padding: 40px 4% 70px; }
  .svc-cta-inner { padding: 32px 18px; }
}

