/* ── XPERT LAB AI — SHARED PAGE STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --terracotta: #C4622D;
  --terracotta-light: #D4784A;
  --terracotta-dark: #A04E22;
  --gold: #C9A96E;
  --gold-light: #E0C896;
  --navy: #0F1923;
  --dark-brown: #1C1410;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #8A8A8A;
  --border: rgba(196, 98, 45, 0.18);
  /* product colours */
  --ats: #2B6CB0;
  --iq: #1E8A62;
  --closr: #C4622D;
  --accelx: #7057A0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 2px; }

/* ── NAV ── */
.pnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.pnav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
.pnav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.pnav-mark {
  width: 34px; height: 34px; background: var(--terracotta); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.pnav-mark::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.9); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.pnav-mark::before {
  content: ''; position: absolute; width: 5px; height: 5px;
  background: white; border-radius: 50%; z-index: 1;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.pnav-brand { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.pnav-brand span { color: var(--terracotta); }
.pnav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.pnav-links a, .pnav-links button {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; background: none; border: none; cursor: pointer;
  transition: color 0.2s; padding: 0; position: relative;
}
.pnav-links a:hover, .pnav-links button:hover { color: var(--terracotta); }
.pnav-links .active-link { color: var(--terracotta); font-weight: 600; }
/* Dropdown */
.pnav-dropdown-wrap { position: relative; }
.pnav-dropdown {
  position: absolute; top: 100%; left: -16px;
  padding-top: 12px;
  background: transparent; min-width: 260px;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: all 0.18s;
}
.pnav-dropdown-inner {
  background: white; border: 1px solid var(--border); border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.pnav-dropdown-wrap:hover .pnav-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.pnav-dropdown-item {
  display: flex !important; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 8px;
  text-decoration: none; transition: background 0.15s;
  color: var(--text-dark) !important;
  font-size: 14px !important; font-weight: 400 !important;
}
.pnav-dropdown-item:hover { background: var(--cream-light); }
.pnav-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pnav-dropdown-item strong { font-weight: 700; font-size: 14px; display: block; }
.pnav-dropdown-item small { font-size: 11px; color: var(--text-light); font-weight: 400; }
.pnav-cta {
  background: var(--terracotta) !important; color: white !important;
  padding: 9px 20px !important; border-radius: 8px !important;
  font-weight: 600 !important; font-size: 14px !important; transition: background 0.2s !important;
}
.pnav-cta:hover { background: var(--terracotta-dark) !important; }

/* ── LAYOUT ── */
.page-wrap { padding-top: 64px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.section { padding: 88px 0; }
.section--alt { background: var(--cream-light); }
.section--warm { background: var(--cream); }
.section--dark { background: var(--navy); }

/* ── PAGE HERO ── */
.page-hero {
  padding: 100px 0 80px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.page-hero--dark { background: var(--navy); }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.14);
  position: relative;
}
.page-hero-img img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center top;
  display: block;
}
@media (max-width: 860px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
}
.page-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid; margin-bottom: 24px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 64px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.5px;
  color: var(--text-dark); margin-bottom: 20px;
}
.page-hero--dark h1 { color: white; }
.page-hero p.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--text-mid); max-width: 640px; margin-bottom: 36px;
}
.page-hero--dark p.hero-sub { color: rgba(255,255,255,0.6); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid transparent; transition: all 0.2s; cursor: pointer;
}
.btn-terra { background: var(--terracotta); color: white; }
.btn-terra:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,98,45,0.35); }
.btn-outline { background: transparent; color: var(--text-dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--terracotta); color: var(--terracotta); }
.btn-blue { background: #2B6CB0; color: white; }
.btn-blue:hover { background: #1a4f80; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(43,108,176,0.35); }
.btn-white { background: white; color: var(--text-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--terracotta); }
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 46px); font-weight: 800;
  line-height: 1.2; color: var(--text-dark); margin-bottom: 16px;
}
.section--dark h2.section-title { color: white; }
p.section-sub { font-size: 16px; line-height: 1.7; color: var(--text-mid); max-width: 580px; }
.section--dark p.section-sub { color: rgba(255,255,255,0.55); }
.section-header { margin-bottom: 52px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── FEATURE GRID ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  transition: all 0.25s;
}
.feature-card:hover { border-color: var(--terracotta); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(196,98,45,0.1); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.feature-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.feature-card p { font-size: 13.5px; line-height: 1.65; color: var(--text-light); }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}
.step { text-align: center; }
.step-num {
  width: 56px; height: 56px; background: var(--terracotta); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: white;
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--cream);
}
.section--alt .step-num { box-shadow: 0 0 0 8px var(--cream-light); }
.step h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.step p { font-size: 13.5px; line-height: 1.6; color: var(--text-light); }

