:root {
  --cp-bg: #FFFFFF;
  --cp-surface: #F8FCFB;
  --cp-surface-alt: #EEF2F7;
  --cp-border: #EDF6F4;
  --cp-border-teal: #E4F7F2;
  --cp-border-line: #E1EFF3;
  --cp-ink: #160647;
  --cp-ink-soft: rgba(22, 6, 71, 0.85);
  --cp-muted: #817A99;
  --cp-subtle: #76838F;
  --cp-teal: #47BEB9;
  --cp-teal-dark: #3AA6A1;
  --cp-teal-soft: #E4F5F4;
  --cp-teal-border: #A5E9D7;
  --cp-white: #FFFFFF;
  --cp-radius-sm: 8px;
  --cp-radius-md: 14px;
  --cp-radius-lg: 16px;
  --cp-radius-xl: 24px;
  --cp-radius-pill: 9999px;
  --cp-content-width: 1200px;
  --cp-content-wide: 1380px;
  --cp-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--cp-bg);
  color: var(--cp-ink);
}

#method, #stories, #pricing, #faq, #compare, #features {
  scroll-margin-top: 100px;
}

body {
  font-family: var(--cp-font);
  background: var(--cp-bg);
  color: var(--cp-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--cp-font);
  color: var(--cp-ink);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

p {
  color: var(--cp-muted);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible, summary:focus-visible, button:focus-visible {
  outline: 2px solid var(--cp-teal);
  outline-offset: 3px;
}

/* ================= UTILITIES & CONTAINERS ================= */
.cp-shell {
  width: 100%;
  max-width: var(--cp-content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.cp-shell-wide {
  width: 100%;
  max-width: var(--cp-content-wide);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.cp-pill-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--cp-teal-soft);
  color: var(--cp-teal-dark);
  border: 1px solid var(--cp-teal-border);
  border-radius: var(--cp-radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cp-pill-dark {
  background: var(--cp-ink);
  color: var(--cp-white);
  border: 1px solid var(--cp-ink);
}

.cp-pill-teal {
  background: var(--cp-teal);
  color: var(--cp-white);
  border: 1px solid var(--cp-teal);
}

.cp-head {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.cp-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.cp-head p.cp-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--cp-muted);
  line-height: 1.55;
  max-width: 700px;
  margin: 0 auto;
}

/* Animações e Revelação */
.gx-rise, .cp-rise {
  opacity: 1;
  transform: none;
}

html.gx-anim .gx-rise, html.gx-anim .cp-rise {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html.gx-anim .gx-rise.gx-on, html.gx-anim .cp-rise.gx-on {
  opacity: 1;
  transform: none;
}

/* ================= HEADER & NAV ================= */
.cp-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cp-border);
  height: 84px;
  display: flex;
  align-items: center;
}

.cp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cp-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cp-brand-logo img {
  height: 38px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.cp-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--cp-ink);
  color: var(--cp-white);
  border-radius: var(--cp-radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.cp-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cp-nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--cp-ink);
  transition: color 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cp-nav-links a:hover {
  color: var(--cp-teal);
}

.cp-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cp-nav-login {
  font-size: 15px;
  font-weight: 500;
  color: var(--cp-ink);
  padding: 8px 12px;
  transition: color 0.15s ease;
}

.cp-nav-login:hover {
  color: var(--cp-teal);
}

/* ================= BUTTONS (PILL STYLE) ================= */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--cp-radius-pill);
  font-family: var(--cp-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.cp-btn-primary {
  background: var(--cp-teal);
  color: var(--cp-white);
  border-color: var(--cp-teal);
}

.cp-btn-primary:hover {
  background: var(--cp-teal-dark);
  border-color: var(--cp-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(71, 190, 185, 0.3);
}

.cp-btn-dark {
  background: var(--cp-ink);
  color: var(--cp-white);
  border-color: var(--cp-ink);
}

.cp-btn-dark:hover {
  background: #250f68;
  border-color: #250f68;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22, 6, 71, 0.2);
}

.cp-btn-outline {
  background: transparent;
  color: var(--cp-ink);
  border-color: var(--cp-ink);
}

.cp-btn-outline:hover {
  background: var(--cp-ink);
  color: var(--cp-white);
  transform: translateY(-1px);
}

.cp-btn-sm {
  padding: 11px 22px;
  font-size: 14px;
}

.cp-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ================= HERO SECTION ================= */
.cp-hero {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0 64px;
  background: var(--cp-bg);
}

.cp-hero-frame {
  background: linear-gradient(180deg, #F8FCFB 0%, #FFFFFF 100%);
  border: 2px solid var(--cp-border);
  border-radius: var(--cp-radius-xl);
  padding: clamp(48px, 6vw, 84px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cp-hero-content {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cp-hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: var(--cp-ink);
  margin-bottom: 24px;
}

.cp-hero h1 span.cp-accent {
  color: var(--cp-teal);
}

.cp-hero-desc {
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
  color: var(--cp-muted);
  max-width: 820px;
  margin: 0 auto 36px;
}

.cp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cp-hero-trust {
  font-size: 15px;
  color: var(--cp-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.cp-hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--cp-teal);
}

/* ================= 3 FEATURE CARDS ================= */
.cp-features-section {
  padding: 40px 0 80px;
}

.cp-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-fcard {
  background: var(--cp-surface);
  border: 2px solid var(--cp-border);
  border-radius: var(--cp-radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.cp-fcard:hover {
  transform: translateY(-4px);
  border-color: var(--cp-teal-border);
  box-shadow: 0 12px 32px rgba(71, 190, 185, 0.08);
}

.cp-fcard-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--cp-radius-md);
  background: var(--cp-teal-soft);
  border: 1px solid var(--cp-teal-border);
  display: grid;
  place-items: center;
  color: var(--cp-teal);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.cp-fcard-icon svg {
  width: 28px;
  height: 28px;
}

.cp-fcard h3 {
  font-size: 22px;
  color: var(--cp-ink);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cp-fcard p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cp-muted);
}

/* ================= CASE STUDY / SPOTLIGHT ================= */
.cp-spotlight-section {
  padding: 40px 0 80px;
}

.cp-spotlight-card {
  background: linear-gradient(180deg, #E8F7F8 0%, rgba(232, 247, 248, 0.75) 0%, rgba(228, 245, 237, 0.2) 100%);
  border: 2px solid var(--cp-border-teal);
  border-radius: var(--cp-radius-xl);
  padding: clamp(40px, 6vw, 68px) clamp(24px, 5vw, 64px);
  text-align: center;
  position: relative;
}

.cp-spotlight-inner {
  max-width: 860px;
  margin: 0 auto;
}

.cp-spotlight-title {
  font-size: clamp(28px, 3.6vw, 42px);
  letter-spacing: -0.035em;
  color: var(--cp-ink);
  margin: 14px 0 24px;
}

.cp-spotlight-quote {
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  color: var(--cp-ink);
  margin-bottom: 24px;
}

.cp-spotlight-author {
  font-size: 17px;
  font-weight: 700;
  color: var(--cp-ink);
  display: block;
  margin-bottom: 44px;
}

.cp-metrics-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cp-metric-pill {
  background: linear-gradient(135deg, #78BDB3 0%, #CFCC93 100%);
  padding: 2px;
  border-radius: var(--cp-radius-pill);
  display: inline-block;
}

.cp-metric-body {
  background: var(--cp-white);
  border-radius: var(--cp-radius-pill);
  padding: 16px 36px;
  min-width: 220px;
  text-align: center;
}

.cp-metric-num {
  font-size: clamp(30px, 3vw, 36px);
  font-weight: 700;
  color: var(--cp-ink);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.cp-metric-desc {
  font-size: 14px;
  color: var(--cp-muted);
  font-weight: 500;
}

/* ================= PAIN POINTS ================= */
.cp-ache-section {
  padding: 64px 0;
  background: var(--cp-bg);
}

.cp-ache-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}

.cp-ache-card {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.cp-ache-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--cp-radius-md);
  background: #FFF2F2;
  border: 1px solid #FFE0E0;
  color: #E03E3E;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cp-ache-ico svg {
  width: 22px;
  height: 22px;
}

.cp-ache-card h3 {
  font-size: 18px;
  color: var(--cp-ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.cp-ache-card p {
  font-size: 14px;
  color: var(--cp-muted);
  line-height: 1.55;
}

.cp-ache-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 44px auto 0;
  padding: 12px 24px;
  background: var(--cp-surface);
  border: 1px solid var(--cp-border-teal);
  border-radius: var(--cp-radius-pill);
  font-size: 15px;
  font-weight: 600;
  color: var(--cp-ink);
}

.cp-ache-banner svg {
  width: 18px;
  height: 18px;
  color: var(--cp-teal);
}

/* ================= COMPARISON TABLE ================= */
.cp-compare-section {
  padding: 72px 0 96px;
  background: var(--cp-bg);
}

.cp-compare-box {
  background: var(--cp-surface);
  border: 3px solid var(--cp-border-teal);
  border-radius: var(--cp-radius-xl);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 8px 32px rgba(22, 6, 71, 0.03);
}

.cp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  margin-top: 24px;
}

.cp-table th {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--cp-ink);
  text-align: left;
  border-bottom: 2px solid var(--cp-border);
}

.cp-table th.cp-th-feat {
  color: var(--cp-teal-dark);
  background: rgba(71, 190, 185, 0.08);
  border-radius: var(--cp-radius-md) var(--cp-radius-md) 0 0;
}

.cp-table td {
  background: var(--cp-white);
  padding: 18px 20px;
  font-size: 14px;
  color: var(--cp-ink);
  vertical-align: middle;
  border-top: 1px solid var(--cp-border);
  border-bottom: 1px solid var(--cp-border);
}

.cp-table td:first-child {
  border-left: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-md) 0 0 var(--cp-radius-md);
  font-weight: 600;
  color: var(--cp-ink);
  width: 28%;
}

.cp-table td.cp-td-feat {
  background: #FAFDFC;
  border-color: var(--cp-border-teal);
  font-weight: 600;
  color: var(--cp-ink);
}

.cp-table td:last-child {
  border-right: 1px solid var(--cp-border);
  border-radius: 0 var(--cp-radius-md) var(--cp-radius-md) 0;
  color: var(--cp-muted);
}

.cp-td-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cp-td-ok {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cp-teal-soft);
  color: var(--cp-teal);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.cp-td-ok svg {
  width: 14px;
  height: 14px;
}

.cp-td-no {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.08);
  color: #D94444;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.cp-td-no svg {
  width: 14px;
  height: 14px;
}

/* ================= THE 3 PILLARS ================= */
.cp-pillars-section {
  padding: 72px 0;
  background: var(--cp-surface);
  border-top: 1px solid var(--cp-border);
  border-bottom: 1px solid var(--cp-border);
}

.cp-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.cp-pcard {
  background: var(--cp-white);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.cp-pcard-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--cp-teal);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.cp-pcard h3 {
  font-size: 21px;
  color: var(--cp-ink);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cp-pcard p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cp-muted);
}

/* ================= TESTIMONIALS ================= */
.cp-stories-section {
  padding: 80px 0;
  background: var(--cp-bg);
}

.cp-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cp-scard {
  background: var(--cp-surface);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cp-stars {
  display: flex;
  gap: 4px;
  color: #FFB800;
  margin-bottom: 16px;
}

.cp-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.cp-scard p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cp-ink-soft);
  flex-grow: 1;
  margin-bottom: 24px;
}

.cp-sauthor {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--cp-border);
  padding-top: 16px;
}

.cp-sava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cp-teal-soft);
  color: var(--cp-teal-dark);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.cp-sauthor strong {
  display: block;
  font-size: 14px;
  color: var(--cp-ink);
}

.cp-sauthor small {
  display: block;
  font-size: 12px;
  color: var(--cp-muted);
}

/* ================= PRICING ================= */
.cp-plans-section {
  padding: 80px 0 100px;
  background: var(--cp-surface);
  border-top: 1px solid var(--cp-border);
  border-bottom: 1px solid var(--cp-border);
}

.cp-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.cp-plan {
  background: var(--cp-white);
  border: 1px solid var(--cp-border);
  border-radius: var(--cp-radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(22, 6, 71, 0.05);
}

.cp-plan.cp-flagship {
  border: 2px solid var(--cp-teal);
  box-shadow: 0 12px 36px rgba(71, 190, 185, 0.15);
}

.cp-plan-ribbon {
  position: absolute;
  top: -14px;
  left: 30px;
  padding: 4px 14px;
  background: var(--cp-teal);
  color: var(--cp-white);
  border-radius: var(--cp-radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cp-plan-ribbon-vip {
  background: var(--cp-ink);
  color: var(--cp-white);
}

.cp-plan-tier {
  font-size: 11px;
  font-weight: 700;
  color: var(--cp-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cp-plan-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--cp-ink);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.cp-plan-cost {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.cp-plan-cost .cp-cur {
  font-size: 22px;
  font-weight: 600;
  color: var(--cp-ink);
}

.cp-plan-cost .cp-val {
  font-size: 48px;
  font-weight: 800;
  color: var(--cp-ink);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cp-plan-term {
  font-size: 13px;
  color: var(--cp-muted);
  margin-bottom: 24px;
}

.cp-plan-feats {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.cp-plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--cp-ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--cp-border);
}

.cp-plan-feats li:last-child {
  border-bottom: none;
}

.cp-plan-feats li svg {
  width: 16px;
  height: 16px;
  color: var(--cp-teal);
  flex-shrink: 0;
  margin-top: 3px;
}

.cp-plan-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--cp-radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.cp-plan-btn-default {
  background: var(--cp-surface-alt);
  color: var(--cp-ink);
  border: 1px solid var(--cp-border);
}

.cp-plan-btn-default:hover {
  background: var(--cp-ink);
  color: var(--cp-white);
  border-color: var(--cp-ink);
}

.cp-plan-btn-teal {
  background: var(--cp-teal);
  color: var(--cp-white);
  border: 1px solid var(--cp-teal);
}

.cp-plan-btn-teal:hover {
  background: var(--cp-teal-dark);
  border-color: var(--cp-teal-dark);
  box-shadow: 0 4px 16px rgba(71, 190, 185, 0.3);
}

.cp-plan-btn-dark {
  background: var(--cp-ink);
  color: var(--cp-white);
  border: 1px solid var(--cp-ink);
}

.cp-plan-btn-dark:hover {
  background: #250f68;
  border-color: #250f68;
}

.cp-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 36px;
  color: var(--cp-subtle);
  font-size: 14px;
}

.cp-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cp-trust-strip svg {
  width: 16px;
  height: 16px;
  color: var(--cp-teal);
}

/* ================= GUARANTEE ================= */
.cp-pact-section {
  padding: 64px 0;
  background: var(--cp-bg);
}

.cp-pact-card {
  background: var(--cp-surface);
  border: 2px solid var(--cp-border);
  border-radius: var(--cp-radius-xl);
  padding: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}

.cp-seal {
  width: 104px;
  height: 104px;
  border-radius: var(--cp-radius-lg);
  background: var(--cp-teal-soft);
  border: 1px solid var(--cp-teal-border);
  color: var(--cp-teal-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

.cp-seal-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.cp-seal-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.cp-pact-body h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 12px;
}

.cp-pact-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--cp-muted);
}

/* ================= FAQ ================= */
.cp-faq-section {
  padding: 80px 0 100px;
  background: var(--cp-bg);
}

.cp-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

details.cp-faq-card {
  background: var(--cp-surface-alt);
  border-radius: var(--cp-radius-lg);
  padding: 24px 28px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

details.cp-faq-card[open] {
  background: var(--cp-surface);
  border-color: var(--cp-border-teal);
}

summary.cp-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--cp-ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

summary.cp-faq-trigger::-webkit-details-marker {
  display: none;
}

.cp-faq-symbol {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cp-white);
  color: var(--cp-ink);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

details[open] .cp-faq-symbol {
  transform: rotate(45deg);
  background: var(--cp-teal);
  color: var(--cp-white);
}

.cp-faq-content {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cp-muted);
  border-top: 1px solid var(--cp-border);
  padding-top: 16px;
}

/* ================= DARK FINAL BANNER ================= */
.cp-final-section {
  padding: 40px 0 80px;
}

.cp-dark-card {
  background: var(--cp-ink);
  border-radius: var(--cp-radius-xl);
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
  color: var(--cp-white);
  position: relative;
  overflow: hidden;
}

.cp-dark-card::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71, 190, 185, 0.2) 0%, rgba(22, 6, 71, 0) 70%);
  pointer-events: none;
}

.cp-dark-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cp-dark-card h2 {
  font-size: clamp(32px, 4.4vw, 50px);
  color: var(--cp-white);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.cp-dark-card p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto 36px;
}

.cp-dark-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cp-dark-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cp-dark-note svg {
  width: 15px;
  height: 15px;
  color: var(--cp-teal);
}

/* ================= FOOTER ================= */
.cp-footer {
  background: var(--cp-surface);
  border-top: 1px solid var(--cp-border);
  padding: 72px 0 40px;
}

.cp-footer-cols {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--cp-border);
}

