/* ═══════════════════════════════════════════════════════
   UMERIX GROWTH — pages-v2.css
   Shared stylesheet for ALL inner pages
   Service pages · About · Contact · Results · Blog
   Brand: Words Into Revenue
   Depends on: style-v2.css (load that first)
═══════════════════════════════════════════════════════ */

/* ── PAGE HERO ──────────────────────────────────────────────────── */
.pg-hero {
  padding-top: calc(var(--nav-h) + var(--sp-96));
  padding-bottom: var(--sp-96);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow top-right */
.pg-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Dot grid — same as homepage hero */
.pg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,15,30,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.pg-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
}

/* Breadcrumb */
.pg-breadcrumb {
  margin-bottom: var(--sp-32);
}

.pg-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  flex-wrap: wrap;
}

.pg-breadcrumb li {
  font-size: 13px;
  color: var(--ink-4);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.pg-breadcrumb a {
  color: var(--ink-4);
  transition: color var(--t-fast);
}

.pg-breadcrumb a:hover { color: var(--blue); }

.pg-breadcrumb li:last-child { color: var(--ink-2); font-weight: 500; }

/* Service label pill */
.pg-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: var(--sp-24);
}

.pg-label__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
  animation: pulse 2s ease-in-out infinite;
}

/* H1 */
.pg-h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.8px;
  color: var(--navy);
  margin-bottom: var(--sp-24);
}

/* Intro paragraph */
.pg-intro {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: var(--sp-32);
  letter-spacing: 0.1px;
}

/* Stats strip — same as hero */
.pg-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-24);
  flex-wrap: wrap;
  padding: var(--sp-24);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: fit-content;
  margin-bottom: var(--sp-32);
}

.pg-stat { display: flex; flex-direction: column; gap: 3px; }

.pg-stat__num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pg-stat__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pg-stat__div {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* CTA row */
.pg-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}


/* ── PAGE BODY LAYOUT ───────────────────────────────────────────── */
.pg-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
}

/* Two-column: content + sidebar */
.pg-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-64);
  align-items: start;
  padding: var(--sp-96) 0;
}

.pg-content { min-width: 0; }

/* ── SECTION BLOCKS ─────────────────────────────────────────────── */
.pg-section {
  padding: var(--sp-96) 0;
}

.pg-section--alt {
  background: var(--bg-2);
}

.pg-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
  
}
.about-two-col{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.pg-section__inner--narrow {
  max-width: 820px;
}


/* ── CONTENT TYPOGRAPHY ─────────────────────────────────────────── */
.pg-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: var(--sp-64) 0 var(--sp-16);
  padding-top: var(--sp-16);
  border-top: 1px solid var(--border-2);
}

.pg-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.pg-content h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: var(--sp-32) 0 var(--sp-12, 12px);
  letter-spacing: -0.2px;
}

.pg-content p {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.85;
  margin-bottom: var(--sp-24);
  max-width: 680px;
  letter-spacing: 0.1px;
}

.pg-content ul,
.pg-content ol {
  padding-left: var(--sp-24);
  margin-bottom: var(--sp-24);
}

.pg-content ul li,
.pg-content ol li {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
}

.pg-content strong { color: var(--navy); font-weight: 600; }

.pg-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.pg-content a:hover { color: var(--navy); }


/* ── PROBLEM GRID ───────────────────────────────────────────────── */
.pg-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-16);
  margin: var(--sp-48) 0;
}

.pg-problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-24);
  transition: border-color var(--t-fast), transform var(--t-med), box-shadow var(--t-med);
}

.pg-problem-card:hover {
  border-color: rgba(10,15,30,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pg-problem-card__icon {
  font-size: 26px;
  margin-bottom: var(--sp-12, 12px);
  display: block;
}

.pg-problem-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 var(--sp-8);
  line-height: 1.3;
}

.pg-problem-card p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0;
  max-width: none;
}


/* ── SOLUTION STEPS ─────────────────────────────────────────────── */
.pg-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: var(--sp-48);
  border-left: 1px solid var(--border);
  margin: var(--sp-48) 0;
}

.pg-step {
  padding: 0 0 var(--sp-48) var(--sp-32);
  position: relative;
}

.pg-step:last-child { padding-bottom: 0; }

.pg-step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.pg-step__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: var(--sp-8);
  border: 1px solid;
}

