/* ===========================================================
   PRICING SECTION VARIATIONS — 10 full-section designs
   Each variation has unique:
     • section background
     • section header style
     • transition / signature element
     • cards layout
   =========================================================== */

:root { --gold: #F4C45B; }

/* ============================================================
   Shared section primitives — every .ps-* class is a building block
   that variations compose to create their full section design.
   ============================================================ */
.ps {
  position: relative;
  padding: clamp(80px, 9vw, 130px) 0 clamp(90px, 10vw, 140px);
  overflow: hidden;
}
.ps-container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.ps-head { max-width: 760px; margin: 0 auto 56px; }
.ps-head--centered { text-align: center; }
.ps-head--asym { max-width: 800px; margin: 0 0 64px; }
.ps-head--mono { max-width: 800px; margin: 0 0 56px; }

.ps-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid var(--blue-100);
  border-radius: 999px;
  font-size: .76rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-700);
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(30, 109, 208, .06);
}
.ps-kicker::before {
  content: ''; width: 6px; height: 6px; border-radius: 999px;
  background: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(30, 109, 208, .15);
}
.ps-kicker--gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}
.ps-kicker--gold::before { background: var(--gold); box-shadow: 0 0 0 3px rgba(244, 196, 91, .2); }
.ps-kicker--mono {
  font-family: 'JetBrains Mono', monospace;
  background: transparent;
  border: none;
  color: var(--ink-500);
  padding: 0;
  letter-spacing: .25em;
  box-shadow: none;
}
.ps-kicker--mono::before { display: none; }

.ps-h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink-900);
  margin: 0 0 16px;
}
.ps-h2--giant { font-size: clamp(2.6rem, 5.6vw, 4.2rem); font-weight: 900; line-height: 1; color: #fff; }
.ps-h2--white { color: #fff; }
.ps-h2--gold { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 4.4vw, 3.4rem); font-weight: 600; letter-spacing: 0; }
.ps-h2--serif { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -.01em; line-height: 1.05; }
.ps-h2--mono { font-family: 'JetBrains Mono', monospace; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -.01em; }

.ps-lede {
  font-size: 1.125rem;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.55;
}
.ps-lede--light { color: rgba(255, 255, 255, .82); }

.ps-script {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--ink-700);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1;
  margin: 0 0 4px;
}
.ps-script--light { color: rgba(255, 255, 255, .9); }

/* ============================================================
   Section transitions / backgrounds (per variation)
   ============================================================ */

