/* =============================================
   LIGHTWORK ECOMMERCE — SHARED STYLESHEET
   ============================================= */

:root {
  --mint:        #78ffd3;
  --mint-dark:   #47c9a0;
  --navy:        #241631;
  --navy-mid:    #2c1b3c;
  --navy-light:  #331e46;
  --navy-card:   #2f1c42;
  --text-muted:  #8B8FA8;
  --white:       #FFFFFF;
  --max-w:       1400px;
  --purple:      #a78bfa;
  color-scheme:  dark;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Poppins', sans-serif; }
ul { list-style: none; }

/* ── Container ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ───────────────────────────────── */
.section          { padding: 100px 24px; }
.section-mid      { background: var(--navy-mid); }
.section-navy     { background: var(--navy); }
.section-inner    { max-width: var(--max-w); margin: 0 auto; }
.section-header   { margin-bottom: 56px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin-top: 16px; }
.section-header[style*="center"] p { margin-left: auto; margin-right: auto; }

/* ── Section Label ──────────────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  display: inline-block;
  margin-bottom: 12px;
}

/* ── Hero eyebrow — pill badge treatment ─────── */
.hero .section-label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  opacity: 0.9;
  margin-bottom: 24px;
}

/* ── Typography ─────────────────────────────── */
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(1rem,   2vw, 1.2rem); font-weight: 700; line-height: 1.35; }
h4 { font-size: 0.95rem; font-weight: 600; }
p  { font-size: 0.95rem; line-height: 1.75; }

/* ── Buttons ────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #78ffd3, #47c9a0);
  color: var(--navy); /* #241631 */
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  min-height: 50px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(120,255,211,0.5), 0 0 0 1px rgba(120,255,211,0.2);
}

