/* ===== CSS VARIABLES ===== */
:root {
  --c-prim: #4a2c6a;
  --c-sec: #1a9e8f;
  --c-acc: #f0a500;
  --c-light: #f7f4f0;
  --c-white: #ffffff;
  --c-dark: #2c2c2c;
  --c-muted: #6b7280;
  --c-border: #e5e1dc;
  --f-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-head: "Segoe UI", system-ui, -apple-system, sans-serif;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
  --sh-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --sh-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
  --mw: 1200px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--f-body);
  color: var(--c-dark);
  background: var(--c-light);
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

/* ===== TOP BAR ===== */
.nw-topbar {
  background: var(--c-prim);
  color: var(--c-white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.nw-topbar__inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.nw-topbar__contact {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nw-topbar__contact a {
  color: var(--c-white);
  transition: opacity 0.2s;
}
.nw-topbar__contact a:hover {
  opacity: 0.8;
}
.nw-topbar__badge {
  background: var(--c-sec);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== NAV ===== */
.nw-nav {
  background: var(--c-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nw-nav__inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}
.nw-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nw-nav__logo {
  height: 42px;
  width: auto;
}
.nw-nav__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-prim);
  line-height: 1.2;
}
.nw-nav__name small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-muted);
}
.nw-nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nw-nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-dark);
  transition: color 0.2s;
  position: relative;
}
.nw-nav__links a:hover {
  color: var(--c-sec);
}
.nw-nav__cta {
  background: var(--c-sec);
  color: var(--c-white) !important;
  padding: 10px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: background 0.2s;
}
.nw-nav__cta:hover {
  background: #178a7d;
}
.nw-nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--c-prim);
}