/* ── PHASES (AccelX) ── */
.phases { display: flex; flex-direction: column; gap: 0; }
.phase {
  display: flex; gap: 32px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.phase:last-child { border-bottom: none; }
.phase-meta { min-width: 100px; flex-shrink: 0; }
.phase-num {
  font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 800;
  color: rgba(196,98,45,0.15); line-height: 1;
}
.phase-weeks { font-size: 12px; font-weight: 700; margin-top: 4px; }
.phase h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.phase p { font-size: 14px; line-height: 1.65; color: var(--text-light); }

/* ── DARK BOX ── */
.dark-box {
  background: var(--navy); border-radius: 20px; padding: 48px;
  position: relative; overflow: hidden;
}
.dark-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(196,98,45,0.18) 0%, transparent 60%);
}
.dark-box-content { position: relative; z-index: 1; }
.dark-box h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.2; }
.dark-box h2 span { color: var(--terracotta-light); }
.dark-box p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.dark-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.dark-check { display: flex; gap: 12px; align-items: flex-start; }
.dark-check-icon {
  width: 20px; height: 20px; background: rgba(196,98,45,0.2); border: 1px solid rgba(196,98,45,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 10px; color: var(--terracotta-light); margin-top: 2px;
}
.dark-check p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.5; margin: 0; }
.dark-check strong { color: white; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--navy); border-radius: 20px; padding: 64px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,98,45,0.2) 0%, transparent 60%);
}
.cta-block-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-block h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 44px); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 16px; }
.cta-block h2 span { color: var(--terracotta-light); }
.cta-block p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 32px; }
.cta-block-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.35); }
.cta-note a { color: var(--gold-light); font-weight: 600; text-decoration: none; }
.cta-note a:hover { text-decoration: underline; }

