/* ── Design tokens ── */
:root {
  /* Brand dark palette */
  --bg-0: #07012d;
  --bg-1: #120334;
  --bg-2: #1f0550;

  /* Purple accent (from BETA family) */
  --p-900: #5d0a48;
  --p-700: #911771;
  --p-500: #c339a0;
  --p-400: #c94bad;
  --p-300: #d14db0;
  --p-200: #ec6ac5;
  --p-100: #f08ad4;
  --p-50:  #ff9ee0;

  /* Text */
  --text:       #f0eaf8;
  --text-white: #fff;
  --text-soft:  rgba(220, 210, 240, 0.85);
  --text-mute:  rgba(220, 210, 240, 0.72);
  --text-lavender: #d4b8ff;

  /* Containers & radii */
  --w-max: 1280px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 9999px;

  /* Motion */
  --t-fast: 0.3s ease;
  --t-base: 0.4s ease;
  --t-soft: 0.5s cubic-bezier(0.22, 0.7, 0.3, 1);
}

/* Background gradient angle — registered as <angle> so it can be
   transitioned smoothly. Default 30° matches the contabil view; the
   antreprenor view rotates it slightly to give a subtle visual cue
   that the page context has shifted. */
@property --bg-angle {
  syntax: '<angle>';
  inherits: true;
  initial-value: 30deg;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    linear-gradient(var(--bg-angle),
      var(--bg-0) 0%,
      #150130 25%,
      #2a0038 50%,
      #480042 75%,
      #650049 100%
    );
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Smoothly rotate the gradient when the role switch flips. All knockout
     gradients on the page also use var(--bg-angle), so they re-align with
     the new background as the angle interpolates. */
  transition: --bg-angle 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* When the role switch is set to antreprenor, rotate the background
   gradient slightly so the page context feels different without being
   jarring. */
body:has(.role-switch[data-active="antreprenor"]) {
  --bg-angle: 60deg;
}

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 120px 48px 80px;
  gap: 64px;
}

.hero-content {
  flex: 1.7;
  max-width: 760px;
}

.hero-visual {
  flex: 1;
  max-width: 560px;
  min-height: 400px;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 200;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-lavender);
  margin-bottom: 24px;
}

/* ── Headline ── */
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 28px;
}

/* ── Subtext ── */
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(220, 210, 240, 0.92);
  max-width: 720px;
  text-align: justify;
  hyphens: auto;
}

/* ── Role switch (Contabil / Antreprenor) ── */
.role-switch {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 230px);
  align-items: center;
  margin-top: 64px;
  margin-left: -6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  background: rgba(7, 1, 45, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Mouse-follow border ring glow */
.role-switch::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: radial-gradient(
    220px circle at var(--mx, -100px) var(--my, -100px),
    var(--p-50) 0%,
    var(--p-200) 20%,
    var(--p-400) 40%,
    transparent 70%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base);
}

.role-switch:hover::after {
  opacity: 1;
}

.role-btn {
  position: relative;
  padding: 14px 20px;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  transition: color var(--t-fast), transform var(--t-soft), background-color var(--t-base);
  white-space: nowrap;
}

.role-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Active button: BETA purple fill */
.role-switch[data-active="contabil"]  .role-btn[data-role="contabil"],
.role-switch[data-active="antreprenor"] .role-btn[data-role="antreprenor"] {
  background: var(--p-700);
  color: var(--text-white);
}

/* Swap physical positions when "antreprenor" is active */
.role-switch[data-active="antreprenor"] .role-btn[data-role="contabil"] {
  transform: translateX(100%);
}
.role-switch[data-active="antreprenor"] .role-btn[data-role="antreprenor"] {
  transform: translateX(-100%);
}

/* ── Bottom tagline ── */
.hero-bottom {
  position: absolute;
  bottom: 40px;
  left: 48px;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(210, 180, 255, 0.6);
}

/* ── Intro Section (between hero & mechanisms) ── */
.intro {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 80px 48px 40px;
}

