/* =============================================================
   Arbitrail — regions.css
   Page-specific styles. Common styles live in global.css.
   ============================================================= */

:root {
  --ph-sunset: #EA580C;
  --ph-sunset-2: #F97316;
  --ph-sunset-3: #FB923C;
  --ph-coral: #FB7185;
  --ph-coral-2: #F43F5E;
  --ph-sun: #FBBF24;
  --ph-sun-2: #F59E0B;
  --ph-teal: #0F766E;
  --ph-teal-2: #14B8A6;
  --ph-teal-3: #5EEAD4;
  --ph-cream: #FFFBEB;
  --ph-cream-2: #FFF7ED;
  --ph-peach: #FED7AA;
  --ph-peach-2: #FDBA74;
  --ph-text: #1F2937;
  --ph-text-2: #4B5563;
  --ph-text-3: #9CA3AF;
  --ph-line: #FED7AA;
  --ph-line-2: #FDBA74;
}

.ph-hero {
  background:
    radial-gradient(circle at 80% 25%, rgba(251,191,36,0.50) 0%, transparent 50%),
    linear-gradient(135deg, #C2410C 0%, #EA580C 30%, #F97316 55%, #FB7185 80%, #FBBF24 100%);
  color: #fff;
  padding: 96px 0 88px;
  position: relative;
  overflow: hidden;
}

.ph-hero::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,251,235,0.30) 0%, rgba(251,191,36,0.15) 35%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.ph-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    
    repeating-conic-gradient(from 0deg at 90% 18%, transparent 0deg, transparent 12deg, rgba(255,255,255,0.06) 12deg, rgba(255,255,255,0.06) 13deg),
    
    radial-gradient(circle at 22% 75%, rgba(255,255,255,0.40) 4px, transparent 5px),
    radial-gradient(circle at 18% 88%, rgba(255,255,255,0.30) 3px, transparent 4px),
    radial-gradient(circle at 28% 92%, rgba(255,255,255,0.25) 2.5px, transparent 3.5px),
    radial-gradient(circle at 35% 78%, rgba(255,255,255,0.20) 2px, transparent 3px),
    
    radial-gradient(circle, rgba(255,255,255,0.10) 1.2px, transparent 1.6px);
  background-size: auto, auto, auto, auto, auto, 64px 64px;
  pointer-events: none;
  z-index: 1;
}

.ph-hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.ph-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.20);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ph-hero-pill::before {
  content: ''; display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #FFFBEB;
  box-shadow: 0 0 12px rgba(255,251,235,0.80);
  animation: phPulse 2.4s ease-in-out infinite;
}

@keyframes phPulse {
  0%,100% { box-shadow: 0 0 12px rgba(255,251,235,0.80); }
  50%     { box-shadow: 0 0 20px rgba(255,251,235,1); }
}

.ph-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.04;
  margin: 0 0 22px;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(196,57,12,0.15);
}

.ph-hero h1 em {
  color: #FFFBEB;
  font-style: normal;
  background: linear-gradient(135deg, #FFFBEB 0%, #FBBF24 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.ph-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.92);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.65;
}

.ph-hero-cta {
  display: flex; gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ph-btn-primary,
.ph-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s ease;
}

.ph-btn-primary {
  background: #FFFBEB;
  color: var(--ph-sunset);
  box-shadow: 0 10px 32px rgba(196,57,12,0.30);
}

.ph-btn-primary:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 40px rgba(196,57,12,0.45);
}

.ph-btn-ghost {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 12.5px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ph-btn-ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.70);
}

.ph-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 580px;
}

.ph-hero-stat {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ph-hero-stat-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: #FFFBEB;
  letter-spacing: -.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.ph-hero-stat-l {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}

.ph-hero-card {
  position: relative;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 64px rgba(196,57,12,0.18),
    0 8px 24px rgba(196,57,12,0.10);
}

.ph-hero-card::before {
  content: '';
  position: absolute;
  top: -2px; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--ph-sunset), var(--ph-coral), var(--ph-sun));
  border-radius: 999px;
}