/* ===== INTRO BANNER ===== */
.nw-intro {
  background:
    linear-gradient(
      135deg,
      rgba(74, 44, 106, 0.92) 0%,
      rgba(26, 158, 143, 0.88) 100%
    ),
    url("/images/nw-nature.jpg") center/cover no-repeat;
  color: var(--c-white);
  padding: 80px 24px;
  text-align: center;
}
.nw-intro__inner {
  max-width: 800px;
  margin: 0 auto;
}
.nw-intro__tagline {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.9;
  margin-bottom: 16px;
}
.nw-intro__heading {
  font-family: var(--f-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.nw-intro__sub {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.nw-intro__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.nw-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.nw-btn--primary {
  background: var(--c-acc);
  color: var(--c-dark);
}
.nw-btn--primary:hover {
  background: #d99400;
  transform: translateY(-1px);
}
.nw-btn--outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid var(--c-white);
}
.nw-btn--outline:hover {
  background: var(--c-white);
  color: var(--c-prim);
}

/* ===== STATS BAR ===== */
.nw-stats {
  background: var(--c-white);
  padding: 32px 24px;
  box-shadow: var(--sh-card);
  margin: -30px 24px 0;
  border-radius: var(--r-lg);
  position: relative;
  z-index: 2;
}
.nw-stats__grid {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.nw-stats__item i {
  font-size: 1.8rem;
  color: var(--c-sec);
  margin-bottom: 8px;
  display: block;
}
.nw-stats__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-prim);
}
.nw-stats__label {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 2px;
}

/* ===== BENEFITS ===== */
.nw-benefits {
  padding: 80px 24px;
  max-width: var(--mw);
  margin: 0 auto;
}
.nw-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.nw-section__tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--c-sec);
  font-weight: 600;
  margin-bottom: 8px;
}
.nw-section__title {
  font-family: var(--f-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--c-dark);
}
.nw-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.nw-benefit-card {
  background: var(--c-white);
  padding: 32px 28px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-card);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.nw-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-hover);
}
.nw-benefit-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--c-prim), var(--c-sec));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.nw-benefit-card__icon i {
  font-size: 1.5rem;
  color: var(--c-white);
}
.nw-benefit-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-dark);
}
.nw-benefit-card__text {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ===== COURSES / PRICING ===== */
.nw-courses {
  padding: 80px 24px;
  background: var(--c-white);
}
.nw-courses__inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.nw-courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.nw-price-card {
  background: var(--c-light);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s;
  border: 2px solid transparent;
}
.nw-price-card:hover {
  transform: translateY(-4px);
}
.nw-price-card--featured {
  border-color: var(--c-sec);
  background: var(--c-white);
  box-shadow: var(--sh-hover);
}
.nw-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-sec);
  color: var(--c-white);
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.nw-price-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--c-prim);
}
.nw-price-card__desc {
  font-size: 0.88rem;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.nw-price-card__amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 4px;
}
.nw-price-card__period {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 24px;
}
.nw-price-card__list {
  margin-bottom: 28px;
}
.nw-price-card__list li {
  padding: 8px 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nw-price-card__list li i {
  color: var(--c-sec);
  font-size: 1rem;
}
.nw-price-card__btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.nw-price-card__btn--fill {
  background: var(--c-sec);
  color: var(--c-white);
}
.nw-price-card__btn--fill:hover {
  background: #178a7d;
}
.nw-price-card__btn--outline {
  border: 2px solid var(--c-prim);
  color: var(--c-prim);
}
.nw-price-card__btn--outline:hover {
  background: var(--c-prim);
  color: var(--c-white);
}

/* ===== IMAGE SPLIT ===== */
.nw-split {
  padding: 80px 24px;
}
.nw-split__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.nw-split__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-card);
}
.nw-split__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.nw-split__content h3 {
  font-family: var(--f-head);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-prim);
}
.nw-split__content p {
  color: var(--c-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.nw-reviews {
  padding: 80px 24px;
  background: var(--c-white);
}
.nw-reviews__inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.nw-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.nw-review-card {
  background: var(--c-light);
  padding: 32px;
  border-radius: var(--r-md);
  position: relative;
}
.nw-review-card__stars {
  color: var(--c-acc);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.nw-review-card__text {
  font-size: 0.95rem;
  color: var(--c-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.nw-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nw-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-prim), var(--c-sec));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 1.1rem;
}
.nw-review-card__name {
  font-weight: 600;
  font-size: 0.95rem;
}
.nw-review-card__loc {
  font-size: 0.8rem;
  color: var(--c-muted);
}

/* ===== COACH ===== */
.nw-coach {
  padding: 80px 24px;
}
.nw-coach__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-card);
}
.nw-coach__photo {
  width: 200px;
  height: 200px;
  border-radius: var(--r-lg);
  object-fit: cover;
  flex-shrink: 0;
}
.nw-coach__info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-prim);
  margin-bottom: 4px;
}
.nw-coach__role {
  color: var(--c-sec);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.nw-coach__bio {
  color: var(--c-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.nw-coach__certs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.nw-coach__cert {
  background: var(--c-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: var(--c-prim);
  font-weight: 600;
}

/* ===== FAQ ===== */
.nw-faq {
  padding: 80px 24px;
  background: var(--c-white);
}
.nw-faq__inner {
  max-width: 800px;
  margin: 0 auto;
}
.nw-faq__item {
  border-bottom: 1px solid var(--c-border);
}
.nw-faq__q {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-dark);
  transition: color 0.2s;
}
.nw-faq__q:hover {
  color: var(--c-sec);
}
.nw-faq__q i {
  transition: transform 0.3s;
  font-size: 1.2rem;
  color: var(--c-sec);
}
.nw-faq__q.active i {
  transform: rotate(180deg);
}
.nw-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  color: var(--c-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.nw-faq__a.open {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ===== CTA BANNER ===== */
.nw-cta-banner {
  background: linear-gradient(135deg, var(--c-prim) 0%, var(--c-sec) 100%);
  padding: 60px 24px;
  text-align: center;
  color: var(--c-white);
}
.nw-cta-banner h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.nw-cta-banner p {
  opacity: 0.9;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.nw-footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 24px 0;
}
.nw-footer__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.nw-footer__brand-logo {
  height: 36px;
  margin-bottom: 12px;
  filter: brightness(10);
}
.nw-footer__brand p {
  font-size: 0.88rem;
  line-height: 1.6;
}
.nw-footer h4 {
  color: var(--c-white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.nw-footer__links a {
  display: block;
  padding: 4px 0;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.nw-footer__links a:hover {
  color: var(--c-sec);
}
.nw-footer__addr p {
  font-size: 0.88rem;
  line-height: 1.8;
}
.nw-footer__addr i {
  margin-right: 6px;
  color: var(--c-sec);
}
.nw-footer__bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}
.nw-footer__bottom a {
  color: var(--c-sec);
}

/* ===== COOKIE BANNER ===== */
.nw-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-dark);
  color: var(--c-white);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.nw-cookie.show {
  display: block;
}
.nw-cookie__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nw-cookie__text {
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
}
.nw-cookie__text a {
  color: var(--c-sec);
  text-decoration: underline;
}
.nw-cookie__btns {
  display: flex;
  gap: 12px;
}
.nw-cookie__accept {
  background: var(--c-sec);
  color: var(--c-white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--r-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.nw-cookie__accept:hover {
  background: #178a7d;
}
.nw-cookie__decline {
  background: transparent;
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 24px;
  border-radius: var(--r-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.nw-cookie__decline:hover {
  border-color: var(--c-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nw-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--c-white);
    padding: 20px;
    box-shadow: var(--sh-card);
    gap: 16px;
  }
  .nw-nav__links.open {
    display: flex;
  }
  .nw-nav__toggle {
    display: block;
  }
  .nw-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nw-split__inner {
    grid-template-columns: 1fr;
  }
  .nw-coach__inner {
    flex-direction: column;
    text-align: center;
  }
  .nw-footer__inner {
    grid-template-columns: 1fr;
  }
  .nw-intro {
    padding: 48px 24px;
  }
  .nw-cookie__inner {
    flex-direction: column;
    text-align: center;
  }
}
