/* === Style block 2 === */
/* Servme homepage styles */
* { box-sizing: border-box; }
body { margin: 0; background: var(--servme-bg); color: var(--fg-1); }

.hp-h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 76px; line-height: 81px; letter-spacing: 0;
  color: var(--servme-primary); margin: 18px 0 24px; text-wrap: pretty;
}
@media (max-width: 960px) {
  .hp-h1 { font-size: 44px; line-height: 49px; }
}
.hp-h1 em { font-style: italic; color: var(--servme-accent-deep);  font-weight: 600;}
.hp-h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 64px; line-height: 69px; letter-spacing: 0;
  color: var(--servme-primary); margin: 12px 0 0; text-wrap: pretty;
}
@media (max-width: 960px) {
  .hp-h2 { font-size: 36px; line-height: 41px; }
}
.hp-h2 em { font-style: italic; color: var(--servme-accent-deep);  font-weight: 600;}
.hp-h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 56px; line-height: 61px; letter-spacing: 0;
  color: var(--servme-primary); margin: 8px 0 16px;
}
@media (max-width: 960px) {
  .hp-h3 { font-size: 28px; line-height: 33px; }
}
.hp-eyebrow { color: var(--servme-accent-deep); }
.hp-section-head { max-width: 920px; margin: 0 auto; text-align: center; padding: 0 24px; }
.hp-section-sub { font-size: 17px; color: var(--fg-2); margin: 20px auto 0; max-width: 640px; line-height: 1.5; }

/* ================ NAV ================ */
.hp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 249, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 64, 68, 0.06);
}
.hp-nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.hp-logo { display: flex; align-items: center; text-decoration: none; }
.hp-logo-word { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--servme-primary); font-size: 26px; letter-spacing: -0.01em; }
.hp-logo-img { height: 36px; width: auto; display: block; transform: translateY(-3px); margin: 0; padding: 0; }
.hp-logo { padding: 0; margin: 0; }
.hp-footer-logo { height: 48px; width: auto; display: block; transform: translateY(-4px); }
.hp-nav-links { display: flex; gap: 30px; }
.hp-nav-links a {
  color: #396465;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 14.5px; font-weight: 400;
  transition: color .2s;
}
.hp-nav-links a:hover { color: #1d4044; }
.hp-nav-ctas { display: flex; gap: 12px; align-items: center; }
.hp-link { color: var(--fg-1); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 4px; }
.hp-nav-login { padding: 10px 20px; border-radius: 8px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; line-height: 1; background: transparent; color: #1d4044; border: 1px solid #1d4044; cursor: pointer; text-decoration: none; transition: background .2s, color .2s; display: inline-flex; align-items: center; }
.hp-nav-login:hover { background: #396465; color: #fafaf9; }
.hp-nav-demo { padding: 11px 20px; border-radius: 8px; font-family: var(--font-body); font-size: 13.5px; font-weight: 500; line-height: 1; background: #1d4044; color: #fafaf9; border: none; cursor: pointer; text-decoration: none; transition: background .2s, transform .2s; display: inline-flex; align-items: center; }
.hp-nav-demo:hover { background: #396465; color: #fafaf9; transform: translateY(-1px); }
.hp-link:hover { color: var(--servme-primary); }

/* ================ HERO ================ */
.hp-hero { padding: 80px 0 96px; background: var(--servme-bg); }
.hp-hero-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hp-lead { font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 520px; margin: 0; }
.hp-hero-ctas { display: flex; gap: 18px; align-items: center; margin-top: 32px; }
.hp-btn-lg { /* legacy */ }
.hp-watch { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; color: var(--servme-primary); font-weight: 500; font-size: 14px; }
.hp-watch-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--servme-accent); display: inline-flex; align-items: center; justify-content: center; transition: transform 220ms; }
.hp-watch-icon i { width: 16px; height: 16px; color: var(--servme-primary); }
.hp-watch:hover .hp-watch-icon { transform: scale(1.06); }

/* hero variant: warm */
.hp-hero-warm { background: var(--servme-bg-warm); }

/* hero variant: split with vertical accent */
.hp-hero-split .hp-hero-copy { padding-left: 32px; border-left: 4px solid var(--servme-accent); }

/* ================ HERO VIDEO (SevenRooms-style: cream left, full-bleed video right) ================ */
.hp-hero-video {
  position: relative; padding: 0; background: var(--servme-bg);
  overflow: hidden;
}
.hp-hv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: 620px;
  gap: 0;
}
.hp-hero-video .hp-hv-copy {
  display: flex; align-items: center;
  padding: 80px 64px;
  animation: hvFadeIn 800ms cubic-bezier(.2,.7,.2,1);
}
.hp-hv-copy-inner { max-width: 560px; margin-left: auto; }
@keyframes hvFadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hp-hero-video .hp-h1 { color: var(--servme-primary); margin: 12px 0 0; }
.hp-hero-video .hp-lead { color: var(--fg-2); margin-top: 24px; max-width: 460px; }
.hp-hero-video .hp-hero-ctas { margin-top: 32px; }

/* Capterra rating badge under hero CTAs */
.hp-hv-rating {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid var(--border-2);
  font-family: var(--font-body);
}
.hp-hv-rating-stars {
  display: inline-flex; gap: 2px; color: var(--servme-accent);
}
.hp-hv-rating-text {
  display: inline-flex; align-items: baseline; gap: 6px;
  font-size: 13px; color: var(--fg-2);
}
.hp-hv-rating-score {
  font-family: var(--font-display); font-weight: 600;
  font-size: 18px; color: var(--servme-primary); line-height: 1;
}
.hp-hv-rating-on { color: var(--fg-3); font-size: 12px; }
.hp-hv-rating-source {
  font-weight: 600; color: var(--servme-primary);
  letter-spacing: 0.01em;
}

/* video media on the right — full bleed to viewport edge */
.hp-hv-media {
  position: relative; overflow: hidden; background: #071d1e;
  animation: hvFadeIn 1000ms cubic-bezier(.2,.7,.2,1) 120ms backwards;
}
.hp-hv-poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 0;
  animation: hvKenburns 32s ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}
.hp-hv-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 1;
  background: #071d1e;
}
.hp-hv-tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(11,28,30,0.35) 100%),
    linear-gradient(180deg, rgba(11,28,30,0) 70%, rgba(11,28,30,0.3) 100%);
}
@keyframes hvKenburns {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.10); }
}

