/* Base styles – NEW COLOR PALETTE (green + orange) */
:root {
  /* Основные цвета */
  --color-bg: #f5f7f3;              /* мягкий светлый фон */
  --color-bg-soft: #edf6f1;         /* мятный soft фон */
  --color-bg-deep: #081612;         /* глубокий тёмно-зелёный */
  --color-main: #1ba37a;            /* основной зелёный */
  --color-main-deep: #0b6b51;       /* тёмный зелёный для градиентов */
  --color-main-soft: #d5f3e7;       /* светлый зелёный фон */
  --color-accent-warm: #ffb25c;     /* светлый оранжевый */
  --color-accent-deep: #ff8a3c;     /* насыщенный оранжевый */

  --color-text: #141821;
  --color-text-soft: #5a625f;
  --color-border-soft: #dde4dd;

  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 20px 45px rgba(4, 23, 16, 0.18);
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar */

.main-navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(9, 35, 22, 0.05);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.main-navbar .navbar-brand {
  font-size: 1.1rem;
}

.main-navbar .nav-link {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.main-navbar .nav-link:hover {
  color: var(--color-main);
  background-color: rgba(27, 163, 122, 0.08);
}

.main-navbar .nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-main), var(--color-main-deep));
}

.navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 30, 19, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */

.btn-main {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-main), var(--color-main-deep));
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.6rem 1.4rem;
  box-shadow: 0 10px 25px rgba(9, 94, 68, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(4, 51, 37, 0.6);
  color: #ffffff;
}

.btn-outline-main {
  border-radius: 999px;
  border: 1px solid rgba(27, 163, 122, 0.7);
  background: #ffffff;
  color: var(--color-main-deep);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.6rem 1.4rem;
  transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease,
    transform 0.12s ease;
}

.btn-outline-main:hover {
  background-color: var(--color-main-soft);
  color: #062116;
  transform: translateY(-1px);
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 138, 60, 0.55);
}

/* Hero */

.page-wrapper {
  padding-top: 76px;
}

.hero-section {
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, #f7fffb 0, #f5f7f3 40%, #fef6eb 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 178, 92, 0.45) 0, transparent 60%);
  top: -140px;
  right: -80px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(27, 163, 122, 0.4) 0, transparent 60%);
  bottom: -160px;
  left: -60px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--color-main-soft);
  color: #0b6b51;
  border: 1px solid rgba(11, 107, 81, 0.18);
}

.hero-title {
  font-size: clamp(2.1rem, 2.6vw + 1.6rem, 3rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: #071411;
}

.hero-text {
  font-size: 1rem;
  color: var(--color-text-soft);
  max-width: 32rem;
}

.hero-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.hero-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.35rem;
  color: var(--color-text-soft);
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-accent-warm) 0, var(--color-accent-deep) 70%);
  box-shadow: 0 0 0 2px rgba(255, 199, 138, 0.4);
}

.hero-actions {
  align-items: center;
}

.hero-meta-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-soft);
}

.hero-meta-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: #071411;
}

/* Hero card */

.hero-card {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff, #f7fbf8);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid rgba(6, 33, 22, 0.06);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(255, 178, 92, 0.28), transparent 55%),
    radial-gradient(circle at bottom left, rgba(27, 163, 122, 0.2), transparent 55%);
  opacity: 0.65;
  pointer-events: none;
}

.hero-card-header,
.hero-card-footer,
.hero-card-list,
.hero-chart-placeholder {
  position: relative;
  z-index: 1;
}

.hero-card-header .badge.bg-main-soft {
  background-color: rgba(213, 243, 231, 0.9);
  color: #0b6b51;
  font-weight: 500;
}

.hero-card-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.hero-card-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.hero-chart-placeholder {
  position: relative;
  height: 140px;
  border-radius: 1rem;
  background: radial-gradient(circle at top, #eefbf5 0, #dbf2e7 45%, #ffe9cf 100%);
  padding: 0.75rem 0.85rem;
  overflow: hidden;
}

.chart-bar {
  position: absolute;
  bottom: 0.55rem;
  width: 14%;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, #ffffff, rgba(255, 255, 255, 0.1));
  box-shadow: 0 8px 20px rgba(7, 35, 26, 0.18);
  border: 1px solid rgba(7, 35, 26, 0.1);
}

.chart-bar-a {
  left: 0.8rem;
  height: 60%;
}

.chart-bar-b {
  left: 34%;
  height: 85%;
}

.chart-bar-c {
  right: 0.8rem;
  height: 45%;
}

.chart-line {
  position: absolute;
  left: 0.4rem;
  right: 0.4rem;
  top: 28%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent-warm), var(--color-accent-deep));
  box-shadow: 0 0 0 1px rgba(255, 138, 60, 0.18);
}