.cp-col-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cp-muted);
  margin-top: 16px;
  max-width: 320px;
}

.cp-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cp-subtle);
  margin-bottom: 20px;
}

.cp-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cp-col-links a {
  font-size: 15px;
  color: var(--cp-ink);
  transition: color 0.15s ease;
}

.cp-col-links a:hover {
  color: var(--cp-teal);
}

.cp-footer-base {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cp-legal-para {
  font-size: 12px;
  line-height: 1.65;
  color: var(--cp-subtle);
  max-width: 960px;
}

.cp-base-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--cp-subtle);
}

.cp-soc-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cp-soc-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cp-white);
  border: 1px solid var(--cp-border-teal);
  display: grid;
  place-items: center;
  color: var(--cp-ink);
  transition: all 0.2s ease;
}

.cp-soc-circle:hover {
  background: var(--cp-teal);
  color: var(--cp-white);
  border-color: var(--cp-teal);
}

.cp-soc-circle svg {
  width: 17px;
  height: 17px;
}

/* ================= CHECKOUT / STATUS PAGES (gx-pay) ================= */
.gx-pay {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 48px 24px;
  background: var(--cp-surface);
}

.gx-paybox {
  width: min(100%, 540px);
  padding: 48px 40px;
  background: var(--cp-white);
  border: 2px solid var(--cp-border);
  border-radius: var(--cp-radius-xl);
  box-shadow: 0 12px 36px rgba(22, 6, 71, 0.06);
  animation: cp-pay-in 0.35s ease both;
  text-align: center;
}