.ph-card-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 4px 16px;
  border-bottom: 1px solid var(--ph-peach);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 12.5px;
  color: var(--ph-text);
  font-weight: 700;
}

.ph-card-bar-left { display: inline-flex; align-items: center; gap: 8px; color: var(--ph-text); }

.ph-card-bar-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  color: var(--ph-teal);
  letter-spacing: .04em;
  background: rgba(20,184,166,0.10);
  padding: 4px 10px;
  border-radius: 999px;
}

.ph-card-bar-status::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ph-teal-2);
  box-shadow: 0 0 0 3px rgba(20,184,166,.20);
}

.ph-card-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 4px;
  border-bottom: 1px solid var(--ph-cream-2);
  font-family: var(--font-display);
}

.ph-card-row:last-of-type { border-bottom: none; }

.ph-card-row-l {
  font-size: 11px;
  color: var(--ph-text-3);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.ph-card-row-v {
  font-size: 13.5px;
  color: var(--ph-text);
  font-weight: 600;
  text-align: right;
}

.ph-card-row-v .amber { color: var(--ph-sunset); font-weight: 700; }

.ph-section-hd {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.ph-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(234,88,12,0.10), rgba(251,191,36,0.10));
  color: var(--ph-sunset);
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--ph-peach);
}

.ph-section-hd h2 {
  font-family: var(--font-display);
  font-size: 44px; font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--ph-text);
  margin-bottom: 18px;
  text-wrap: balance;
}

.ph-section-hd h2 em {
  color: var(--ph-sunset);
  font-style: normal;
  background: linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ph-section-hd p {
  font-size: 17px;
  color: var(--ph-text-2);
  line-height: 1.65;
}

.ph-why {
  background: linear-gradient(180deg, var(--ph-cream) 0%, var(--ph-cream-2) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.ph-why::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.20) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ph-why-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  z-index: 1;
}

.ph-why-card {
  background: #fff;
  border: 1px solid var(--ph-peach);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.ph-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ph-sunset), var(--ph-coral), var(--ph-sun));
}

.ph-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(196,57,12,0.12);
  border-color: var(--ph-sunset-3);
}

.ph-why-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 20px rgba(234,88,12,0.30);
}

.ph-why-icon svg { width: 26px; height: 26px; color: #fff; stroke-width: 2; }

.ph-why-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 800;
  color: var(--ph-text);
  margin-bottom: 12px;
  letter-spacing: -.4px;
}

.ph-why-desc {
  font-size: 14.5px;
  color: var(--ph-text-2);
  line-height: 1.65;
}

.ph-article {
  padding: 96px 0;
  background: #fff;
  position: relative;
}

.ph-article.alt {
  background: linear-gradient(180deg, var(--ph-cream-2) 0%, var(--ph-cream) 100%);
}

.ph-article-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

.ph-article-num {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ph-sunset);
  margin-bottom: 16px;
}

.ph-article-num::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 100%);
  box-shadow: 0 4px 12px rgba(234,88,12,0.35);
}

.ph-article h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: var(--ph-text);
  margin-bottom: 20px;
  text-wrap: balance;
}

.ph-article h2 em {
  color: var(--ph-sunset);
  font-style: normal;
  background: linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ph-article-lead {
  font-size: 18px;
  color: var(--ph-text-2);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 500;
}

.ph-article-body h3 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--ph-text);
  letter-spacing: -.3px;
  margin: 32px 0 12px;
}

.ph-article-body h3::before {
  content: '·';
  color: var(--ph-sunset);
  font-size: 28px;
  margin-right: 10px;
  vertical-align: -2px;
}

.ph-article-body p {
  font-size: 15.5px;
  color: var(--ph-text-2);
  line-height: 1.78;
  margin-bottom: 14px;
}