.hero-card-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.hero-card-list li + li {
  margin-top: 0.25rem;
}

.hero-card-footer {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-top: 0.75rem;
}

/* Sections */

.section-padding {
  padding: 4rem 0;
}

.bg-soft {
  background: radial-gradient(circle at top left, #edf6f1 0, #f7f7f3 40%, #fff9f0 100%);
}

.section-header {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-main-deep);
  font-weight: 600;
}

.section-title {
  font-size: 1.7rem;
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.section-text {
  font-size: 1rem;
  color: var(--color-text-soft);
}

/* Feature cards */

.feature-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  background: #ffffff;
  border: 1px dashed rgba(11, 107, 81, 0.35);
  box-shadow: 0 14px 36px rgba(4, 23, 16, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 178, 92, 0.4), transparent 65%);
  top: -18px;
  right: -18px;
  opacity: 0.7;
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 0.96rem;
  color: var(--color-text-soft);
}

/* Check list */

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.45rem;
  color: var(--color-text-soft);
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0.15rem;
  top: 0.1rem;
  font-size: 0.85rem;
  color: var(--color-main-deep);
}

/* PROGRAM SECTION – dark green gradient */

.section-program-gradient {
  background: radial-gradient(circle at top left, #0d2c21 0, #081612 55%, #040b08 100%);
  color: #ffffff;
}

.section-eyebrow-light {
  color: var(--color-accent-warm);
}

.text-program-light {
  color: #cfddd6;
}

.program-steps {
  display: grid;
  gap: 1rem;
}

.program-step {
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(203, 232, 219, 0.45);
  background:
    radial-gradient(circle at top right, rgba(255, 178, 92, 0.3) 0, transparent 55%),
    radial-gradient(circle at bottom left, rgba(27, 163, 122, 0.35) 0, transparent 55%),
    rgba(4, 18, 13, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.6);
}

.program-step-index {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(209, 232, 219, 0.9);
  margin-bottom: 0.2rem;
}

.program-step-title {
  font-size: 1.06rem;
  margin-bottom: 0.35rem;
  color: #f9fafb;
}

.program-step-text {
  font-size: 0.94rem;
  color: #d0e1d7;
  margin-bottom: 0.4rem;
}

.program-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.program-tag {
  font-size: 0.78rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(210, 246, 229, 0.75);
  color: #e6fff3;
}

/* Diagnostic */

.diagnostic-choices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.diagnostic-option {
  border-radius: 0.9rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(27, 163, 122, 0.3);
  background-color: #ffffff;
  text-align: left;
  font-size: 0.96rem;
  color: var(--color-text-soft);
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease,
    transform 0.12s ease;
}

.diagnostic-option:hover {
  background-color: var(--color-main-soft);
  box-shadow: 0 12px 28px rgba(9, 48, 34, 0.16);
  transform: translateY(-1px);
}

.diagnostic-option.active {
  background: linear-gradient(135deg, var(--color-main), var(--color-main-deep));
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(9, 75, 55, 0.6);
}

.diagnostic-result-card {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border-soft);
}

.diagnostic-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.diagnostic-text {
  font-size: 0.96rem;
  color: var(--color-text-soft);
}

.diagnostic-text.d-none {
  display: none !important;
}

/* Personas */

.personas-section {
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--color-border-soft);
}

.personas-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.persona-tab {
  flex: 1 1 auto;
  border-radius: 999px;
  border: 1px solid rgba(27, 163, 122, 0.4);
  background-color: #f9fdfb;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-soft);
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: background-color 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.persona-tab.active {
  background: linear-gradient(135deg, var(--color-main), var(--color-main-deep));
  border-color: transparent;
  color: #ffffff;
}

.persona-panel {
  margin-top: 1.1rem;
  display: none;
}

.persona-panel.active {
  display: block;
}

.persona-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.persona-text {
  font-size: 0.96rem;
  color: var(--color-text-soft);
}

.persona-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.6rem;
}

.persona-list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.94rem;
  color: var(--color-text-soft);
  margin-bottom: 0.3rem;
}

.persona-list li::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  top: 0;
  color: var(--color-accent-deep);
  font-size: 1.1rem;
}

/* LABS SECTION */