.gx-paybrand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.gx-paybrand img {
  height: 34px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.gx-payico {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
}

.gx-payico svg {
  width: 36px;
  height: 36px;
}

.gx-pay--load .gx-payico {
  background: var(--cp-teal-soft);
  color: var(--cp-teal-dark);
}

.gx-pay--ok .gx-payico {
  background: rgba(59, 104, 82, 0.12);
  color: #2F855A;
}

.gx-pay--no .gx-payico {
  background: #FFF2F2;
  color: #E03E3E;
}

.gx-payspin {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(71, 190, 185, 0.25);
  border-top-color: var(--cp-teal);
  border-radius: 50%;
  animation: cp-pay-spin 0.8s linear infinite;
}

.gx-paykicker {
  display: block;
  margin-bottom: 10px;
  color: var(--cp-teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gx-pay--ok .gx-paykicker {
  color: #2F855A;
}

.gx-pay h1 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 14px;
}

.gx-paylede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--cp-ink-soft);
}

.gx-paynote {
  margin-top: 12px;
  color: var(--cp-muted);
  font-size: 14px;
  line-height: 1.6;
}

.gx-payaction {
  margin-top: 28px;
}

.gx-paylink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--cp-radius-pill);
  background: var(--cp-teal);
  color: var(--cp-white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease;
}