.intro-lead {
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-white);
  letter-spacing: -0.005em;
  max-width: 60ch;
  margin: 0 auto 100px;
  text-align: center;
}

.intro-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: center;
}

/* Reveal card: vector → color wipe + 3D tilt on hover */
.flip-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  border-radius: var(--r-lg);
  perspective: 1400px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.5s cubic-bezier(0.22, 0.7, 0.3, 1);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.flip-card-face {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.flip-card-face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Color version (back) reveals bottom→top with a soft gradient edge */
@property --reveal {
  syntax: '<percentage>';
  initial-value: -30%;
  inherits: false;
}

.flip-card-back {
  -webkit-mask-image: linear-gradient(
    to top,
    #000 var(--reveal),
    transparent calc(var(--reveal) + 30%)
  );
          mask-image: linear-gradient(
    to top,
    #000 var(--reveal),
    transparent calc(var(--reveal) + 30%)
  );
  transition: --reveal 1.1s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: --reveal;
}

.flip-card:hover .flip-card-back,
.flip-card:focus-visible .flip-card-back {
  --reveal: 100%;
}

/* Intro right column */
.intro-text {
  max-width: 56ch;
}

.intro-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-white);
  margin-bottom: 18px;
}

.intro-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-lavender);
  margin-bottom: 28px;
}

.intro-body p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(220, 210, 240, 0.88);
  text-align: justify;
  hyphens: auto;
}

.intro-body p + p {
  margin-top: 16px;
}

/* ── Mechanisms Section ── */
.mechanisms {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 140px 48px 40px;
}

.mechanisms-header {
  display: inline-block;
  margin-bottom: 100px;
}

.mechanisms-titles {
  width: 100%;
}

.mechanisms-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.mechanisms-subtitle {
  font-size: 0.85rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(220, 210, 240, 0.7);
}

.mechanism {
  display: grid;
  grid-template-columns: 35% 1fr;
  gap: 80px;
  align-items: start;
  padding: 48px 0;
}

.mechanism-visual {
  aspect-ratio: 4 / 3;
}

.mechanism-index {
  display: none;
}

.mechanism-content {
  max-width: 56ch;
  margin-left: auto;
  text-align: right;
}

.mechanism-heading {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 24px;
  position: relative;
}

.tag-beta {
  color: #911771;
  margin-right: 4px;
}

.mechanism-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 8px 22px 8px;
  background: rgba(7, 1, 45, 0.38);
  border-radius: 18px 18px 0 0;
  margin-right: 43px;
}

.mechanism-name {
  display: inline-block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1;
  padding: 18px 32px;
  min-width: 340px;
  text-align: center;
  border-radius: var(--r-pill);
  background: rgba(7, 1, 45, 0.38);
}

