:root {
  --pricing-bg: var(--bg);
  --pricing-accent: var(--brand);
  --pricing-highlight: var(--brand-yellow);
  --pricing-border: var(--border);
}

.pricing-hero {
  padding: 6rem 0 4.5rem;
  background: linear-gradient(165deg, var(--brand), var(--brand-strong));
  color: #fff;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center;
}

.pricing-hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.7vw, 3.5rem);
  line-height: 1.08;
  color: #fff;
}

.pricing-hero-copy h1 span {
  color: var(--pricing-highlight);
}

.pricing-hero-note p {
  margin: 0;
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 1.8vw, 1.3rem);
  line-height: 1.35;
}

.why-section {
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: center;
}

.why-media img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(13, 58, 23, 0.16);
}

.why-media {
  position: relative;
}

.why-media .why-badge {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(130px, 30%, 200px);
  border-radius: 0;
  box-shadow: none;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  color: var(--pricing-accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.why-grid h2 {
  margin: 0;
}

.why-grid h2 span {
  color: var(--pricing-accent);
}

.why-copy p {
  margin: 0;
}

.plans-section {
  background: #ffffff;
}

.plans-section > .container {
  width: 100%;
  max-width: none;
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 4vw, 56px);
}

.plans-head {
  text-align: center;
  margin-bottom: 0.85rem;
}

.plans-section h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.plans-head p {
  margin: 0 auto;
  max-width: 560px;
  color: #4f584f;
  font-size: 0.95rem;
  line-height: 1.3;
}

.plans-layout {
  position: relative;
  padding: 0.35rem 0 1rem;
}

.plans-badge {
  position: absolute;
  width: clamp(100px, 11vw, 156px);
  z-index: 2;
}

.plans-badge-left {
  top: -16px;
  left: -42px;
}

.plans-badge-right {
  right: -52px;
  bottom: -18px;
}

.plans-section h2 span {
  color: var(--pricing-accent);
}

.plans-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #2f2f2f;
  border-bottom: 1px solid #d8ddd6;
  background: #ffffff;
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.plans-table th,
.plans-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid #edf0eb;
}

.plans-table th {
  background: #ffffff;
  color: #111;
  font-weight: 600;
}

.plans-table td:last-child {
  color: #194621;
  font-weight: 700;
}

.plans-note {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: #3b3f3b;
}

.premium-section {
  background: #ffffff;
}

.premium-section h2 {
  margin-bottom: 1.2rem;
}

.premium-section h2 span {
  color: var(--pricing-accent);
}

.premium-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.premium-card video {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  background: #000;
}

.premium-card h3 {
  margin: 0.9rem 0 0.45rem;
  font-size: 1.1rem;
}

.premium-card p {
  margin: 0;
  color: #33483a;
}

@media (max-width: 980px) {
  .pricing-hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-media .why-badge {
    top: -20px;
    width: clamp(110px, 32vw, 180px);
  }

  .premium-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-badge-left {
    left: -12px;
  }

  .plans-badge-right {
    right: -14px;
  }
}

@media (max-width: 680px) {
  .pricing-hero-copy h1 {
    font-size: clamp(1.9rem, 8.8vw, 2.6rem);
  }

  .pricing-hero-note p {
    font-size: 1rem;
  }

  .premium-grid {
    grid-template-columns: 1fr;
  }

  .plans-badge {
    width: 86px;
  }

  .plans-badge-left {
    top: -10px;
    left: -8px;
  }

  .plans-badge-right {
    right: -8px;
    bottom: 12px;
  }
}
