/* ============================================================
   Puldarveno — Stylesheet
   ============================================================ */

:root {
  --purple: #6c4fd6;
  --purple-dark: #4e35a8;
  --purple-darker: #2a1f4e;
  --purple-light: #e8e1ff;
  --purple-lighter: #f5f0ff;
  --purple-border: #ede8ff;
  --text-body: #4a3d6e;
  --text-muted: #7b6ea0;
  --green: #3cb87e;
  --green-dark: #2a8a5e;
  --white: #ffffff;
  --canvas: #fbf9ff;

  --font: 'Outfit', sans-serif;
  --container-w: 1200px;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 4px 16px rgba(108, 79, 214, 0.08);
  --shadow-med: 0 12px 32px rgba(108, 79, 214, 0.14);
  --shadow-lg: 0 20px 56px rgba(108, 79, 214, 0.18);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-body);
  background: var(--canvas);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
address { font-style: normal; }
input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 88px 0; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--purple-darker);
  line-height: 1.2;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 56px; }

/* ---------- Reveal animation ---------- */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  cursor: pointer;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: var(--shadow-med); }

.btn-secondary {
  background: var(--purple-light);
  color: var(--purple);
}
.btn-secondary:hover { background: #ddd5f8; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--purple-darker);
  border: 2px solid var(--purple-border);
}
.btn-ghost:hover { background: var(--purple-lighter); border-color: var(--purple-light); }

.btn-full { width: 100%; }

/* ============================================================
   NAV
   ============================================================ */
.nav-frame {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--purple-border);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo { width: 34px; height: 34px; }
.nav-brand-text {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--purple-darker);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.nav-link:hover { background: var(--purple-lighter); color: var(--purple); }
.nav-link.active { background: var(--purple-lighter); color: var(--purple); font-weight: 600; }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--purple-dark); }
.nav-cta.active { background: var(--purple-dark); color: var(--white) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple-darker);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  margin: 0 auto;
}

/* ---------- Mobile drawer ---------- */
.stage-curtain {
  position: fixed;
  inset: 0;
  background: rgba(42, 31, 78, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  z-index: 600;
}
.stage-curtain.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 84vw);
  background: var(--white);
  z-index: 700;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(108, 79, 214, 0.2);
}
.drawer.is-open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--purple-border);
}
.drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-darker);
  font-size: 1.1rem;
  transition: background 0.2s var(--ease);
}
.drawer-close:hover { background: var(--purple-lighter); }

.drawer-links { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.drawer-link {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-body);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.drawer-link:hover { background: var(--purple-lighter); color: var(--purple); }
.drawer-cta {
  background: var(--purple);
  color: var(--white);
  text-align: center;
  margin-top: 8px;
}
.drawer-cta:hover { background: var(--purple-dark); color: var(--white); }

/* ============================================================
   STAGE (HERO)
   ============================================================ */
.stage {
  position: relative;
  padding: 64px 24px 40px;
  overflow: hidden;
}

.stage-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(108, 79, 214, 0.14), transparent 55%),
    radial-gradient(ellipse at 85% 25%, rgba(60, 184, 126, 0.1), transparent 50%),
    var(--canvas);
  z-index: -1;
}

.stage-content {
  max-width: var(--container-w);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 40px;
}

.stage-badge {
  position: absolute;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-darker);
  box-shadow: var(--shadow-med);
  z-index: 2;
}
.stage-badge i { color: var(--purple); }