/* v1 — light blue tint, soft orbs */
.ps--v1 { background: linear-gradient(180deg, #F2F7FE 0%, #DCEAFB 100%); }
.ps--v1::before, .ps--v1::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.ps--v1::before { top: 5%; left: -8%; width: 400px; height: 400px; background: rgba(132, 179, 234, .35); }
.ps--v1::after { bottom: 5%; right: -8%; width: 380px; height: 380px; background: rgba(180, 211, 248, .4); }

/* v2 — dark editorial, near-black */
.ps--v2 { background: #0E1726; }

/* v3 — clean white with paper texture */
.ps--v3 { background: #fff; }
.ps--v3::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(14, 23, 38, .04) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 30%, transparent 80%);
}
.v3-split { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.v3-story .ps-h2--serif { margin-bottom: 24px; }
.v3-byline { font-style: italic; color: var(--ink-500); margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--ink-200); }
@media (max-width: 880px) { .v3-split { grid-template-columns: 1fr; gap: 40px; } }

/* v4 — full-bleed dark luxury */
.ps--v4 { background: #0A0E1A; padding: clamp(100px, 11vw, 160px) 0; }
.ps--v4 .ps-script { color: #fff; }
.ps--v4 .ps-lede { color: rgba(255, 255, 255, .7); }
.ps--v4::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(244, 196, 91, .08), transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 80%, rgba(244, 196, 91, .06), transparent 60%);
}

/* v5 — clean white, comparison-table focused */
.ps--v5 { background: #F7FAFE; }

/* v6 — light blue tabbed-section feel */
.ps--v6 { background: linear-gradient(180deg, #fff 0%, #EEF5FE 100%); }

/* v7 — cinematic royal blue with orbs */
.ps--v7 {
  background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  padding: clamp(100px, 11vw, 160px) 0;
}
.v7-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.v7-orb-a { top: -10%; left: -8%; width: 460px; height: 460px; background: rgba(255, 255, 255, .15); }
.v7-orb-b { bottom: -10%; right: -8%; width: 500px; height: 500px; background: rgba(132, 179, 234, .35); }

/* v8 STRAIGHT — full-width dark blue band, no diagonal cut.
   Open/wide coverage like v12 but with a flat horizontal top edge. */
.ps-slant-top--straight {
  position: relative; height: 200px; margin-bottom: -1px; overflow: hidden; pointer-events: none;
}
.ps-slant-fill--straight {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  /* No clip-path — solid rectangle, full bleed */
}

/* v11 / v12 — same tall divider for dramatic angle, opposite directions */
.ps-slant-top--mirror,
.ps-slant-top--steep {
  position: relative; height: 220px; margin-bottom: -1px; overflow: hidden; pointer-events: none;
}
.ps-slant-fill--mirror {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  /* v11 divider is 220px tall, how-it-works is 110px (2× difference).
     For TRULY parallel pixel-slope: v11 must use 36% (half of how-it-works' 72%).
     Result: identical pixel slope, uniform-thickness white band between the two slants. */
  clip-path: polygon(0 0, 100% 36%, 100% 100%, 0 100%);
}
.ps-slant-fill--steep {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  /* Slant rises from lower-left UP to upper-right — dark blue is HIGH on the RIGHT,
     LOW on the LEFT. White gap sits in the upper-LEFT corner.
     (Mirror of the previous flip — matches Mason's red-line direction.) */
  clip-path: polygon(100% 0%, 100% 100%, 0 100%);
}

/* v8 — slanted continuation from How It Works (hybrid: v8 bg + v10 layout) */
.ps--v8 { background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%); padding-top: 0; }

/* v8-hybrid grid — same 5-col bridge layout as v10 but full-bleed (no inset band) */
.v8h-grid {
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.v8h-grid .v10-bridge {
  position: relative;
  align-self: center;
  height: 50px;
  pointer-events: none;
  z-index: 1;
}
.v8h-grid .v10-bridge svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}
.v8h-pool {
  position: absolute;
  top: 50%;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px 4px rgba(255, 255, 255, .9), 0 0 8px 2px rgba(132, 179, 234, .6);
  transform: translate(50%, -50%) scale(0);
  opacity: 0;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 880px) {
  .v8h-grid { grid-template-columns: 1fr; gap: 36px; }
  .v8h-grid .v10-bridge { display: none; }
}
/* Base shared styles only — modifiers (--mirror, --steep, --straight) set height + clip-path */
.ps-slant-top { position: relative; margin-bottom: -1px; overflow: hidden; pointer-events: none; }
.ps-slant-fill {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
}
.ps-slant-bars {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex; flex-direction: column; gap: 7px; z-index: 3;
}
.ps-slant-bars > span {
  display: block; height: 6px; border-radius: 2px;
  background: var(--blue-300); transform: skewX(-22deg);
}
.ps-slant-bars > span:nth-child(1) { width: 70px; margin-left: 32px; opacity: .5; }
.ps-slant-bars > span:nth-child(2) { width: 110px; }
.ps-slant-bars > span:nth-child(3) { width: 50px; margin-left: 18px; opacity: .7; }

/* v9 — auto brochure white */
.ps--v9 { background: #fff; }
.ps--v9::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--ink-900) 0%, var(--blue-500) 50%, var(--ink-900) 100%);
}

/* v10 — liquid continuation, blue band with orbs */
.ps--v10 { background: var(--bg-page, #F7FAFE); }
.v10-band {
  background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.v10-band::before, .v10-band::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(60px);
}
.v10-band::before { top: -100px; left: -100px; width: 380px; height: 380px; background: rgba(255, 255, 255, .15); }
.v10-band::after { bottom: -120px; right: -100px; width: 420px; height: 420px; background: rgba(132, 179, 234, .25); }

@media (max-width: 880px) {
  .v10-band { padding: 50px 24px; }
}

/* ===== 01 Featured Center ===== */
.v1-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 24px; align-items: stretch; }
.v1-card { background: #fff; border: 1px solid var(--ink-100); border-radius: 18px; padding: 36px 30px; box-shadow: 0 1px 3px rgba(14,23,38,.06); display: flex; flex-direction: column; }
.v1-card--featured { background: linear-gradient(135deg, #1E6DD0 0%, #155AB0 100%); color: #fff; border: none; box-shadow: 0 30px 60px rgba(30, 109, 208, .3); transform: scale(1.04); position: relative; }
.v1-card--featured::before { content: 'BEST VALUE'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--ink-900); font-size: .72rem; font-weight: 800; letter-spacing: .15em; padding: 6px 14px; border-radius: 999px; box-shadow: 0 4px 12px rgba(244,196,91,.4); }
.v1-card .tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 14px; }
.v1-card--featured .tag { color: rgba(255,255,255,.8); }
.v1-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.v1-card .price { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 28px; }
.v1-card .price small { font-size: .9rem; font-weight: 500; color: var(--ink-500); margin-right: 6px; }
.v1-card--featured .price small { color: rgba(255,255,255,.65); }
.v1-card ul { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.v1-card li { display: flex; align-items: flex-start; gap: 10px; font-size: .95rem; color: var(--ink-700); }
.v1-card--featured li { color: rgba(255,255,255,.85); }
.v1-card li::before { content: '✓'; color: var(--blue-500); font-weight: 800; flex-shrink: 0; }
.v1-card--featured li::before { color: var(--gold); }
.v1-cta { display: inline-flex; justify-content: center; padding: 14px 24px; background: var(--ink-900); color: #fff !important; border-radius: 999px; font-weight: 700; font-size: .95rem; transition: transform .2s, background .2s; text-decoration: none; }
.v1-cta:hover { transform: translateY(-2px); background: var(--blue-600); }
.v1-card--featured .v1-cta { background: #fff; color: var(--blue-700) !important; }
.v1-card--featured .v1-cta:hover { background: var(--gold); color: var(--ink-900) !important; }

/* ===== 02 Big Number First ===== */
.v2-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.v2-card { position: relative; padding: 56px 36px 36px; background: #fff; border-top: 1px solid var(--ink-200); border-radius: 0; }
.v2-card .price-hero { font-size: clamp(4rem, 7vw, 6rem); font-weight: 900; line-height: .9; color: var(--ink-900); letter-spacing: -.04em; margin-bottom: 8px; }
.v2-card .price-hero small { font-size: 1.4rem; font-weight: 500; color: var(--ink-500); vertical-align: top; margin-left: 4px; }
.v2-card .name { font-size: .78rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 32px; }
.v2-card ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.v2-card li { color: var(--ink-700); font-size: .92rem; }
.v2-card li::before { content: '— '; color: var(--blue-300); }
.v2-card .v2-cta { display: inline-block; padding: 12px 0; font-weight: 700; border-bottom: 2px solid var(--blue-500); color: var(--blue-600); font-size: .92rem; letter-spacing: .04em; text-decoration: none; }
.v2-card .v2-cta:hover { color: var(--blue-700); border-color: var(--blue-700); }
.v2-card.featured { background: var(--ink-900); color: #fff; }
.v2-card.featured .price-hero { color: #fff; }
.v2-card.featured .price-hero small { color: rgba(255,255,255,.55); }
.v2-card.featured .name { color: var(--gold); }
.v2-card.featured li { color: rgba(255,255,255,.8); }
.v2-card.featured .v2-cta { color: #fff; border-color: var(--gold); }
.v2-card.featured::before { content: 'BEST SELLER'; position: absolute; top: 28px; right: 28px; font-size: .68rem; font-weight: 800; letter-spacing: .15em; color: var(--gold); }

/* ===== 03 Editorial Split ===== */
.v3-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: stretch; }
.v3-hero { background: linear-gradient(160deg, var(--blue-700) 0%, var(--blue-500) 60%, var(--blue-400) 100%); border-radius: 24px; padding: 48px 44px; color: #fff; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; min-height: 480px; }
.v3-hero::after { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%); }
.v3-hero .ribbon { display: inline-block; background: var(--gold); color: var(--ink-900); font-size: .72rem; font-weight: 800; letter-spacing: .15em; padding: 6px 14px; border-radius: 999px; margin-bottom: 24px; align-self: flex-start; position: relative; z-index: 1; }
.v3-hero h3 { font-size: 2.4rem; font-weight: 900; line-height: 1; margin-bottom: 18px; position: relative; z-index: 1; }
.v3-hero p { font-size: 1rem; color: rgba(255,255,255,.85); margin-bottom: 32px; position: relative; z-index: 1; max-width: 420px; }
.v3-hero .v3-price { font-size: 4.4rem; font-weight: 900; line-height: 1; letter-spacing: -.03em; margin-bottom: 32px; position: relative; z-index: 1; color: #fff; }
.v3-hero .v3-price small { font-size: 1.4rem; font-weight: 500; color: rgba(255,255,255,.55); margin-right: 8px; vertical-align: super; }
.v3-hero .v3-cta { display: inline-flex; align-items: center; gap: 8px; padding: 18px 32px; background: #fff; color: var(--blue-700) !important; border-radius: 999px; font-weight: 800; font-size: 1rem; align-self: flex-start; position: relative; z-index: 1; transition: transform .2s, background .2s; text-decoration: none; }
.v3-hero .v3-cta:hover { transform: translateY(-2px); background: var(--gold); }
.v3-side { display: flex; flex-direction: column; gap: 24px; }
.v3-mini { background: #fff; border: 1px solid var(--ink-100); border-radius: 20px; padding: 28px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.v3-mini h4 { font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; color: var(--ink-900); }
.v3-mini .meta { font-size: .82rem; color: var(--ink-500); margin-bottom: 18px; }
.v3-mini .price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.v3-mini .price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.03em; }
.v3-mini .v3-link { color: var(--blue-600); font-weight: 700; font-size: .9rem; text-decoration: none; }

/* ===== 04 Dark Luxury ===== */
.v4-bg { background: linear-gradient(135deg, #0E1726 0%, #11233E 100%); border-radius: 28px; padding: 56px 48px; color: #fff; }
.v4-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v4-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.v4-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold) 0%, transparent 100%); }
.v4-card.gold-tier::before { background: linear-gradient(90deg, var(--gold), #FFD580); }
.v4-card .vehicle { width: 64px; height: 64px; border-radius: 50%; background: rgba(244,196,91,.12); border: 1px solid rgba(244,196,91,.35); display: grid; place-items: center; margin-bottom: 24px; color: var(--gold); }
.v4-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -.01em; color: #fff; }
.v4-card .runtime { font-size: .82rem; color: rgba(255,255,255,.5); margin-bottom: 24px; letter-spacing: .1em; text-transform: uppercase; }
.v4-card .v4-price { font-family: 'Cormorant Garamond', serif; font-size: 3.6rem; font-weight: 600; line-height: 1; color: var(--gold); margin-bottom: 24px; }
.v4-card .v4-price small { font-size: 1.1rem; color: rgba(255,255,255,.5); margin-right: 4px; vertical-align: super; }
.v4-card ul { list-style: none; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.v4-card li { color: rgba(255,255,255,.8); font-size: .9rem; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.06); }
.v4-card .v4-cta { text-align: center; padding: 14px; border: 1px solid var(--gold); color: var(--gold) !important; border-radius: 4px; font-weight: 700; font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; }
.v4-card.gold-tier { background: linear-gradient(135deg, rgba(244,196,91,.12), rgba(244,196,91,.02)); }
.v4-card.gold-tier .v4-cta { background: var(--gold); color: var(--ink-900) !important; }

/* ===== 05 Comparison Table ===== */
.v5-table { background: #fff; border: 1px solid var(--ink-100); border-radius: 24px; overflow: hidden; box-shadow: 0 6px 16px rgba(14,23,38,.08); }
.v5-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; border-bottom: 1px solid var(--ink-100); }
.v5-row:last-child { border-bottom: none; }
.v5-row > div { padding: 22px 24px; display: flex; align-items: center; }
.v5-row > div:first-child { color: var(--ink-700); font-weight: 500; }
.v5-row > div:not(:first-child) { justify-content: center; border-left: 1px solid var(--ink-100); }
.v5-row.head { background: var(--ink-900); color: #fff; }
.v5-row.head > div:first-child { color: #fff; font-size: 1rem; }
.v5-row.head > div:not(:first-child) { flex-direction: column; align-items: center; text-align: center; border-left: 1px solid rgba(255,255,255,.1); padding: 32px 16px; }
.v5-row.head .name { font-size: .78rem; letter-spacing: .15em; color: rgba(255,255,255,.65); margin-bottom: 6px; text-transform: uppercase; font-weight: 700; }
.v5-row.head .price { font-size: 2.2rem; font-weight: 900; letter-spacing: -.02em; line-height: 1; color: #fff; }
.v5-row.head .price small { font-size: .9rem; color: rgba(255,255,255,.55); margin-right: 4px; }
.v5-row.head .featured-tag { display: inline-block; background: var(--gold); color: var(--ink-900); font-size: .65rem; font-weight: 800; padding: 3px 8px; border-radius: 4px; letter-spacing: .15em; margin-top: 8px; }
.v5-row .check { color: var(--blue-500); font-size: 1.4rem; font-weight: 800; }
.v5-row .dash { color: var(--ink-200); font-size: 1.4rem; }
.v5-row.cta-row > div { padding: 24px; }
.v5-row.cta-row > div:not(:first-child) { padding: 20px; }
.v5-cta { display: block; width: 100%; text-align: center; padding: 12px 16px; background: #EEF5FE; color: var(--blue-700) !important; font-weight: 700; border-radius: 999px; font-size: .88rem; text-decoration: none; }
.v5-cta.featured { background: var(--ink-900); color: #fff !important; }

/* ===== 06 Tabbed by Vehicle ===== */
.v6-wrap { text-align: center; }
.v6-tabs { display: inline-flex; background: #fff; border: 1px solid var(--ink-100); border-radius: 999px; padding: 4px; margin-bottom: 40px; box-shadow: 0 1px 3px rgba(14,23,38,.06); }
.v6-tab { padding: 12px 24px; font-weight: 700; font-size: .9rem; border-radius: 999px; cursor: pointer; transition: all .25s; background: transparent; border: none; color: var(--ink-700); display: inline-flex; align-items: center; gap: 8px; font-family: inherit; }
.v6-tab.active { background: var(--blue-600); color: #fff; box-shadow: 0 4px 12px rgba(30,109,208,.35); }
.v6-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.v6-card { background: #fff; border: 1.5px solid var(--ink-100); border-radius: 16px; padding: 32px 28px; transition: border-color .2s, transform .2s; }
.v6-card:hover { border-color: var(--blue-300); transform: translateY(-4px); }
.v6-card.featured { border-color: var(--blue-500); border-width: 2px; background: linear-gradient(135deg, #fff 0%, #EEF5FE 100%); }
.v6-card .vehicle-icon { width: 48px; height: 36px; margin-bottom: 18px; color: var(--blue-600); }
.v6-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; color: var(--ink-900); }
.v6-card .meta { font-size: .82rem; color: var(--ink-500); margin-bottom: 22px; }
.v6-card .v6-price { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 22px; }
.v6-card .v6-price small { font-size: .9rem; color: var(--ink-500); margin-right: 4px; vertical-align: super; }
.v6-card ul { list-style: none; padding: 0; margin-bottom: 22px; display: flex; flex-direction: column; gap: 6px; }
.v6-card li { font-size: .9rem; color: var(--ink-700); padding-left: 18px; position: relative; }
.v6-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--blue-300); }
.v6-card .v6-cta { display: block; text-align: center; padding: 12px; background: var(--ink-900); color: #fff !important; border-radius: 999px; font-weight: 700; font-size: .9rem; text-decoration: none; }
.v6-card.featured .v6-cta { background: var(--blue-600); }

/* ===== 07 Glass 3D Tilt ===== */
.v7-bg { background: linear-gradient(135deg, #2C86E5, #155AB0); border-radius: 28px; padding: 80px 48px; position: relative; overflow: hidden; }
.v7-bg::before, .v7-bg::after { content: ''; position: absolute; border-radius: 50%; filter: blur(60px); }
.v7-bg::before { top: -60px; left: -60px; width: 300px; height: 300px; background: rgba(255,255,255,.15); }
.v7-bg::after { bottom: -80px; right: -80px; width: 400px; height: 400px; background: rgba(132,179,234,.25); }
.v7-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; perspective: 1500px; position: relative; z-index: 1; }
.v7-card { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 20px; padding: 36px 28px; backdrop-filter: blur(16px); color: #fff; transition: transform .4s ease; transform-style: preserve-3d; }
.v7-grid > .v7-card:nth-child(1) { transform: rotateY(8deg) rotateX(2deg); }
.v7-grid > .v7-card:nth-child(2) { transform: translateZ(40px); }
.v7-grid > .v7-card:nth-child(3) { transform: rotateY(-8deg) rotateX(2deg); }
.v7-grid:hover > .v7-card { transform: rotateY(0) rotateX(0) translateZ(0); }
.v7-card .tag { font-size: .72rem; letter-spacing: .15em; font-weight: 700; color: rgba(255,255,255,.7); text-transform: uppercase; margin-bottom: 12px; }
.v7-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: #fff; }
.v7-card .v7-price { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 24px; }
.v7-card .v7-price small { font-size: 1rem; color: rgba(255,255,255,.6); margin-right: 4px; vertical-align: super; }
.v7-card ul { list-style: none; padding: 0; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.v7-card li { font-size: .9rem; color: rgba(255,255,255,.85); display: flex; align-items: center; gap: 10px; }
.v7-card li::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,.25); flex-shrink: 0; }
.v7-card .v7-cta { display: block; text-align: center; padding: 12px; background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.35); color: #fff !important; border-radius: 999px; font-weight: 700; font-size: .9rem; text-decoration: none; }
.v7-card.featured { background: #fff; color: var(--ink-900); }
.v7-card.featured h3, .v7-card.featured .v7-price { color: var(--ink-900); }
.v7-card.featured li { color: var(--ink-700); }
.v7-card.featured .v7-cta { background: var(--blue-600); border: none; }

/* ===== 08 Slanted Panel (no skew band — just card-level slant) ===== */
.v8-band { background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); padding: 80px 60px; border-radius: 32px; position: relative; overflow: hidden; }
.v8-bars { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 32px; }
.v8-bars > span { display: block; height: 6px; border-radius: 2px; background: var(--blue-300); transform: skewX(-22deg); }
.v8-bars > span:nth-child(1) { width: 60px; opacity: .55; margin-left: 28px; }
.v8-bars > span:nth-child(2) { width: 100px; }
.v8-bars > span:nth-child(3) { width: 40px; opacity: .75; margin-left: 16px; }
.v8-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v8-card { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); border-radius: 12px; padding: 32px 28px; color: #fff; backdrop-filter: blur(10px); position: relative; }
.v8-card.featured { background: #fff; color: var(--ink-900); transform: scale(1.04); box-shadow: 0 30px 60px rgba(0,0,0,.25); }
.v8-card .tag { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.v8-card.featured .tag { color: var(--blue-600); }
.v8-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: inherit; }
.v8-card .v8-price { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 24px; }
.v8-card .v8-price small { font-size: 1rem; color: rgba(255,255,255,.65); margin-right: 4px; vertical-align: super; }
.v8-card.featured .v8-price small { color: var(--ink-500); }
.v8-card ul { list-style: none; padding: 0; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.v8-card li { font-size: .92rem; color: rgba(255,255,255,.85); }
.v8-card.featured li { color: var(--ink-700); }
.v8-card li::before { content: '› '; color: var(--blue-300); font-weight: 800; }
.v8-card.featured li::before { color: var(--blue-500); }
.v8-cta { display: block; text-align: center; padding: 14px; background: var(--gold); color: var(--ink-900) !important; border-radius: 4px; font-weight: 800; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }

/* ===== 09 Spec Sheet ===== */
.v9-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--ink-200); }
.v9-card { position: relative; padding: 56px 36px 36px; background: #fff; border-right: 1px solid var(--ink-200); }
.v9-card:last-child { border-right: none; }
.v9-card.featured { background: var(--ink-900); color: #fff; }
.v9-card .tier-num { font-family: 'JetBrains Mono', monospace; font-size: .82rem; font-weight: 700; letter-spacing: .15em; color: var(--ink-500); margin-bottom: 8px; }
.v9-card.featured .tier-num { color: var(--gold); }
.v9-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; letter-spacing: -.01em; color: inherit; }
.v9-card .v9-spec { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--ink-100); font-size: .92rem; }
.v9-card.featured .v9-spec { border-bottom-color: rgba(255,255,255,.1); }
.v9-card .v9-spec .label { color: var(--ink-500); font-weight: 500; }
.v9-card.featured .v9-spec .label { color: rgba(255,255,255,.55); }
.v9-card .v9-spec .value { font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.v9-card .v9-price-line { display: flex; align-items: baseline; justify-content: space-between; padding: 24px 0; border-bottom: 2px solid var(--ink-900); margin-top: 16px; }
.v9-card.featured .v9-price-line { border-bottom-color: var(--gold); }
.v9-card .v9-price-line .label { font-size: .82rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; }
.v9-card .v9-price-line .price { font-family: 'Inter', sans-serif; font-size: 2.4rem; font-weight: 900; letter-spacing: -.02em; }
.v9-card.featured .v9-price-line .price { color: var(--gold); }
.v9-card .v9-cta { display: block; margin-top: 28px; padding: 14px; background: var(--ink-900); color: #fff !important; text-align: center; font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; border-radius: 0; text-decoration: none; }
.v9-card.featured .v9-cta { background: var(--gold); color: var(--ink-900) !important; }

/* ===== 10 Liquid Connectors ===== */
.v10-band { background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%); border-radius: 32px; padding: 100px 60px; position: relative; overflow: hidden; }
.v10-grid { display: grid; grid-template-columns: 1fr 100px 1fr 100px 1fr; align-items: stretch; position: relative; z-index: 2; }
.v10-bridge { position: relative; align-self: center; height: 50px; }
.v10-bridge svg { width: 100%; height: 100%; overflow: visible; display: block; }
.v10-card { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: 36px 28px; backdrop-filter: blur(14px); color: #fff; display: flex; flex-direction: column; }
.v10-card.featured { background: #fff; color: var(--ink-900); transform: translateY(-12px); box-shadow: 0 40px 80px rgba(0,0,0,.25); }
.v10-card .tag { font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.v10-card.featured .tag { color: var(--blue-600); }
.v10-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: inherit; }
.v10-card .v10-price { font-size: 3rem; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 24px; }
.v10-card .v10-price small { font-size: 1rem; color: rgba(255,255,255,.65); margin-right: 4px; vertical-align: super; }
.v10-card.featured .v10-price small { color: var(--ink-500); }
.v10-card ul { list-style: none; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.v10-card li { font-size: .92rem; color: rgba(255,255,255,.85); padding-left: 16px; position: relative; }
.v10-card.featured li { color: var(--ink-700); }
.v10-card li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); }
.v10-card.featured li::before { background: var(--blue-500); }
.v10-card .v10-cta { display: block; text-align: center; padding: 12px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35); color: #fff !important; border-radius: 999px; font-weight: 700; font-size: .9rem; text-decoration: none; }
.v10-card.featured .v10-cta { background: var(--blue-600); color: #fff !important; border: none; }

/* Responsive — collapse to single column */
@media (max-width: 880px) {
  .v1-grid, .v2-grid, .v3-grid, .v4-grid, .v6-cards, .v7-grid, .v8-grid, .v9-grid, .v10-grid { grid-template-columns: 1fr !important; }
  .v1-card--featured { transform: none; }
  .v3-hero { min-height: auto; }
  .v5-row { grid-template-columns: 1fr; }
  .v5-row > div:not(:first-child) { border-left: none; border-top: 1px solid var(--ink-100); }
  .v8-card.featured { transform: none; }
  .v10-bridge { display: none; }
}

/* ============================================================
   Pricing → next-section bottom slant (used on real index.html)
   Mirrors v11 top slant direction: slope rises down-right at 79px
   so design language stays consistent through the page.
   ============================================================ */
.ps-slant-bottom-out {
  position: relative; height: 130px; margin-top: -1px;
  overflow: hidden; pointer-events: none; z-index: 2;
  /* Use the deeper "pricing" gradient so the area above the slant matches
     the pricing body — slant transitions deeper-blue → white. */
  background: linear-gradient(135deg, #1E6DD0 0%, #155AB0 60%, #0E4787 100%);
}
.ps-slant-bottom-out-fill {
  position: absolute; inset: 0;
  background: #fff;
  /* White wedge revealed on bottom-left, expanding under the slant.
     Slant goes (0, 39%) → (100%, 100%) — same 61% slope as the rest. */
  clip-path: polygon(0 39%, 100% 100%, 0 100%);
}
@media (max-width: 880px) {
  .ps-slant-bottom-out { height: 80px; }
}

/* ============================================================
   Single-slant fold: HIW dark → slight-deeper pricing dark.
   Used on real index.html (replaces the parallel-band white gap).
   - The divider's BACKGROUND continues the HIW gradient (so the
     unfilled top-right shows HIW blue, not white).
   - The clipped FILL is a slightly deeper royal blue, making the
     slant edge a subtle premium "fold" between two tones.
   ============================================================ */
.ps-slant-top--mirror-fold {
  background: linear-gradient(135deg, #2C86E5 0%, #1E6DD0 60%, #155AB0 100%);
}
.ps-slant-top--mirror-fold > .ps-slant-fill--mirror {
  background: linear-gradient(135deg, #1E6DD0 0%, #155AB0 60%, #0E4787 100%);
  /* Tiny lighter highlight on the slant edge for that premium fold look */
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06) inset;
}
/* Match pricing body to the deeper tone so the fold feels intentional */
.ps-slant-top--mirror-fold + .ps--v8,
.ps--v8.ps--v8-deep {
  background: linear-gradient(135deg, #1E6DD0 0%, #155AB0 60%, #0E4787 100%);
}
