/* ===== SUBSCRIPTIONS PAGE ===== */

/* Sub-page hero */
.sub-page {
  padding-top: 80px; /* offset for fixed header */
}

.sub-hero {
  position: relative;
  padding: 100px 60px 90px;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(189,149,61,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(100,130,200,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #080e1c 0%, #0d1424 100%);
  z-index: 0;
}

.sub-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.sub-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.sub-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.sub-hero-title .accent { color: var(--gold); }

.sub-hero-sub {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 56px;
}

.sub-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.sub-meta-item { text-align: center; }
.sub-meta-val {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.sub-meta-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.sub-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== PLANS SECTION ===== */
.plans-section {
  padding: 100px 60px;
  background: var(--bg);
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  align-items: start;
}

/* Plan Card */
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  border-color: rgba(189,149,61,0.35);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Featured: Ceramic Shield */
.plan-card-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #0d1a30 0%, var(--surface) 60%);
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(189,149,61,0.3), 0 24px 64px rgba(0,0,0,0.6), 0 0 80px rgba(189,149,61,0.08);
}

.plan-card-featured:hover {
  transform: translateY(-11px);
  box-shadow: 0 0 0 1px rgba(189,149,61,0.5), 0 28px 72px rgba(0,0,0,0.7), 0 0 100px rgba(189,149,61,0.12);
}

.plan-card-glow {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 180px;
  background: linear-gradient(180deg, rgba(189,149,61,0.08) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 0;
}

/* Fleet card — distinct accent */
.plan-card-fleet {
  border-color: rgba(172, 173, 172, 0.3);
}

/* Tier label */
.plan-tier-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid rgba(172,173,172,0.25);
  display: inline-block;
  padding: 5px 12px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.plan-tier-label-featured {
  color: var(--bg);
  background: var(--gold);
  border-color: var(--gold);
}

/* Plan name & tagline */
.plan-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.plan-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  min-height: 42px;
}

/* Price block */
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.plan-price-val {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.plan-price-per {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
}

.plan-note {
  font-size: 12px;
  color: var(--silver);
  font-style: italic;
  margin-bottom: 0;
}

/* Divider */
.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

/* Feature list */
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.feature-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Upsell row */
.plan-upsell {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.upsell-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
  margin-bottom: 4px;
}

.upsell-item {
  font-size: 12px;
  color: var(--silver);
}

.upsell-sep {
  color: var(--muted);
  font-size: 12px;
}

/* Buttons */
.btn-full {
  width: 100%;
  text-align: center;
  display: block;
}

.plan-card-featured .btn-gold {
  font-size: 14px;
  padding: 16px 32px;
}

/* Gtechniq badge on featured card */
.plan-gtechniq-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 16px;
  opacity: 0.8;
}

/* ===== VALUE SECTION ===== */
.value-section {
  padding: 100px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.value-inner { max-width: 1200px; margin: 0 auto; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.value-card {
  background: var(--bg);
  padding: 48px 40px;
  text-align: center;
}

.value-icon {
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== GTECHNIQ SECTION ===== */
.gtechniq-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #0a1526 0%, #080e1c 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.gtechniq-inner { max-width: 680px; margin: 0 auto; }

.gtechniq-badge-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(189,149,61,0.3);
  padding: 6px 16px;
  margin-bottom: 28px;
}

.gtechniq-head {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.gtechniq-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

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

.faq-inner { max-width: 800px; margin: 0 auto; }

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ===== BOTTOM CTA ===== */
.sub-cta-section {
  padding: 100px 60px;
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--border);
}

.sub-cta-inner { max-width: 600px; margin: 0 auto; }

.sub-cta-head {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.sub-cta-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.sub-cta-fine {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .plans-container {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .plan-card-featured { transform: none; }
  .value-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .sub-hero { padding: 80px 28px 64px; }
  .plans-section, .value-section, .gtechniq-section,
  .faq-section, .sub-cta-section { padding: 80px 28px; }
  .sub-hero-meta { gap: 24px; }
  .sub-meta-divider { display: none; }
}