/* Rotating conic gradient on "AI" */
@property --ai-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.ai-glow {
  background: conic-gradient(
    from var(--ai-angle),
    #5d0a48,
    #911771,
    #c339a0,
    #911771,
    #5d0a48
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: aiSpin 7s linear infinite;
}

@keyframes aiSpin {
  to { --ai-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-glow {
    animation: none;
  }
}

.mechanism-desc {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(220, 210, 240, 0.92);
  text-align: justify;
  text-indent: 2.4em;
  hyphens: auto;
}

.mechanism-desc + .mechanism-desc {
  margin-top: 18px;
}

.mechanism-tags {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 6px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mechanism-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-pill);
  background: rgba(7, 1, 45, 0.32);
  color: var(--text-white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Audience Section ── */
.audience {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 120px 48px 140px;
}

/* ── CTA row ── */
/* 30/70 split: short "Demo" button on the left (30%), long "Register" button
   on the right (70%). min-width: 0 + width: 100% on buttons inside lets the
   tracks honor the ratio strictly even when content would overflow. */
.cta-row {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 16px;
  width: 100%;
  margin-top: 28px;
}

.cta-row .cta-btn {
  min-width: 0;
  width: 100%;
}

.cta-btn {
  position: relative;
  padding: 18px 28px;
  width: 100%;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: none;
  border-radius: 0;
  background: rgba(7, 1, 45, 0.3);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  transition: background-color var(--t-base);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cta-btn:hover {
  background: rgba(24, 6, 60, 0.45);
}

/* Mouse-follow border ring glow */
.cta-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: radial-gradient(
    160px circle at var(--mx, -100px) var(--my, -100px),
    var(--p-50) 0%,
    var(--p-200) 25%,
    var(--p-400) 50%,
    transparent 75%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base);
}

.cta-btn:hover::after {
  opacity: 1;
}

/* ── Cards + panels grid ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.audience-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 560px;
  padding: 64px 64px 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  border-radius: var(--r-lg);
  /* Inactive: 80% transparency = 20% opacity, with glossy highlight */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 60%),
    rgba(7, 1, 45, 0.2);
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* Mouse-follow halo behind the card (visible only beyond card edges thanks to opaque card body) */
.audience-card::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(
    280px circle at calc(var(--mx, -200px) + 60px) calc(var(--my, -200px) + 60px),
    rgba(236, 106, 197, 0.8),
    rgba(201, 75, 173, 0.4) 30%,
    transparent 60%
  );
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.audience-card:hover::before {
  opacity: 1;
}


/* Mouse-follow border glow (ring + soft halo behind) */
.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--mx, -100px) var(--my, -100px),
    #ff9ee0 0%,
    #ec6ac5 20%,
    #c94bad 40%,
    transparent 70%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.audience-card:hover::after {
  opacity: 1;
}

.audience-card.is-active {
  background: var(--bg-1);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.card-pretitle {
  font-size: 0.75rem;
  font-weight: 200;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.card-title {
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 28px;
}

.card-desc {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(220, 210, 240, 0.82);
  max-width: 42ch;
}

.card-cta {
  margin-top: auto;
  padding-top: 48px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(210, 180, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.card-cta::after {
  content: "→";
  transition: transform 0.3s ease;
}

.audience-card:hover .card-cta,
.audience-card.is-active .card-cta {
  color: var(--text-white);
}

.audience-card:hover .card-cta::after {
  transform: translateX(5px);
}

/* ── Details Panel ── */
.detail-panel {
  display: none;
}

.detail-panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: detailFade 0.5s cubic-bezier(0.22, 0.7, 0.3, 1);
}

/* Stagger drop-in animation when panel becomes active */
@keyframes detailGroupDrop {
  from { transform: translateY(-24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.detail-panel.is-active .detail-group {
  animation: detailGroupDrop 0.55s cubic-bezier(0.22, 0.7, 0.3, 1) backwards;
}

.detail-panel.is-active .detail-group:nth-child(1) { animation-delay: 0.05s; }
.detail-panel.is-active .detail-group:nth-child(2) { animation-delay: 0.13s; }
.detail-panel.is-active .detail-group:nth-child(3) { animation-delay: 0.21s; }
.detail-panel.is-active .detail-group:nth-child(4) { animation-delay: 0.29s; }

@keyframes detailFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.detail-group {
  width: 100%;
}

.detail-group {
  /* Accordion item: only summary visible by default; bullets hidden */
}

.detail-group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: var(--bg-1);
  padding: 24px 22px 24px 32px;
  font-size: clamp(0.85rem, 1.15vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  border: none;
  border-radius: 10px;
  text-align: left;
  color: var(--text-white);
  cursor: pointer;
  list-style: none;
  transition: background-color var(--t-fast);
}

.detail-group-title::-webkit-details-marker { display: none; }
.detail-group-title::marker { content: ''; }

.detail-group-title span {
  color: var(--text-white);
}

/* Chevron indicator on the right */
.detail-group-title::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--p-300);
  border-bottom: 2px solid var(--p-300);
  transform: rotate(45deg);
  margin-bottom: 4px;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), border-color var(--t-fast);
  flex-shrink: 0;
}

.detail-group[open] > .detail-group-title::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  margin-bottom: 0;
  border-color: var(--text-white);
}

.detail-group:hover > .detail-group-title {
  background: #1a0648;
}

/* Smooth height animation in supporting browsers */
.detail-group::details-content {
  height: 0;
  overflow: clip;
  transition: height 0.4s ease, content-visibility 0.4s allow-discrete;
}

.detail-group[open]::details-content {
  height: auto;
}

.detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-list li {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-white);
  padding-left: 22px;
  position: relative;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-white);
}

/* Paragraph variant inside a .detail-group — editorial body copy. */
.detail-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  color: var(--text);
  text-align: justify;
  padding: 14px 24px;
}