/* Centered play button overlay — SevenRooms style pill */
.hp-hv-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 3; display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 24px 14px 14px; border-radius: 999px;
  background: rgba(250,250,249,0.95); backdrop-filter: blur(12px);
  border: 0; cursor: pointer; font: inherit;
  box-shadow: 0 12px 32px rgba(11,28,30,0.25);
  transition: all 220ms cubic-bezier(.2,.7,.2,1);
}
.hp-hv-play:hover {
  background: var(--servme-bg);
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 18px 40px rgba(11,28,30,0.35);
}
.hp-hv-play-ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--servme-primary); color: var(--servme-accent);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-hv-play-ic i { width: 14px; height: 14px; margin-left: 2px; }
.hp-hv-play-l {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--servme-primary);
}

/* product preview */
.hp-preview {
  background: #fff; border: 1px solid var(--border-1); border-radius: 20px;
  box-shadow: var(--shadow-3); overflow: hidden; transform: rotate(-1.4deg);
}
.hp-preview-bar { background: var(--servme-primary); padding: 14px 18px;
  display: flex; align-items: center; gap: 8px; }
.hp-pdot { width: 10px; height: 10px; border-radius: 50%; background: rgba(250,250,249,0.25); }
.hp-preview-label { margin-left: auto; font-size: 12px; color: var(--servme-bg); letter-spacing: 0.04em; font-weight: 500; }
.hp-preview-body { padding: 6px 0; }
.hp-preview-row {
  display: grid;
  grid-template-columns: 60px 1fr 70px 130px 1fr;
  gap: 12px; align-items: center; padding: 14px 20px;
  border-bottom: 1px solid var(--servme-ink-100); font-size: 13px;
}
.hp-preview-row:last-child { border-bottom: 0; }
.hp-preview-time { font-family: var(--font-mono); color: var(--fg-3); font-size: 12px; }
.hp-preview-name { color: var(--fg-1); font-weight: 500; }
.hp-vip { background: var(--servme-primary); color: var(--servme-accent); padding: 2px 7px;
  border-radius: 999px; font-size: 9px; margin-left: 8px; letter-spacing: 0.1em; vertical-align: middle; }