.ph-article-body b, .ph-article-body strong {
  color: var(--ph-text);
  font-weight: 700;
}

.ph-article-body em {
  font-style: italic;
  color: var(--ph-text);
}

.ph-article-cta {
  margin-top: 32px;
  padding: 24px 26px;
  background: linear-gradient(135deg, #fff 0%, var(--ph-cream-2) 100%);
  border: 1px solid var(--ph-peach);
  border-radius: 16px;
  position: relative;
}

.ph-article-cta::before {
  content: '';
  position: absolute;
  top: -1px; left: 24px; right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--ph-sunset), var(--ph-coral));
  border-radius: 999px;
}

.ph-article-cta-name {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--ph-sunset);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ph-article-cta p {
  font-size: 15px;
  color: var(--ph-text);
  line-height: 1.65;
  margin: 0;
}

.ph-article-aside {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, #fff 0%, var(--ph-cream-2) 100%);
  border: 1px solid var(--ph-peach);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: 0 12px 32px rgba(196,57,12,0.08);
  position: relative;
  overflow: hidden;
}

.ph-article-aside::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ph-sunset), var(--ph-coral), var(--ph-sun));
}

.ph-article-aside { position: sticky; top: 100px; }

.ph-article.alt .ph-article-aside {
  background: #fff;
}

.ph-article-aside-title {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 800;
  color: var(--ph-sunset);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ph-peach);
}

.ph-article-aside-row {
  padding: 11px 0;
  border-bottom: 1px solid var(--ph-cream-2);
}

.ph-article-aside-row:last-child { border-bottom: none; }

.ph-article-aside-l {
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  color: var(--ph-text-3);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ph-article-aside-v {
  font-size: 14px;
  color: var(--ph-text);
  font-weight: 600;
  line-height: 1.5;
}

.ph-article-aside-v .amber { color: var(--ph-sunset); font-weight: 700; }

.ph-pricing {
  background: linear-gradient(180deg, var(--ph-cream) 0%, var(--ph-cream-2) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.ph-pricing::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,184,166,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ph-pricing-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  z-index: 1;
}

.ph-pricing-inner {
  background: #fff;
  border: 1px solid var(--ph-peach);
  border-radius: 28px;
  padding: 48px 52px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(196,57,12,0.10);
  position: relative;
  overflow: hidden;
}

.ph-pricing-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ph-sunset), var(--ph-coral), var(--ph-sun));
}

.ph-pricing-inner::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(251,191,36,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ph-pricing-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(234,88,12,0.10), rgba(251,191,36,0.10));
  color: var(--ph-sunset);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid var(--ph-peach);
}

.ph-pricing-h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--ph-text);
  margin-bottom: 14px;
  text-wrap: balance;
}

.ph-pricing-h2 em {
  color: var(--ph-sunset);
  font-style: normal;
  background: linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ph-pricing-sub {
  font-size: 15.5px;
  color: var(--ph-text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.ph-pricing-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}

.ph-pricing-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px;
  color: var(--ph-text);
  line-height: 1.5;
}

.ph-pricing-list li svg {
  width: 18px; height: 18px;
  color: var(--ph-teal-2);
  stroke-width: 2.6;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(20,184,166,0.12);
  border-radius: 50%;
  padding: 3px;
}

.ph-pricing-right {
  text-align: center;
  position: relative;
  z-index: 1;
}

.ph-pricing-num {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 900;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 60%, var(--ph-sun) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.95;
}

.ph-pricing-num-l {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--ph-text);
  letter-spacing: .14em;
  margin-top: 6px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.ph-pricing-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

.ph-pricing-cta .ph-btn-primary {
  background: linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 100%);
  color: #fff;
  justify-content: center;
}

.ph-pricing-cta .ph-btn-primary:hover {
  box-shadow: 0 16px 40px rgba(234,88,12,0.40);
}

