:root {
  --gx-red: #FF0000;
  --gx-orange: #FF582C;
  --gx-ink: #000000;
  --gx-ink-2: #111111;
  --gx-ghost: #EDEDED;
  --gx-mute-cool: #9A9A9A;
  --gx-mute-soft: #D9D9D9;
  --gx-paper: #F2F2F2;
  --gx-line: #E5E5E5;
  --gx-text: #111111;
  --gx-text-mute: #5F5F5F;
  --gx-red-tint: #FFECE6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background-color: var(--gx-paper);
  font-family: 'Qanelas Soft', 'Poppins', Helvetica, Arial, sans-serif;
  color: var(--gx-text);
}

.page {
  max-width: 680px;
  margin: 32px auto;
  padding: 0 12px;
}

.block {
  margin-bottom: 16px;
  overflow: hidden;
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--gx-line);
  padding: 26px 28px;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.card:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.card-dark {
  background: var(--gx-ink);
  border-left: 3px solid var(--gx-red);
  padding: 26px 28px;
  transition: box-shadow 0.35s ease;
}
.card-dark:hover {
  box-shadow: 0 10px 28px rgba(255,0,0,0.12);
}

/* HEADER */
.header {
  background: var(--gx-ink);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 140px;
  height: auto;
  display: block;
}
.badge {
  background: var(--gx-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 14px;
  animation: pulseBadge 3s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,0,0,0.0); }
  50% { box-shadow: 0 0 0 6px rgba(255,0,0,0.08); }
}

.accent-line {
  height: 2px;
  background: var(--gx-red);
  margin-bottom: 0;
}