/* Gap between consecutive paragraphs in the same detail-group. */
.detail-text + .detail-text {
  padding-top: 0;                  /* avoid double padding */
  margin-top: 18px;
}

/* Pill-shaped "Află mai multe" CTA — discreet outline style on the next
   visual line right after the paragraph (no extra gap), anchored to the
   right via auto margin. */
.detail-cta {
  display: block;
  width: fit-content;
  margin: 0 24px 0 auto;          /* match .detail-text right padding */
  padding: 2px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--t-fast), border-color var(--t-fast);
}

/* When the pill follows a detail-text paragraph, drop the paragraph's
   bottom padding so the pill sits where the next text line would be. */
.detail-text:has(+ .detail-cta) {
  padding-bottom: 0;
}

.detail-cta::after {
  content: " →";
  margin-left: 4px;
}

.detail-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Stat Section ── */
.stat {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 140px 48px 160px;
}

.stat-eyebrow {
  font-size: 0.78rem;
  font-weight: 200;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(220, 210, 240, 0.65);
  margin-bottom: 18px;
}

.stat-subtitle {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-white);
  margin-bottom: 32px;
  line-height: 1.1;
}

.stat-block {
  display: inline-block;
}

.stat-number {
  font-size: clamp(4.5rem, 12.5vw, 10.55rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-white);
  line-height: 0.9;
  margin-bottom: 0;
}

.stat-label {
  display: block;
  width: 60.8%;
  margin-left: auto;
  margin-top: 14px;
  padding: 14px 24px;
  background: var(--text-white);
  border-radius: var(--r-pill);
  text-align: center;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  /* Cut-out effect: text shows the page gradient behind the pill */
  background-clip: padding-box;
}

.stat-label span {
  background:
    linear-gradient(var(--bg-angle),
      var(--bg-0) 0%,
      #150130 25%,
      #2a0038 50%,
      #480042 75%,
      #650049 100%
    );
  background-attachment: fixed;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ── Marquee Carousel ── */
.marquee-section {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 40px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: m-scroll 45s linear infinite;
  will-change: transform;
}

.marquee--reverse .marquee-track {
  animation-name: m-scroll-rev;
  animation-duration: 50s;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.m-item {
  flex: 0 0 144px;
  height: 96px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
}

@keyframes m-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes m-scroll-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ── Trust Section (closing) ── */
.trust {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 40px 48px 160px;
}

.trust-header {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.trust-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text-white);
  margin-bottom: 20px;
}

.trust-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-soft);
}

.trust-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  max-width: 980px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-num {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--p-500);
  padding-top: 4px;
}

.trust-item p {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-white);
}

/* ── FAQ Section ── */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
}

.faq {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 40px 48px 160px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  gap: 48px;
  align-items: start;
}

.faq-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-white);
  margin-bottom: 16px;
}

.faq-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-mute);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color var(--t-fast);
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::marker {
  display: none;
  content: '';
}

.faq-q::after {
  content: '?';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--p-300);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--p-300);
  background: transparent;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] .faq-q::after {
  background: var(--p-300);
  color: var(--bg-0);
  border-color: var(--p-300);
}

.faq-q:hover {
  color: var(--p-100);
}

.faq-a {
  padding: 0 4px 24px;
  max-width: 70ch;
}

.faq-a p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-soft);
}

/* Smooth open/close animation in supporting browsers */
.faq-item::details-content {
  height: 0;
  overflow: clip;
  transition: height 0.4s ease, content-visibility 0.4s allow-discrete;
}

