*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent:     #f2abfc;
  --accent-dim: #e08ff0;
  --bg:         #ffffff;
  --bg-alt:     #f5fff9;
  --bg-dark:    #1a1a2e;
  --border:     #e8e8e8;
  --text:       #111111;
  --text-muted: #666666;
  --nav-h:      64px;
  --radius:     14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--bg); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-size: 1.4rem; font-weight: 700; color: #fff; letter-spacing: .04em;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links li { display: flex; align-items: center; }
.nav-links a {
  color: #ddd; text-decoration: none; font-size: .95rem;
  line-height: 1; transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: #fff;
  transition: transform .3s, opacity .3s;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(0,0,0,.92); padding: 1rem 0;
  }
  .nav-links a { display: block; padding: .75rem 2rem; }
  nav.open .nav-links { display: flex; }
}

/* ── HERO ── */
.hero-wrapper {
  position: relative; width: 100%; height: 100vh; overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; margin: 0;
}
.hero-slider .splide__track,
.hero-slider .splide__list { height: 100%; }
.hero-slider .splide__slide {
  background-size: cover; background-position: center;
}
.slide-1 { background-image: url('img/bg1.jpg'); }
.slide-2 { background-image: url('img/bg2.jpg'); }
.slide-3 { background-image: url('img/bg3.jpg'); }
.hero-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 100%);
  pointer-events: none; z-index: 1;
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: #fff;
  padding: 2rem; z-index: 2; pointer-events: none;
}
.hero-label {
  font-size: .9rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .75rem; font-weight: 600;
  opacity: 1;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 1rem; max-width: 700px;
}
.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1rem; opacity: .9; max-width: 600px;
}
.hero-sub {
  font-size: clamp(.88rem, 1.8vw, 1rem) !important;
  opacity: .75 !important; margin-bottom: 2rem !important;
  max-width: 560px;
}
.hero-content .btn { pointer-events: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: .85rem 2.2rem;
  background: var(--accent); color: var(--text); border-radius: 2rem;
  font-size: 1rem; font-weight: 700; text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn:hover { background: var(--accent-dim); transform: translateY(-2px); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #333; }
nav .nav-btn { padding: .5rem 1.2rem; color: #000; }
nav .nav-btn:hover { color: #000; }

/* Splide */
.splide__arrow { background: rgba(255,255,255,.2); }
.splide__arrow svg { fill: #fff; }
.splide__pagination__page.is-active { background: var(--accent); }

/* ── SECTIONS ── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
h2.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; margin-bottom: .5rem; text-align: center;
}
h2.section-title.left { text-align: left; }
.section-subtitle {
  text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1.05rem;
}
.section-intro {
  text-align: center; color: var(--text-muted); font-size: 1.05rem; max-width: 640px; margin: .5rem auto 2.5rem;
}

/* ── ABOUT / JOURNEY ── */
#about { background: var(--bg-alt); }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.journey-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.journey-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-4px); }
.journey-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.journey-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.journey-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }

/* ── PHILOSOPHY ── */
#philosophy { background: var(--bg-dark); color: #fff; }
.philosophy-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
@media (max-width: 720px) { .philosophy-inner { grid-template-columns: 1fr; } }
.philosophy-text h2 { color: #fff; }
.philosophy-lead {
  font-size: 1.2rem; line-height: 1.6; margin: 1rem 0 1.25rem; color: var(--accent);
}
.philosophy-text > p { color: #bbb; margin-bottom: .75rem; }
.philosophy-list {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem;
  margin-top: .25rem;
}
.philosophy-list li {
  color: #ddd; font-size: .95rem; padding: .4rem .6rem;
  background: rgba(255,255,255,.07); border-radius: 6px;
}
.philosophy-list li::before { content: '✦ '; color: var(--accent); font-size: .7rem; }
.philosophy-img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 4/5; object-fit: cover;
}

/* ── BENEFITS ── */
#benefits { background: var(--bg); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.benefit-card {
  background: var(--bg-alt); border-radius: var(--radius);
  padding: 1.75rem 1.25rem; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.07); transform: translateY(-3px); }
.benefit-icon { font-size: 2rem; display: block; margin-bottom: .75rem; }
.benefit-card p { font-size: .93rem; color: var(--text-muted); line-height: 1.5; }

/* ── SERVICES ── */
#services { background: var(--bg-alt); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-4px); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card p { font-size: .92rem; color: var(--text-muted); line-height: 1.55; }

/* ── WHO IT'S FOR ── */
#for-whom { background: var(--bg); }
.for-whom-list {
  list-style: none; max-width: 680px; margin: 2rem auto 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.for-whom-list li {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1.05rem; padding: 1rem 1.5rem;
  background: var(--bg-alt); border-radius: var(--radius);
  transition: transform .2s;
}
.for-whom-list li:hover { transform: translateX(6px); }
.fw-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg-alt); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  display: flex; flex-direction: column; gap: .75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem;
}
.testimonial p { font-style: italic; color: var(--text-muted); line-height: 1.65; }
.testimonial cite { font-weight: 700; color: var(--text); font-style: normal; }
.testimonial-result {
  font-size: .8rem; color: var(--accent-dim);
  background: var(--bg-alt); border-radius: 20px;
  padding: .25rem .75rem; align-self: flex-start; font-weight: 600;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--accent); color: var(--text); text-align: center;
}
.cta-banner h2 { margin-bottom: .75rem; }
.cta-banner p { opacity: .75; margin-bottom: 2rem; font-size: 1.1rem; }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-list {
  max-width: 760px; margin: 2.5rem auto 0;
  display: flex; flex-direction: column; gap: .75rem;
}
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.faq-item summary {
  padding: 1.1rem 1.4rem; font-weight: 600; font-size: 1rem;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent);
  transition: transform .25s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.2rem; color: var(--text-muted); line-height: 1.7;
}

/* ── CONTACT ── */
#contact { background: var(--bg-alt); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 2.5rem;
}
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.25rem; text-decoration: none; color: var(--text);
  transition: box-shadow .2s, transform .2s;
}
.contact-link:hover { box-shadow: 0 4px 18px rgba(0,0,0,.08); transform: translateY(-2px); }
.contact-link.no-link { cursor: default; }
.contact-link.no-link:hover { transform: none; box-shadow: none; }
.contact-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-link div { display: flex; flex-direction: column; gap: .15rem; }
.contact-link strong { font-size: .95rem; }
.contact-link span { font-size: .85rem; color: var(--text-muted); }

.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: .95rem; font-family: inherit;
  outline: none; transition: border-color .2s;
  background: var(--bg-alt);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; }

/* ── FOOTER ── */
footer {
  background: var(--bg-dark); color: #888;
  text-align: center; padding: 1.75rem 1.5rem;
  font-size: .88rem;
}
footer a { color: var(--accent); text-decoration: none; font-weight: 600; }