.pg-step__badge--blue   { color: var(--blue);  background: rgba(37,99,235,0.07);  border-color: rgba(37,99,235,0.2);  }
.pg-step__badge--green  { color: var(--green);  background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.2); }
.pg-step__badge--purple { color: #7c3aed;       background: rgba(124,58,237,0.07); border-color: rgba(124,58,237,0.2); }

.pg-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 var(--sp-8);
  line-height: 1.3;
}

.pg-step p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: var(--sp-16);
  max-width: 580px;
}

.pg-step__output {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,0.06);
  border-left: 3px solid var(--green);
  padding: 8px 14px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}


/* ── BEFORE / AFTER CASE STUDY ──────────────────────────────────── */
.pg-case {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: var(--sp-48) 0;
}

.pg-case__header {
  padding: var(--sp-24) var(--sp-32);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.pg-case__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-8);
}

.pg-case__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.pg-case__body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  padding: var(--sp-32);
}

.pg-case__col {
  padding: var(--sp-24);
  border-radius: var(--r-lg);
}

.pg-case__col--before {
  background: rgba(220,38,38,0.03);
  border: 1px solid rgba(220,38,38,0.12);
}

.pg-case__col--after {
  background: rgba(16,185,129,0.04);
  border: 1px solid rgba(16,185,129,0.18);
}

.pg-case__col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-12, 12px);
}

.pg-case__col--before .pg-case__col-label { color: #DC2626; }
.pg-case__col--after  .pg-case__col-label { color: var(--green); }

.pg-case__col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  margin: 0;
}

.pg-case__col li {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  padding-left: var(--sp-16);
  position: relative;
  margin: 0;
}

.pg-case__col--before li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-size: 10px;
  font-weight: 700;
  top: 2px;
}

.pg-case__col--after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  top: 2px;
}

.pg-case__arrow {
  font-size: 24px;
  color: var(--ink-4);
  text-align: center;
  padding: 0 var(--sp-24);
  flex-shrink: 0;
}

.pg-case__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.pg-case__metric {
  padding: var(--sp-16) var(--sp-24);
  text-align: center;
  border-right: 1px solid var(--border);
}

.pg-case__metric:last-child { border-right: none; }

.pg-case__metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.pg-case__metric-label {
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pg-case__disclaimer {
  font-size: 12px;
  color: var(--ink-4);
  font-style: italic;
  text-align: center;
  padding: var(--sp-16) var(--sp-32);
  border-top: 1px solid var(--border-2);
}


/* ── RESULTS STATS GRID ─────────────────────────────────────────── */
.pg-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-16);
  margin: var(--sp-48) 0;
}

.pg-result-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-24);
  text-align: center;
  transition: border-color var(--t-fast), transform var(--t-med);
}

.pg-result-card:hover {
  border-color: var(--navy);
  transform: translateY(-4px);
}

.pg-result-card--featured {
  border-color: var(--blue);
  background: rgba(37,99,235,0.03);
}

.pg-result-card__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-8);
  display: block;
}

.pg-result-card__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-8);
  display: block;
}

.pg-result-card__desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}


/* ── WHO IT'S FOR ───────────────────────────────────────────────── */
.pg-who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-24);
  margin: var(--sp-48) 0;
}

.pg-who__col {
  border-radius: var(--r-xl);
  padding: var(--sp-32);
}

.pg-who__col--yes {
  background: rgba(16,185,129,0.04);
  border: 1px solid rgba(16,185,129,0.18);
}

.pg-who__col--no {
  background: rgba(220,38,38,0.03);
  border: 1px solid rgba(220,38,38,0.12);
}

.pg-who__title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: var(--sp-16);
  letter-spacing: 0.01em;
}

.pg-who__col--yes .pg-who__title { color: var(--green); }
.pg-who__col--no  .pg-who__title { color: #DC2626; }

.pg-who__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.pg-who__list li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  padding-left: var(--sp-16);
  position: relative;
  margin: 0;
}

.pg-who__col--yes .pg-who__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 12px;
}

.pg-who__col--no .pg-who__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
  font-size: 12px;
}


/* ── FAQ ────────────────────────────────────────────────────────── */
.pg-faq {
  display: flex;
  flex-direction: column;
  margin: var(--sp-48) 0 0;
}

.pg-faq__item {
  border-bottom: 1px solid var(--border);
}

.pg-faq__item:first-child { border-top: 1px solid var(--border); }