/* TO BLOCK */
.to-block {
  background: var(--gx-ink-2);
  padding: 20px 28px;
  display: flex;
  gap: 32px;
}
.to-col { display: flex; flex-direction: column; }
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: var(--gx-mute-cool);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.to-name { font-size: 14px; font-weight: 600; color: #fff; }
.to-sub { font-size: 12px; color: var(--gx-mute-soft); margin-top: 2px; }

/* HERO */
.hero {
  background: var(--gx-ink);
  padding: 32px 28px;
  border-bottom: 3px solid var(--gx-red);
}
.chevrons {
  font-size: 12px;
  font-weight: 700;
  color: var(--gx-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 14px 0 12px;
}
.hero-sub {
  font-size: 14px;
  color: var(--gx-mute-soft);
  line-height: 1.5;
  margin: 0;
}
.red { color: var(--gx-red); }
.ink { color: var(--gx-ink-2); }
.white { color: #fff; }

/* SECTION HEAD */
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gx-ink-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title.light { color: #fff; }
.ghost-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--gx-ghost);
  line-height: 1;
}
.ghost-dark { color: rgba(255,255,255,0.08); }

/* ITEMS */
.item, .timeline-item {
  display: flex;
  gap: 12px;
  padding-bottom: 16px;
  opacity: 0;
  transform: translateX(-8px);
  animation: slideIn 0.5s ease forwards;
}
.item.last, .timeline-item.last { padding-bottom: 0; }
.item:nth-child(2) { animation-delay: 0.05s; }
.item:nth-child(3) { animation-delay: 0.1s; }
.item:nth-child(4) { animation-delay: 0.15s; }
.item:nth-child(5) { animation-delay: 0.2s; }

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

.icon-sq {
  flex: none;
  width: 26px;
  height: 26px;
  background: var(--gx-red-tint);
  color: var(--gx-red);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.item:hover .icon-sq {
  background: var(--gx-red);
  color: #fff;
}

.icon-num {
  flex: none;
  width: 26px;
  height: 26px;
  background: rgba(255,0,0,0.08);
  color: var(--gx-red);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-num-outline {
  background: transparent;
  border: 2px solid var(--gx-red);
}

.item-body { flex: 1; }
.tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gx-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.item-body p {
  font-size: 13px;
  color: var(--gx-ink-2);
  line-height: 1.5;
  margin: 0;
}
.item-body .italic { font-style: italic; }
.light-text { color: #fff !important; }

.step-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gx-ink-2);
  margin: 0 0 2px 0 !important;
}
.step-desc {
  font-size: 12px;
  color: var(--gx-text-mute) !important;
  margin: 0 !important;
}

/* QUOTE */
.quote-block {
  background: var(--gx-ink);
  border-left: 3px solid var(--gx-red);
  padding: 26px 28px;
}
.quote-lead {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 16px 0;
}
.quote-divider {
  border-top: 1px solid #333;
  margin-bottom: 16px;
}
.quote-text {
  font-size: 13px;
  font-style: italic;
  color: var(--gx-mute-soft);
  line-height: 1.6;
  margin: 0 0 10px 0;
  position: relative;
  padding-left: 14px;
  border-left: 2px solid var(--gx-red);
}
.quote-attr { font-size: 11px; color: var(--gx-mute-cool); margin: 0; }

/* PRICE CARD */
.price-card {
  border: 2px solid var(--gx-red);
  padding: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 30px rgba(255,0,0,0.10);
}
.price-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gx-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.price-row { margin-bottom: 14px; }
.price { font-size: 30px; font-weight: 800; color: var(--gx-red); }
.price-period { font-size: 13px; color: var(--gx-text-mute); }
.features { list-style: none; padding: 0; margin: 0; }
.features li {
  font-size: 13px;
  color: var(--gx-ink-2);
  line-height: 1.9;
}
.check { color: var(--gx-red); margin-right: 6px; }
.footnote {
  font-size: 11px;
  color: var(--gx-mute-cool);
  margin: 10px 0 0 0;
}

/* GRID DIFFERENTIATORS */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.diff-card {
  background: var(--gx-ink);
  padding: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.diff-card:hover {
  transform: translateY(-3px);
  background: #1a1a1a;
}
.diamond { color: var(--gx-red); font-size: 14px; margin-right: 6px; }
.diff-title { font-size: 13px; font-weight: 700; color: #fff; }
.diff-card p {
  font-size: 12px;
  color: var(--gx-mute-soft);
  line-height: 1.5;
  margin: 6px 0 0 0;
}

/* CTA */
.cta {
  background: var(--gx-ink);
  border-top: 3px solid var(--gx-red);
  padding: 40px 28px;
  text-align: center;
}
.cta-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 12px 0 10px;
}
.cta-sub {
  font-size: 13px;
  color: var(--gx-mute-soft);
  line-height: 1.5;
  max-width: 460px;
  margin: 0 auto 22px;
}
.cta-btn {
  display: inline-block;
  background: var(--gx-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.cta-btn:hover {
  background: #e60000;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255,0,0,0.25);
}
.cta-alt {
  font-size: 12px;
  color: var(--gx-mute-cool);
  margin-top: 14px;
}

/* FOOTER */
.footer {
  background: var(--gx-ink);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { font-size: 12px; color: var(--gx-mute-cool); }
.footer-contact {
  font-size: 12px;
  color: var(--gx-red);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tick {
  display: inline-block;
  width: 24px;
  height: 10px;
  background: var(--gx-red);
}

.disclaimer {
  font-size: 10px;
  color: var(--gx-mute-cool);
  line-height: 1.5;
  text-align: center;
  padding: 16px 28px 32px;
  margin: 0;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .card:hover,
  .card-dark:hover,
  .price-card:hover,
  .diff-card:hover,
  .cta-btn:hover {
    transform: none;
    box-shadow: none;
    background: inherit;
  }
}

@media (max-width: 560px) {
  .page {
    margin: 0;
    padding: 0;
  }
  .block { margin-bottom: 10px; }

  .card, .card-dark, .quote-block { padding: 20px 18px; }
  .header { padding: 18px 18px; }
  .to-block { padding: 16px 18px; flex-direction: column; gap: 14px; }
  .hero { padding: 26px 18px; }
  .cta { padding: 32px 18px; }
  .footer { padding: 16px 18px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .disclaimer { padding: 14px 18px 24px; }

  .logo { width: 110px; }
  .badge { font-size: 10px; padding: 6px 10px; }

  .hero-title { font-size: 21px; line-height: 1.3; }
  .hero-sub { font-size: 13px; }
  .chevrons { font-size: 11px; }

  .section-title { font-size: 15px; }
  .ghost-num { font-size: 30px; }

  .item, .timeline-item { gap: 10px; }
  .item-body p, .step-desc { font-size: 12.5px; }

  .quote-lead { font-size: 16px; }
  .quote-text { font-size: 12.5px; }

  .price { font-size: 24px; display: block; }
  .price-period { display: block; margin-top: 2px; }
  .price-card { padding: 18px; }
  .features li { font-size: 12.5px; line-height: 1.7; }

  .grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .diff-card { padding: 14px; }

  .cta-title { font-size: 19px; }
  .cta-sub { font-size: 12.5px; }
  .cta-btn { padding: 13px 22px; font-size: 13px; width: 100%; text-align: center; box-sizing: border-box; }

  .footer-brand, .footer-contact { font-size: 11px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 19px; }
  .price { font-size: 21px; }
  .to-name { font-size: 13px; }
}