.gx-paylink:hover {
  background: var(--cp-teal-dark);
}

.gx-paysafe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--cp-border);
  color: var(--cp-subtle);
  font-size: 13px;
}

.gx-paysafe span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

@keyframes cp-pay-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes cp-pay-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 1024px) {
  .cp-cards-grid,
  .cp-pillars-grid,
  .cp-stories-grid,
  .cp-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cp-footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .cp-navbar {
    height: auto;
    padding: 12px 0;
  }
  
  .cp-nav-inner {
    flex-wrap: wrap;
  }
  
  .cp-nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 8px;
    gap: 20px;
    scrollbar-width: none;
  }
  
  .cp-nav-links::-webkit-scrollbar {
    display: none;
  }
  
  .cp-cards-grid,
  .cp-ache-grid,
  .cp-pillars-grid,
  .cp-stories-grid,
  .cp-plans-grid {
    grid-template-columns: 1fr;
  }
  
  .cp-pact-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  
  .cp-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .cp-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cp-hero-actions .cp-btn {
    width: 100%;
  }
  
  .cp-footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cp-base-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cp-btn, .cp-fcard, .cp-plan, .cp-soc-circle {
    transition: none;
  }
  .gx-paybox {
    animation: none;
  }
  .gx-payspin {
    animation: none;
  }
  html.gx-anim .cp-rise, html.gx-anim .gx-rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