.pg-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-24) 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: var(--sp-16);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.pg-faq__q:hover { color: var(--blue); }

.pg-faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-4);
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
  line-height: 1;
  width: 24px;
  text-align: center;
}

.pg-faq__item--open .pg-faq__icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.pg-faq__a {
  padding: 0 0 var(--sp-24);
}

.pg-faq__a p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.8;
  max-width: 640px;
  margin: 0;
}


/* ── SIDEBAR ────────────────────────────────────────────────────── */
.pg-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-24));
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.pg-sidebar__card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-24);
}

.pg-sidebar__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-16);
}

.pg-sidebar__author {
  display: flex;
  gap: 12px;
  margin-bottom: var(--sp-16);
}

.pg-sidebar__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.pg-sidebar__author-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pg-sidebar__author-role {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}

.pg-sidebar__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: block;
  transition: color var(--t-fast);
}

.pg-sidebar__link:hover { color: var(--navy); }

.pg-sidebar__text {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}

.pg-sidebar__links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding: 0;
  margin: 0;
}

.pg-sidebar__links-list a {
  font-size: 13px;
  color: var(--ink-3);
  display: block;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  border-left: 2px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  line-height: 1.5;
}

.pg-sidebar__links-list a:hover {
  background: var(--bg-2);
  color: var(--navy);
  border-left-color: var(--blue);
}

.pg-sidebar__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pg-sidebar__stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 13px;
}

.pg-sidebar__stat-row:last-child { border-bottom: none; }
.pg-sidebar__stat-row span:first-child { color: var(--ink-3); }

.pg-sidebar__stat-row strong {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}


/* ── TIP BOX ────────────────────────────────────────────────────── */
.pg-tip {
  background: rgba(37,99,235,0.04);
  border: 1px solid rgba(37,99,235,0.15);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-16) var(--sp-24);
  margin: var(--sp-32) 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}

.pg-tip strong { color: var(--blue); }


/* ── EXAMPLE BLOCKS ─────────────────────────────────────────────── */
.pg-example {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  margin: var(--sp-32) 0;
}

.pg-example__block {
  border-radius: var(--r-lg);
  padding: var(--sp-24);
}

.pg-example__block--bad {
  background: rgba(220,38,38,0.03);
  border: 1px solid rgba(220,38,38,0.12);
}

.pg-example__block--good {
  background: rgba(16,185,129,0.04);
  border: 1px solid rgba(16,185,129,0.18);
}

.pg-example__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.pg-example__block--bad  .pg-example__label { color: #DC2626; }
.pg-example__block--good .pg-example__label { color: var(--green); }

.pg-example__block p {
  font-size: 14px !important;
  color: var(--ink-2) !important;
  line-height: 1.65 !important;
  font-style: italic;
  margin: 0 !important;
  max-width: none !important;
}


/* ── NUMBERED LIST ──────────────────────────────────────────────── */
.pg-num-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-32) 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.pg-num-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-16);
  padding: var(--sp-16) var(--sp-24);
  border-bottom: 1px solid var(--border-2);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  background: var(--bg);
  transition: background var(--t-fast);
  margin: 0;
}

.pg-num-list li:last-child { border-bottom: none; }
.pg-num-list li:hover { background: var(--bg-2); }

.pg-num-list__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37,99,235,0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ── IN-PAGE CTA BOX ────────────────────────────────────────────── */
.pg-cta-box {
  background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(16,185,129,0.05));
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: var(--r-xl);
  padding: var(--sp-48) var(--sp-48);
  text-align: center;
  margin: var(--sp-64) 0 0;
}

.pg-cta-box h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 var(--sp-16);
  line-height: 1.2;
}

.pg-cta-box p {
  font-size: 16px !important;
  color: var(--ink-2) !important;
  margin: 0 auto var(--sp-32) !important;
  max-width: 520px;
  line-height: 1.75 !important;
}

.pg-cta-box__fine {
  display: block;
  margin-top: var(--sp-16);
  font-size: 12px;
  color: var(--ink-4);
}


/* ── FULL-WIDTH CTA SECTION ─────────────────────────────────────── */
.pg-cta-section {
  background: var(--navy);
  padding: var(--sp-96) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pg-cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.pg-cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--sp-32);
}

.pg-cta-section__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-24);
  display: block;
}

.pg-cta-section__h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-24);
}