.faq-item[open]::details-content {
  height: auto;
}

/* Highlight cards (always visible, right column) */
.faq-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 32px;
}

.faq-highlight {
  padding: 32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  background: rgba(7, 1, 45, 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.faq-highlight-title {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-100);
  margin-bottom: 14px;
}

.faq-highlight-text {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ── Hero CTA single button (used on /pentru-contabili) ── */
.hero-cta {
  margin-top: 40px;
  margin-left: -6px;
}

/* Two-button hero CTA reuses the global .cta-row 30/70 layout.
   No additional overrides needed here. */

.cta-btn--solid {
  background: var(--p-700);
  color: var(--text-white);
  border-color: transparent;
}

.cta-btn--solid:hover {
  background: var(--p-500);
}

/* ── Benefits section (/pentru-contabili) ── */
.benefits {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 160px 48px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit {
  display: grid;
  grid-template-columns: minmax(180px, 22%) 1fr;
  gap: 56px;
  padding: 60px 0;
}

.benefit:first-child {
  padding-top: 40px;
}

.benefit-meta {
  position: sticky;
  top: 32px;
  align-self: start;
}

.benefit-num {
  display: block;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(201, 75, 173, 0.55);
  line-height: 1;
  margin-bottom: 18px;
  font-feature-settings: "tnum";
}

.benefit-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-100);
  line-height: 1.4;
  max-width: 22ch;
}

.benefit-content {
  min-width: 0;
}

.benefit-title {
  display: flex;
  width: 100%;
  background: var(--text-white);
  padding: 18px 28px;
  margin-bottom: 40px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 0;
}

.benefit-title span {
  background:
    linear-gradient(var(--bg-angle),
      var(--bg-0) 0%,
      #150130 25%,
      #2a0038 50%,
      #480042 75%,
      #650049 100%
    );
  background-attachment: fixed;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

.benefit-rows {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.benefit-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}

.benefit-row:first-child {
  border-top: none;
  padding-top: 0;
}

.benefit-bullet {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-white);
  letter-spacing: -0.005em;
}

.benefit-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-soft);
  text-align: justify;
  hyphens: auto;
}

/* ── CTA Cards (/pentru-contabili — bottom of page) ── */
.cta-cards {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 80px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 52px 48px 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%),
    rgba(7, 1, 45, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  overflow: hidden;
}

/* Mouse-follow border ring (no halo / no glow) */
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: radial-gradient(
    280px circle at var(--mx, -100px) var(--my, -100px),
    var(--p-50) 0%,
    var(--p-200) 25%,
    var(--p-400) 50%,
    transparent 75%
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base);
}

.cta-card:hover::after {
  opacity: 1;
}

.cta-card-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-100);
  margin-bottom: 18px;
}

.cta-card-title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-white);
  margin-bottom: 24px;
}

.cta-card-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 36px;
  text-align: justify;
  hyphens: auto;
}

.cta-card-btn {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  outline: none;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.cta-card-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

.cta-card-btn--solid {
  background: var(--p-700);
  border-color: transparent;
}

.cta-card-btn--solid:hover {
  background: var(--p-500);
  border-color: transparent;
}

/* ── Brand Credit (Antrepremame Fundația — recreated logo) ── */
.brand-credit {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 60px 48px 80px;          /* extra top padding pushes the section away from .cta-cards above */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;                         /* between attribution group and the logo (visual separation) */
}

.brand-credit-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p-100);
  text-align: center;
}

.brand-credit-attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;                         /* tight gap — the two eyebrows form one group */
}

/* Parent sizes to widest child (the name); pill stretches to match it.
   Whole logo is a link to the foundation site — strip default <a> styling.
   Copy newline between flex items is normalized in JS (see script.js). */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity var(--t-fast);
}

.logo-mark:hover {
  opacity: 0.85;
}

.logo-mark-name {
  display: block;
  text-align: center;
  font-weight: 900;
  font-size: clamp(0.9rem, 1.92vw, 1.68rem);   /* 60% of original logo size */
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1;
  white-space: nowrap;
}