.ph-pricing-cta .ph-btn-ghost {
  color: var(--ph-text);
  border-color: var(--ph-peach);
  background: transparent;
  justify-content: center;
}

.ph-pricing-cta .ph-btn-ghost:hover { border-color: var(--ph-sunset); color: var(--ph-sunset); background: var(--ph-cream-2); }

.ph-faq {
  background: var(--ph-cream);
  padding: 96px 0;
}

.ph-faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; flex-direction: column;
  gap: 12px;
}

.ph-faq-list .faq-item {
  background: #fff;
  border: 1px solid var(--ph-peach);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s ease;
}

.ph-faq-list .faq-item:hover {
  border-color: var(--ph-sunset-3);
  box-shadow: 0 6px 20px rgba(196,57,12,0.08);
}

.ph-faq-list .faq-item[open] {
  border-color: var(--ph-sunset);
  box-shadow: 0 8px 24px rgba(196,57,12,0.10);
}

.ph-faq-list .faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600;
  color: var(--ph-text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}

.ph-faq-list .faq-body {
  padding: 0 24px 22px;
  color: var(--ph-text-2);
  font-size: 14.5px;
  line-height: 1.7;
}

.ph-cta {
  background:
    radial-gradient(circle at 70% 20%, rgba(251,191,36,0.40) 0%, transparent 50%),
    linear-gradient(135deg, var(--ph-sunset) 0%, var(--ph-coral) 60%, var(--ph-sun) 100%);
  color: #fff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ph-cta::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,251,235,0.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.ph-cta::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.10) 1.4px, transparent 1.8px);
  background-size: 48px 48px;
  pointer-events: none;
}

.ph-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.ph-cta h2 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(196,57,12,0.20);
}

.ph-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  margin-bottom: 32px;
}

.ph-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.ph-cta .ph-btn-primary {
  background: #FFFBEB;
  color: var(--ph-sunset);
}

.ph-cta .ph-btn-primary:hover { background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,0.18); }

.ph-cta .ph-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.18);
}

.ph-cta .ph-btn-ghost:hover { background: rgba(255,255,255,0.30); border-color: #fff; }

@media (max-width: 980px) {
  .ph-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ph-hero h1 { font-size: 38px; }
  .ph-section-hd h2 { font-size: 32px; }
  .ph-why-grid { grid-template-columns: 1fr; }
  .ph-article-inner { grid-template-columns: 1fr; gap: 32px; }
  .ph-article-aside { position: static; }
  .ph-article h2 { font-size: 28px; }
  .ph-pricing-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; border-radius: 20px; }
  .ph-pricing-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .ph-hero { padding: 72px 0 56px; }
  .ph-hero h1 { font-size: 30px; }
  .ph-hero-stats { grid-template-columns: 1fr 1fr; }
  .ph-section-hd h2 { font-size: 26px; }
  .ph-article h2 { font-size: 24px; }
  .ph-pricing-h2 { font-size: 26px; }
  .ph-pricing-num { font-size: 56px; }
}

:root {
  --sg-red: #DC2626;
  --sg-red-2: #B91C1C;
  --sg-red-3: #991B1B;
  --sg-red-soft: rgba(220,38,38,0.08);
  --sg-red-bg: #FEF2F2;
  --sg-ink: #0A0A0F;
  --sg-ink-2: #1A1A23;
  --sg-ink-3: #2D2D38;
  --sg-paper: #FAF9F4;
  --sg-paper-2: #F5F3EB;
  --sg-cream: #FFFDF7;
  --sg-text: #0A0A0F;
  --sg-text-2: #4B5563;
  --sg-text-3: #9CA3AF;
  --sg-line: #E5E7EB;
  --sg-line-2: #D1D5DB;
}

.sg-hero {
  background: linear-gradient(180deg, var(--sg-cream) 0%, var(--sg-paper) 100%);
  color: var(--sg-text);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.sg-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--sg-red-2), var(--sg-red), var(--sg-red-2));
  z-index: 3;
}