.pg-cta-section__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: var(--sp-48);
}

.pg-cta-section .btn--primary {
  background: #fff;
  color: var(--navy);
  font-size: 17px;
  padding: 16px 40px;
  box-shadow: 0 8px 32px rgba(255,255,255,0.12);
  margin-bottom: var(--sp-24);
  display: inline-flex;
}

.pg-cta-section .btn--primary:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
}

.pg-cta-section__flags {
  display: flex;
  justify-content: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.pg-cta-section__fine {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}


/* ── RELATED PAGES GRID ─────────────────────────────────────────── */
.pg-related {
  padding: var(--sp-96) 0;
  background: var(--bg-2);
}

.pg-related__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
}

.pg-related__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-32);
  text-align: center;
}

.pg-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-16);
}

.pg-related__card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-24);
  text-decoration: none;
  transition: border-color var(--t-fast), transform var(--t-med), box-shadow var(--t-med);
}

.pg-related__card:hover {
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pg-related__icon {
  font-size: 24px;
  margin-bottom: var(--sp-12, 12px);
  display: block;
}

.pg-related__card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-8);
  line-height: 1.3;
}

.pg-related__card p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
  margin-bottom: var(--sp-16);
}

.pg-related__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: block;
}


/* ── FOOTER (pages version — same as homepage) ──────────────────── */
/* Footer styles are in style-v2.css — no duplication needed */


/* ═══════════════════════════════════════════════════════
   BLOG-SPECIFIC STYLES
═══════════════════════════════════════════════════════ */

/* Blog hero (narrower) */
.blog-hero {
  background: var(--bg-2);
  padding-top: calc(var(--nav-h) + var(--sp-64));
  padding-bottom: var(--sp-64);
  border-bottom: 1px solid var(--border-2);
}

.blog-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--sp-16);
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(37,99,235,0.07);
  color: var(--blue);
  border: 1px solid rgba(37,99,235,0.15);
}

.blog-read { font-size: 13px; color: var(--ink-4); }
.blog-date { font-size: 13px; color: var(--ink-4); }

.blog-h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-24);
}

.blog-intro-p {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: var(--sp-24);
  max-width: none;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: var(--sp-24);
  border-top: 1px solid var(--border-2);
}

.blog-author__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.blog-author__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.blog-author__role {
  display: block;
  font-size: 12px;
  color: var(--ink-4);
  margin-top: 2px;
}

/* Blog body */
.blog-body {
  padding: var(--sp-64) 0 var(--sp-96);
}

.blog-body__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-96);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-64);
  align-items: start;
}

/* Blog index grid */
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-32);
  text-decoration: none;
  transition: border-color var(--t-fast), transform var(--t-med), box-shadow var(--t-med);
}

.blog-card:hover {
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card__cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: var(--sp-12, 12px);
  flex: 1;
}

.blog-card__excerpt {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: var(--sp-16);
  flex: 2;
}

.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-16);
  border-top: 1px solid var(--border-2);
  margin-top: auto;
}

.blog-card__read,
.blog-card__date {
  font-size: 11px;
  color: var(--ink-4);
}

/* Featured post */
.blog-featured {
  display: block;
  position: relative;
  background: var(--bg);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--r-xl);
  padding: var(--sp-48);
  text-decoration: none;
  margin-bottom: var(--sp-48);
  overflow: hidden;
  transition: border-color var(--t-fast), transform var(--t-med), box-shadow var(--t-med);
}

.blog-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.blog-featured:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-featured__badge {
  position: absolute;
  top: var(--sp-24);
  right: var(--sp-24);
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(37,99,235,0.07);
  border: 1px solid rgba(37,99,235,0.18);
  padding: 4px 10px;
  border-radius: 999px;
}

.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--sp-16);
  letter-spacing: -0.3px;
}

.blog-featured__excerpt {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: var(--sp-16);
  max-width: 700px;
}