.logo-mark-pill {
  /* Pill is a flex box: its OWN font-size matches the name so its
     height equals the name height; the inner <span> carries FUNDAȚIA
     at a smaller font-size (centered inside the pill). */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1em;                                /* = name font-size = name height */
  font-size: clamp(0.9rem, 1.92vw, 1.68rem);  /* same as name (60% of original) */
  background: var(--text-white);
  border-radius: 0;
  background-clip: padding-box;
}

.logo-mark-pill span {
  /* FUNDAȚIA — smaller than the name (ratio inspired by Divi reference
     where ANTREPREMAME ≈ default size and FUNDAȚIA ≈ 6vh). */
  font-size: 0.792em;       /* relative to pill font-size = ratio vs name */
  font-weight: 900;
  letter-spacing: 0;
  /* line-height ≥ Montserrat's typo total (≈1.12) so the Ț cedilla stays
     inside the span's line-box and background-clip: text paints it. */
  line-height: 1.3;
  text-transform: uppercase;
  /* Knockout: text reveals the page gradient through the white pill */
  background:
    linear-gradient(var(--bg-angle),
      var(--bg-0) 0%,
      #150130 25%,
      #2a0038 50%,
      #480042 75%,
      #650049 100%
    );
  background-attachment: fixed;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ── Footer ── */
.footer {
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 80px 48px 40px;
}

/* Arcadi parent-brand mark — small, centered, sits above the footer grid */
.footer-arcadi {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 48px;
  opacity: 0.85;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
}

.footer-col--right {
  text-align: right;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links--right {
  align-items: flex-end;
}

.footer-link {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--text-soft);          /* same body-text color as .faq-highlight-text */
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--t-fast);
}

.footer-link:hover {
  color: var(--p-100);
}

.footer-bottom {
  position: relative;
  padding-top: 32px;
}

/* Narrow centered separator line */
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 560px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0,
    rgba(255, 255, 255, 0.18) 25%,
    rgba(255, 255, 255, 0.18) 75%,
    transparent 100%
  );
}

/* Discrete purple glow centered below the separator */
.footer-bottom::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 80px;
  background: radial-gradient(
    ellipse at top,
    rgba(201, 75, 173, 0.18),
    transparent 70%
  );
  filter: blur(8px);
  pointer-events: none;
}

.footer-bottom p {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
}

