/* service.css — Service page shared styles */

/* PAGE HERO — dark variant (merchant, gateway) */
.page-hero {
  padding: 140px 60px 80px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
  pointer-events: none;
}
/* PAGE HERO — light variant (psp-consulting) */
.page-hero.light { background: var(--off-white); }
.page-hero.light::before {
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  opacity: 0.6;
}

.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Eyebrow colours by variant */
.page-hero .eyebrow { color: var(--green-light); }
.page-hero.light .eyebrow { color: var(--green-accent); }
.page-hero.light .eyebrow::before { background: var(--green-light); }

/* H1 */
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
h1 em { font-style: italic; color: var(--green-light); }
.page-hero.light h1 { color: var(--green-deep); }
.page-hero.light h1 em { color: var(--green-accent); }

.standfirst {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  border-left: 3px solid var(--green-light);
  padding-left: 20px;
  color: rgba(255,255,255,0.7);
}
.page-hero.light .standfirst { color: var(--text-mid); }

/* CHECKLIST (PSP page) */
.hero-checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-mid);
}
.hero-checklist li::before {
  content: '✓';
  color: var(--green-light);
  font-weight: 500;
  flex-shrink: 0;
}

/* STAT ROW (merchant, gateway) */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.stat-box { background: rgba(255,255,255,0.07); padding: 28px 24px; text-align: center; }
.stat-box .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box .stat-label { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* CONTENT BODY */
.content { max-width: 860px; margin: 0 auto; padding: 80px 60px; }
.content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--green-deep);
  margin: 56px 0 20px;
  line-height: 1.2;
}
.content h2 em { font-style: italic; color: var(--green-accent); }
.content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--green-deep);
  margin: 36px 0 12px;
}
.content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.content ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.content ul li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.content ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* PSP services 2-col grid */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 40px 0; }
.service-block { background: var(--off-white); padding: 32px 36px; }
.service-block:first-child { background: var(--green-deep); }
.service-block:first-child h3,
.service-block:first-child p { color: var(--white); }
.service-block:first-child p { opacity: 0.75; }
.service-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.service-block p { font-size: 14px; font-weight: 400; margin: 0; line-height: 1.65; color: var(--text-mid); }

/* LEVERS GRID */
.levers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 40px 0; }
.lever-card {
  background: var(--off-white);
  padding: 28px 32px;
  border-top: 3px solid var(--green-light);
}
.lever-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--green-deep);
  margin: 0 0 10px;
}
.lever-card p { font-size: 14px; font-weight: 400; margin: 0; line-height: 1.65; color: var(--text-mid); }
.lever-card .impact {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-accent);
  background: rgba(64,145,108,0.1);
  padding: 3px 10px;
  border-radius: 1px;
  margin-top: 12px;
}

/* FAQ (service pages) */
.faq { padding: 80px 60px; background: var(--off-white); }
.faq-header { margin-bottom: 48px; }
.faq-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--green-deep);
  margin: 0;
  line-height: 1.2;
}
.faq-header h2 em { font-style: italic; color: var(--green-accent); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.faq .faq-item { background: var(--white); padding: 28px 32px; }
.faq .faq-question { font-size: 18px; }
.faq .faq-question::after { font-size: 20px; }

/* RESPONSIVE SERVICE */
@media (max-width: 1024px) {
  .page-hero { padding: 110px 24px 60px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .stat-row { grid-template-columns: 1fr; }
  .content { padding: 48px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .levers-grid { grid-template-columns: 1fr; }
  .faq { padding: 60px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
}