@media (min-width: 1024px) {
  .stage-badge { display: flex; }
  .stage-badge--1 { top: 6%; left: 2%; animation: floatY 6s ease-in-out infinite; }
  .stage-badge--2 { top: 20%; right: 0%; animation: floatY 7s ease-in-out infinite 0.5s; }
  .stage-badge--3 { bottom: 12%; left: -2%; animation: floatY 6.5s ease-in-out infinite 1s; }
  .stage-badge--4 { bottom: 0%; right: 4%; animation: floatY 7.5s ease-in-out infinite 1.5s; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stage-text { text-align: center; max-width: 760px; margin: 0 auto; }
.stage-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.stage-heading {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--purple-darker);
  margin-bottom: 22px;
}
.stage-heading-accent { color: var(--purple); }
.stage-subheading {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 32px;
}
.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.stage-visual { display: flex; justify-content: center; }
.stage-img-wrap {
  max-width: 780px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stage-img { width: 100%; height: auto; }

/* ---------- Intro band ---------- */
.intro-band {
  background: var(--purple-lighter);
  padding: 32px 0;
}
.intro-band-text {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--purple-darker);
  max-width: 780px;
  margin: 0 auto;
}

/* ============================================================
   GALLERY / CARDS
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--purple-border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.gallery-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }

.gallery-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px;
}
.gallery-card--featured .card-img {
  grid-row: 1 / 4;
  grid-column: 2;
  border-radius: var(--radius-sm);
  height: 100%;
  object-fit: cover;
  max-height: 260px;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--purple-lighter);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-darker);
  margin-bottom: 10px;
}
.card-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  flex-grow: 1;
}
.card-img {
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--purple);
  font-size: 0.92rem;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
.card-link:hover { gap: 12px; color: var(--purple-dark); }
.card-link i { font-size: 0.8rem; transition: transform 0.2s var(--ease); }

/* ============================================================
   SPOTLIGHT
   ============================================================ */
.spotlight { background: var(--purple-darker); color: var(--white); }
.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.spotlight .section-eyebrow { color: #b9a6ff; }
.spotlight .section-title { color: var(--white); }
.spotlight-body {
  color: #d8ccff;
  font-size: 1rem;
  margin-bottom: 18px;
}
.spotlight-visual img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 48px;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--purple-border);
  font-size: 0.98rem;
}
.checklist-item:last-child { border-bottom: none; }
.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   SHELF
   ============================================================ */
.shelf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.shelf-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--purple-border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.shelf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-med); }
.shelf-card-top { height: 170px; overflow: hidden; }
.shelf-card-img { width: 100%; height: 100%; object-fit: cover; }
.shelf-card-body { padding: 26px; display: flex; flex-direction: column; flex-grow: 1; }
.shelf-card-title { font-size: 1.1rem; font-weight: 700; color: var(--purple-darker); margin-bottom: 10px; }
.shelf-card-text { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; flex-grow: 1; }

.shelf-card--accent {
  background: var(--purple);
  color: var(--white);
  justify-content: center;
}
.shelf-card--accent .shelf-card-title,
.shelf-card--accent .shelf-card-text { color: var(--white); }
.shelf-card--accent .shelf-card-text { opacity: 0.88; }
.shelf-card--accent .card-link { color: var(--white); }
.shelf-card--accent .card-link:hover { color: var(--purple-lighter); }

/* ============================================================
   FOR WHO
   ============================================================ */
.for-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.for-who-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.for-who-body { color: var(--text-muted); margin-bottom: 16px; }
.for-who-text .section-title { margin-bottom: 18px; }

/* ============================================================
   TOPICS (pills)
   ============================================================ */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.topic-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-pill);
  padding: 16px 22px;
  font-weight: 600;
  color: var(--purple-darker);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.topic-pill:hover { background: var(--purple-lighter); border-color: var(--purple-light); transform: translateY(-3px); }
