.hero {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    padding: 64px 24px 56px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
  }

  .hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(195, 197, 148, 0.35);
    color: var(--text-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

.hero__title {
    font-family: inherit;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
  }

  .hero__title em {
    font-style: italic;
    color: var(--green-mid);
  }

  .hero__title .accent-orange {
    font-style: italic;
    color: var(--orange);
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-soft);
    max-width: 500px;
  }

  .hero__panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-top: 8px;
  }

  .hero__panel-title {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-soft);
    margin-bottom: 16px;
  }

  .audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
  }

  .audience-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--green-mid);
    border-radius: 50%;
    margin-top: 6px;
  }

.divider {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    padding: 0 24px;
    border-top: 1px solid var(--border);
  }

.section-header {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    padding: 56px 24px 40px;
  }

  .section-kicker {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }

.section-title {
    font-family: inherit;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 300;
    line-height: 1.2;
    max-width: 540px;
    margin-bottom: 14px;
  }

  .section-desc {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 600px;
  }

.cards-wrap {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    padding: 0 24px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.07);
    transform: translateY(-2px);
  }

  .card__tag {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-color);
    background: rgba(195, 197, 148, 0.35);
    display: inline-block;
    padding: 5px 12px;
    border-radius: 16px;
    margin-bottom: 16px;
    align-self: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

.card__title {
    font-family: inherit;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .card__body {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.75;
    margin-bottom: 20px;
    flex: 1;
  }

  .card__sep {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
  }

  .card__meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .card__meta-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .card__meta-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
  }

  .card__meta-text {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
  }

.highlight-wrap {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    padding: 0 24px 40px;
  }

  .highlight {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    border-left: 4px solid var(--border-color);
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  }

.highlight__title {
    font-family: inherit;
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 300;
  }

  .highlight__text {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    max-width: 620px;
  }

.cta-wrap {
    max-width: var(--container, 1180px);
    margin: 0 auto;
    padding: 0 24px 80px;
  }

  .cta {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  }

.cta__title {
    font-family: inherit;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 6px;
  }

  .cta__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 480px;
  }

.btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    font-family: inherit;
    box-shadow: 0 4px 10px rgba(208,108,49,0.18);
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

  @media (max-width: 720px) {
    .hero {
      grid-template-columns: 1fr;
    }
    .highlight { padding: 28px; }
    .cta { flex-direction: column; align-items: flex-start; }
  }

  .page-animations .page-hero {
    position: relative;
    overflow: hidden;
  }

.page-animations .page-hero::before,
.page-animations .page-hero::after {
    content: none;
}

  .page-animations .page-hero::before {
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(156, 173, 47, 0.35), transparent 65%);
  }

  .page-animations .page-hero::after {
    bottom: -160px;
    left: -120px;
    background: radial-gradient(circle, rgba(235, 109, 47, 0.28), transparent 62%);
  }

  .page-animations .page-hero__inner {
    position: relative;
    z-index: 1;
  }

.page-animations .page-hero__tag {
    box-shadow: none;
}

.page-animations .page-hero__panel {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
}

.page-animations .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(195, 197, 148, 0.35);
    color: var(--text-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

  .page-animations .cards-grid {
    margin-top: 36px;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.page-animations .info-card {
    position: relative;
    padding: 22px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--border-color);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-animations .info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.page-animations .info-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 16px;
    background: rgba(195, 197, 148, 0.35);
    color: var(--text-color);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.page-animations .info-card__title {
    position: static;
    padding-left: 0;
}

.page-animations .info-card__meta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

  .page-animations .chips-grid {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

.page-animations .info-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 16px;
    background: rgba(195, 197, 148, 0.35);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.page-animations .info-chip:nth-child(2n) {
    background: rgba(208, 108, 49, 0.12);
    border-color: rgba(0, 0, 0, 0.06);
    color: var(--text-color);
}

  @media (max-width: 960px) {
    .page-animations .cards-grid {
      grid-template-columns: 1fr;
    }
  }