/* ── Responsive: Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    flex-direction: column;
    min-height: auto;
    padding: 100px 28px 140px;
    text-align: left;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  /* Hide visual placeholder on mobile until an image is added */
  .hero-visual {
    display: none;
  }

  .hero-bottom {
    left: 28px;
    right: 28px;
  }

  .intro {
    padding: 60px 28px 20px;
  }

  .intro-lead {
    margin-bottom: 60px;
    text-align: left;
  }

  .intro-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-text { order: 1; }
  .flip-card  { order: 2; }

  .flip-card {
    aspect-ratio: 3 / 4;
    max-width: 320px;
    margin: 0 auto;
  }

  .mechanisms {
    padding: 90px 28px 30px;
  }

  .mechanisms-header {
    /* Block-centered on mobile: header uses full content width and
       all children (title, subtitle, buttons) align on the same axis. */
    display: block;
    margin: 0 auto 48px;
    text-align: center;
    max-width: 600px;
  }

  .mechanisms-titles {
    margin-bottom: 28px;             /* equal gap above the cta-row */
  }

  .mechanisms-title {
    margin-bottom: 14px;             /* equal-feeling rhythm with subtitle */
  }

  .cta-row {
    width: 100%;
    grid-template-columns: 1fr;      /* buttons stack vertically */
    margin-top: 0;                    /* the .mechanisms-titles handles the gap */
  }

  .mechanisms-subtitle {
    white-space: normal;
    letter-spacing: 0.15em;
    line-height: 1.5;
  }

  .detail-text {
    padding: 14px 0;            /* drop horizontal padding on mobile */
  }

  .detail-cta {
    margin-right: 0;            /* match the mobile detail-text padding */
  }

  .mechanism {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  /* Hide image placeholders on mobile */
  .mechanism-visual {
    display: none;
  }

  /* Reset right-alignment for mobile */
  .mechanism-content {
    margin-left: 0;
    max-width: 100%;
    text-align: left;
  }

  .mechanism-heading {
    align-items: flex-start;
  }

  .mechanism-tag {
    margin-right: 0;
    margin-left: 24px;
  }

  .mechanism-name {
    min-width: 0;
    width: 100%;
    padding: 16px 24px;
    font-size: clamp(1.4rem, 6vw, 2rem);
    text-align: left;
  }

  .audience {
    padding: 70px 28px 90px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 24px;
  }

  /* On mobile, stack everything in a single column */
  .audience-card[data-side="left"]  { grid-column: 1; grid-row: 1; }
  .audience-card[data-side="right"] { grid-column: 1; grid-row: 2; }

  .audience-grid[data-active="contabili"] .audience-bullets[data-panel="contabili"],
  .audience-grid[data-active="antreprenori"] .audience-bullets[data-panel="antreprenori"] {
    grid-column: 1;
    grid-row: 3;
  }

  .audience-grid[data-active="contabili"] .audience-desc,
  .audience-grid[data-active="antreprenori"] .audience-desc {
    grid-column: 1;
    grid-row: 4;
    position: static;
  }

  .audience-card {
    min-height: 420px;
    padding: 44px 32px 36px;
  }

  .card-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .detail-panel.is-active {
    gap: 36px;
  }

  .stat {
    padding: 90px 28px 110px;
  }

  .marquee-section {
    padding: 20px 28px 90px;
    gap: 16px;
  }

  .m-item {
    flex: 0 0 120px;
    height: 80px;
  }

  .trust {
    padding: 30px 28px 80px;
  }

  .trust-header {
    margin-bottom: 56px;
    text-align: left;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq {
    padding: 30px 28px 100px;
  }

  .faq-header {
    margin-bottom: 40px;
    text-align: left;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-highlights {
    position: static;
    order: -1;
  }

  .benefits {
    padding: 40px 28px 80px;
    gap: 24px;
  }

  .benefit {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0;
  }

  .benefit-meta {
    position: static;
  }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  .cta-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 60px 28px 60px;
  }

  .cta-card {
    padding: 40px 32px 36px;
  }

  .brand-credit {
    padding: 40px 28px 60px;
  }

  .footer {
    padding: 60px 28px 32px;
  }

  /* PYRAMID MODE — columns stay side-by-side but their alignments flip
     inward so items lean toward an imaginary central line, forming an
     A-shape (top: short items close to center; bottom: long items
     fanning out). Echoes the triangular Arcadi mark above. */
  .footer-grid {
    gap: 40px;                          /* tighter than the 80px desktop gap */
  }

  .footer-links {
    align-items: flex-end;              /* left col items lean toward center */
  }

  .footer-links--right {
    align-items: flex-start;            /* right col items lean toward center */
  }
}

/* ── Responsive: Footer stack (≤ 600px) ── */
/* Below this width the longest left + right items would touch with a
   <50px gap, so stack vertically. Resets pyramid alignment back to the
   standard left-aligned single column. */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }

  .footer-links,
  .footer-links--right {
    align-items: flex-start;
  }
}

/* ── Responsive: Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .hero {
    padding: 80px 20px 120px;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .hero-bottom {
    left: 20px;
    right: 20px;
    bottom: 32px;
    font-size: 0.78rem;
  }

  .mechanisms {
    padding: 70px 20px 20px;
  }

  .mechanism-tag {
    margin-left: 16px;
  }

  .mechanism-name {
    padding: 14px 20px;
  }

  .audience {
    padding: 60px 20px 80px;
  }

  .audience-card {
    min-height: 380px;
    padding: 40px 28px 32px;
    border-radius: 16px;
  }

  .stat {
    padding: 70px 20px 90px;
  }
}