.topic-pill i { color: var(--purple); font-size: 1.05rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-frame {
  background: var(--purple-darker);
  color: #cabfea;
  padding: 64px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo { width: 40px; height: 40px; margin-bottom: 14px; }
.footer-tagline { font-size: 0.92rem; margin-bottom: 8px; line-height: 1.6; }
.footer-disclaimer { font-size: 0.85rem; color: #9683c4; font-style: italic; }

.footer-nav-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a { font-size: 0.9rem; transition: color 0.2s var(--ease); }
.footer-nav-list a:hover { color: var(--white); }

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-address i { color: #9683c4; margin-top: 3px; flex-shrink: 0; }
.footer-address a { transition: color 0.2s var(--ease); }
.footer-address a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #9683c4;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero { padding-top: 56px; padding-bottom: 24px; }
.page-hero-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.page-hero-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  font-weight: 800;
  color: var(--purple-darker);
  margin-bottom: 18px;
}
.page-hero-sub { color: var(--text-muted); font-size: 1.05rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.contact-form-title { font-size: 1.4rem; font-weight: 700; color: var(--purple-darker); margin-bottom: 24px; }

.form-accordion {
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--purple-lighter);
  text-align: left;
}
.accordion-num {
  font-weight: 700;
  color: var(--purple);
  font-size: 0.85rem;
  background: var(--white);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion-label { flex-grow: 1; font-weight: 600; color: var(--purple-darker); }
.accordion-arrow { color: var(--purple); transition: transform 0.25s var(--ease); }
.accordion-trigger[aria-expanded="false"] .accordion-arrow { transform: rotate(-90deg); }

.accordion-body {
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 600px;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease), opacity 0.3s var(--ease);
  opacity: 1;
}
.accordion-body--closed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.88rem; font-weight: 600; color: var(--purple-darker); }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  border: 1.5px solid var(--purple-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--canvas);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(108, 79, 214, 0.14);
}
.form-field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-field--checkbox input { margin-top: 4px; accent-color: var(--purple); flex-shrink: 0; }
.form-field--checkbox label { font-weight: 400; font-size: 0.88rem; color: var(--text-muted); }
.form-field--checkbox a { color: var(--purple); font-weight: 600; }

.form-error {
  color: #d64545;
  font-size: 0.88rem;
  font-weight: 600;
  min-height: 1.2em;
  margin-bottom: 8px;
}

.contact-info-title { font-size: 1.3rem; font-weight: 700; color: var(--purple-darker); margin-bottom: 22px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--purple-lighter);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h3 { font-size: 0.98rem; font-weight: 700; color: var(--purple-darker); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card address { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-card a:hover { color: var(--purple); }

.availability-section {
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-sm);
  padding: 22px;
}
.availability-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-darker);
  margin-bottom: 14px;
}
.availability-title i { color: var(--purple); }
.availability-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.availability-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--purple-border);
}
.availability-row:last-child { border-bottom: none; }
.avail-day { color: var(--text-body); font-weight: 500; }
.avail-time { color: var(--purple); font-weight: 600; }
.availability-row--off .avail-time { color: var(--text-muted); }
.availability-note { font-size: 0.82rem; color: var(--text-muted); }

.map-section { padding-top: 0; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  line-height: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid, .approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p, .approach-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-text .section-title, .approach-text .section-title { margin-bottom: 18px; }
.about-img, .approach-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.about-philosophy { background: var(--purple-lighter); }
.philosophy-wrap { text-align: center; }
.philosophy-wrap > .section-title { margin-bottom: 40px; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--purple-border);
}
.philosophy-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fde8e8;
  color: #d64545;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.philosophy-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--purple-darker); margin-bottom: 10px; }
.philosophy-card p { font-size: 0.9rem; color: var(--text-muted); }

