/* ============================================================
   Life Between The Systems — everything.css
   Page-specific styles for /everything
   Base styles inherited from styles.css
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.ep-hero {
  background: var(--off-white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.ep-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(244,124,124,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 70%, rgba(244,201,107,0.07) 0%, transparent 45%);
  pointer-events: none;
}

.ep-hero-inner { max-width: 660px; position: relative; z-index: 2; }

.ep-hero-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}

.ep-hero-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.78;
  max-width: 580px;
  border-left: 3px solid var(--coral);
  padding-left: 20px;
}

/* ── Section wrappers ─────────────────────────────────────── */
.ep-section {
  padding: 88px 0;
}

.ep-section-alt {
  background: #FDF0F6;
}

.ep-section-green {
  background: #F0F9F2;
}

.ep-subhead-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--dark);
  opacity: 0.68;
  margin-bottom: 48px;
  max-width: 560px;
}

/* ── Price tag ribbon corner ──────────────────────────────── */
/*
   Each .addon-card has a CSS ribbon at top-right.
   We use a ::after pseudo with a rotated rectangle clipped.
*/
.addon-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

/* Alternating slight rotation for hand-placed feel */
.addon-card:nth-child(even) { transform: rotate(-0.5deg); }
.addon-card:nth-child(odd)  { transform: rotate(0.4deg); }

.addon-card:hover {
  transform: rotate(0deg) translateY(-6px) !important;
  box-shadow: 0 18px 48px rgba(0,0,0,0.11);
}

/* Price tag ribbon (top-right corner fold) */
.addon-card::after {
  content: attr(data-price);
  position: absolute;
  top: 18px;
  right: -28px;
  width: 110px;
  padding: 5px 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transform: rotate(35deg);
  transform-origin: center;
  letter-spacing: 0.5px;
  z-index: 5;
}

/* Ribbon BG via a clipped div — we use box-shadow trick */
.addon-card::before {
  content: '';
  position: absolute;
  top: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  z-index: 4;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

/* Ribbon colors per card accent */
.ribbon-pink::before   { background: var(--hot-pink); }
.ribbon-pink::after    { background: var(--hot-pink); }

.ribbon-green::before  { background: var(--green); }
.ribbon-green::after   { background: var(--green); }

.ribbon-coral::before  { background: var(--coral); }
.ribbon-coral::after   { background: var(--coral); }

.ribbon-yellow::before { background: #c49a00; }
.ribbon-yellow::after  { background: #c49a00; color: var(--dark); }

.ribbon-softpink::before { background: var(--soft-pink); }
.ribbon-softpink::after  { background: var(--soft-pink); color: var(--dark); }

.ribbon-split::before  { background: linear-gradient(135deg, var(--hot-pink), var(--green)); }
.ribbon-split::after   { background: linear-gradient(135deg, var(--hot-pink), var(--green)); }

/* Addon card icon area */
.addon-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.addon-card:hover .addon-icon { transform: scale(1.1) rotate(-5deg); }

.icon-bg-pink     { background: rgba(198,93,143,0.12); }
.icon-bg-green    { background: rgba(105,181,120,0.12); }
.icon-bg-coral    { background: rgba(244,124,124,0.12); }
.icon-bg-yellow   { background: rgba(244,201,107,0.2); }
.icon-bg-softpink { background: rgba(244,184,184,0.2); }
.icon-bg-split    { background: linear-gradient(135deg, rgba(198,93,143,0.1), rgba(105,181,120,0.1)); }

.addon-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.addon-price-note {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.5;
  font-family: var(--font-body);
}

.addon-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.addon-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark);
  opacity: 0.72;
  margin-bottom: 22px;
}

/* Grid */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ── Divider bridge ───────────────────────────────────────── */
.ep-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 88px;
  padding: 0 32px;
}

.ep-divider-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed rgba(42,31,45,0.15);
}

.ep-divider-badge {
  background: var(--off-white);
  border: 2px solid rgba(42,31,45,0.15);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--dark);
  opacity: 0.65;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── VA / Strategist Container ────────────────────────────── */
.va-section {
  background: #F0F9F2;
  padding: 88px 0;
}

.va-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 12px;
}

.va-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.78;
  max-width: 640px;
  margin-bottom: 20px;
}

/* Continuation note */
.va-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(244,201,107,0.18);
  border: 1.5px solid rgba(244,201,107,0.5);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 40px;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
}
.va-note-icon { flex-shrink: 0; margin-top: 2px; }

/* Tag cloud for VA services */
.va-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.va-tag {
  font-size: 13px;
  font-weight: 400;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1.5px solid;
  background: transparent;
  transition: all 0.2s ease;
  cursor: default;
}

/* Organic variety — different border colors cycling through brand */
.va-tag:nth-child(4n+1) { border-color: rgba(198,93,143,0.35); color: var(--hot-pink); }
.va-tag:nth-child(4n+2) { border-color: rgba(105,181,120,0.35); color: #3a8a4a; }
.va-tag:nth-child(4n+3) { border-color: rgba(244,124,124,0.4);  color: #c45050; }
.va-tag:nth-child(4n)   { border-color: rgba(42,31,45,0.2);     color: var(--dark); opacity:0.7; }

/* Random sizing for organic feel */
.va-tag:nth-child(3n)   { font-size: 12px; }
.va-tag:nth-child(5n)   { font-size: 14px; font-weight: 500; }

.va-tag:hover {
  transform: translateY(-2px);
  background: rgba(198,93,143,0.06);
  border-color: var(--hot-pink);
  color: var(--hot-pink);
  opacity: 1;
}

/* Receipt / Invoice card */
.receipt-card {
  background: #fff;
  border: 2px dashed rgba(244,124,124,0.45);
  border-radius: 16px;
  padding: 36px 36px 32px;
  max-width: 480px;
  transform: rotate(-1deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  position: relative;
}
.receipt-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.11);
}

/* Receipt hole punch circles at top */
.receipt-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #F0F9F2;
  border: 2px dashed rgba(244,124,124,0.45);
}