.hp-preview-pax { color: var(--fg-2); font-size: 12px; }
.hp-preview-tag { font-size: 11px; padding: 4px 10px; border-radius: 999px; text-align: center; font-weight: 500; }
.hp-tag-confirmed { background: rgba(79,122,82,0.14); color: #396465; }
.hp-tag-pending { background: rgba(201,138,42,0.16); color: #b6853f; }
.hp-tag-seated { background: var(--servme-primary); color: var(--servme-accent); }
.hp-preview-note { color: var(--fg-3); font-size: 12px; }

/* ================ SOCIAL PROOF ================ */
.hp-proof { padding: 96px 0; background: var(--servme-bg-warm); }
.hp-proof-inner { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.hp-proof-head { text-align: center; margin-bottom: 32px; }
.hp-segments { display: flex; justify-content: center; gap: 8px; margin-bottom: 56px; flex-wrap: wrap; }
.hp-seg {
  font: inherit; font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: 999px;
  background: transparent; border: 1px solid var(--border-2); color: var(--fg-2);
  cursor: pointer; transition: all 180ms;
}
.hp-seg:hover { border-color: var(--servme-primary); color: var(--servme-primary); }
.hp-seg.is-active { background: var(--servme-primary); border-color: var(--servme-primary); color: var(--servme-bg); }

.hp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.hp-stat { text-align: center; padding: 24px 16px; }
.hp-stat-mid { border-left: 1px solid var(--border-2); border-right: 1px solid var(--border-2); }
.hp-stat-v {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(64px, 7vw, 96px); line-height: 1; color: var(--servme-primary); letter-spacing: -0.02em;
}
.hp-stat-v span { font-size: 0.4em; color: var(--fg-3); margin-left: 6px; }
.hp-stat-l { font-size: 14px; color: var(--fg-2); margin-top: 12px; }

/* proof variant: cards */
.hp-proof-cards .hp-stats { gap: 16px; }
.hp-proof-cards .hp-stat { background: #fff; border-radius: 16px; padding: 36px 24px; box-shadow: var(--shadow-1); }
.hp-proof-cards .hp-stat-mid { border-left: 0; border-right: 0; }

/* proof variant: dark */
.hp-proof-dark { background: var(--servme-primary); }
.hp-proof-dark .hp-h2,
.hp-proof-dark .hp-stat-v { color: var(--servme-bg); }
.hp-proof-dark .hp-stat-v em,
.hp-proof-dark .hp-h2 em { color: var(--servme-accent); }
.hp-proof-dark .hp-stat-l,
.hp-proof-dark .hp-source,
.hp-proof-dark .hp-awards { color: var(--servme-ink-300); }
.hp-proof-dark .hp-seg { border-color: rgba(250,250,249,0.2); color: var(--servme-ink-300); }
.hp-proof-dark .hp-seg.is-active { background: var(--servme-accent); color: var(--servme-primary); border-color: var(--servme-accent); }
.hp-proof-dark .hp-stat-mid { border-color: rgba(250,250,249,0.12); }
.hp-proof-dark .hp-stars { color: var(--servme-accent); }

.hp-source { text-align: center; font-size: 12px; color: var(--fg-3); margin-top: 32px; font-style: italic; }
.hp-awards { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-2); padding-top: 32px; border-top: 1px solid var(--border-2); }
.hp-stars { color: var(--servme-accent-deep); letter-spacing: 2px; font-size: 16px; }
.hp-aw-sep { color: var(--fg-3); }

/* Customer logos */
.hp-logos {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2);
  border-radius: 16px; overflow: hidden;
  margin-bottom: 56px;
  animation: ijFade 360ms cubic-bezier(.2,.7,.2,1);
}
.hp-logo-cell {
  background: var(--servme-bg);
  min-height: 104px;
  display: flex; align-items: center; justify-content: center;
  padding: 20px 16px;
  text-align: center;
  font: inherit; border: 0; cursor: default;
}
.hp-logo-lockup {
  display: inline-flex; align-items: center; gap: 10px;
  max-width: 100%;
}
.hp-logo-monogram {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--servme-bg-warm); color: var(--servme-accent-deep);
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px dashed var(--border-2);
}
.hp-logo-mark {
  font-size: 16px; color: var(--servme-primary);
  line-height: 1.1;
  opacity: 0.85;
  text-wrap: balance;
}
.hp-proof-dark .hp-logo-monogram {
  background: rgba(250,250,249,0.06); color: var(--servme-accent);
  border-color: rgba(250,250,249,0.15);
}
.hp-proof-dark .hp-logo-mark { color: var(--servme-bg); }
.hp-logo-more {
  cursor: pointer;
  background: var(--servme-primary) !important; color: var(--servme-bg);
  flex-direction: column; gap: 2px;
  transition: background 200ms;
}
.hp-logo-more:hover { background: var(--servme-primary-deep) !important; }
.cp-cust-section .hp-logo-more:hover { background: #396465 !important; }
.hp-logo-more-v { font-family: var(--font-display); font-size: 22px; color: var(--servme-accent); font-weight: 500; line-height: 1; }
.hp-logo-more-l { font-size: 10px; color: var(--servme-bg); letter-spacing: 0.08em; }

.hp-proof-dark .hp-logos { background: rgba(250,250,249,0.08); border-color: transparent; }
.hp-proof-dark .hp-logo-cell { background: var(--servme-primary); }
.hp-proof-dark .hp-logo-mark { color: var(--servme-bg); }
.hp-proof-dark .hp-logo-more { background: var(--servme-accent) !important; color: var(--servme-primary); }
.hp-proof-dark .hp-logo-more-v { color: var(--servme-primary); }
.hp-proof-dark .hp-logo-more-l { color: var(--servme-primary); opacity: 0.8; }

/* Modal */
.hp-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 28, 30, 0.6); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 32px;
  animation: ijFade 220ms ease;
}
.hp-modal-inner {
  background: var(--servme-bg); border-radius: 20px;
  width: 100%; max-width: 1080px; max-height: 86vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.hp-modal-head {
  padding: 28px 32px; border-bottom: 1px solid var(--border-2);
  display: flex; justify-content: space-between; align-items: center;
}
.hp-modal-close {
  background: var(--servme-bg-warm); border: 0; width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; font-size: 24px; color: var(--fg-2);
  font-family: inherit; line-height: 1;
}
.hp-modal-close:hover { background: var(--servme-accent); color: var(--servme-primary); }
.hp-modal-body { padding: 24px 32px 32px; overflow-y: auto; }
.hp-modal-group { margin-bottom: 32px; }
.hp-modal-group:last-child { margin-bottom: 0; }
.hp-modal-group-h {
  font-family: var(--font-display); font-size: 24px; font-weight: 600;
  color: var(--servme-primary); margin-bottom: 16px;
  display: flex; align-items: baseline; gap: 12px;
 letter-spacing: 0; line-height: 29px;}
.hp-modal-group-h span {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--servme-accent-deep); font-family: var(--font-body);
}
.hp-modal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-2);
  border: 1px solid var(--border-2); border-radius: 12px; overflow: hidden;
}
.hp-modal-grid .hp-logo-cell { min-height: 88px; padding: 14px 12px; }

/* ================ JOURNEY ================ */
.hp-journey { padding: 120px 0; background: var(--servme-bg); }
.hp-journey-rail {
  max-width: 1320px; margin: 64px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative;
}
.hp-journey-rail::before {
  content: ''; position: absolute; top: 28px; left: 32px; right: 32px; height: 2px;
  background: var(--servme-accent); opacity: 0.4; z-index: 0;
}
.hp-journey-step { padding: 0 16px; position: relative; }
.hp-journey-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--servme-accent); color: var(--servme-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  margin-bottom: 24px; position: relative; z-index: 1;
  border: 4px solid var(--servme-bg);
}
.hp-journey-label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--servme-accent-deep); font-weight: 500; margin-bottom: 8px;
}
.hp-journey-title {
  font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 29px;
  color: var(--servme-primary); margin: 0 0 12px;
 letter-spacing: 0;}
.hp-journey-body { font-size: 14px; color: var(--fg-2); line-height: 1.55; margin: 0; }
.hp-journey-cta { text-align: center; margin-top: 56px; }

