/* ── Skip navigation link (accessibility) ─────────────────── */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--purple);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 0;
}

/* ============================================================
   Points Equity Consulting — v2 Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
  --black: #0a0a0a;
  --dark: #111;
  --darkgray: #1a1a1a;
  --border: #2a2a2a;
  --muted: #888;
  --light: #c0c0c0;
  --white: #f0f0f0;
  --purple: #7B2FBE;
  --purple-light: #9B4FDE;
  --purple-dim: rgba(123, 47, 190, 0.15);
  --nav-height: 80px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
}

a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--purple-light);
}

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

p {
  color: var(--light);
  font-weight: 400;
}

.text-purple {
  color: var(--purple-light);
}

.text-muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo svg {
  height: 90px;
  width: auto;
  display: block;
}

.nav-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-full {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-full { height: 40px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--light);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(123, 47, 190, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--light);
  max-width: 600px;
  margin-bottom: 40px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.grid-center {
  justify-items: center;
}

/* Cards */
.card {
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.card-purple {
  border-color: var(--purple);
  background: linear-gradient(135deg, var(--darkgray) 0%, rgba(123, 47, 190, 0.08) 100%);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--black);
}

.hero-sm {
  min-height: 40vh;
  padding-top: var(--nav-height);
  padding-bottom: 60px;
  padding: calc(var(--nav-height) + 60px) 0 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--light);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

/* Cherry blossom decorative element */
.cherry-blossom {
  position: absolute;
  pointer-events: none;
  opacity: 0.09;
  z-index: 1;
}

.cherry-top-right {
  top: calc(var(--nav-height) - 20px);
  right: -20px;
}

.cherry-bottom-left {
  bottom: -20px;
  left: -20px;
}

.cherry-top-right-sm {
  top: 0;
  right: 0;
  opacity: 0.07;
}

.cherry-bottom-left-sm {
  bottom: 0;
  left: 0;
  opacity: 0.07;
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--darkgray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid var(--border);
}

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

.stat-number {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--purple-light);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 6px;
  font-variant-numeric: lining-nums;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--light);
}

/* ============================================================
   WHO WE HELP
   ============================================================ */

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.who-card {
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

.who-card-primary {
  border-color: var(--purple);
  background: linear-gradient(135deg, var(--darkgray) 0%, rgba(123, 47, 190, 0.1) 100%);
}

.who-icon {
  width: 48px;
  height: 48px;
  background: var(--purple-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.who-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.who-list {
  list-style: none;
  margin-top: 16px;
}

.who-list li {
  color: var(--light);
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.who-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--purple-light);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.step {
  position: relative;
}

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(155, 79, 222, 0.55);
  line-height: 1;
  margin-bottom: 16px;
  font-variant-numeric: lining-nums;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--purple-light);
}

.feature-text h4 {
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.testimonial-stars {
  color: var(--purple-light);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  position: relative;
  background: var(--darkgray);
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 16px;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--light);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, var(--darkgray) 0%, rgba(123, 47, 190, 0.12) 100%);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}

.pricing-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
  background: var(--purple-dim);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.pricing-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  font-variant-numeric: lining-nums;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--light);
  padding: 7px 0;
  padding-left: 22px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-light);
  font-weight: 700;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 12px;
}

/* ============================================================
   WHAT WE COVER
   ============================================================ */

.cover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.cover-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--light);
}

.cover-item-icon {
  color: var(--purple-light);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   FAQ ACCORDION (checkbox hack)
   ============================================================ */

.faq-section {
  margin-top: 48px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--darkgray);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--white);
  border: none;
  text-align: left;
  transition: background 0.2s;
  user-select: none;
}

.faq-btn:hover {
  background: rgba(123, 47, 190, 0.08);
}

.faq-btn:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: -2px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.2s;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  border-color: var(--purple-light);
  color: var(--purple-light);
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body.open {
  max-height: 400px;
}