.sg-hero::after {
  content: '';
  position: absolute; inset: 6px 0 0 0;
  background-image:
    radial-gradient(circle at 92% 12%, rgba(220,38,38,0.06) 0%, transparent 32%),
    radial-gradient(circle, rgba(10,10,15,0.05) 1px, transparent 1.4px);
  background-size: auto, 32px 32px;
  pointer-events: none;
}

.sg-hero-inner {
  position: relative; z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.sg-hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sg-red-soft);
  color: var(--sg-red-2);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(220,38,38,0.22);
}

.sg-hero-pill::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px;
  background: var(--sg-red);
  
}

.sg-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--sg-ink);
  text-wrap: balance;
}

.sg-hero h1 em {
  color: var(--sg-red);
  font-style: italic;
  font-weight: 800;
  background: none;
  -webkit-text-fill-color: var(--sg-red);
}

.sg-hero-sub {
  font-size: 17px;
  color: var(--sg-text-2);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.65;
}

.sg-hero-cta {
  display: flex; gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sg-btn-primary,
.sg-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 600;
  padding: 13px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: all .18s ease;
  letter-spacing: -.1px;
}

.sg-btn-primary {
  background: var(--sg-ink);
  color: #fff;
  border: 1px solid var(--sg-ink);
}

.sg-btn-primary:hover {
  background: var(--sg-ink-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(10,10,15,0.18);
}

.sg-btn-ghost {
  background: transparent;
  color: var(--sg-text);
  border: 1px solid var(--sg-text);
}

.sg-btn-ghost:hover {
  background: var(--sg-ink);
  color: #fff;
}

.sg-hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 580px;
  border: 1px solid var(--sg-line);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.sg-hero-stat {
  padding: 18px 20px;
  border-right: 1px solid var(--sg-line);
}

.sg-hero-stat:last-child { border-right: none; }

.sg-hero-stat-num {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--sg-red);
  letter-spacing: -.6px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.sg-hero-stat-l {
  font-size: 11.5px;
  color: var(--sg-text-2);
  font-weight: 500;
  letter-spacing: .02em;
}

.sg-hero-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,10,15,0.06), 0 2px 8px rgba(10,10,15,0.04);
}

.sg-hero-card::after {
  content: 'ARBITRAIL · SG · CERTIFIED';
  position: absolute;
  top: 60px; right: 18px;
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid var(--sg-red);
  background: var(--sg-red-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--sg-red);
  text-align: center;
  line-height: 1.3;
  padding: 6px;
  transform: rotate(-8deg);
  z-index: 4;
}

.sg-card-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: var(--sg-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
}

.sg-card-bar-left { display: inline-flex; align-items: center; gap: 8px; }

.sg-card-bar-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sg-card-bar-status::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.30);
}

.sg-card-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid var(--sg-line);
  font-family: var(--font-display);
}

.sg-card-row:last-of-type { border-bottom: none; }

.sg-card-row-l {
  font-size: 10.5px;
  color: var(--sg-text-3);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.sg-card-row-v {
  font-size: 13px;
  color: var(--sg-text);
  font-weight: 600;
  text-align: right;
}

.sg-card-row-v .green { color: var(--sg-red); font-weight: 700; }

.sg-section-hd {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.sg-eyebrow {
  display: inline-block;
  background: var(--sg-red-soft);
  color: var(--sg-red-2);
  padding: 5px 12px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(220,38,38,0.18);
}

.sg-section-hd h2 {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 800;
  letter-spacing: -1.6px;
  line-height: 1.1;
  color: var(--sg-ink);
  margin-bottom: 16px;
  text-wrap: balance;
}

.sg-section-hd h2 em {
  color: var(--sg-red);
  font-style: italic;
}

.sg-section-hd p {
  font-size: 17px;
  color: var(--sg-text-2);
  line-height: 1.6;
}

.sg-why {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid var(--sg-line);
}

.sg-why-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--sg-line);
  border-radius: 6px;
  overflow: hidden;
}