.btn-outline {
  border: 1.5px solid var(--mint);
  color: var(--mint);
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 50px;
}
.btn-outline:hover {
  background: rgba(120,255,211,0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(120,255,211,0.2);
}

/* ── Cards ──────────────────────────────────── */
.card {
  background: var(--navy-card);
  border: 1px solid rgba(120,255,211,0.12);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: rgba(120,255,211,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(120,255,211,0.1), 0 0 0 1px rgba(120,255,211,0.1);
}
.card-no-hover:hover {
  border-color: rgba(120,255,211,0.12);
  transform: none;
  box-shadow: none;
  cursor: default;
}

/* ── Icon Box ───────────────────────────────── */
.icon-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(120,255,211,0.18), rgba(167,139,250,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* ── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Grids ──────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Tags ───────────────────────────────────── */
.tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(120,255,211,0.12), rgba(167,139,250,0.07));
  border: 1px solid rgba(120,255,211,0.25);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 999px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
#nav {
  background: rgba(36,22,49,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(120,255,211,0.1);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-badge {
  background: var(--mint);
  color: var(--navy);
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--mint); }
.nav-links a.active { color: var(--mint); }

.nav-links .btn-primary,
.nav-cta {
  padding: 10px 20px;
  font-size: 0.88rem;
  min-height: 40px;
  gap: 0;
  color: var(--navy) !important;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
#mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(120,255,211,0.12);
  z-index: 999;
  padding: 16px;
  gap: 4px;
}
#mobile-menu.open { display: flex; }

#mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.2s;
  display: block;
}
#mobile-menu a:hover, #mobile-menu a.active {
  background: rgba(120,255,211,0.08);
  color: var(--mint);
}
#mobile-menu .btn-primary {
  margin-top: 8px;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.95rem;
  border-radius: 999px;
  width: 100%;
  color: var(--navy);
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  padding: 110px 24px 96px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 75% -5%, rgba(120,255,211,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 5% 95%, rgba(167,139,250,0.1) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-breathe 10s ease-in-out infinite;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.hero h1     { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 20px; }
.hero-sub    { font-size: 1.05rem; color: var(--text-muted); max-width: 760px; line-height: 1.75; margin-bottom: 40px; }
.hero-ctas   { display: flex; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   MINT BAND
   ═══════════════════════════════════════════════ */
.mint-band {
  background: linear-gradient(135deg, #78ffd3 0%, #47c9a0 100%);
  padding: 72px 24px;
  text-align: center;
  color: var(--navy); /* #241631 */
}
.mint-band .section-label { color: rgba(36,22,49,0.5); }
.mint-band h2 { color: var(--navy); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.mint-band p  { color: rgba(36,22,49,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto 36px; }

.mint-band-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.mint-stat { display: flex; align-items: baseline; gap: 8px; padding: 0 24px; white-space: nowrap; }
.mint-stat-num   { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--navy); display: inline; line-height: 1; }
.mint-stat-label { font-size: 0.85rem; color: rgba(36,22,49,0.6); font-weight: 600; display: inline; }
.mint-stat-divider { color: rgba(36,22,49,0.2); font-size: 2rem; line-height: 1; }

/* ═══════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════ */
.pricing-card {
  background: var(--navy-card);
  border: 1px solid rgba(120,255,211,0.12);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover {
  border-color: rgba(120,255,211,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(120,255,211,0.1);
}
.pricing-card.featured {
  border-color: var(--mint);
  border-width: 2px;
  background: #2f1c42;
  box-shadow: 0 0 40px rgba(120,255,211,0.12), 0 20px 60px rgba(0,0,0,0.2);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-name   { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mint); margin-bottom: 8px; }
.pricing-desc   { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.pricing-price  { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); line-height: 1; }
.pricing-price sup { font-size: 0.45em; vertical-align: super; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin: 6px 0 28px; }
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(120,255,211,0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%2378ffd3' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") center/11px no-repeat;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   ACCORDION (FAQ)
   ═══════════════════════════════════════════════ */
.accordion-item {
  border: 1px solid rgba(120,255,211,0.12);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: var(--navy-card);
  color: white;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.accordion-header:hover { background: rgba(120,255,211,0.04); }
.accordion-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(120,255,211,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  color: var(--mint);
  font-size: 1.1rem;
  line-height: 1;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: rgba(120,255,211,0.2); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--navy-card); }
.accordion-body p { padding: 4px 24px 22px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ═══════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════ */
.form-group    { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label    { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); }

.form-input,
.form-select,
.form-textarea {
  background: var(--navy-card);
  border: 1px solid rgba(120,255,211,0.15);
  border-radius: 10px;
  color: white;
  width: 100%;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.28); }
.form-select option { background: #2f1c42; color: white; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(120,255,211,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.65; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--mint);
  cursor: pointer;
}

.form-success {
  display: none;
  background: rgba(120,255,211,0.08);
  border: 1px solid rgba(120,255,211,0.3);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.form-success h3 { color: var(--mint); margin-bottom: 10px; }
.form-success p  { color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonial-card { background: var(--navy-card); border: 1px solid rgba(120,255,211,0.12); border-radius: 16px; padding: 32px; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: #FFB547; font-size: 1rem; }
.testimonial-quote { font-size: 0.92rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.88rem; color: var(--navy);
  flex-shrink: 0;
}
.testimonial-name    { font-size: 0.9rem; font-weight: 700; }
.testimonial-company { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
#footer {
  background: var(--navy);
  position: relative;
  padding: 80px 24px 40px;
}
#footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(120,255,211,0.55) 28%, rgba(167,139,250,0.5) 72%, transparent 100%);
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 290px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--mint); }
.footer-contact-email {
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.footer-contact-email:hover { opacity: 0.8; }
.footer-contact p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.footer-bottom p  { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--mint); }

/* ═══════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════ */
.step-num {
  width: 48px; height: 48px;
  background: var(--mint);
  color: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  flex-shrink: 0;
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   PLATFORM / INTEGRATION TILES
   ═══════════════════════════════════════════════ */
.platform-tile {
  background: var(--navy-card);
  border: 1px solid rgba(120,255,211,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.platform-tile:hover {
  border-color: rgba(120,255,211,0.35);
  transform: translateY(-2px);
}
.platform-tile h3 { font-size: 1rem; margin-bottom: 8px; }
.platform-tile p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* Integration logo chip */
.int-chip {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.int-chip:hover { border-color: rgba(120,255,211,0.3); color: var(--mint); }

/* ── White section ───────────────────────────── */
.section-white { background: #ffffff; }
.section-white .section-label { color: rgba(36,22,49,0.45); }

/* ── Pale tinted section (very light theme colour) ── */
.section-pale .section-label { color: rgba(36,22,49,0.45); }

/* ── Accordions on light backgrounds ──────────── */
.section-white .accordion-item,
.section-pale .accordion-item { border-color: rgba(36,22,49,0.12); }
.section-white .accordion-header,
.section-pale .accordion-header {
  background: rgba(36,22,49,0.04);
  color: var(--navy);
}
.section-white .accordion-header:hover,
.section-pale .accordion-header:hover { background: rgba(36,22,49,0.08); }
.section-white .accordion-icon,
.section-pale .accordion-icon {
  background: rgba(36,22,49,0.08);
  color: rgba(36,22,49,0.7);
}
.section-white .accordion-item.open .accordion-icon,
.section-pale .accordion-item.open .accordion-icon { background: rgba(36,22,49,0.15); }
.section-white .accordion-body,
.section-pale .accordion-body { background: rgba(36,22,49,0.03); }
.section-white .accordion-body p,
.section-pale .accordion-body p { color: rgba(36,22,49,0.65); }

/* ── Green CTA ───────────────────────────────── */
.cta-green {
  background: linear-gradient(135deg, #78ffd3 0%, #47c9a0 100%);
  padding: 96px 24px;
  text-align: center;
  position: relative;
}
.cta-green .section-inner { max-width: 680px; }
.cta-green h2 { margin-bottom: 16px; color: var(--navy); }
.cta-green p  { color: rgba(36,22,49,0.65); font-size: 1.05rem; margin-bottom: 40px; }
.cta-green .section-label { color: rgba(36,22,49,0.5); }
.cta-green .btn-outline {
  border-color: rgba(36,22,49,0.4);
  color: var(--navy);
}
.cta-green .btn-outline:hover {
  background: rgba(36,22,49,0.08);
  box-shadow: none;
  transform: translateY(-2px);
}

/* ── Pale violet CTA ─────────────────────────── */
.cta-violet {
  background: #faf2fe;
  padding: 96px 24px;
  text-align: center;
  position: relative;
}
.cta-violet .section-inner { max-width: 680px; }
.cta-violet h2 { margin-bottom: 16px; color: var(--navy); }
.cta-violet p  { color: rgba(36,22,49,0.65); font-size: 1.05rem; margin-bottom: 40px; }
.cta-violet .section-label { color: rgba(36,22,49,0.5); }
.cta-violet .btn-outline {
  border-color: rgba(36,22,49,0.55);
  color: var(--navy);
}
.cta-violet .btn-outline:hover {
  background: rgba(36,22,49,0.08);
  box-shadow: none;
  transform: translateY(-2px);
}

/* ── Proposal / Green band ───────────────────── */
.proposal-band {
  background: linear-gradient(135deg, #78ffd3 0%, #47c9a0 100%);
  padding: 40px 24px;
}
.proposal-band .section-inner {
  max-width: 800px;
  text-align: center;
}
.proposal-band h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 10px; }
.proposal-band p  { color: rgba(36,22,49,0.7); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band {
  background: var(--navy-mid);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 120% at 50% 50%, rgba(120,255,211,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 85% 15%, rgba(167,139,250,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .section-inner { max-width: 680px; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p  { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   LEGAL PAGE LAYOUT
   ═══════════════════════════════════════════════ */
.legal-wrap {
  display: flex;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  align-items: flex-start;
}
.legal-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 88px;
}
.legal-sidebar h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.legal-sidebar a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  margin-bottom: 4px;
}
.legal-sidebar a:hover, .legal-sidebar a.active {
  background: rgba(120,255,211,0.08);
  color: var(--mint);
}
.legal-content { flex: 1; max-width: 700px; }
.legal-content h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.legal-content .legal-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 48px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--mint); margin: 48px 0 16px; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: white; margin: 28px 0 10px; }
.legal-content p  { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 8px; list-style: disc; }
.legal-content a { color: var(--mint); text-decoration: underline; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 20px; }
  .hero    { padding: 80px 20px 72px; }
  .mint-band { padding: 56px 20px; }

  /* Nav */
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner    { padding: 0 20px; }

  /* Grids */
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { gap: 8px; }

  /* CTA */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn-primary,
  .cta-band-btns .btn-outline { width: 100%; max-width: 320px; }

  /* Mint band stats */
  .mint-band-stats { flex-direction: column; gap: 28px; }
  .mint-stat-divider { display: none; }

  /* Legal */
  .legal-wrap { flex-direction: column; padding: 56px 20px; }
  .legal-sidebar { width: 100%; position: static; }

  /* Pricing */
  .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .card, .pricing-card { padding: 24px 18px; }
  #footer { padding: 56px 20px 32px; }
}

/* ── Two-column grid responsive (class + inline style) ── */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

/* ═══════════════════════════════════════════════
   MARQUEE SHOWCASE
   ═══════════════════════════════════════════════ */
.marquee-track { overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee-inner img {
  height: 180px;
  width: auto;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid rgba(120,255,211,0.1);
  object-fit: cover;
}
.marquee-track:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Work examples slider ───────────────────── */
.work-slider { overflow: hidden; }
.work-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: work-scroll 20s linear infinite;
}
.work-slide {
  width: 300px;
  height: 220px;
  border-radius: 16px;
  background: var(--navy-card);
  border: 1px solid rgba(120,255,211,0.1);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.work-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(36,22,49,0.88) 0%, transparent 100%);
}
.work-slide-label span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  display: block;
}
.work-slide-label small {
  font-size: 0.74rem;
  color: var(--mint);
}
.work-slider:hover .work-track { animation-play-state: paused; }
@keyframes work-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Hero layout with image ─────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-split-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-split-img img { width: 100%; height: auto; display: block; object-fit: contain; }

/* ── Dark CTA for light hero backgrounds ─────── */
.btn-dark {
  background: #241631;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  min-height: 50px;
}
.btn-dark:hover {
  background: #341f48;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(36,22,49,0.4);
}

/* ── Hero service cards ──────────────────────── */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hero-card {
  background: var(--navy);
  border: 1px solid rgba(120,255,211,0.18);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
  border-color: rgba(120,255,211,0.4);
}
.hero-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(120,255,211,0.18), rgba(167,139,250,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card h4 { color: white; font-size: 0.95rem; margin: 0; }
.hero-card p  { color: rgba(255,255,255,0.5); font-size: 0.82rem; line-height: 1.65; margin: 0; flex: 1; }
.hero-card-link {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
@media (max-width: 900px) {
  .hero-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-cards { grid-template-columns: 1fr; }
}

/* ── Nav logo icon ───────────────────────────── */
.nav-logo-icon {
  height: 24px;
  width: 24px;
  border-radius: 6px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-split-img { display: none; }
}

/* ── Gradient Text ───────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #78ffd3 20%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero breathing animation ────────────────── */
@keyframes hero-breathe {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1.3; }
}

/* ── Selection ──────────────────────────────── */
::selection { background: rgba(120,255,211,0.2); }

/* ── Scrollbar ──────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(120,255,211,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(120,255,211,0.5); }

/* ── Section navy subtle depth ──────────────── */
.section-navy { background: linear-gradient(180deg, var(--navy) 0%, #1d0d29 100%); }

/* ═══════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════ */
.theme-toggle {
  background: none;
  border: 1px solid rgba(120,255,211,0.25);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  padding: 0;
}
.theme-toggle:hover {
  border-color: rgba(120,255,211,0.5);
  color: var(--mint);
  background: rgba(120,255,211,0.05);
}
html.light-mode .theme-toggle {
  border-color: rgba(36,22,49,0.2);
  color: rgba(36,22,49,0.5);
}
html.light-mode .theme-toggle:hover {
  border-color: rgba(36,22,49,0.4);
  color: var(--navy);
  background: rgba(36,22,49,0.05);
}
html:not(.light-mode) .theme-toggle .icon-moon { display: none; }
html.light-mode       .theme-toggle .icon-sun  { display: none; }

/* ═══════════════════════════════════════════════
   LIGHT MODE
   ═══════════════════════════════════════════════ */
html.light-mode body {
  background: #f7f5fa;
  color: var(--navy);
  color-scheme: light;
}

/* ── Navigation ─────────────────────────────── */
html.light-mode #nav {
  background: rgba(247,245,250,0.96);
  border-bottom-color: rgba(36,22,49,0.1);
}
html.light-mode .nav-logo { color: var(--navy); }
html.light-mode .nav-links a { color: rgba(36,22,49,0.75); }
html.light-mode .nav-links a:hover { color: var(--navy); }
html.light-mode .nav-links a.active { color: var(--mint-dark); }
html.light-mode .nav-hamburger span { background: var(--navy); }
html.light-mode #mobile-menu {
  background: #f7f5fa;
  border-bottom-color: rgba(36,22,49,0.1);
}
html.light-mode #mobile-menu a { color: rgba(36,22,49,0.7); }
html.light-mode #mobile-menu a:hover,
html.light-mode #mobile-menu a.active {
  background: rgba(36,22,49,0.06);
  color: var(--navy);
}

/* ── Sections ───────────────────────────────── */
html.light-mode .section-navy { background: #f7f5fa; }
html.light-mode .section-mid  { background: #ede9f6; }

html.light-mode .section-navy .section-label,
html.light-mode .section-mid  .section-label { color: rgba(36,22,49,0.42); }
html.light-mode .section-navy h1, html.light-mode .section-navy h2,
html.light-mode .section-navy h3, html.light-mode .section-navy h4,
html.light-mode .section-mid  h1, html.light-mode .section-mid  h2,
html.light-mode .section-mid  h3, html.light-mode .section-mid  h4 { color: var(--navy); }
html.light-mode .section-navy p, html.light-mode .section-mid p,
html.light-mode .section-navy .section-header p,
html.light-mode .section-mid  .section-header p { color: rgba(36,22,49,0.65); }

/* Step numbers in light sections */
html.light-mode .section-navy .step-num,
html.light-mode .section-mid  .step-num { background: var(--navy); color: #fff; }

/* ── Cards ──────────────────────────────────── */
html.light-mode .card {
  background: #ffffff;
  border-color: rgba(36,22,49,0.1);
  box-shadow: 0 2px 12px rgba(36,22,49,0.07);
}
html.light-mode .card:hover {
  border-color: rgba(36,22,49,0.2);
  box-shadow: 0 8px 28px rgba(36,22,49,0.1);
}
html.light-mode .card h3, html.light-mode .card h4 { color: var(--navy); }
html.light-mode .card p { color: rgba(36,22,49,0.65); }

/* ── Icon Box ───────────────────────────────── */
html.light-mode .icon-box {
  background: linear-gradient(135deg, rgba(36,22,49,0.07), rgba(167,139,250,0.1));
}

/* ── Tags ───────────────────────────────────── */
html.light-mode .tag {
  background: rgba(36,22,49,0.06);
  border-color: rgba(36,22,49,0.15);
  color: var(--navy);
}

/* ── Integration chips ──────────────────────── */
html.light-mode .int-chip {
  background: #ffffff;
  border-color: rgba(36,22,49,0.1);
  color: rgba(36,22,49,0.7);
}
html.light-mode .int-chip:hover { border-color: rgba(36,22,49,0.3); color: var(--navy); }

/* ── Platform tiles ─────────────────────────── */
html.light-mode .platform-tile {
  background: #ffffff;
  border-color: rgba(36,22,49,0.1);
}
html.light-mode .platform-tile:hover { border-color: rgba(36,22,49,0.3); }
html.light-mode .platform-tile p { color: rgba(36,22,49,0.6); }

/* ── Pricing cards ──────────────────────────── */
html.light-mode .pricing-card {
  background: #ffffff;
  border-color: rgba(36,22,49,0.1);
}
html.light-mode .pricing-card:hover { border-color: rgba(36,22,49,0.2); }
html.light-mode .pricing-name   { color: var(--mint-dark); }
html.light-mode .pricing-desc,
html.light-mode .pricing-period { color: rgba(36,22,49,0.55); }
html.light-mode .pricing-price  { color: var(--navy); }
html.light-mode .pricing-price sup { color: var(--navy); }
html.light-mode .pricing-divider { border-top-color: rgba(36,22,49,0.1); }
html.light-mode .pricing-features li { color: rgba(36,22,49,0.75); }
html.light-mode .pricing-features li::before {
  background-color: rgba(36,22,49,0.07);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23241631' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
}
html.light-mode .pricing-card .btn-outline {
  border-color: rgba(36,22,49,0.25);
  color: var(--navy);
}
html.light-mode .pricing-card .btn-outline:hover { background: var(--navy); color: #fff; }
/* Featured card keeps its dark treatment */
html.light-mode .pricing-card.featured { background: var(--navy); border-color: var(--navy); }

/* ── Accordion ──────────────────────────────── */
html.light-mode .accordion-item { border-color: rgba(36,22,49,0.12); }
html.light-mode .accordion-header { background: #ffffff; color: var(--navy); }
html.light-mode .accordion-header:hover { background: rgba(36,22,49,0.03); }
html.light-mode .accordion-icon { background: rgba(36,22,49,0.08); color: rgba(36,22,49,0.7); }
html.light-mode .accordion-item.open .accordion-icon { background: rgba(36,22,49,0.15); }
html.light-mode .accordion-body { background: #ffffff; }
html.light-mode .accordion-body p { color: rgba(36,22,49,0.65); }

/* ── Forms ──────────────────────────────────── */
html.light-mode .form-label { color: rgba(36,22,49,0.8); }
html.light-mode .form-input,
html.light-mode .form-select,
html.light-mode .form-textarea {
  background: #ffffff;
  border-color: rgba(36,22,49,0.2);
  color: var(--navy);
}
html.light-mode .form-input::placeholder,
html.light-mode .form-textarea::placeholder { color: rgba(36,22,49,0.3); }
html.light-mode .form-checkbox { color: rgba(36,22,49,0.6); }

/* ── Testimonials ───────────────────────────── */
html.light-mode .testimonial-card { background: #ffffff; border-color: rgba(36,22,49,0.1); }
html.light-mode .testimonial-quote { color: rgba(36,22,49,0.75); }
html.light-mode .testimonial-name  { color: var(--navy); }
html.light-mode .testimonial-company { color: rgba(36,22,49,0.5); }

/* ── Footer ─────────────────────────────────── */
html.light-mode #footer { background: #ede9f6; border-top-color: rgba(36,22,49,0.08); }
html.light-mode .footer-col h4 { color: rgba(36,22,49,0.4); }
html.light-mode .footer-col a  { color: rgba(36,22,49,0.6); }
html.light-mode .footer-col a:hover { color: var(--navy); }
html.light-mode .footer-contact-email { color: var(--mint-dark); }
html.light-mode .footer-contact p { color: rgba(36,22,49,0.55); }
html.light-mode .footer-bottom { border-top-color: rgba(36,22,49,0.1); }
html.light-mode .footer-bottom p { color: rgba(36,22,49,0.35); }
html.light-mode .footer-legal-links a { color: rgba(36,22,49,0.4); }
html.light-mode .footer-legal-links a:hover { color: var(--navy); }

/* ── Legal ──────────────────────────────────── */
html.light-mode .legal-content h3 { color: var(--navy); }
html.light-mode .legal-content p  { color: rgba(36,22,49,0.7); }
html.light-mode .legal-content ul li { color: rgba(36,22,49,0.65); }
html.light-mode .legal-sidebar h4 { color: rgba(36,22,49,0.35); }
html.light-mode .legal-sidebar a  { color: rgba(36,22,49,0.5); }
html.light-mode .legal-sidebar a:hover,
html.light-mode .legal-sidebar a.active { background: rgba(36,22,49,0.06); color: var(--navy); }

/* ── Section nav ────────────────────────────── */
html.light-mode #section-nav-line { background: rgba(36,22,49,0.25) !important; }
html.light-mode #section-nav-text { color: rgba(36,22,49,0.5)  !important; }

/* ── Scrollbar ──────────────────────────────── */
html.light-mode ::-webkit-scrollbar-track { background: #f7f5fa; }
html.light-mode ::-webkit-scrollbar-thumb { background: rgba(36,22,49,0.2); }
html.light-mode ::-webkit-scrollbar-thumb:hover { background: rgba(36,22,49,0.35); }