.faq-body-inner {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123, 47, 190, 0.2);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--darkgray);
  color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Radio options */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--darkgray);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.radio-option:has(input:checked) {
  border-color: var(--purple);
  background: var(--purple-dim);
}

.radio-option input[type="radio"] {
  margin-top: 2px;
  accent-color: var(--purple);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.radio-label-main {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 2px;
}

.radio-label-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Checkboxes */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--light);
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--purple);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Form wrapper */
.form-card {
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

.form-section-block {
  margin-bottom: 40px;
}

.success-message {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.success-message.visible {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.success-message h3 {
  margin-bottom: 12px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.contact-info-card {
  background: var(--darkgray);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
}

.contact-info-item {
  margin-bottom: 28px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--white);
}

.contact-info-value a {
  color: var(--white);
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: var(--purple-light);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  background: var(--black);
  padding: calc(var(--nav-height) + 60px) 0 60px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links,
  .nav-links .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Grids collapse */
  .grid-2,
  .grid-3,
  .grid-4,
  .who-grid,
  .steps-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid,
  .cover-grid,
  .footer-grid,
  .contact-grid,
  .form-grid-2,
  .checkbox-group,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-4px);
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: var(--nav-height);
    min-height: 90vh;
    padding-bottom: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cherry-blossom {
    opacity: 0.05;
  }

  .nav-logo svg {
    height: 44px;
  }
}


/* ============================================================
   Points Equity v3 — Animation Styles
   ============================================================ */

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entrance ────────────────────────────────────────── */
.hero-entrance {
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  animation: heroTitle 1s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-sub {
  animation: heroTitle 1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero .btn {
  animation: heroTitle 1s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroTitle {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Nav scroll shrink ─────────────────────────────────────── */
.nav {
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav-scrolled {
  height: 60px !important;
  background: rgba(10, 10, 10, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-scrolled .logo-full {
  height: 38px;
  transition: height 0.3s ease;
}

/* ── Button pulse glow ─────────────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at center, rgba(255,255,255,0.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

/* ── Stat strip count-up shimmer ──────────────────────────── */
.stat-number {
  background: linear-gradient(90deg, var(--white) 0%, var(--purple-light) 50%, var(--white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  from { background-position: 200% center; }
  to   { background-position: -200% center; }
}

/* ── Card hover lift ───────────────────────────────────────── */
.who-card,
.testimonial-card,
.pricing-card,
.feature-item {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s ease;
}

.who-card:hover,
.testimonial-card:hover,
.pricing-card:hover {
  box-shadow: 0 16px 48px rgba(123, 47, 190, 0.22);
  border-color: rgba(155, 79, 222, 0.45) !important;
}

.feature-item:hover {
  transform: translateX(6px);
}

/* ── Step number glow-in ──────────────────────────────────── */
.step {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.step:hover {
  transform: translateY(-6px);
}

.step-number {
  transition: color 0.3s, text-shadow 0.3s;
}

.step:hover .step-number {
  color: var(--purple-light);
  text-shadow: 0 0 24px rgba(155, 79, 222, 0.6);
}

/* ── Cherry blossom floating canvas ──────────────────────── */
#blossom-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.hero,
.cta-section {
  position: relative;
  z-index: 1;
}

.hero .container,
.cta-section .container {
  position: relative;
  z-index: 2;
}

/* ── Cursor glow ───────────────────────────────────────────── */
.cursor-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(155, 79, 222, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* ── Section label slide-in accent ──────────────────────────── */
.section-label {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--purple-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.reveal.revealed .section-label::after,
.section-label.revealed::after {
  transform: scaleX(1);
}

/* ── Purple underline on headings ────────────────────────── */
.text-purple {
  position: relative;
  display: inline;
}

/* ── Mobile: disable tilt / heavy effects ────────────────── */
@media (max-width: 768px) {
  .cursor-glow { display: none; }
  #blossom-canvas { display: none; }
  .reveal {
    transform: translateY(18px);
  }
}

/* ── Reduced motion respect ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-entrance,
  .hero-title,
  .hero-sub,
  .stat-number,
  .btn-primary::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