/* journey variant: tabbed */
.hp-journey-tabs {
  display: flex; justify-content: center; gap: 0; margin: 56px auto 0;
  max-width: 960px; padding: 0 24px;
  border-bottom: 1px solid var(--border-2);
}
.hp-jtab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 24px; background: transparent; border: 0; cursor: pointer;
  font-family: inherit; color: var(--fg-3);
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: all 180ms;
}
.hp-jtab-n { font-family: var(--font-display); font-size: 24px; font-weight: 600;  letter-spacing: 0; line-height: 29px;}
.hp-jtab-l { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.hp-jtab:hover { color: var(--servme-primary); }
.hp-jtab.is-active { color: var(--servme-primary); border-bottom-color: var(--servme-accent); }
.hp-journey-stage {
  max-width: 1240px; margin: 64px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hp-journey-num-big {
  font-family: var(--font-display); font-weight: 500;
  font-size: 96px; line-height: 1; color: var(--servme-accent); margin-bottom: 8px;
}
.hp-stage-body { font-size: 17px; color: var(--fg-2); line-height: 1.55; margin: 0 0 24px; max-width: 460px; }
.hp-stage-art {
  background: var(--servme-bg-warm); border-radius: 24px; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center; color: var(--servme-accent-deep);
}

/* ================ PILLARS ================ */
.hp-pillars { padding: 120px 0; background: var(--servme-bg-warm); }
.hp-pillars-grid {
  max-width: 1320px; margin: 64px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hp-pillar {
  background: #fff; border-radius: 20px; padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
}
.hp-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.hp-pillar-num { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.16em; color: var(--servme-accent-deep); }
.hp-pillar-tag {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 24px; color: var(--servme-primary); line-height: 29px;
 letter-spacing: 0;}
.hp-pillar-h {
  font-family: var(--font-display); font-weight: 600; font-size: 24px; line-height: 29px;
  color: var(--servme-primary); margin: 8px 0 0;
 letter-spacing: 0;}
.hp-pillar-b { font-size: 14px; color: var(--fg-2); line-height: 1.6; margin: 0; flex: 1; }
.hp-pillar-cta { color: var(--servme-accent-deep); text-decoration: none; font-weight: 500; font-size: 14px; }
.hp-pillar-cta:hover { color: var(--servme-primary); }

/* pillars variant: dark */
.hp-pillars-dark { background: var(--servme-primary-deep); }
.hp-pillars-dark .hp-h2 { color: var(--servme-bg); }
.hp-pillars-dark .hp-h2 em { color: var(--servme-accent); }
.hp-pillars-dark .hp-pillar { background: var(--servme-primary); }
.hp-pillars-dark .hp-pillar-tag, .hp-pillars-dark .hp-pillar-h { color: var(--servme-bg); }
.hp-pillars-dark .hp-pillar-b { color: var(--servme-ink-300); }
.hp-pillars-dark .hp-pillar-cta { color: var(--servme-accent); }
.hp-pillars-dark .hp-pillars .eyebrow,
.hp-pillars-dark .eyebrow { color: var(--servme-accent); }

/* pillars variant: stacked */
.hp-pillars-stacked .hp-pillars-grid { grid-template-columns: 1fr; max-width: 1040px; gap: 16px; }
.hp-pillars-stacked .hp-pillar {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px; align-items: start;
}
.hp-pillars-stacked .hp-pillar-num { grid-row: 1 / 4; align-self: center; font-size: 64px; font-family: var(--font-display); color: var(--servme-accent); letter-spacing: 0; }
.hp-pillars-stacked .hp-pillar-tag { grid-column: 2; }
.hp-pillars-stacked .hp-pillar-h { grid-column: 2; }
.hp-pillars-stacked .hp-pillar-b { grid-column: 3; grid-row: 2 / 4; }
.hp-pillars-stacked .hp-pillar-cta { grid-column: 3; }

/* ================ COMPARISON ================ */
.hp-compare { padding: 120px 0; background: var(--servme-bg); }
.hp-compare-grid {
  max-width: 1280px; margin: 64px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.hp-cc {
  background: var(--servme-bg-warm); border-radius: 20px; padding: 40px;
  position: relative;
}
.hp-cc:nth-child(2) { background: var(--servme-primary); color: var(--servme-bg); }
.hp-cc:nth-child(2) .hp-cc-num,
.hp-cc:nth-child(2) .hp-cc-h { color: var(--servme-accent); }
.hp-cc:nth-child(2) .hp-cc-h span { color: var(--servme-bg); }
.hp-cc:nth-child(2) .hp-cc-b { color: var(--servme-ink-300); }
.hp-cc-num {
  font-family: var(--font-display); font-size: 38px; letter-spacing: 0;
  color: var(--servme-accent-deep); margin-bottom: 16px;
 font-weight: 600; font-style: italic;}
.hp-cc-h {
  font-family: var(--font-display); font-weight: 500;
  font-size: 32px; line-height: 1.15; color: var(--servme-primary); margin: 0 0 16px;
}
.hp-cc-h span { font-style: italic; color: var(--servme-accent-deep); }
.hp-cc-b { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; }
.hp-cc-aside { margin-top: 16px; font-style: italic; color: var(--servme-accent-deep); font-size: 14px; }

/* comparison variant: list */
.hp-compare-list .hp-compare-grid { grid-template-columns: 1fr; max-width: 960px; gap: 0; }
.hp-compare-list .hp-cc { background: transparent !important; color: inherit !important;
  border-radius: 0; border-bottom: 1px solid var(--border-2);
  display: grid; grid-template-columns: 80px 1fr 1.4fr; gap: 32px; padding: 32px 16px; }
.hp-compare-list .hp-cc:last-child { border-bottom: 0; }
.hp-compare-list .hp-cc-h { font-size: 24px; margin: 0; color: var(--servme-primary) !important; }
.hp-compare-list .hp-cc-h span { color: var(--servme-accent-deep) !important; }
.hp-compare-list .hp-cc-b { color: var(--fg-2) !important; }

.hp-versus { max-width: 1280px; margin: 80px auto 0; padding: 0 32px; }
.hp-versus-l { text-align: center; color: var(--fg-2); font-size: 15px; margin-bottom: 24px; }
.hp-versus-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.hp-vs {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 20px; background: var(--servme-bg-warm); border-radius: 12px;
  text-decoration: none; color: #1d4044; position: relative;
  transition: all 200ms;
}
.hp-vs b, .hp-vs span, .hp-vs i { color: #1d4044; }
.hp-vs i svg, .hp-vs i path, .hp-vs i polyline, .hp-vs i line { stroke: #1d4044 !important; color: #1d4044 !important; }
.hp-vs:hover { background: var(--servme-accent); }
.hp-vs span { font-size: 11px; color: var(--fg-3); letter-spacing: 0.04em; }
.hp-vs b { font-family: var(--font-display); font-weight: 600; font-size: 48px;  letter-spacing: 0; line-height: 53px;}
.hp-vs i { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; }
.hp-vs-hub { background: #1d4044 !important; color: #dbac6b !important; }
.hp-vs-hub:hover { background: #396465 !important; color: #dbac6b !important; }
.hp-vs-hub b, .hp-vs-hub span, .hp-vs-hub i { color: #dbac6b !important; }
.hp-vs-hub i svg, .hp-vs-hub i path, .hp-vs-hub i polyline, .hp-vs-hub i line { stroke: #dbac6b !important; color: #dbac6b !important; }

.hp-mena-strip {
  max-width: 1280px; margin: 64px auto 0; padding: 24px 32px;
  display: flex; justify-content: center; gap: 12px; align-items: center;
  font-size: 14px; color: var(--fg-2);
}
.hp-mena-strip a { color: var(--servme-accent-deep); text-decoration: none; font-weight: 500; }
.hp-mena-strip a:hover { color: #1d4044; }

/* ================ INTEGRATIONS ================ */
.hp-int { padding: 120px 0; background: var(--servme-bg-warm); }
.hp-int-grid {
  max-width: 1280px; margin: 64px auto 0; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.hp-int-card {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border-1);
  transition: all 220ms;
}
.hp-int-card:hover { border-color: var(--servme-accent); transform: translateY(-2px); }
.hp-int-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--servme-bg-warm); color: var(--servme-primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.hp-int-icon i { width: 22px; height: 22px; }
.hp-int-h { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--servme-primary); margin: 0 0 10px;  letter-spacing: 0; line-height: 29px;}
.hp-int-card p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.hp-int-foot {
  max-width: 1280px; margin: 56px auto 0; padding: 0 32px;
  display: flex; gap: 24px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.hp-int-or { color: var(--fg-3); font-size: 14px; }

/* int variant: matrix */
.hp-int-matrix .hp-int-grid { grid-template-columns: repeat(6, 1fr); gap: 8px; }
.hp-int-matrix .hp-int-card { padding: 20px 16px; text-align: center; }
.hp-int-matrix .hp-int-icon { margin: 0 auto 12px; }
.hp-int-matrix .hp-int-h { font-size: 16px; font-family: var(--font-body); }
.hp-int-matrix .hp-int-card p { font-size: 12px; }

/* ================ FOOTER ================ */
.hp-footer { background: #1d4044; color: var(--servme-ink-300); padding: 80px 0 32px; }
.hp-footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.hp-footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 64px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(250,250,249,0.08); flex-wrap: wrap; gap: 24px; }
.hp-footer-tag { font-family: var(--font-display); font-size: 24px; color: var(--servme-bg); margin: 0; font-style: italic; }
.hp-footer-cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.hp-footer-cols b { display: block; color: var(--servme-bg); margin-bottom: 16px; font-weight: 500; font-size: 13px; }
.hp-footer-cols a { display: block; color: var(--servme-ink-400); text-decoration: none; font-size: 13px; padding: 5px 0; cursor: pointer; }
.hp-footer-cols a:hover { color: var(--servme-accent); }
.hp-footer-fine { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(250,250,249,0.08); font-size: 12px; color: var(--servme-ink-500); }


/* === Style block 19 === */

/* Center the single remaining CTA card (Work with Us) */
.cp-ctacards-inner { grid-template-columns: 1fr !important; max-width: 720px !important; }
.cp-ctacards .cp-ctacard { text-align: center !important; }
.cp-ctacards .cp-ctacard-h { text-align: center !important; }
.cp-ctacards .cp-ctacard-p { text-align: center !important; margin-left: auto !important; margin-right: auto !important; max-width: 56ch !important; }
.cp-ctacards .cp-ctacard-link { justify-content: center !important; display: inline-flex !important; margin-left: auto !important; margin-right: auto !important; }
@media (min-width: 768px) {
  .cp-ctacards-inner { max-width: 720px !important; }
}

/* Bottom CTA — solid background instead of gradient */
.cp-cta { background: #fafaf9 !important; }
.cp-cta::after, .cp-cta::before { background: none !important; display: none !important; }
.cp-cta .cp-cta-h, .cp-cta h2, .cp-cta .hp-h2 { color: var(--servme-primary) !important; }
.cp-cta .cp-cta-h em, .cp-cta h2 em, .cp-cta .hp-h2 em { color: var(--servme-accent-deep) !important; }
.cp-cta p, .cp-cta .cp-cta-sub { color: var(--fg-2) !important; }

/* Tighten gap between Story and Values (Team section removed) */
.cp-story { padding-bottom: 48px !important; }
.cp-values { padding-top: 48px !important; }
@media (max-width: 767px) {
  .cp-story { padding-bottom: 32px !important; }
  .cp-values { padding-top: 32px !important; }
}

/* Story h2 — 3 lines on mobile, 2 lines on desktop */
.cp-story .hp-h2 .sep { white-space: pre; }
@media (max-width: 1023px) {
  .cp-story .hp-h2 .sep1::before { content: "\A"; }
  .cp-story .hp-h2 .sep2::before { content: " "; white-space: normal; }
  .cp-story .hp-h2 .sep3::before { content: "\A"; }
}
@media (min-width: 1024px) {
  .cp-story .hp-h2 .sep1::before { content: " "; white-space: normal; }
  .cp-story .hp-h2 .sep2::before { content: "\A"; }
  .cp-story .hp-h2 .sep3::before { content: " "; white-space: normal; }
}

/* Values h2 — one line on desktop */
@media (min-width: 1024px) {
  .cp-values .hp-h2 br { display: none; }
  .cp-values .hp-h2 { white-space: nowrap; }
  .cp-values .hp-h2 em { margin-left: 0.2em; }
}


/* === Style block 20 === */

/* ============================================================
   Servme · Company page-specific layout
   Built on top of homepage tokens (--servme-*, --font-*, hp-*)
   ============================================================ */

/* === HERO === */
.cp-hero { padding: 96px 0 112px; background: var(--servme-bg); position: relative; overflow: hidden; }
.cp-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 8% 12%, rgba(219,172,107,0.10), transparent 45%);
  pointer-events: none;
}
.cp-hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: center; position: relative;
}
.cp-hero-copy { max-width: 580px; }
.cp-hero-copy .eyebrow { display: inline-block; margin-bottom: 20px; }
.cp-hero-copy .hp-h1 {
  margin: 0 0 28px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.cp-hero-copy .hp-h1 em { color: var(--servme-accent-deep); font-style: italic; }
.cp-hero-copy .hp-lead {
  max-width: 600px !important; margin: 0;
  font-size: 19px; line-height: 1.55;
  color: var(--fg-2);
  white-space: normal !important;
  text-wrap: balance;
}

.cp-collage {
  position: relative; width: 100%; aspect-ratio: 1 / 1;
  display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(12, 1fr);
  gap: 14px;
}
.cp-tile { overflow: hidden; border-radius: 16px; box-shadow: 0 10px 30px rgba(29,64,68,0.12); }
.cp-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.cp-tile:hover img { transform: scale(1.04); }
.cp-tile-1 { grid-column: 1 / 8;  grid-row: 1 / 8;  }
.cp-tile-2 { grid-column: 8 / 13; grid-row: 1 / 6;  }
.cp-tile-3 { grid-column: 1 / 6;  grid-row: 8 / 13; }
.cp-tile-4 { grid-column: 6 / 13; grid-row: 6 / 13; }

/* === STATS === */
.cp-stats { padding: 0 0 40px; background: var(--servme-bg); }
.cp-stats-inner { max-width: 980px; margin: 0 auto; padding: 0 32px; }
.cp-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--servme-bg-warm);
  border-radius: 18px;
  padding: 48px 24px;
  gap: 12px;
}
.cp-stat { padding: 8px 16px; text-align: center; }
.cp-stat-v {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: 64px; line-height: 1.05; color: #1d4044;
  letter-spacing: -0.01em;
}
.cp-stat-v .unit { font-size: 0.7em; vertical-align: baseline; margin-left: 2px; }
.cp-stat-gold { color: #1d4044 !important; }
.cp-stat-l {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--fg-2); margin-top: 12px;
}

/* === Shared section head === */
.cp-section-head { margin-bottom: 56px; }
.cp-section-head .eyebrow { display: inline-block; margin-bottom: 16px; }
.cp-section-head .hp-h2 { margin: 0; max-width: 900px; }
.cp-section-head .hp-h2 em { color: var(--servme-accent-deep); font-style: italic; }

/* === STORY === */
.cp-story { padding: 60px 0 120px; background: var(--servme-bg); }
.cp-story-inner { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

.cp-story-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.cp-story-q-av {
  width: 320px; aspect-ratio: 4 / 5;
  border-radius: 16px; overflow: hidden;
  border: 3px solid var(--servme-accent);
  box-shadow: 0 12px 32px rgba(29,64,68,0.12);
  position: sticky; top: 24px;
}
.cp-story-q-av img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.cp-story-right { display: flex; flex-direction: column; }
.cp-story-bq {
  font-family: var(--font-display);
  font-weight: 400; font-style: normal;
  font-size: 28px; line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--servme-primary);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.cp-story-bq em { font-style: italic; color: var(--servme-accent-deep); }
.cp-story-q-name { font-family: var(--font-sans); font-weight: 600; font-size: 16px; color: var(--servme-primary); }
.cp-story-q-role { font-family: var(--font-sans); font-size: 13px; color: var(--fg-3); margin-top: 2px; }

.cp-story-body {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.cp-story-body p {
  font-family: var(--font-sans);
  font-size: 16px; line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
  text-wrap: pretty;
}

/* === TEAM === */
.cp-team { padding: 96px 0; background: var(--servme-bg-warm); }
.cp-team-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.cp-team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px 18px; }
.cp-team-card {
  display: flex; flex-direction: column;
  background: #fafaf9; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.cp-team-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(29,64,68,0.10); }
.cp-team-img { aspect-ratio: 4 / 5; overflow: hidden; }
.cp-team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.cp-team-card:hover .cp-team-img img { transform: scale(1.04); }
.cp-team-body { padding: 14px 16px; }
.cp-team-name {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 17px; line-height: 1.2; color: var(--servme-primary);
  letter-spacing: -0.005em;
}
.cp-team-role {
  font-family: var(--font-sans); font-size: 12px;
  color: var(--fg-2); margin-top: 4px;
}

/* === VALUES === */
.cp-values { padding: 120px 0; background: var(--servme-bg); }
.cp-values-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.cp-values .cp-section-head { text-align: center; }
.cp-values .cp-section-head .hp-h2 { margin-left: auto; margin-right: auto; }
.cp-story .cp-section-head,
.cp-team .cp-section-head,
.cp-offices .cp-section-head { text-align: center; }
.cp-story .cp-section-head .hp-h2,
.cp-team .cp-section-head .hp-h2,
.cp-offices .cp-section-head .hp-h2 { margin-left: auto; margin-right: auto; }
.cp-values-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.cp-value {
  background: var(--servme-bg-warm);
  border-radius: 20px;
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: background .25s ease, color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.cp-value:hover {
  background: #1d4044;
  color: #fafaf9;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(29,64,68,0.18);
}
.cp-value:hover .cp-value-n { color: #dbac6b; }
.cp-value:hover .cp-value-t { color: #dbac6b; }
.cp-value:hover .cp-value-b { color: #fafaf9; }
.cp-value-wide { grid-column: 1 / -1; max-width: calc(50% - 12px); justify-self: center; width: 100%; }
.cp-value-n {
  font-family: var(--font-display); font-weight: 500; font-style: italic;
  font-size: 38px; line-height: 1;
  letter-spacing: 0; color: var(--servme-accent-deep);
  transition: color .25s ease;
}
.cp-value-t {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 32px; line-height: 1.15; color: var(--servme-primary);
  margin: 0; letter-spacing: -0.005em;
  transition: color .25s ease;
}
.cp-value-b {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  color: var(--fg-2); margin: 0;
  text-wrap: pretty;
  max-width: 56ch;
  transition: color .25s ease;
}

/* === CUSTOMERS === */
.cp-cust { padding: 96px 0; background: var(--servme-bg-warm); }
.cp-cust-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.cp-cust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cp-cust-card {
  background: #fafaf9; border: 1px solid var(--border-soft);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s;
}
.cp-cust-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(29,64,68,0.10); }
.cp-cust-img { aspect-ratio: 16 / 9; overflow: hidden; }
.cp-cust-img img { width: 100%; height: 100%; object-fit: cover; }
.cp-cust-head {
  padding: 18px 20px 8px;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--servme-primary);
}
.cp-cust-logos { display: grid; grid-template-columns: 1fr 1fr; padding: 8px 16px 20px; gap: 8px; }
.cp-cust-chip {
  display: flex; align-items: center; justify-content: center;
  height: 64px; padding: 8px 10px;
  background: #fafaf9;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.cp-cust-chip:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(29,64,68,0.08); }
.cp-cust-chip img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0.95);
  opacity: 0.85;
  transition: filter .3s ease, opacity .3s ease;
}
.cp-cust-chip:hover img { filter: grayscale(0); opacity: 1; }

/* === CTA CARDS === */
.cp-ctacards { padding: 80px 0; background: var(--servme-bg); }
.cp-ctacards-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.cp-ctacard {
  background: var(--servme-primary); color: #fafaf9;
  border-radius: 18px; padding: 48px 40px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cp-ctacard::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(219,172,107,0.18), transparent 60%);
  pointer-events: none;
}
.cp-ctacard:hover { transform: translateY(-3px); }
.cp-ctacard-h {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 36px; line-height: 1.1; color: #fafaf9; margin: 0;
  letter-spacing: -0.01em;
  position: relative;
}
.cp-ctacard-p {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.55;
  color: #c9d6d7; margin: 0; max-width: 38ch;
  position: relative;
}
.cp-ctacard-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  color: #dbac6b; text-decoration: none;
  margin-top: 8px; position: relative;
  transition: gap .25s ease, color .2s ease;
}
.cp-ctacard-link:hover { gap: 14px; color: #b6853f; }
.cp-ctacard-link i { width: 16px; height: 16px; }

/* === OFFICES === */
.cp-offices { padding: 96px 0; background: var(--servme-bg-warm); }
.cp-offices-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.cp-offices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cp-office {
  background: #fafaf9; border: 1px solid var(--border-soft);
  border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column;
}
.cp-office-img {
  width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
}
.cp-office-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.cp-office:hover .cp-office-img img { transform: scale(1.04); }
.cp-office > h3,
.cp-office > .cp-office-addr,
.cp-office > .cp-office-emails,
.cp-office > .cp-office-hours { padding-left: 32px; padding-right: 32px; }
.cp-office > h3 { padding-top: 28px; padding-bottom: 4px; }
.cp-office > .cp-office-hours { padding-bottom: 28px; padding-top: 12px; }
.cp-office > .cp-office-emails { padding-bottom: 0; }
.cp-office > .cp-office-addr { padding-bottom: 4px; }
.cp-office { gap: 14px; }
.cp-office-city {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 36px; line-height: 1.1; color: var(--servme-primary);
  margin: 0; letter-spacing: -0.01em;
}
.cp-office-addr {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.55;
  color: var(--fg-1);
}
.cp-office-emails { display: flex; flex-direction: column; gap: 4px; }
.cp-office-emails a {
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
  color: var(--servme-accent-deep); text-decoration: none;
}
.cp-office-emails a:hover { text-decoration: underline; }
.cp-office-hours {
  font-family: var(--font-sans); font-size: 13px;
  color: var(--fg-3);
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
  letter-spacing: 0.02em;
}

/* === Final CTA === */
.cp-cta { padding: 120px 0; background: #fafaf9; color: var(--servme-primary); text-align: center; position: relative; overflow: hidden; }
.cp-cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(219,172,107,0.18), transparent 60%);
  pointer-events: none;
}
.cp-cta-inner { max-width: 880px; margin: 0 auto; padding: 0 32px; position: relative; }
.cp-cta .hp-h2 { color: var(--servme-primary); margin: 0 0 20px; }
.cp-cta .hp-h2 em { color: var(--servme-accent-deep); font-style: italic; }
.cp-cta-p {
  font-family: var(--font-sans); font-size: 19px; line-height: 1.55;
  color: var(--fg-2); max-width: 580px; margin: 0 auto 36px;
}
.cp-cta-btns { display: flex; justify-content: center; }

/* === MOBILE (≤960px) === */
@media (max-width: 960px) {
  /* Hero */
  .cp-hero { padding: 32px 0 56px; }
  .cp-hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .cp-hero-copy { text-align: center; margin: 0 auto; max-width: none; }
  .cp-hero-copy .eyebrow { display: block; text-align: center; }
  .cp-hero-copy .hp-h1 {
    font-size: 40px !important; line-height: 44px !important;
    text-align: center;
    text-wrap: balance;
  }
  .cp-hero-copy .hp-lead {
    font-size: 17px !important; line-height: 1.55 !important;
    text-align: center !important;
    max-width: 100% !important;
    margin-left: auto !important; margin-right: auto !important;
  }
  .cp-collage { gap: 10px; }

  /* Stats */
  .cp-stats { padding: 0 0 28px; }
  .cp-stats-inner { padding: 0 20px; }
  .cp-stats-grid { grid-template-columns: 1fr; padding: 32px 16px; gap: 28px; }
  .cp-stat { padding: 12px 8px; }
  .cp-stat-v { font-size: 52px; }
  .cp-stat-l { font-size: 11px; }

  /* Story */
  .cp-story { padding: 32px 0 64px; }
  .cp-story-inner { padding: 0 20px; }
  .cp-section-head { margin-bottom: 32px; }
  .cp-section-head .hp-h2 { font-size: 40px; line-height: 44px; letter-spacing: -0.01em; }
  .cp-line-nowrap { display: inline-block; white-space: nowrap; }
  .cp-story-body p { font-size: 17px; line-height: 1.6; }
  .cp-story-grid { grid-template-columns: 1fr; gap: 24px; }
  .cp-story-q-av { width: 100%; max-width: 280px; margin: 0 auto; position: static; }
  .cp-story-bq { font-size: 22px; line-height: 1.35; margin-bottom: 14px; }
  .cp-story-body { margin-top: 20px; padding-top: 20px; gap: 14px; }
  .cp-story-body p { font-size: 15px; line-height: 1.6; }

  /* Team */
  .cp-team { padding: 64px 0; }
  .cp-team-inner { padding: 0 20px; }
  .cp-team-grid { grid-template-columns: 1fr 1fr 1fr; gap: 14px 10px; }
  .cp-team-body { padding: 10px 12px; }
  .cp-team-name { font-size: 14px; }
  .cp-team-role { font-size: 11px; }

  /* Values */
  .cp-values { padding: 64px 0; }
  .cp-values-inner { padding: 0 20px; }
  .cp-values-grid { grid-template-columns: 1fr; gap: 14px; }
  .cp-value { padding: 28px 24px; border-radius: 16px; }
  .cp-value-wide { grid-column: auto; }
  .cp-value-n { font-size: 30px; }
  .cp-value-t { font-size: 26px; }
  .cp-value-b { font-size: 15px; }

  /* Customers */
  .cp-cust { padding: 64px 0; }
  .cp-cust-inner { padding: 0 20px; }
  .cp-cust-grid { grid-template-columns: 1fr; gap: 18px; }

  /* CTA Cards */
  .cp-ctacards { padding: 56px 0; }
  .cp-ctacards-inner { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; }
  .cp-ctacard { padding: 32px 24px; }
  .cp-ctacard-h { font-size: 28px; }

  /* Offices */
  .cp-offices { padding: 64px 0; }
  .cp-offices-inner { padding: 0 20px; }
  .cp-offices-grid { grid-template-columns: 1fr; gap: 14px; }
  .cp-office > h3,
  .cp-office > .cp-office-addr,
  .cp-office > .cp-office-emails,
  .cp-office > .cp-office-hours { padding-left: 24px !important; padding-right: 24px !important; }
  .cp-office > h3 { padding-top: 24px !important; }
  .cp-office > .cp-office-hours { padding-bottom: 24px !important; }
  .cp-office-city { font-size: 28px; }

  /* Final CTA */
  .cp-cta { padding: 72px 0; }
  .cp-cta-inner { padding: 0 20px; }
  .cp-cta .hp-h2 { font-size: 40px; line-height: 44px; }
  .cp-cta-p { font-size: 16px; margin-bottom: 24px; }
  .cp-cta-btns .sm-btn { width: 100%; max-width: 320px; justify-content: center; }
}