/* ── PROOF / CLIENT CARDS ── */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card {
  background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px;
  transition: all 0.25s;
}
.proof-card:hover { border-color: var(--terracotta); transform: translateY(-4px); box-shadow: 0 10px 32px rgba(196,98,45,0.08); }
.proof-card-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; }
.proof-card-name { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.proof-card-sector { font-size: 12px; color: var(--text-light); margin-bottom: 16px; }
.proof-metrics { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.proof-metric { text-align: center; padding: 10px 14px; background: var(--cream-light); border-radius: 10px; border: 1px solid var(--border); min-width: 72px; }
.proof-metric-num { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800; color: var(--terracotta); line-height: 1; }
.proof-metric-label { font-size: 10px; color: var(--text-light); margin-top: 3px; }
.proof-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; }
.status-dot.live { background: #22C55E; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
.status-dot.poc { background: #F59E0B; box-shadow: 0 0 0 3px rgba(245,158,11,0.2); }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.tag-blue { background: rgba(43,108,176,0.1); color: #2B6CB0; }
.tag-teal { background: rgba(30,138,98,0.1); color: #1E8A62; }
.tag-orange { background: rgba(196,98,45,0.1); color: var(--terracotta); }
.tag-blue { background: rgba(43,108,176,0.1); color: #2B6CB0; }
.tag-purple { background: rgba(112,87,160,0.1); color: #7057A0; }

/* ── OWNERSHIP SECTION (Closr) ── */
.ownership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ownership-points { display: flex; flex-direction: column; gap: 24px; }
.ownership-point { display: flex; gap: 16px; }
.ownership-icon {
  width: 40px; height: 40px; background: rgba(196,98,45,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.ownership-point h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ownership-point p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ── FIT GRID (AccelX) ── */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.fit-group h4 { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.fit-items { display: flex; flex-direction: column; gap: 10px; }
.fit-item { padding: 12px 16px; border-radius: 10px; font-size: 13.5px; font-weight: 600; line-height: 1.4; }
.fit-yes { background: rgba(34,197,94,0.08); color: #166534; }
.fit-no { background: white; border: 1px solid var(--border); color: var(--text-light); }

/* ── PHOTO SECTIONS ── */
.photo-banner {
  width: 100%; height: 420px; position: relative; overflow: hidden;
}
.photo-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.photo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,20,16,0.72) 0%, rgba(28,20,16,0.3) 60%, rgba(28,20,16,0.15) 100%);
  display: flex; align-items: center;
}
.photo-banner-text {
  max-width: 520px; padding: 0 80px; color: white;
}
.photo-banner-text .section-label { color: var(--gold-light); margin-bottom: 16px; }
.photo-banner-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; color: white; font-weight: 700; }
.photo-banner-text p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-top: 14px; }

.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.photo-grid-item { position: relative; height: 360px; overflow: hidden; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-grid-item:hover img { transform: scale(1.03); }
.photo-grid-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(28,20,16,0.8) 0%, transparent 100%);
  color: white;
}
.photo-grid-caption h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.photo-grid-caption p { font-size: 13px; color: rgba(255,255,255,0.7); }

.photo-inline {
  width: 100%; height: 320px; border-radius: 16px; overflow: hidden;
  margin-top: 40px; position: relative;
}
.photo-inline img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

/* ── FOOTER ── */
.pfooter { background: var(--dark-brown); padding: 60px 0 32px; }
.pfooter-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.pfooter-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.pfooter-brand p { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.6; margin: 14px 0 20px; max-width: 260px; }
.pfooter-email { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--gold-light); text-decoration: none; }
.pfooter-email:hover { opacity: 0.7; }
.pfooter-col h4 { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.pfooter-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pfooter-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.pfooter-col ul li a:hover { color: white; }
.pfooter-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.pfooter-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.pfooter-tagline { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.15); }

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.pnav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1001;
}
.pnav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.pnav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pnav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pnav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .pnav { padding: 0 32px; }
  .pfooter-inner { padding: 0 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pfooter-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ownership-grid { grid-template-columns: 1fr; gap: 40px; }
  .fit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .container { padding: 0 20px; }
  .pnav { padding: 0 20px; height: 60px; }
  .pnav-hamburger { display: flex; }
  .pnav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(245,240,232,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    z-index: 999;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .pnav-links.open { display: flex; }
  .pnav-links > li { border-bottom: 1px solid var(--border); }
  .pnav-links > li:last-child { border-bottom: none; margin-top: 12px; }
  .pnav-links a, .pnav-links > li > button {
    display: block; width: 100%;
    padding: 14px 0;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    text-align: left;
  }
  .pnav-cta {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 13px 20px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
  }
  /* Products dropdown — inline on mobile */
  .pnav-dropdown-wrap { position: static; }
  .pnav-dropdown {
    position: static;
    opacity: 1 !important;
    pointer-events: all !important;
    transform: none !important;
    padding: 0 0 8px 0;
    min-width: 0;
    background: transparent;
  }
  .pnav-dropdown-inner {
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 12px;
    background: transparent;
  }
  .pnav-dropdown-item {
    padding: 10px 8px;
    border-radius: 8px;
  }
  .pnav-dropdown-item strong { font-size: 14px !important; }

  /* ── Layout ── */
  .page-wrap { padding-top: 60px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 60px 0 48px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .page-hero h1 { font-size: clamp(30px, 8vw, 42px); }
  .page-hero p.hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Grids ── */
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .phases { gap: 0; }

  /* ── Footer ── */
  .pfooter-inner { padding: 0 20px; }
  .pfooter-top { grid-template-columns: 1fr; gap: 28px; }
  .pfooter-links { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .pfooter-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* ── Boxes ── */
  .cta-block { padding: 40px 24px; }
  .dark-box { padding: 28px 20px; }
  .dark-box h2 { font-size: 22px; }

  /* ── Photo banners ── */
  .photo-banner { height: 280px; }
  .photo-banner-text { padding: 0 24px; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid-item { height: 260px; }
}