.sg-why-card {
  background: #fff;
  border-right: 1px solid var(--sg-line);
  padding: 36px 32px;
  position: relative;
  transition: all .2s ease;
}

.sg-why-card:last-child { border-right: none; }

.sg-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sg-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.sg-why-card:hover {
  background: var(--sg-paper);
}

.sg-why-card:hover::before { transform: scaleX(1); }

.sg-why-icon {
  width: 40px; height: 40px;
  background: var(--sg-red-soft);
  border: 1px solid rgba(220,38,38,0.20);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}

.sg-why-icon svg { width: 22px; height: 22px; color: var(--sg-red); stroke-width: 1.8; }

.sg-why-name {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 800;
  color: var(--sg-ink);
  margin-bottom: 12px;
  letter-spacing: -.4px;
}

.sg-why-desc {
  font-size: 14.5px;
  color: var(--sg-text-2);
  line-height: 1.65;
}

.sg-article {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid var(--sg-line);
  position: relative;
}

.sg-article.alt {
  background: var(--sg-paper);
}

.sg-article-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 56px;
  align-items: start;
}

.sg-article-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sg-red);
  margin-bottom: 16px;
  padding-left: 14px;
  position: relative;
}

.sg-article-num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1.5px;
  background: var(--sg-red);
}

.sg-article h2 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.12;
  color: var(--sg-ink);
  margin-bottom: 20px;
  text-wrap: balance;
}

.sg-article h2 em {
  color: var(--sg-red);
  font-style: italic;
}

.sg-article-lead {
  font-size: 18px;
  color: var(--sg-text);
  line-height: 1.55;
  margin-bottom: 32px;
  font-weight: 500;
}

.sg-article-body h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--sg-ink);
  letter-spacing: -.3px;
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 2px solid var(--sg-red);
}

.sg-article-body p {
  font-size: 15.5px;
  color: var(--sg-text-2);
  line-height: 1.78;
  margin-bottom: 14px;
}

.sg-article-body b, .sg-article-body strong {
  color: var(--sg-ink);
  font-weight: 700;
}

.sg-article-body em {
  font-style: italic;
  color: var(--sg-ink);
}

.sg-article-cta {
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--sg-ink);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.sg-article-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--sg-red);
}

.sg-article-cta-name {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: #FCA5A5;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sg-article-cta p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 0;
}

.sg-article-aside {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--sg-line);
  border-left: 3px solid var(--sg-red);
  border-radius: 4px;
  padding: 26px 24px;
  box-shadow: 0 1px 0 0 rgba(10,10,15,0.04);
}

.sg-article-aside-title {
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 800;
  color: var(--sg-red);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sg-line);
}

.sg-article-aside-row {
  padding: 11px 0;
  border-bottom: 1px solid var(--sg-line);
}

.sg-article-aside-row:last-child { border-bottom: none; }

.sg-article-aside-l {
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  color: var(--sg-text-3);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sg-article-aside-v {
  font-size: 13.5px;
  color: var(--sg-ink);
  font-weight: 600;
  line-height: 1.5;
}

.sg-article-aside-v .green { color: var(--sg-red); font-weight: 700; }

.sg-pricing {
  background: var(--sg-paper);
  padding: 96px 0;
  border-top: 1px solid var(--sg-line);
}

.sg-pricing-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.sg-pricing-inner {
  background: var(--sg-ink);
  color: #fff;
  border-radius: 8px;
  padding: 48px 52px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sg-pricing-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--sg-red);
}

.sg-pricing-eyebrow {
  display: inline-block;
  background: rgba(220,38,38,0.18);
  color: #FCA5A5;
  padding: 5px 12px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(220,38,38,0.30);
}

.sg-pricing-h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 14px;
  text-wrap: balance;
}