.labs-section {
  background: radial-gradient(circle at bottom right, #fff0dd 0, #f7f7f3 40%, #edf6f1 100%);
}

.shadow-labs {
  box-shadow: 0 20px 48px rgba(138, 76, 17, 0.28);
}

.lab-card {
  border-radius: 1rem;
  padding: 1rem 1rem;
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 16px 38px rgba(7, 35, 26, 0.12);
}

.lab-card-alt {
  background: linear-gradient(135deg, rgba(27, 163, 122, 0.08), rgba(255, 178, 92, 0.18));
}

.lab-label {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8f4c12;
  margin-bottom: 0.3rem;
}

.lab-text {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

/* Italy / common images sections */

.section-padding img.rounded-4 {
  border-radius: 1.6rem !important;
}

/* Testimonials */

.testimonial-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 14px 36px rgba(4, 23, 16, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 243, 231, 0.8), transparent 70%);
  bottom: -40px;
  right: -30px;
  opacity: 0.8;
}

.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.96rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--color-text-soft);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

/* INSIGHTS SECTION – green/orange gradient band */

.insights-section {
  background: linear-gradient(135deg, #081612 0, #103629 40%, #184836 100%);
  color: #f9fafb;
}

.insights-text {
  color: #cde1d9;
}

.insights-list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.8rem;
}

.insights-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #d8efe4;
}

.insights-list li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--color-accent-warm) 0, var(--color-accent-deep) 100%);
}

.insights-card {
  border-radius: 1.3rem;
  padding: 1.5rem 1.4rem;
  background:
    radial-gradient(circle at top left, rgba(255, 178, 92, 0.28) 0, rgba(8, 22, 18, 0.93) 45%);
  border: 1px solid rgba(200, 232, 215, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.75);
}

.insights-card-title {
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
  color: #f9fafb;
}

.insights-card-text {
  font-size: 0.94rem;
  color: #e7f3ec;
}

.insight-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.insight-pill {
  font-size: 0.82rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(213, 243, 231, 0.7);
  background: rgba(6, 22, 16, 0.9);
  color: #e9fff5;
}

/* Contact */

.contact-info-box {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border-soft);
}

.contact-info-title {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.contact-info-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 0.75rem 0;
}

.contact-info-list li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.contact-label {
  font-weight: 600;
  margin-right: 0.25rem;
}

.contact-info-list a {
  color: var(--color-main-deep);
  text-decoration: none;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: #ffffff;
  border: 1px solid var(--color-border-soft);
  box-shadow: var(--shadow-soft);
}

/* FAQ */

.faq-accordion .accordion-button {
  font-size: 0.98rem;
  background-color: #ffffff;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--color-main-soft);
  color: #062116;
}

.faq-accordion .accordion-body {
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

/* Footer */

.footer {
  background: radial-gradient(circle at top left, #081612 0, #040b08 55%);
  color: #e5f5ee;
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.footer-text {
  font-size: 0.9rem;
  color: #bed3cb;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.3rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #d6f1e7;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-accent-warm);
}

.footer-disclaimer {
  color: #9bb3aa;
}

.footer-bottom {
  border-top: 1px solid rgba(123, 168, 149, 0.65);
  margin-top: 1.8rem;
  padding-top: 0.9rem;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: #9cb5aa;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  padding: 0.8rem;
  background: transparent;
  pointer-events: none;
}

.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #081612;
  color: #e5f5ee;
  border-radius: 1.25rem 1.25rem 0 0;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 -16px 40px rgba(0, 0, 0, 0.7);
  border-top: 2px solid var(--color-accent-deep);
  pointer-events: auto;
}

.cookie-text {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn-main {
  box-shadow: none;
}

.cookie-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: var(--color-main-soft);
}

.cookie-link:hover {
  color: var(--color-accent-warm);
}

.cookie-banner-hidden {
  display: none;
}

/* Success popup */

.success-popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 22, 18, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1060;
}

.success-popup-overlay.active {
  display: flex;
}

.success-popup {
  max-width: 420px;
  width: 90%;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: 0 24px 60px rgba(4, 23, 16, 0.34);
  text-align: center;
}

.success-title {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.success-text {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin-bottom: 1rem;
}

/* Scroll animation */

[data-animated-block] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-animated-block].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-card {
    margin-top: 0.8rem;
  }

  .personas-section {
    margin-top: 0.8rem;
  }

  .program-steps {
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-card {
    padding: 1.4rem 1.2rem;
  }

  .cookie-banner-inner {
    border-radius: 1.1rem 1.1rem 0 0;
  }
}
