/* MyNordicSet — main.css */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2d7a4f;
  --green-dk: #1e5535;
  --green-lt: #e8f5ee;
  --orange: #e07b2a;
  --gray: #f7f7f5;
  --text: #1c2826;
  --muted: #637068;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
}

/* ── HEADER ─────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e2e8e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green-dk);
  font-weight: 700;
  font-size: 1.25rem;
}
.site-logo svg {
  width: 36px;
  height: 36px;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover {
  color: var(--green);
}
.btn-nav {
  background: var(--green);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-nav:hover {
  background: var(--green-dk);
}

/* ── BANNER ─────────────────────────────── */
.page-banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background: url("../images/banner.png") center/cover no-repeat;
}
.banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 65%,
    transparent 100%
  );
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 40px 5%;
  color: #fff;
}
.label-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.banner-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
}
.banner-content p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 440px;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.15s,
    background 0.2s;
  box-shadow: 0 6px 20px rgba(224, 123, 42, 0.45);
}
.btn-primary:hover {
  background: #c96a1a;
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 14px;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── STATS ───────────────────────────────── */
.stats-bar {
  background: var(--green-dk);
  color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  padding: 22px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.stat-label {
  font-size: 0.82rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── COMMON SECTION ─────────────────────── */
.section {
  padding: 80px 5%;
}
.section-tag {
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.25;
}
.lead-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.text-center {
  text-align: center;
}
.text-center .lead-text {
  margin: 0 auto;
}

/* ── BENEFITS ────────────────────────────── */
.section-alt {
  background: var(--gray);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}
.benefits-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.benefits-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.benefit-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.benefit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.25rem;
}
.benefit-list strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}
.benefit-list span {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ── STEPS ───────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.step-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ── PRICING ─────────────────────────────── */
.section-tint {
  background: var(--green-lt);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: var(--green-dk);
  color: #fff;
  transform: scale(1.04);
}
.price-card.featured .price-desc,
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.7);
}
.popular-tag {
  position: absolute;
  top: 16px;
  right: -22px;
  background: var(--orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 32px;
  transform: rotate(40deg);
  letter-spacing: 0.05em;
}
.price-type {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 12px;
}
.price-card.featured .price-type {
  color: rgba(255, 255, 255, 0.7);
}
.price-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.price-amount {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.price-period {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.price-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.price-features {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}
.price-card.featured .price-features li::before {
  color: #7fdba8;
}
.btn-plan {
  display: block;
  padding: 13px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  background: var(--green);
  color: #fff;
  transition: background 0.2s;
}
.btn-plan:hover {
  background: var(--green-dk);
}
.price-card.featured .btn-plan {
  background: var(--orange);
}
.price-card.featured .btn-plan:hover {
  background: #c96a1a;
}

/* ── COMMUNITY ───────────────────────────── */
.community-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.community-photo {
  overflow: hidden;
}
.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.community-text {
  background: var(--green-dk);
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.community-text .section-tag {
  color: #7fdba8;
}
.community-text h2 {
  color: #fff;
  margin-bottom: 18px;
}
.community-text p {
  opacity: 0.85;
  margin-bottom: 28px;
}
.community-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.community-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.9;
  font-size: 0.97rem;
}
.community-list li i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── TESTIMONIALS ────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars-row {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 14px;
}
.review-card blockquote {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  border: none;
  padding: 0;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.25rem;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.reviewer-meta {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── CTA ─────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  color: #fff;
  text-align: center;
  padding: 100px 5%;
}
.cta-section h2 {
  color: #fff;
  max-width: 640px;
  margin: 0 auto 18px;
}
.cta-section p {
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-note {
  margin-top: 20px;
  opacity: 0.65;
  font-size: 0.88rem;
}
.btn-cta {
  display: inline-block;
  background: #fff;
  color: var(--green-dk);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

/* ── FOOTER ──────────────────────────────── */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.87rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.footer-links {
  display: flex;
  gap: 24px;
}

/* ── PRIVACY PAGE ────────────────────────── */
.privacy-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 5%;
}
.privacy-wrap h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.privacy-wrap .update-date {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 40px;
}
.privacy-wrap h2 {
  font-size: 1.2rem;
  margin: 32px 0 10px;
}
.privacy-wrap p,
.privacy-wrap li {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.privacy-wrap ul {
  padding-left: 20px;
}
.privacy-wrap a {
  color: var(--green);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 32px;
}
.back-link:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
  .benefits-grid,
  .steps-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .community-wrap {
    grid-template-columns: 1fr;
  }
  .community-photo {
    height: 300px;
  }
  .site-nav {
    display: none;
  }
  .btn-outline {
    display: none;
  }
}
@media (max-width: 600px) {
  .stat-item {
    padding: 18px 24px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .banner-content h1 {
    font-size: 1.9rem;
  }
  .community-text {
    padding: 50px 28px;
  }
}