.cta-card {
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
}
.cta-card-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-bottom: 14px; }
.cta-card-body { color: #e5dcff; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-card .btn-primary { background: var(--white); color: var(--purple); }
.cta-card .btn-primary:hover { background: var(--purple-lighter); }

/* ============================================================
   COMPARE PAGE
   ============================================================ */
.compare-section { border-top: 1px solid var(--purple-border); }
.compare-section--alt { background: var(--purple-lighter); }
.compare-header { text-align: center; max-width: 680px; margin: 0 auto 44px; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 32px;
}
.compare-grid--wide { grid-template-columns: repeat(4, 1fr); }

.compare-card {
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.compare-card > p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 12px; }
.compare-card--highlight {
  background: var(--purple);
  border-color: var(--purple);
}
.compare-card--highlight .compare-card-label { color: #e5dcff; }
.compare-card--highlight > p { color: #f1ebff; }

.compare-card-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-lighter);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.compare-card--highlight .compare-card-label { background: rgba(255,255,255,0.15); }

.compare-card-title { font-size: 1.15rem; font-weight: 700; color: var(--purple-darker); margin-bottom: 12px; }
.compare-card > p:last-of-type { margin-bottom: 18px; }

.compare-pros-cons { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.compare-pros h4, .compare-cons h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--purple-darker);
  margin-bottom: 10px;
}
.compare-pros h4 i { color: var(--green); }
.compare-cons h4 i { color: #d64545; }
.compare-pros ul, .compare-cons ul { display: flex; flex-direction: column; gap: 8px; }
.compare-pros li, .compare-cons li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.compare-pros li::before, .compare-cons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
}

.compare-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--purple-lighter);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--purple-darker);
}
.compare-note i { color: var(--purple); margin-top: 2px; flex-shrink: 0; }

.compare-verdict {
  background: var(--purple-darker);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.verdict-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.compare-verdict p { color: #d8ccff; font-size: 0.94rem; }

/* ============================================================
   TOPIC PAGE (cuprins-pe-subiecte)
   ============================================================ */
.topic-section { border-top: 1px solid var(--purple-border); }
.topic-section--alt { background: var(--purple-lighter); }

.topic-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}
.topic-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--purple);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.topic-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.topic-body--reversed { grid-template-columns: 1fr 1.4fr; }
.topic-body--reversed .topic-visual { order: -1; }

.topic-text h3 { font-size: 1.15rem; font-weight: 700; color: var(--purple-darker); margin: 24px 0 10px; }
.topic-text h3:first-child { margin-top: 0; }
.topic-text p { color: var(--text-muted); margin-bottom: 4px; }

.topic-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-med);
  position: sticky;
  top: 96px;
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.thanks-card {
  background: var(--white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-med);
}
.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e4f7ee;
  color: var(--green);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.thanks-title { font-size: 1.6rem; font-weight: 700; color: var(--purple-darker); margin-bottom: 14px; }
.thanks-body { color: var(--text-muted); margin-bottom: 20px; }
.thanks-countdown { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.thanks-countdown span { color: var(--purple); font-weight: 700; }

/* ============================================================
   LEGAL PAGES (privacy / terms / cookies)
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-darker);
  margin: 32px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content a { color: var(--purple); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .spotlight-inner,
  .for-who-inner,
  .about-grid,
  .approach-inner,
  .topic-body,
  .topic-body--reversed {
    grid-template-columns: 1fr;
  }
  .topic-body--reversed .topic-visual { order: 0; }
  .topic-img { position: static; }
  .spotlight-visual, .for-who-visual, .about-visual, .approach-visual { order: -1; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .gallery-card--featured .card-img {
    grid-row: auto;
    grid-column: auto;
    max-height: 200px;
  }
  .shelf-row { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-grid--wide { grid-template-columns: 1fr 1fr; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section-pad { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  .nav-inner { padding: 14px 18px; }
  .nav-brand-text { font-size: 1.02rem; }

  .stage { padding: 40px 18px 24px; }
  .stage-actions { flex-direction: column; align-items: stretch; }
  .stage-actions .btn-primary, .stage-actions .btn-ghost { width: 100%; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--featured { grid-column: span 1; }

  .philosophy-grid { grid-template-columns: 1fr; }
  .topics-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: left; }

  .cta-card { padding: 36px 24px; }

  .contact-form-wrap { padding: 24px; }

  .thanks-card { padding: 40px 26px; }

  .compare-grid--wide { grid-template-columns: 1fr; }
}