.sg-pricing-h2 em { color: var(--sg-red); font-style: italic; }

.sg-pricing-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 22px;
}

.sg-pricing-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}

.sg-pricing-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

.sg-pricing-list li svg {
  width: 14px; height: 14px;
  color: var(--sg-red);
  stroke-width: 3;
  flex-shrink: 0;
  margin-top: 4px;
}

.sg-pricing-right { text-align: center; }

.sg-pricing-num {
  font-family: var(--font-display);
  font-size: 76px; font-weight: 900;
  letter-spacing: -4px;
  color: var(--sg-red);
  line-height: 0.95;
}

.sg-pricing-num-l {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: .18em;
  margin-top: 8px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.sg-pricing-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }

.sg-pricing-cta .sg-btn-primary {
  background: var(--sg-red);
  border-color: var(--sg-red);
  justify-content: center;
}

.sg-pricing-cta .sg-btn-primary:hover { background: var(--sg-red-2); border-color: var(--sg-red-2); }

.sg-pricing-cta .sg-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.40);
  justify-content: center;
}

.sg-pricing-cta .sg-btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

.sg-faq {
  background: #fff;
  padding: 96px 0;
  border-top: 1px solid var(--sg-line);
}

.sg-faq-list {
      max-width: 820px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sg-faq-list .faq-item {
  background: #fff;
  border-bottom: 1px solid var(--sg-line);
  overflow: hidden;
  transition: background .2s ease;
}

.sg-faq-list .faq-item:last-child { border-bottom: none; }

.sg-faq-list .faq-item[open] { background: var(--sg-paper); }

.sg-faq-list .faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 15.5px; font-weight: 600;
  color: var(--sg-ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}

.sg-faq-list .faq-body {
  padding: 0 26px 22px;
  color: var(--sg-text-2);
  font-size: 14.5px;
  line-height: 1.7;
}

.sg-cta {
  background: linear-gradient(135deg, var(--sg-red-3) 0%, var(--sg-red) 60%, var(--sg-red-2) 100%);
  color: #fff;
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sg-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.sg-cta-inner {
  position: relative; z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

.sg-cta h2 {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 800;
  letter-spacing: -1.4px;
  margin-bottom: 16px;
  color: #fff;
}

.sg-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 28px;
}

.sg-cta-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.sg-cta .sg-btn-primary {
  background: var(--sg-ink);
  color: #fff;
  border-color: var(--sg-ink);
}

.sg-cta .sg-btn-primary:hover { background: #fff; color: var(--sg-red); border-color: #fff; }

.sg-cta .sg-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.50);
}

.sg-cta .sg-btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; }

@media (max-width: 980px) {
  .sg-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .sg-hero h1 { font-size: 38px; }
  .sg-section-hd h2 { font-size: 32px; }
  .sg-why-grid { grid-template-columns: 1fr; }
  .sg-why-card { border-right: none; border-bottom: 1px solid var(--sg-line); }
  .sg-why-card:last-child { border-bottom: none; }
  .sg-article-inner { grid-template-columns: 1fr; gap: 32px; }
  .sg-article-aside { position: static; }
  .sg-article h2 { font-size: 28px; }
  .sg-pricing-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
  .sg-pricing-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sg-hero { padding: 64px 0 56px; }
  .sg-hero h1 { font-size: 30px; }
  .sg-hero-stats { grid-template-columns: 1fr; }
  .sg-hero-stat { border-right: none; border-bottom: 1px solid var(--sg-line); }
  .sg-hero-stat:last-child { border-bottom: none; }
  .sg-section-hd h2 { font-size: 26px; }
  .sg-article h2 { font-size: 24px; }
  .sg-pricing-h2 { font-size: 26px; }
  .sg-pricing-num { font-size: 56px; }
  .sg-hero-card::after { width: 60px; height: 60px; font-size: 6px; top: 70px; right: 12px; }
}