.blog-featured__read {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — LAPTOP 1024px–1199px
═══════════════════════════════════════════════════════ */
@media (max-width: 1199px) {

  .pg-hero__inner,
  .pg-body,
  .pg-section__inner,
  .pg-related__inner,
  .blog-hero__inner,
  .blog-body__inner { padding-left: var(--sp-48); padding-right: var(--sp-48); }

  .pg-section { padding: 72px 0; }

  .pg-problem-grid  { grid-template-columns: repeat(2, 1fr); }
  .pg-results-grid  { grid-template-columns: repeat(2, 1fr); }
  .pg-related__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-index__grid { grid-template-columns: repeat(2, 1fr); }

  .pg-case__body    { grid-template-columns: 1fr; gap: var(--sp-16); }
  .pg-case__arrow   { display: none; }

}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET 768px–1023px
═══════════════════════════════════════════════════════ */
@media (max-width: 1023px) {

  .pg-hero__inner,
  .pg-body,
  .pg-section__inner,
  .pg-related__inner,
  .blog-hero__inner,
  .blog-body__inner { padding-left: var(--sp-32); padding-right: var(--sp-32); }

  .pg-hero {
    padding-top: calc(var(--nav-h) + var(--sp-64));
    padding-bottom: var(--sp-64);
  }

  .pg-section { padding: var(--sp-64) 0; }

  /* Remove sidebar on tablet — stack below */
  .pg-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-48);
    padding: var(--sp-64) 0;
  }

  .pg-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }

  .blog-body__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-48);
  }

  .pg-who { grid-template-columns: 1fr; gap: var(--sp-16); }

  .pg-case__metrics { grid-template-columns: repeat(2, 1fr); }

  .pg-related__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-index__grid { grid-template-columns: repeat(2, 1fr); }

  .pg-cta-box { padding: var(--sp-32); }
  .pg-cta-section { padding: var(--sp-64) 0; }

}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤767px
═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {

  .pg-hero__inner,
  .pg-body,
  .pg-section__inner,
  .pg-related__inner,
  .blog-hero__inner,
  .blog-body__inner { padding-left: var(--sp-16); padding-right: var(--sp-16); }

  .pg-hero {
    padding-top: calc(var(--nav-h) + var(--sp-32));
    padding-bottom: var(--sp-48);
  }

  .pg-section { padding: var(--sp-48) 0; }

  .pg-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-16);
    width: 100%;
  }

  .pg-stat__div { width: 100%; height: 1px; }

  .pg-ctas { flex-direction: column; width: 100%; }
  .pg-ctas .btn { width: 100%; justify-content: center; }

  .pg-problem-grid  { grid-template-columns: 1fr; gap: var(--sp-12, 12px); }
  .pg-results-grid  { grid-template-columns: 1fr 1fr; gap: var(--sp-12, 12px); }
  .pg-related__grid { grid-template-columns: 1fr; }
  .blog-index__grid { grid-template-columns: 1fr; gap: var(--sp-16); }

  .pg-case__body    { padding: var(--sp-24); }
  .pg-case__metrics { grid-template-columns: repeat(2, 1fr); }

  .pg-steps { padding-left: var(--sp-24); }
  .pg-step  { padding-left: var(--sp-24); }

  .pg-example { grid-template-columns: 1fr; gap: var(--sp-12, 12px); }

  .pg-who { grid-template-columns: 1fr; }
  .pg-who__col { padding: var(--sp-24); }

  .pg-sidebar { grid-template-columns: 1fr; }

  .pg-cta-box { padding: var(--sp-24); }
  .pg-cta-box p { max-width: none; }
  .pg-cta-section { padding: var(--sp-48) 0; }

  .blog-featured { padding: var(--sp-24); }
  .blog-featured__badge { display: none; }

}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL ≤480px
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  .pg-results-grid  { grid-template-columns: 1fr; }

  .pg-case__metrics { grid-template-columns: repeat(2, 1fr); }
  .pg-case__metric  { padding: var(--sp-12, 12px); }

  .pg-faq__q { font-size: 15px; }

  .blog-h1 { font-size: 26px; }

}


/* ═══════════════════════════════════════════════════════
   TOUCH DEVICES
═══════════════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .pg-problem-card:hover,
  .pg-result-card:hover,
  .pg-related__card:hover,
  .blog-card:hover      { transform: none; }
  .pg-ctas .btn,
  .pg-faq__q            { min-height: 48px; }
}


/* ═══════════════════════════════════════════════════════
   SAFE AREA — iPhone notch
═══════════════════════════════════════════════════════ */
@supports (padding: max(0px)) {
  .pg-hero__inner,
  .pg-body,
  .pg-section__inner,
  .blog-body__inner {
    padding-left: max(var(--sp-16), env(safe-area-inset-left));
    padding-right: max(var(--sp-16), env(safe-area-inset-right));
  }
}