.receipt-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.35;
  margin-bottom: 4px;
}

.receipt-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(42,31,45,0.12);
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(42,31,45,0.07);
  font-size: 14px;
  color: var(--dark);
  opacity: 0.75;
}
.receipt-line:last-of-type { border-bottom: none; }

.receipt-line .label { font-weight: 400; }
.receipt-line .value { font-weight: 500; opacity: 1; }

/* The price line uses monospace */
.receipt-price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 12px;
  border-top: 2px solid rgba(42,31,45,0.1);
  margin-top: 8px;
}
.receipt-price-line .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.5;
}
.receipt-price-line .value {
  font-family: monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -1px;
}

.receipt-note {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 12px;
  color: var(--dark);
  opacity: 0.5;
  margin-top: 14px;
  text-align: center;
  line-height: 1.6;
}

/* ── Path Visual ──────────────────────────────────────────── */
.ep-path-section {
  background: var(--off-white);
  padding: 88px 0;
}

.ep-path-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--dark);
  opacity: 0.55;
  text-align: center;
  margin-bottom: 52px;
}

.ep-path-wrap {
  position: relative;
  overflow-x: auto;
  padding-bottom: 16px;
}

.ep-path {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 700px;
  gap: 0;
  padding: 24px 0 40px;
  position: relative;
}

/* Connector line */
.ep-path-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 22px;
  gap: 6px;
}

.ep-path-dash {
  width: 48px;
  height: 2px;
  border-top: 2px dashed rgba(42,31,45,0.18);
}

/* Add-on branch connector */
.ep-path-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.ep-path-branch-line {
  width: 2px;
  height: 28px;
  border-left: 2px dashed rgba(198,93,143,0.3);
}

.ep-path-branch-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--hot-pink);
  opacity: 0.7;
  white-space: nowrap;
  background: rgba(198,93,143,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

/* Path stop */
.ep-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.ep-stop-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  cursor: default;
}
.ep-stop-dot:hover { transform: scale(1.15) rotate(-5deg); }

.dot-quiz       { background: rgba(244,201,107,0.2); border: 2px solid var(--yellow); }
.dot-map        { background: rgba(198,93,143,0.12); border: 2px solid var(--hot-pink); }
.dot-pass       { background: rgba(105,181,120,0.12); border: 2px solid var(--green); }
.dot-playground { background: rgba(244,124,124,0.12); border: 2px solid var(--coral); }
.dot-container  { background: rgba(42,31,45,0.06); border: 2px solid var(--dark); }

.ep-stop-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--dark);
  text-align: center;
  max-width: 80px;
}
.ep-stop-sub {
  font-size: 11px;
  color: var(--dark);
  opacity: 0.5;
  text-align: center;
  max-width: 80px;
  margin-top: -6px;
}

/* Add-on note below path */
.ep-path-addons-note {
  text-align: center;
  margin-top: 28px;
}

.ep-path-addons-note p {
  font-size: 13px;
  opacity: 0.55;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.ep-path-addons-note .addon-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.addon-mini-pill {
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(198,93,143,0.3);
  color: var(--hot-pink);
  background: rgba(198,93,143,0.05);
  transition: all 0.2s;
}
.addon-mini-pill:hover {
  background: var(--hot-pink);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Bottom CTA ───────────────────────────────────────────── */
.ep-cta {
  background: var(--yellow);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ep-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(198,93,143,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.ep-cta-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}

.ep-cta-sub {
  font-size: 16px;
  color: var(--dark);
  opacity: 0.7;
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

/* ── Stamp-style button ───────────────────────────────────── */
.btn-stamp {
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 6px;
  border: 2px solid var(--dark);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-stamp:hover {
  background: transparent;
  color: var(--dark);
  transform: translateY(-2px) rotate(-1deg);
}

/* Coral ghost mixed-radius */
.btn-ghost-coral {
  background: transparent;
  color: var(--coral);
  border: 2px dashed var(--coral);
  border-radius: 16px 4px 16px 4px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost-coral:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}

/* Soft pink pill */
.btn-softpink {
  background: var(--soft-pink);
  color: var(--dark);
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-softpink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,184,184,0.5);
}

/* Coral pill */
.btn-coral {
  background: var(--coral);
  color: #fff;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,124,124,0.4);
}

/* Ghost dashed mixed-radius — automation card */
.btn-ghost-mixed {
  background: transparent;
  color: var(--hot-pink);
  border: 2px dashed var(--hot-pink);
  border-radius: 4px 100px 4px 100px;
  transition: all 0.2s;
}
.btn-ghost-mixed:hover {
  background: var(--hot-pink);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .addon-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .addon-grid { grid-template-columns: 1fr; }
  .addon-card:nth-child(even),
  .addon-card:nth-child(odd)  { transform: none; }
  .addon-card:hover           { transform: translateY(-4px) !important; }
  .receipt-card               { transform: none; max-width: 100%; }
  .receipt-card:hover         { transform: translateY(-4px); }
  .ep-path { min-width: 600px; }
}
