:root {
  --bg: #ffffff;
  --text: #151c2d;
  --muted: #405067;
  --line: rgba(21, 28, 45, .12);
  --orange: #fe884f;
  --orange-soft: rgba(254, 136, 79, .13);
  --orange-dark: #c94e1c;
  --cta: #dc5b24;
  --cta-dark: #b74316;
  --blue: #243f7a;
  --focus: rgba(36, 63, 122, .88);
  --shadow: 0 24px 64px rgba(21, 28, 45, .09);
  --shadow-soft: 0 16px 38px rgba(21, 28, 45, .07);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: "Ubuntu", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
  touch-action: none;
}

button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(254, 136, 79, .24); color: var(--text); }
 .hidden { display: none !important; }

.floating-cta { display: none; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(220, 91, 36, .28);
  font-weight: 700;
  transition: transform .18s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 9% 6%, rgba(254, 136, 79, .16), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(36, 63, 122, .06), transparent 28rem),
    linear-gradient(180deg, #fff8f2 0, #fff 520px, #fff 100%);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { color: var(--muted); text-wrap: pretty; }

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.5vw, 74px);
  line-height: .99;
  letter-spacing: -.048em;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.043em;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.24;
  letter-spacing: -.018em;
  font-weight: 700;
}

h4 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.text-accent {
  position: relative;
  display: inline-block;
  color: var(--orange-dark);
  text-shadow: 0 12px 30px rgba(201, 78, 28, .13);
}

.text-accent::after {
  content: "";
  position: absolute;
  left: .02em;
  right: .02em;
  bottom: .04em;
  height: .2em;
  border-radius: 999px;
  background: rgba(254, 136, 79, .25);
  z-index: -1;
}

.eyebrow,
.card-kicker,
.live-label,
.badge-caption {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow {
  gap: 10px;
  margin-bottom: 16px;
  padding: 7px 14px;
  color: var(--orange-dark);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(201, 78, 28, .22);
  box-shadow: 0 10px 26px rgba(21, 28, 45, .06), inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 6px rgba(201, 78, 28, .12);
}

.card-kicker {
  margin-bottom: 18px;
  padding: 6px 12px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid rgba(201, 78, 28, .10);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px) scale(.992); }

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  border-color: rgba(255, 255, 255, .20);
  gap: 10px;
  box-shadow: 0 22px 48px rgba(220, 91, 36, .30);
}

.btn-primary::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  order: 2;
  margin-left: 2px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 2px;
  opacity: .9;
  transform: rotate(45deg);
  transition: transform .22s ease, opacity .22s ease;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  opacity: 1;
  transform: translateX(2px) rotate(45deg);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: skewX(-18deg);
  transition: transform .65s ease;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after { transform: translateX(330%) skewX(-18deg); }
.btn-primary:hover,
.btn-primary:focus-visible { box-shadow: 0 24px 54px rgba(220, 91, 36, .34); }

.btn-secondary {
  color: var(--text);
  background: #fff;
  border-color: rgba(21, 28, 45, .17);
  box-shadow: 0 12px 28px rgba(21, 28, 45, .07);
}

.btn-secondary:hover {
  color: var(--orange-dark);
  border-color: rgba(201, 78, 28, .30);
  box-shadow: 0 16px 34px rgba(21, 28, 45, .08);
}

.btn:focus-visible,
.brand:focus-visible,
.nav-links a:focus-visible,
.mobile-menu a:focus-visible,
.menu-toggle:focus-visible,
.amount-btn:focus-visible,
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible,
.custom-input:focus-visible,
.success-state:focus-visible,
.radio-card:has(input:focus-visible) {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .982);
  border-bottom: 1px solid rgba(21, 28, 45, .12);
  box-shadow: 0 1px 0 rgba(21, 28, 45, .04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.topbar.is-scrolled,
.topbar.is-menu-open {
  background: rgba(255, 255, 255, .975);
  border-bottom-color: rgba(201, 78, 28, .18);
  box-shadow: 0 14px 42px rgba(21, 28, 45, .10);
}

.scroll-progress {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: rgba(201, 78, 28, .06);
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--cta-dark), var(--cta), #f06f35);
  border-radius: 0 999px 999px 0;
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  border-radius: 16px;
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(254, 136, 79, .25);
}

.brand-mark-svg { display: block; width: 100%; height: 100%; }
.brand-text { display: grid; line-height: 1; }
.brand-text span:first-child { font-size: 18px; letter-spacing: .08em; }
.brand-text span:last-child { margin-top: 4px; color: var(--orange-dark); font-size: 12px; letter-spacing: .24em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding-block: 12px;
  color: #475569;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--cta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] { color: var(--orange-dark); }
.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after { transform: scaleX(1); }
/* Keep the hero CTA dominant in the first viewport; strengthen the header CTA after scroll. */
.nav-cta {
  min-height: 48px;
  padding-inline: 26px;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(220, 91, 36, .24);
}

.topbar:not(.is-scrolled):not(.is-menu-open) .nav-cta {
  color: var(--cta);
  background: #fff;
  border-color: rgba(201, 78, 28, .20);
  box-shadow: 0 8px 20px rgba(21, 28, 45, .06);
}

.topbar:not(.is-scrolled):not(.is-menu-open) .nav-cta::after { display: none; }

.topbar:not(.is-scrolled):not(.is-menu-open) .nav-cta:hover,
.topbar:not(.is-scrolled):not(.is-menu-open) .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  border-color: rgba(255, 255, 255, .20);
  box-shadow: 0 16px 34px rgba(220, 91, 36, .26);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle svg { width: 24px; height: 24px; }

.menu-toggle[aria-expanded="true"] {
  color: #fff;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  border-color: var(--cta-dark);
  box-shadow: 0 12px 26px rgba(220, 91, 36, .22);
}

.menu-toggle[aria-expanded="true"] svg path { stroke-width: 2.4; }

.mobile-menu {
  padding: 8px 20px 24px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-radius: 0 0 22px 22px;
  box-shadow: 0 22px 52px rgba(21, 28, 45, .13);
  max-height: calc(100svh - 70px);
  overflow: auto;
  overscroll-behavior: contain;
}

.mobile-menu[aria-hidden="true"] { pointer-events: none; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 12px;
  color: #475569;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
}
.mobile-menu a:not(.mobile-menu-cta) {
  background: rgba(21, 28, 45, .025);
  border-color: rgba(21, 28, 45, .07);
}
.mobile-menu a:not(.mobile-menu-cta)::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  opacity: .45;
  transform: rotate(45deg);
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu a:not(.mobile-menu-cta):hover::after,
.mobile-menu a:not(.mobile-menu-cta):focus-visible::after,
.mobile-menu a:not(.mobile-menu-cta)[aria-current="true"]::after {
  opacity: .9;
  transform: translateX(2px) rotate(45deg);
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible,
.mobile-menu a[aria-current="true"] {
  color: var(--cta);
  background: rgba(220, 91, 36, .07);
  border-color: rgba(220, 91, 36, .12);
}
.mobile-menu .mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  min-height: 52px;
  color: #fff;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(220, 91, 36, .24);
}
.mobile-menu .mobile-menu-cta::after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 2px;
  opacity: .92;
  transform: rotate(45deg);
  transition: transform .22s ease, opacity .22s ease;
}
.mobile-menu .mobile-menu-cta:hover::after,
.mobile-menu .mobile-menu-cta:focus-visible::after {
  opacity: 1;
  transform: translateX(2px) rotate(45deg);
}
.mobile-menu .mobile-menu-cta:hover,
.mobile-menu .mobile-menu-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--cta-dark), var(--cta));
}

.hero {
  position: relative;
  padding: clamp(46px, 5vw, 70px) 0 clamp(58px, 6vw, 86px);
  overflow: clip;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 8%, rgba(254, 136, 79, .16), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(36, 63, 122, .06), transparent 28rem),
    linear-gradient(180deg, #fff7f1 0%, #fffdfb 56%, #fff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12vw -20vw 48vw;
  height: 34vw;
  min-height: 250px;
  border-radius: 999px;
  background: rgba(254, 136, 79, .055);
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  max-width: 790px;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(201, 78, 28, .13);
  border-radius: clamp(28px, 3vw, 40px);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,250,246,.82));
  box-shadow: 0 30px 82px rgba(21, 28, 45, .08), inset 0 1px 0 rgba(255,255,255,.8);
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--cta-dark), var(--cta), rgba(254, 136, 79, .2));
}

.hero-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: #2e3e55;
  font-size: clamp(18px, 1.55vw, 20px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 32px;
}

.hero-actions .btn-primary {
  min-height: 60px;
  min-width: min(100%, 244px);
  padding-inline: 34px;
  box-shadow: 0 24px 54px rgba(220, 91, 36, .35), 0 0 0 8px rgba(220, 91, 36, .07);
}

.hero-actions .btn-secondary {
  min-height: 56px;
  gap: 8px;
  color: #2f3f54;
  background: rgba(255, 255, 255, .72);
  border-color: rgba(21, 28, 45, .12);
  box-shadow: none;
}
.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
  color: var(--orange-dark);
  background: #fff;
  border-color: rgba(201, 78, 28, .30);
}

.hero-actions .btn-secondary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-left: 0;
  border-top: 0;
  border-radius: 1px;
  opacity: .66;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .22s ease, opacity .22s ease;
}

.hero-actions .btn-secondary:hover::after,
.hero-actions .btn-secondary:focus-visible::after {
  opacity: .9;
  transform: translateY(0) rotate(45deg);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 26px;
  padding: 10px;
  border: 1px solid rgba(201, 78, 28, .16);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 44px rgba(21, 28, 45, .065);
}

.stat-card,
.module-card,
.direction-card,
.timeline-card,
.copy-card,
.goal-card,
.value-main,
.career-card,
.support-card,
.badge-panel,
.badge-stage,
.contact-card,
.form-shell,
.person-card,
.impact-box,
.donation-widget {
  border: 1px solid rgba(21, 28, 45, .11);
  background: linear-gradient(180deg, #fff, #fffdfb);
  box-shadow: var(--shadow-soft);
}

.proof-item {
  position: relative;
  min-height: 72px;
  padding: 13px 14px 15px;
  overflow: hidden;
  border-right: 1px solid rgba(201, 78, 28, .13);
  background: transparent;
}
.proof-item:last-child { border-right: 0; }

.proof-item::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 22px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cta), rgba(254, 136, 79, .10));
}

.proof-number,
.stat-number {
  display: block;
  color: #c94e1c;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.proof-number { font-size: 27px; }
.proof-label {
  display: block;
  margin-top: 5px;
  color: #34455a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.22;
}

.hero-visual { display: grid; place-items: center; min-height: 360px; }
.hero-visual-card {
  position: relative;
  width: min(372px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 78, 28, .17);
  border-radius: 44px;
  background: radial-gradient(circle at 50% 42%, rgba(254, 136, 79, .12), transparent 45%), linear-gradient(145deg, #fff, #fff8f2);
  box-shadow: 0 36px 90px rgba(21,28,45,.12), 0 20px 48px rgba(201, 78, 28, .11);
}
.hero-visual-card::before,
.hero-visual-card::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(254, 136, 79, .34);
  border-radius: 40px;
  animation: spin 48s linear infinite;
}
.hero-visual-card::after {
  inset: 58px;
  border-color: rgba(36,63,122,.14);
  animation-duration: 64s;
  animation-direction: reverse;
}
.hero-rocket-svg {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  filter: drop-shadow(0 22px 30px rgba(254, 136, 79, .22));
  animation: float 5.8s ease-in-out infinite;
}

/* v3.19: pašalinti besisukantys dashed ornamentai aplink hero logo ir pakeisti ramesniu, švaresniu statiniu apipavidalinimu. */
.hero-visual-card::before,
.hero-visual-card::after {
  display: none;
}
.hero-visual-card {
  border: 1px solid rgba(201, 78, 28, .14);
  background:
    radial-gradient(circle at 50% 34%, rgba(254, 136, 79, .16), transparent 38%),
    radial-gradient(circle at 50% 82%, rgba(36,63,122,.05), transparent 30%),
    linear-gradient(145deg, #fff, #fff8f2);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 36px 90px rgba(21,28,45,.12),
    0 20px 48px rgba(201, 78, 28, .10);
}

.section {
  position: relative;
  padding: clamp(66px, 7vw, 92px) 0;
}
.section + .section { border-top: 1px solid rgba(21, 28, 45, .06); }
.section--white { background: #fff; }
.section#parama {
  padding-block: clamp(46px, 5.2vw, 72px);
}
.section--soft { background: linear-gradient(180deg, #f8fafc 0%, #fff 94%); }
.section--warm { background: linear-gradient(180deg, #fff9f4 0%, #fff 94%); }

.section-head {
  max-width: 850px;
  margin: 0 auto clamp(32px, 4vw, 50px);
  text-align: center;
}
.section-head h2 { max-width: 880px; margin-inline: auto; }
.section-head p {
  max-width: 760px;
  margin-inline: auto;
  color: #3b4d62;
  font-size: 18px;
}
.section-head::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cta), transparent);
  opacity: .75;
}

.stats-grid,
.cards-grid,
.directions-grid {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}
.stats-grid {
  max-width: 1060px;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 10px;
  border: 1px solid rgba(201, 78, 28, .14);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 246, .86), rgba(255, 255, 255, .96));
  box-shadow: 0 18px 44px rgba(21, 28, 45, .065);
}
.cards-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.modules-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.directions-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.stats-section {
  padding-block: clamp(48px, 5.2vw, 70px);
}
.stats-section .section-head {
  max-width: 760px;
  margin-bottom: clamp(26px, 3.2vw, 36px);
}
.stats-section .section-head p {
  font-size: 17px;
}
.stats-section .stat-card {
  min-height: 138px;
  display: grid;
  align-content: start;
  gap: 5px;
  padding: 25px 24px 26px;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
}
.stats-section .stat-card + .stat-card {
  border-left: 1px solid rgba(201, 78, 28, .12);
}
.stats-section .stat-card::before,
.stats-section .stat-card::after {
  display: none;
}
.stats-section .stat-number {
  width: fit-content;
  margin-bottom: 10px;
  padding: 0;
  color: #dc5b24;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(40px, 4.2vw, 54px);
  white-space: nowrap;
}
.stats-section .stat-card:last-child .stat-number {
  font-size: clamp(38px, 3.8vw, 50px);
  letter-spacing: -.04em;
}
.stats-section .stat-card p:first-of-type {
  margin-bottom: 1px;
  color: #162036;
  font-size: 17px;
  line-height: 1.25;
}
.stats-section .stat-card p:last-of-type {
  max-width: 180px;
  margin-bottom: 0;
  padding-right: 0;
  color: #526175;
  font-size: 14px;
  line-height: 1.42;
}


.stat-card {
  position: relative;
  min-height: 168px;
  padding: 28px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.stat-card::before,
.module-card::before,
.support-card::before,
.form-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cta-dark), var(--cta), rgba(254, 136, 79, .22));
}
.stat-number {
  margin-bottom: 8px;
  font-size: clamp(38px, 5vw, 58px);
}
.stat-card p:first-of-type { margin-bottom: 6px; color: var(--text); font-weight: 700; font-size: 18px; }
.stat-card p:last-of-type { margin-bottom: 0; }

.split-grid,
.value-grid,
.badge-grid,
.contact-grid {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
}
.split-grid { grid-template-columns: minmax(0, .96fr) minmax(320px, 1.04fr); align-items: start; }
.value-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); }
.badge-grid { grid-template-columns: minmax(0, .86fr) minmax(340px, 1fr); align-items: stretch; }
.badge-grid > * { min-width: 0; }
.contact-grid { grid-template-columns: minmax(0, .86fr) minmax(340px, 1fr); align-items: start; }

#apie .split-grid { align-items: stretch; }
#apie .copy-card,
#apie .goal-card { min-height: 100%; }
#apie .goal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1061px) {
  #verte .value-grid {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: clamp(28px, 3.4vw, 48px);
  }

  #verte .career-card {
    align-self: center;
    min-height: auto;
    padding: clamp(30px, 3vw, 40px);
    justify-content: flex-start;
  }
}

.copy-card,
.goal-card,
.value-main,
.career-card,
.badge-panel,
.contact-card,
.form-shell { padding: clamp(28px, 3vw, 38px); border-radius: var(--radius-lg); }
.goal-card,
.career-card { background: linear-gradient(145deg, #fff8f2, #fff); border-color: rgba(201, 78, 28, .18); box-shadow: var(--shadow); }
.goal-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.4vw, 32px);
}
.goal-card h4 {
  width: fit-content;
  margin: 22px 0 14px;
  padding: 7px 12px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid rgba(201, 78, 28, .12);
  border-radius: 999px;
}

.copy-card p:last-child,
.goal-card p:last-child,
.module-card p:last-child,
.direction-card p:last-child,
.timeline-card p:last-child,
.value-main p:last-child,
.career-card p:last-child,
.contact-card p:last-child { margin-bottom: 0; }

.task-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.task-list span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 68px;
  padding: 14px 15px;
  color: #33445b;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(201, 78, 28, .13);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(21, 28, 45, .045);
  font-weight: 600;
}

.task-list span::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta), var(--orange));
  box-shadow: 0 0 0 1px rgba(201, 78, 28, .24), 0 8px 18px rgba(201, 78, 28, .14);
}

@media (min-width: 1061px) {
  .goal-card .task-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .goal-card .task-list span {
    min-height: 104px;
    padding: 16px;
  }
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.value-actions,
.section-actions {
  display: flex;
  align-items: center;
}
.value-actions {
  margin-top: 28px;
}
.value-actions .btn {
  min-width: min(100%, 260px);
}
.section-actions {
  justify-content: center;
  margin-top: clamp(30px, 3.6vw, 46px);
}
.section-actions .btn {
  min-width: min(100%, 286px);
}
#kryptys .section-actions {
  margin-top: clamp(28px, 3.4vw, 42px);
}
.value-list span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  color: #405066;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(201, 78, 28, .12);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(21, 28, 45, .045);
  font-weight: 500;
}
.value-list span::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cta), var(--orange));
  box-shadow: 0 0 0 1px rgba(201, 78, 28, .24), 0 8px 18px rgba(201, 78, 28, .14);
}

.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 22px 20px 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #fffaf6);
}
.timeline-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.direction-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.module-card .card-kicker {
  margin-bottom: 16px;
  padding: 7px 11px;
  background: #fff3e9;
  border-color: rgba(201, 78, 28, .16);
}
.module-card h3 {
  margin-bottom: 12px;
}
.modules-grid .module-card h3 {
  white-space: normal;
  text-wrap: wrap;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}
.module-card p {
  margin-bottom: 0;
  line-height: 1.58;
}
.direction-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 8px 16px;
  align-content: start;
  padding: 28px;
}
.direction-icon {
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--orange-dark);
  background: linear-gradient(145deg, rgba(254, 136, 79, .18), rgba(36,63,122,.07));
  border: 1px solid rgba(201, 78, 28, .14);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(201, 78, 28, .08);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.direction-card h3 {
  margin-bottom: 2px;
}
.direction-card p {
  margin-bottom: 0;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 1040px;
  margin-inline: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 24px;
  width: 2px;
  background: linear-gradient(180deg, rgba(220, 91, 36, .82), rgba(254, 136, 79, .38) 70%, rgba(254, 136, 79, .06));
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
.timeline-dot {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 78, 28, .18);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 22px rgba(201, 78, 28, .10), inset 0 0 0 8px rgba(254, 136, 79, .07);
}
.timeline-dot::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 0 6px rgba(220, 91, 36, .09);
}
.timeline-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 4px;
  align-items: start;
  padding: 22px 26px 22px 24px;
  border-left: 4px solid rgba(201, 78, 28, .20);
  box-shadow: 0 12px 30px rgba(21, 28, 45, .055);
}
.timeline-card .card-kicker {
  grid-row: 1 / span 2;
  margin: 1px 0 0;
  justify-self: start;
  background: rgba(201, 78, 28, .08);
  border-color: rgba(201, 78, 28, .15);
}
.timeline-card h3,
.timeline-card p {
  grid-column: 2;
}
.timeline-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
  line-height: 1.24;
}
.timeline-card p { line-height: 1.55; }
.timeline-card::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 25px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #fff, #fffdfb);
  border-left: 1px solid rgba(21, 28, 45, .10);
  border-bottom: 1px solid rgba(21, 28, 45, .10);
}

.career-card {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}
.career-card > h3,
.career-card > p {
  margin-bottom: 0;
}
.impact-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 8px;
  align-items: start;
  margin-top: 2px;
  padding: 18px 20px 19px;
  overflow: hidden;
  border-color: rgba(201, 78, 28, .18);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #fff8f2);
}
.impact-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cta-dark), var(--cta), var(--orange));
}
.impact-box span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 5px 10px;
  color: var(--orange-dark);
  background: rgba(254, 136, 79, .12);
  border: 1px solid rgba(201, 78, 28, .12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.impact-box span + span {
  margin-top: 0;
  color: var(--blue);
  background: rgba(36, 63, 122, .07);
  border-color: rgba(36, 63, 122, .12);
}
.impact-box p { grid-column: 1 / -1; margin: 4px 0 0; color: #2d3c51; font-weight: 700; }

#verte .career-card h3 {
  max-width: 420px;
  font-size: clamp(23px, 2vw, 29px);
}
#verte .career-card p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.64;
}
#verte .impact-box {
  max-width: 540px;
}

.support-wrap { display: grid; justify-content: center; justify-items: center; }
.support-card {
  position: relative;
  width: min(1040px, 100%);
  max-width: 1040px;
  display: grid;
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
  padding: clamp(30px, 4.2vw, 50px);
  overflow: hidden;
  border-color: rgba(201, 78, 28, .22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 14% 0%, rgba(254, 136, 79, .15), transparent 20rem),
    radial-gradient(circle at 88% 100%, rgba(36,63,122,.055), transparent 18rem),
    linear-gradient(145deg, #fff, #fff8f2);
  box-shadow: 0 30px 78px rgba(201, 78, 28, .11), var(--shadow-soft);
}
.support-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-inline: auto;
  text-align: center;
}
.support-card h2 {
  max-width: 700px;
  margin: 0;
  text-align: inherit;
}
.support-copy .widget-title {
  max-width: 480px;
  color: #2e3e55;
  font-size: 18px;
  line-height: 1.38;
  text-align: inherit;
}
.support-copy .widget-subtitle { margin: 0; }
.donation-widget {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
  padding: clamp(22px, 2.6vw, 30px);
  border-color: rgba(201, 78, 28, .18);
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 22px 52px rgba(21, 28, 45, .075), inset 0 1px 0 rgba(255,255,255,.85);
}
.widget-title { color: var(--text); font-size: 17px; font-weight: 700; text-align: center; }
.widget-subtitle {
  width: fit-content;
  margin: 0 auto;
  padding: 7px 12px;
  color: var(--orange-dark);
  background: rgba(254, 136, 79, .12);
  border: 1px solid rgba(201, 78, 28, .12);
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.amount-btn {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(21,28,45,.15);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(21,28,45,.04), inset 0 1px 0 rgba(255,255,255,.9);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.amount-btn:hover,
.amount-btn.selected {
  color: #fff;
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  border-color: var(--cta-dark);
  box-shadow: 0 16px 34px rgba(201, 78, 28, .27);
}
.amount-btn.selected::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px;
  height: 12px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
  opacity: .92;
}
.submit-btn,
.form-submit { width: 100%; border: 0; min-height: 62px; }
.submit-btn { margin-top: 2px; box-shadow: 0 22px 48px rgba(220, 91, 36, .30); }
.donation-feedback { margin: 12px 0 0; padding: 12px 14px; border-radius: 16px; background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; font-size: 14px; font-weight: 700; text-align: center; }
.donation-feedback.is-error { background: #fff7ed; border-color: rgba(194,65,12,.26); color: #7c2d12; }
.donation-feedback:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.field { margin-top: 18px; }
.field label,
.field-title { display: block; margin-bottom: 8px; color: var(--text); font-weight: 700; }
.input,
.select,
.textarea,
.custom-input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(21,28,45,.14);
  border-radius: 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.custom-input { margin-bottom: 12px; padding-inline: 18px; border-radius: 999px; }
.textarea { min-height: 122px; resize: vertical; }
.input:hover,
.select:hover,
.textarea:hover,
.custom-input:hover { border-color: rgba(201, 78, 28, .32); background: #fff; }
.input:focus,
.select:focus,
.textarea:focus,
.custom-input:focus { border-color: rgba(201, 78, 28, .70); box-shadow: 0 0 0 4px rgba(201, 78, 28, .13), inset 0 1px 0 rgba(255,255,255,.92); }
.input:user-invalid,
.select:user-invalid,
.textarea:user-invalid,
.custom-input:user-invalid,
.input[aria-invalid="true"],
.select[aria-invalid="true"],
.textarea[aria-invalid="true"] { border-color: rgba(194,65,12,.72); background: #fff7ed; box-shadow: 0 0 0 4px rgba(194,65,12,.14), inset 0 1px 0 rgba(255,255,255,.92); }
.custom-input:not(:placeholder-shown) { border-color: rgba(201, 78, 28, .58); background: #fffaf6; box-shadow: 0 0 0 4px rgba(201, 78, 28, .10), inset 0 1px 0 rgba(255,255,255,.92); font-weight: 700; }
.custom-input[aria-invalid="true"] { border-color: rgba(194,65,12,.70); background: #fff7ed; box-shadow: 0 0 0 4px rgba(194,65,12,.14), inset 0 1px 0 rgba(255,255,255,.92); }
.contact-form .select:valid { border-color: rgba(201, 78, 28, .58); background: #fffaf6; box-shadow: 0 0 0 4px rgba(201, 78, 28, .10), inset 0 1px 0 rgba(255,255,255,.92); font-weight: 700; color: #172033; }
.input::placeholder,
.textarea::placeholder,
.custom-input::placeholder { color: #526175; opacity: 1; }

.badge-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(254, 136, 79, .11), transparent 18rem),
    linear-gradient(180deg, #fff, #fffdfb);
}
.badge-panel > p {
  color: #334459;
  font-size: 18px;
  line-height: 1.72;
}
.badge-controls {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  padding: clamp(16px, 2vw, 20px);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,246,.78));
  border: 1px solid rgba(201, 78, 28, .13);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(21,28,45,.055);
}
.badge-controls .field { margin-top: 0; }
.badge-panel .field {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.badge-controls .field + .field {
  padding-top: 16px;
  border-top: 1px solid rgba(201, 78, 28, .11);
}
.badge-controls .field label,
.badge-controls .field-title {
  margin-bottom: 10px;
  color: #172033;
  font-size: 14px;
  line-height: 1.28;
}
.badge-controls .input {
  min-height: 56px;
  background: #fff;
}
.badge-controls .radio-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.badge-controls .radio-card {
  min-width: 0;
  min-height: 56px;
  padding-inline: 14px;
}

@media (min-width: 1280px) {
  .badge-controls {
    max-width: 448px;
  }
}

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row .radio-card {
  position: relative;
  min-width: 120px;
  min-height: 56px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #35465b;
  background: #fff;
  border: 1px solid rgba(21,28,45,.16);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(21,28,45,.055), inset 0 1px 0 rgba(255,255,255,.9);
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.radio-row .radio-card::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: .62;
  transition: opacity .18s ease, background .18s ease, box-shadow .18s ease;
}
.radio-row .radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-row .radio-card:has(input:checked) { color: #fff; background: linear-gradient(135deg, var(--cta), var(--cta-dark)); border-color: var(--cta-dark); box-shadow: 0 15px 32px rgba(201, 78, 28, .25); transform: translateY(-1px); }
.radio-row .radio-card:has(input:checked)::before { background: currentColor; box-shadow: inset 0 0 0 4px var(--cta); opacity: 1; }

.badge-stage {
  display: grid;
  gap: 18px;
  place-items: center;
  min-height: 520px;
  padding: 30px;
  border-color: rgba(201, 78, 28, .16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 34%, rgba(254, 136, 79, .14), transparent 21rem),
    linear-gradient(145deg, #fff9f4, #fff);
  box-shadow: var(--shadow);
}

@media (min-width: 1061px) {
  #zenklelis .badge-panel,
  #zenklelis .badge-stage {
    height: 100%;
  }

  #zenklelis .badge-stage {
    align-content: center;
  }
}

.badge-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
}
.badge-actions .btn {
  min-width: min(100%, 292px);
}
.live-label { padding: 7px 13px; color: var(--blue); background: rgba(36,63,122,.08); border: 1px solid rgba(36,63,122,.12); }
.impact-badge {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 50% 32%, #f57b42 0%, #dc5b24 56%, #b74316 100%);
  border-radius: 38px;
  box-shadow: 0 26px 58px rgba(254, 136, 79, .30), 0 0 0 10px rgba(201, 78, 28, .045);
}
.impact-badge::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255,255,255,.76);
  border-radius: 30px;
}
.impact-badge.partner { background: radial-gradient(circle at 50% 28%, #395cad 0%, #243f7a 58%, #182b58 100%); box-shadow: 0 26px 58px rgba(36,63,122,.27), 0 0 0 10px rgba(36,63,122,.045); }
.badge-content { position: relative; z-index: 1; max-width: 100%; }
.badge-content h4 { max-width: 100%; margin: 0 0 18px; color: #fff; font-size: clamp(20px, 5vw, 30px); line-height: 1.1; letter-spacing: .04em; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
.badge-content p { margin: 6px 0; color: rgba(255,255,255,.94); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-caption { margin-top: 18px; padding: 7px 12px; color: #fff; background: rgba(0,0,0,.24); }

.contact-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(254, 136, 79, .10), transparent 18rem),
    linear-gradient(180deg, #fff, #fffdfb);
}
.contact-intro,
.contact-details { display: contents; }

.contact-intro > p {
  max-width: 660px;
  margin-bottom: 0;
  color: #334459;
  font-size: 18px;
  line-height: 1.72;
}

.contact-card .contact-meta,
.contact-card .contact-support {
  margin-top: 14px;
}
.contact-card .contact-support {
  border-color: rgba(201, 78, 28, .16);
  background: linear-gradient(145deg, #fff, #fff8f2);
}

.copy-card > p:first-of-type {
  position: relative;
  margin-bottom: 18px;
  padding: 0 0 0 18px;
  color: #23334a;
  background: transparent;
  border: 0;
  border-left: 3px solid rgba(201, 78, 28, .42);
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
}
.copy-card > p:nth-of-type(2) {
  color: #405066;
  line-height: 1.72;
}
.person-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 18px;
  margin: 26px 0;
  padding: 20px 22px;
  border-color: rgba(201, 78, 28, .16);
  border-radius: 24px;
  background: rgba(255,248,242,.74);
}
.person-card h3 {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}
.person-card p {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  color: #405066;
}
.person-card a,
.contact-card a { color: var(--orange-dark); font-weight: 700; }
.person-card a {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid rgba(201, 78, 28, .18);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(201, 78, 28, .07);
  white-space: nowrap;
}
.info-block {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(21,28,45,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.70);
}
.info-block h4 { margin-bottom: 7px; }
.info-block a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--blue);
  background: rgba(36, 63, 122, .055);
  border: 1px solid rgba(36, 63, 122, .14);
  border-radius: 999px;
  line-height: 1.15;
  overflow-wrap: anywhere;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.info-block a:hover,
.info-block a:focus-visible {
  color: var(--cta);
  background: #fff;
  border-color: rgba(201, 78, 28, .26);
  box-shadow: 0 10px 22px rgba(201, 78, 28, .08);
}
.info-block .eyebrow { margin-bottom: 10px; }
.info-block p { margin-bottom: 0; }

.copy-card .info-block {
  position: relative;
  margin-top: 24px;
  padding: 20px 22px 20px 24px;
  overflow: hidden;
  border-color: rgba(201, 78, 28, .18);
  background: linear-gradient(145deg, #fff, #fff7f1);
  box-shadow: 0 18px 38px rgba(201, 78, 28, .08);
}
.copy-card .info-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--cta-dark), var(--cta), rgba(254, 136, 79, .28));
}
.copy-card .info-block h4 {
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 12px;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 1px solid rgba(201, 78, 28, .12);
  border-radius: 999px;
}
.copy-card .info-block p {
  color: #2e3e55;
  font-weight: 600;
}
.person-card a:hover,
.person-card a:focus-visible,
.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.person-card a:focus-visible,
.contact-card a:focus-visible {
  background: #fff;
  border-color: rgba(201, 78, 28, .34);
  box-shadow: 0 0 0 4px rgba(36,63,122,.18), 0 10px 22px rgba(201, 78, 28, .08);
}
.form-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(254, 136, 79, .11), transparent 16rem),
    linear-gradient(180deg, #fff, #fffdfb);
}
.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .field { margin-top: 0; }
.contact-form .field label,
.contact-form .field-title { color: #172033; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  color: #435469;
  background: rgba(255,248,242,.78);
  border: 1px solid rgba(201, 78, 28, .14);
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.consent:hover {
  color: #26364d;
  background: #fff;
  border-color: rgba(201, 78, 28, .28);
  box-shadow: 0 10px 22px rgba(201, 78, 28, .07);
}
.consent:has(input:checked) {
  color: #26364d;
  background: #fffaf6;
  border-color: rgba(201, 78, 28, .38);
  box-shadow: 0 0 0 4px rgba(201, 78, 28, .08);
}
.consent:has(input:user-invalid),
.consent:has(input[aria-invalid="true"]) {
  color: #7c2d12;
  background: #fff7ed;
  border-color: rgba(194,65,12,.34);
  box-shadow: 0 0 0 4px rgba(194,65,12,.10);
}
.consent input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--orange); cursor: pointer; }
.consent:has(input:focus-visible) { outline: 3px solid rgba(36,63,122,.28); outline-offset: 3px; }
.form-submit { margin-top: 2px; box-shadow: 0 22px 48px rgba(220, 91, 36, .30); }
.success-state {
  margin-bottom: 20px;
  padding: 22px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 22px;
}
.success-state h3 { color: #166534; }
.success-state p { color: #3f7351; }
.success-reset { margin-top: 4px; }

.footer {
  padding: 42px 0;
  background: linear-gradient(180deg, #fff 0%, #fff8f2 100%);
  border-top: 1px solid rgba(201, 78, 28, .10);
}
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 22px;
  border: 1px solid rgba(201, 78, 28, .12);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 44px rgba(21, 28, 45, .055);
}
.footer p { margin: 8px 0 0; color: #526071; font-size: 14px; }
.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #647084;
  font-size: 13px;
  font-weight: 600;
}
.footer-meta span {
  display: inline-flex;
  align-items: center;
}
.footer-meta span + span::before {
  content: "\2022 ";
  margin-right: 10px;
  color: rgba(201, 78, 28, .42);
}


@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-rocket-svg,
  .hero-visual-card::before,
  .hero-visual-card::after {
    animation: none !important;
  }
}

@media (min-width: 1061px) {
  .hero {
    min-height: clamp(600px, calc(100svh - 76px), 708px);
    display: flex;
    align-items: center;
    padding-block: clamp(38px, 4.4vw, 62px);
  }
  .hero + .section { padding-top: clamp(54px, 5vw, 74px); }
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .46fr);
    gap: clamp(30px, 3.6vw, 58px);
    padding: clamp(34px, 4.2vw, 58px) clamp(34px, 4.8vw, 66px);
    border: 1px solid rgba(201, 78, 28, .14);
    border-radius: clamp(34px, 3.3vw, 46px);
    background:
      radial-gradient(circle at 84% 48%, rgba(254, 136, 79, .11), transparent 21rem),
      radial-gradient(circle at 7% 0%, rgba(254, 136, 79, .08), transparent 19rem),
      linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,250,246,.86));
    box-shadow: 0 32px 86px rgba(21, 28, 45, .085), inset 0 1px 0 rgba(255,255,255,.86);
  }
  .hero-copy {
    max-width: 770px;
    margin-left: 0;
    padding: 2px 0 2px 24px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .hero-copy::before {
    display: block;
    left: 0;
    top: 6px;
    bottom: 8px;
  }
  .hero-copy p { max-width: 690px; }
  .hero-visual {
    min-height: auto;
    justify-content: center;
  }
  .hero-visual-card {
    width: clamp(292px, 27vw, 352px);
    border-radius: 40px;
    box-shadow: 0 28px 68px rgba(21,28,45,.105), 0 16px 38px rgba(201, 78, 28, .10);
  }
  .hero-actions .btn-primary { min-width: min(100%, 268px); }
  .hero-proof { max-width: 650px; }
  .modules-grid {
    max-width: 1080px;
    margin-inline: auto;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .modules-grid .module-card { grid-column: span 2; }
  .modules-grid .module-card:nth-child(4) { grid-column: 2 / span 2; }
  .modules-grid .module-card:nth-child(5) { grid-column: 4 / span 2; }
  .section .container { position: relative; }
}


@media (min-width: 1220px) {
  .stats-section .container {
    display: grid;
    grid-template-columns: minmax(420px, .55fr) minmax(0, 1fr);
    gap: clamp(34px, 4.2vw, 58px);
    align-items: center;
  }
  .stats-section .section-head {
    max-width: 520px;
    margin: 0;
    text-align: left;
  }
  .stats-section .section-head h2,
  .stats-section .section-head p {
    margin-inline: 0;
  }
  .stats-section .section-head h2 {
    max-width: 500px;
    font-size: clamp(38px, 3.1vw, 46px);
    line-height: 1.04;
  }
  .stats-section .section-head p {
    max-width: 420px;
  }
  .stats-section .section-head::after {
    margin-left: 0;
    margin-right: 0;
  }
  .stats-section .stats-grid {
    max-width: none;
    width: 100%;
  }
  .stats-section .stat-card {
    min-height: 146px;
    padding: 24px 22px 23px;
  }
}

@media (min-width: 1220px) {
  .stats-section {
    padding-block: clamp(42px, 4.8vw, 64px);
  }
  .stats-section .container {
    padding: clamp(28px, 3.2vw, 42px);
    border: 1px solid rgba(201, 78, 28, .12);
    border-radius: 32px;
    background:
      radial-gradient(circle at 8% 0%, rgba(254, 136, 79, .12), transparent 18rem),
      linear-gradient(135deg, rgba(255, 249, 244, .78), rgba(255, 255, 255, .96));
    box-shadow: 0 22px 54px rgba(21, 28, 45, .06);
  }
  .stats-section .stats-grid {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(201, 78, 28, .12);
    box-shadow: none;
  }
  .stats-section .section-head::after {
    width: 96px;
    margin-top: 18px;
  }
}

@media (min-width: 1280px) {
  #moduliai .container {
    width: min(1180px, calc(100% - 64px));
  }
  .modules-grid {
    max-width: 1120px;
    margin-inline: auto;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 22px);
  }
  .modules-grid .module-card {
    grid-column: span 2;
    min-height: 214px;
    padding: 26px 24px 27px;
  }
  .modules-grid .module-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .modules-grid .module-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
  .modules-grid .module-card .card-kicker {
    margin-bottom: 13px;
  }
  .modules-grid .module-card h3 {
    max-width: 100%;
    font-size: clamp(20px, 1.35vw, 22px);
    line-height: 1.18;
  }
  .modules-grid .module-card p {
    max-width: 28rem;
    font-size: 16px;
    line-height: 1.58;
  }
}


@media (min-width: 960px) {
  .support-card {
    grid-template-columns: minmax(340px, .82fr) minmax(500px, 1.18fr);
    gap: clamp(34px, 4.2vw, 58px);
    align-items: center;
  }
  .support-copy {
    max-width: 430px;
    align-self: center;
    justify-items: start;
    margin-inline: 0;
    padding-top: 0;
    text-align: left;
  }
  .support-card h2 {
    max-width: 430px;
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1.06;
  }
  .support-copy .widget-title { max-width: 410px; }
  .support-copy .widget-subtitle {
    max-width: 100%;
    margin-inline: 0;
    padding: 9px 14px;
    line-height: 1.28;
  }
  .donation-widget {
    max-width: 720px;
    justify-self: stretch;
    align-self: center;
  }
}

@media (min-width: 1180px) {
  .support-copy .widget-subtitle { white-space: nowrap; }
}


@media (min-width: 1061px) {
  #kontaktai .contact-grid {
    align-items: start;
  }
  #kontaktai .contact-card {
    min-height: 100%;
  }
  #kontaktai .form-shell {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-block: clamp(34px, 3.4vw, 48px);
  }
  #kontaktai .contact-form {
    width: 100%;
    margin-top: 2px;
  }
  #kontaktai .contact-card {
    display: block;
  }
  #kontaktai .contact-intro,
  #kontaktai .contact-details {
    display: block;
  }
  #kontaktai .contact-intro > p {
    max-width: 100%;
  }
  #kontaktai .contact-details {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(210px, .88fr);
    gap: 16px 18px;
    align-items: stretch;
    margin-top: 24px;
  }
  #kontaktai .person-card,
  #kontaktai .contact-support {
    grid-column: 1 / -1;
  }
  #kontaktai .person-card {
    margin: 0;
    padding: 19px 22px;
  }
  #kontaktai .contact-meta,
  #kontaktai .contact-support {
    margin-top: 0;
  }
  #kontaktai .contact-meta {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 18px 17px;
  }
  #kontaktai .contact-meta h4 {
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: .085em;
  }
  #kontaktai .contact-meta a {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 46px;
    padding: 10px 12px;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
  #kontaktai .contact-meta a[href^="mailto:"] {
    font-size: clamp(13px, .86vw, 15px);
    letter-spacing: -.04em;
  }
  #kontaktai .contact-meta a[href="https://wowuniversity.org"] {
    font-size: clamp(15px, 1vw, 17px);
    letter-spacing: -.025em;
  }
  #kontaktai .contact-support {
    margin-top: 4px;
    padding: 20px 22px;
  }
  #kontaktai .contact-support .eyebrow {
    margin-bottom: 12px;
  }
}

@media (min-width: 1061px) and (max-width: 1320px) {
  #kontaktai .contact-details {
    grid-template-columns: 1fr;
  }
}

/* v3.16: kontaktų metodai sujungti į vieną ramesnį bloką, kad el. paštas nebūtų spaudžiamas į siaurą pill. */
.contact-methods {
  display: grid;
  gap: 0;
  border: 1px solid rgba(21,28,45,.09);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  overflow: hidden;
}
.contact-method {
  min-width: 0;
  padding: 17px 18px 18px;
}
.contact-method + .contact-method {
  border-top: 1px solid rgba(21,28,45,.08);
}
.contact-method h4 {
  margin-bottom: 8px;
}
.contact-method a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  min-height: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  line-height: 1.24;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.contact-method a:hover,
.contact-method a:focus-visible {
  color: var(--cta);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.contact-method a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

@media (min-width: 1061px) {
  #kontaktai .contact-methods {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, .8fr);
    align-items: stretch;
    margin-top: 0;
  }
  #kontaktai .contact-method {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 19px 22px;
  }
  #kontaktai .contact-method + .contact-method {
    border-top: 0;
    border-left: 1px solid rgba(21,28,45,.08);
  }
  #kontaktai .contact-method h4 {
    margin-bottom: 0;
    font-size: 12px;
    letter-spacing: .085em;
  }
  #kontaktai .contact-method a {
    font-size: clamp(18px, 1.22vw, 22px);
    letter-spacing: -.035em;
    white-space: nowrap;
  }
  #kontaktai .contact-method--org a {
    font-size: clamp(18px, 1.22vw, 22px);
    letter-spacing: -.025em;
  }
}

@media (max-width: 760px) {
  .contact-method {
    padding: 14px;
  }
  .contact-method h4 {
    margin-bottom: 7px;
    font-size: 12px;
  }
  .contact-method a {
    font-size: 15px;
  }
}
@media (max-width: 1180px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 13px; }
  .nav-cta { padding-inline: 18px; font-size: 14px; }
  .directions-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1060px) {
  html { scroll-padding-top: 78px; }
  .nav { height: 70px; }
  .nav-links,
  .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .brand-mark { width: 44px; height: 44px; }
  .hero-grid,
  .split-grid,
  .value-grid,
  .badge-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: clamp(34px, 6vw, 58px); }
  .hero-copy { max-width: none; text-align: center; }
  .hero-copy::before { display: none; }
  .hero-copy .eyebrow { margin-inline: auto; }
  .hero-actions { margin-inline: auto; }
  .hero-proof { margin-inline: auto; }
  .hero-visual { min-height: 300px; }
  .stats-grid {
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .value-list { grid-template-columns: 1fr; }
  .value-actions,
  .section-actions { justify-content: center; }
  .value-actions .btn,
  .section-actions .btn { width: 100%; }
  .badge-stage { min-height: 460px; }
}

@media (max-width: 760px) {
  html { scrollbar-gutter: auto; }
  .container { width: min(100% - 32px, var(--container)); }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(38px, 12vw, 52px); line-height: 1.01; letter-spacing: -.052em; }
  h2 { font-size: clamp(30px, 8.8vw, 40px); }
  .brand-text span:first-child { font-size: 17px; }
  .brand-text span:last-child { font-size: 11px; letter-spacing: .20em; }
  .hero { padding: 28px 0 18px; }
  .hero-grid { gap: 0; }
  .hero-copy { padding: 20px 16px 10px; border-radius: 24px; background: rgba(255,255,255,.64); box-shadow: none; border-color: rgba(201, 78, 28, .10); }
  .hero-copy .eyebrow {
    justify-content: center;
    max-width: 100%;
    padding-inline: 10px;
    font-size: clamp(10px, 2.72vw, 11px);
    letter-spacing: .045em;
    white-space: nowrap;
  }
  .hero-copy p { font-size: 17px; line-height: 1.68; }
  .hero-actions { width: 100%; flex-direction: column; border-radius: 28px; margin-top: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .btn-primary {
    min-height: 58px;
    padding-inline: 18px;
    font-size: clamp(14px, 4vw, 16px);
    white-space: nowrap;
  }
  .hero-actions .btn-secondary {
    width: auto;
    min-height: 42px;
    padding: 8px 12px;
    color: #35465b;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .hero-actions .btn-secondary:hover,
  .hero-actions .btn-secondary:focus-visible {
    color: var(--cta);
    background: rgba(201, 78, 28, .055);
    border-color: rgba(201, 78, 28, .12);
  }
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-top: 20px;
    padding: 0;
    overflow: hidden;
    border-radius: 22px;
  }
  .proof-item {
    min-height: 68px;
    padding: 10px 12px 13px;
    text-align: center;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 78, 28, .12);
  }
  .proof-number { font-size: 24px; }
  .proof-label {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.14;
  }
  .proof-item:nth-child(odd) { border-right: 1px solid rgba(201, 78, 28, .12); }
  .proof-item:nth-last-child(-n+2) { border-bottom: 0; }
  .proof-item::after { left: 24px; right: 24px; bottom: 7px; }
  .hero-visual { display: none; }
  .cards-grid,
  .modules-grid,
  .directions-grid { grid-template-columns: 1fr; }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
    border-radius: 24px;
  }
  .stat-card { min-height: auto; }
  .stats-section { padding-block: 38px; }
  .stats-section .section-head {
    max-width: 330px;
    margin-bottom: 18px;
  }
  .stats-section .section-head h2 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.08;
    letter-spacing: -.038em;
  }
  .stats-section .section-head p {
    font-size: 16px;
    line-height: 1.54;
  }
  .stats-section .section-divider { margin-top: 18px; }
  .stats-section .stat-card {
    min-height: 114px;
    padding: 16px 12px 17px;
    border-left: 0;
  }
  .stats-section .stat-card:nth-child(even) { border-left: 1px solid rgba(201, 78, 28, .11); }
  .stats-section .stat-card:nth-child(n+3) { border-top: 1px solid rgba(201, 78, 28, .11); }
  .stats-section .stat-number {
    margin-inline: auto;
    margin-bottom: 7px;
    font-size: clamp(30px, 8.4vw, 38px);
  }
  .stats-section .stat-card p { text-align: center; }
  .stats-section .stat-card p:first-of-type {
    font-size: 14px;
    line-height: 1.22;
  }
  .stats-section .stat-card p:last-of-type {
    max-width: 142px;
    margin-inline: auto;
    font-size: 12.5px;
    line-height: 1.34;
  }

  .modules-grid {
    gap: 10px;
  }
  .module-card {
    padding: 18px 18px 19px;
    border-left: 3px solid rgba(201, 78, 28, .18);
    box-shadow: 0 10px 24px rgba(21, 28, 45, .05);
  }
  .module-card::before {
    display: none;
  }
  .module-card .card-kicker {
    margin-bottom: 8px;
    padding: 5px 9px;
    font-size: 11px;
    line-height: 1.1;
  }
  .module-card h3 {
    margin-bottom: 7px;
    font-size: 20px;
    line-height: 1.22;
  }
  .module-card p {
    line-height: 1.5;
  }
  .module-card,
  .direction-card,
  .timeline-card,
  .copy-card,
  .goal-card,
  .value-main,
  .career-card,
  .support-card,
  .badge-panel,
  .badge-stage,
  .contact-card,
  .form-shell { padding: 22px; border-radius: 22px; }
  .copy-card > p:first-of-type {
    padding: 0 0 0 16px;
    font-size: 17px;
    line-height: 1.62;
  }
  .goal-card .task-list {
    gap: 9px;
    margin-top: 16px;
  }
  .goal-card .task-list span {
    min-height: auto;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(21, 28, 45, .04);
    font-size: 15px;
    line-height: 1.45;
  }
  .goal-card .task-list span::before {
    width: 18px;
    height: 18px;
    border-width: 5px;
    margin-top: 2px;
    box-shadow: 0 0 0 1px rgba(201, 78, 28, .20), 0 6px 14px rgba(201, 78, 28, .10);
  }
  .timeline { gap: 10px; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 0; }
  .timeline-dot { display: none; }
  .timeline-card::after { display: none; }
  .timeline-card {
    display: block;
    width: 100%;
    padding: 18px 18px 19px;
    border-left: 3px solid rgba(201, 78, 28, .18);
    box-shadow: 0 10px 24px rgba(21, 28, 45, .05);
  }
  .timeline-card .card-kicker { margin-bottom: 9px; }
  .timeline-card h3 {
    margin-bottom: 6px;
    font-size: 19px;
    line-height: 1.22;
  }
  .timeline-card p { line-height: 1.48; }
  .direction-card {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 7px 14px;
  }
  .direction-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .amount-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amount-btn { min-height: 56px; }
  .donation-widget .submit-btn {
    min-height: 58px;
    padding-inline: 14px;
    gap: 8px;
    font-size: clamp(14px, 3.65vw, 15px);
    white-space: nowrap;
  }
  .donation-widget .submit-btn::before {
    width: 15px;
    height: 15px;
  }
  .widget-subtitle { width: auto; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .badge-stage {
    min-height: 340px;
    gap: 14px;
    padding: 22px;
  }
  .radio-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .radio-row .radio-card {
    min-width: 0;
    min-height: 54px;
  }
  .impact-badge {
    width: min(258px, 100%);
    padding: 23px;
    border-radius: 28px;
  }
  .impact-badge::before {
    inset: 15px;
    border-radius: 24px;
  }
  .badge-content h4 {
    margin-bottom: 14px;
    font-size: clamp(19px, 5vw, 26px);
  }
  .badge-content p {
    margin-bottom: 8px;
    font-size: clamp(13px, 3.75vw, 15px);
    line-height: 1.38;
  }
  .badge-actions .btn {
    width: min(100%, 320px);
    min-width: 0;
    min-height: 56px;
    padding-inline: 18px;
    gap: 8px;
    font-size: clamp(14px, 3.7vw, 15px);
    white-space: nowrap;
  }
  .badge-actions .btn::before {
    width: 15px;
    height: 15px;
  }
  .person-card { grid-template-columns: 1fr; text-align: left; }
  .person-card a { width: 100%; }
  .info-block { padding: 15px 16px; }
  .info-block a { width: 100%; justify-content: center; text-align: center; }
  .info-block a[href^="mailto:"] {
    padding-inline: 10px;
    font-size: clamp(13px, 3.62vw, 15px);
    letter-spacing: -.015em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .impact-box { grid-template-columns: 1fr; }
  .impact-box span { justify-self: start; }

  .value-list {
    gap: 9px;
    margin-top: 18px;
  }
  .value-list span {
    min-height: auto;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(21, 28, 45, .04);
    font-size: 15px;
    line-height: 1.45;
  }
  .value-list span::before {
    width: 18px;
    height: 18px;
    border-width: 5px;
    margin-top: 2px;
    box-shadow: 0 0 0 1px rgba(201, 78, 28, .20), 0 6px 14px rgba(201, 78, 28, .10);
  }
  .value-actions {
    margin-top: 20px;
  }

  .copy-card .info-block { margin-top: 20px; padding: 17px 17px 17px 20px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 18px;
    border-radius: 22px;
  }
  .contact-form .form-submit {
    min-height: 58px;
    padding-inline: 14px;
    gap: 8px;
    font-size: clamp(14px, 3.6vw, 15px);
    white-space: nowrap;
  }
  .contact-form .form-submit::before {
    width: 15px;
    height: 15px;
  }

  .contact-grid { gap: 16px; }
  .contact-card {
    display: contents;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
  }
  .contact-intro,
  .contact-details {
    display: block;
    border: 1px solid rgba(21, 28, 45, .11);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #fffdfb);
    box-shadow: var(--shadow-soft);
  }
  .contact-intro {
    order: 1;
    padding: 22px;
    background:
      radial-gradient(circle at 14% 0%, rgba(254, 136, 79, .10), transparent 18rem),
      linear-gradient(180deg, #fff, #fffdfb);
  }
  .form-shell { order: 2; }
  .contact-details {
    order: 3;
    padding: 16px;
  }
  .contact-intro h2 { margin-bottom: 14px; }
  .contact-intro > p {
    max-width: none;
    font-size: 17px;
    line-height: 1.62;
  }
  .contact-details .person-card {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    margin: 0 0 12px;
    padding: 16px;
    border-radius: 18px;
  }
  .contact-details .person-card h3 {
    margin-bottom: 0;
    font-size: 20px;
  }
  .contact-details .person-card p {
    font-size: 14px;
    line-height: 1.35;
  }
  .contact-details .person-card a {
    width: auto;
    min-height: 42px;
    padding: 9px 14px;
    font-size: 14px;
  }
  .contact-details .contact-meta,
  .contact-details .contact-support {
    margin-top: 10px;
  }
  .contact-details .contact-meta {
    padding: 13px 14px;
    border-radius: 16px;
  }
  .contact-details .contact-meta h4 {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .contact-details .contact-meta a {
    min-height: 40px;
    padding-block: 8px;
  }
  .contact-details .contact-support {
    padding: 14px;
    border-radius: 18px;
  }
  .contact-details .contact-support .eyebrow { margin-bottom: 8px; }
  .contact-details .contact-support p {
    font-size: 15px;
    line-height: 1.5;
  }

  .footer-meta { justify-content: flex-start; gap: 8px; }
  .footer-meta span { min-height: 34px; padding: 7px 11px; }
  .footer-meta span + span::before { display: none; }
}


@media (max-width: 520px) {
  .contact-details .person-card {
    grid-template-columns: 1fr;
  }
  .contact-details .person-card a {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
}

@media (max-width: 360px) {
  .contact-details .person-card {
    grid-template-columns: 1fr;
  }
  .contact-details .person-card a {
    width: 100%;
  }
}

@media (min-width: 761px) and (max-width: 1060px) {
  .modules-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modules-grid .module-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - clamp(16px, 2vw, 22px)) / 2);
  }
  .hero-grid {
    position: relative;
    display: block;
    max-width: 820px;
    margin-inline: auto;
  }
  .hero-copy {
    padding: 30px 210px 30px 28px;
    text-align: left;
  }
  .hero-copy::before {
    display: block;
    top: 24px;
    bottom: 24px;
  }
  .hero-copy .eyebrow,
  .hero-actions,
  .hero-proof {
    margin-inline: 0;
  }
  .hero-copy p,
  .hero-actions {
    max-width: 560px;
  }
  .hero-proof {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
  .hero-proof .proof-item {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 78, 28, .12);
  }
  .hero-proof .proof-item:nth-child(odd) { border-right: 1px solid rgba(201, 78, 28, .12); }
  .hero-proof .proof-item:nth-last-child(-n+2) { border-bottom: 0; }
  .hero-visual {
    position: absolute;
    top: 126px;
    right: 28px;
    z-index: 2;
    min-height: auto;
    padding: 0;
    pointer-events: none;
  }
  .hero-visual-card {
    width: clamp(150px, 22vw, 188px);
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(21,28,45,.11), 0 10px 24px rgba(201, 78, 28, .08);
  }
}
@media (min-width: 761px) and (max-width: 840px) {
  .hero-copy { padding-right: 188px; }
  .hero-visual { top: 138px; right: 22px; }
  .hero-visual-card { width: clamp(140px, 20vw, 162px); }
}

@media (max-width: 760px) {
  .floating-cta {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 48;
    display: inline-flex;
    min-height: 54px;
    padding-inline: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    box-shadow: 0 16px 38px rgba(220, 91, 36, .30), 0 0 0 6px rgba(220, 91, 36, .06);
    transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
  }

  body.is-floating-cta-visible:not(.is-menu-open) .floating-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.is-floating-cta-visible .footer {
    padding-bottom: 76px;
  }
}

@media (min-width: 761px) {
  .floating-cta {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(calc(100% + 24px)) !important;
  }
}

@media (max-width: 420px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav { gap: 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-copy { padding-inline: 14px; }
  .amount-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-proof { border-radius: 20px; }
  .proof-item { padding-inline: 10px; }
}

@media (max-width: 360px) {
  .hero-copy .eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.22;
    gap: 7px;
    padding-inline: 8px;
    text-align: center;
  }
  .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-item {
    min-height: 74px;
    padding: 12px 8px 14px;
  }
  .proof-number { font-size: 25px; }
  .proof-label {
    font-size: 12px;
    line-height: 1.18;
  }
  .proof-item::after { left: 18px; right: 18px; }
  .amount-grid { gap: 10px; }
  .amount-btn { min-height: 54px; }
  .donation-widget {
    padding: 16px;
  }
  .donation-widget .submit-btn,
  .badge-actions .btn,
  .contact-form .form-submit {
    padding-inline: 12px;
    gap: 7px;
    font-size: clamp(13px, 3.45vw, 14px);
  }
  .donation-widget .submit-btn::before,
  .badge-actions .btn::before,
  .contact-form .form-submit::before {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 330px) {
  .hero-actions .btn-primary {
    white-space: normal;
    line-height: 1.14;
  }
  .donation-widget .submit-btn,
  .badge-actions .btn,
  .contact-form .form-submit {
    min-height: 60px;
    white-space: normal;
    line-height: 1.14;
  }
  .badge-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .direction-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 4px 13px;
    align-items: start;
    padding: 20px;
  }
  .direction-icon {
    grid-row: 1 / span 2;
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    border-radius: 15px;
  }
  .direction-card h3 {
    margin-top: 1px;
    margin-bottom: 6px;
    line-height: 1.18;
  }
  .direction-card p {
    line-height: 1.52;
  }
}




@media (max-width: 760px) {
  #apie .copy-card h2 {
    max-width: 330px;
    margin-bottom: 18px;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.06;
    letter-spacing: -.04em;
  }
}

@media (min-width: 1061px) {
  #apie .copy-card h2 {
    max-width: 500px;
    font-size: clamp(34px, 3.35vw, 48px);
    line-height: 1.05;
  }
}


@media (max-width: 760px) {
  #apie .copy-card > p:first-of-type {
    margin-bottom: 14px;
    padding-left: 14px;
    border-left-width: 2px;
    font-size: 16px;
    line-height: 1.55;
  }
  #apie .copy-card > p:nth-of-type(2) {
    font-size: 16px;
    line-height: 1.62;
  }
  #apie .copy-card .info-block {
    margin-top: 16px;
    padding: 15px 15px 15px 18px;
  }
  #apie .copy-card .info-block p {
    font-size: 16px;
    line-height: 1.5;
  }
}


/* v3.20: naujas apvalus hero logo veikia pats, todėl matomas square/card wrapper nuimamas.
   Techninis wrapper paliekamas tik pozicionavimui ir responsive layout stabilumui. */
.hero-visual-card {
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}
.hero-visual-card::before,
.hero-visual-card::after {
  display: none;
}
.hero-rocket-svg {
  width: 92%;
  height: 92%;
  filter: drop-shadow(0 24px 42px rgba(201, 78, 28, .16));
}
@media (min-width: 1061px) {
  .hero-visual-card {
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
  }
}
@media (min-width: 761px) and (max-width: 1060px) {
  .hero-visual-card {
    background: transparent;
    box-shadow: none;
  }
}


/* v3.21: po wrapper pašalinimo hero logo stabilizuotas kaip ramus brand ženklas, o ne atskiras efektinis objektas. */
.hero-rocket-svg {
  width: 100%;
  height: 100%;
  animation: none;
  filter: drop-shadow(0 20px 34px rgba(201, 78, 28, .14));
}
@media (min-width: 1061px) {
  .hero-visual-card {
    width: clamp(268px, 24vw, 318px);
  }
}
@media (min-width: 761px) and (max-width: 1060px) {
  .hero-visual-card {
    width: clamp(136px, 19vw, 168px);
  }
}


/* v3.22: kontaktų metodai pergalvoti kaip ramus vertikalus kontaktų blokas.
   Nebelieka dviejų konkuruojančių kolonų, todėl ilgas el. paštas nesusikerta su organizatoriaus pavadinimu. */
@media (min-width: 1061px) {
  #kontaktai .contact-details {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #kontaktai .person-card,
  #kontaktai .contact-methods,
  #kontaktai .contact-support {
    grid-column: 1;
  }

  #kontaktai .contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    margin-top: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 28, 45, .10);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,253,251,.92));
  }

  #kontaktai .contact-method {
    display: grid;
    grid-template-columns: minmax(150px, .36fr) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-width: 0;
    padding: 18px 22px;
  }

  #kontaktai .contact-method + .contact-method {
    border-left: 0;
    border-top: 1px solid rgba(21, 28, 45, .08);
  }

  #kontaktai .contact-method h4 {
    margin: 0;
    color: var(--blue);
    font-size: 12px;
    line-height: 1.28;
    letter-spacing: .085em;
  }

  #kontaktai .contact-method a,
  #kontaktai .contact-method--org a {
    justify-self: start;
    max-width: 100%;
    color: #243f7a;
    font-size: clamp(17px, 1.12vw, 20px);
    line-height: 1.16;
    letter-spacing: -.035em;
    white-space: nowrap;
  }

  #kontaktai .contact-method a:hover,
  #kontaktai .contact-method a:focus-visible {
    color: var(--cta);
  }
}

@media (min-width: 1061px) and (max-width: 1240px) {
  #kontaktai .contact-method {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 17px 20px;
  }

  #kontaktai .contact-method a,
  #kontaktai .contact-method--org a {
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 18px;
  }
}


/* v3.23: el. pašto reikšmė pritaikyta ilgam adresui, kad galas nebeišeitų už kontaktų kortelės ribų. */
@media (min-width: 1061px) {
  #kontaktai .contact-method--email a {
    font-size: clamp(15px, .98vw, 17px);
    letter-spacing: -.055em;
    white-space: nowrap;
    max-width: 100%;
  }
}
@media (min-width: 1061px) and (max-width: 1240px) {
  #kontaktai .contact-method--email a {
    font-size: 16px;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}


/* v3.24: paramos formos finalinis veiksmas desktop/tablet režimuose sujungtas į aiškesnę action eilutę. */
@media (min-width: 700px) {
  .donation-widget form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, .44fr);
    gap: 14px;
  }

  .donation-widget .amount-grid {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .donation-widget .custom-input {
    grid-column: 1;
    min-height: 62px;
    margin-bottom: 0;
    border-radius: 20px;
  }

  .donation-widget .submit-btn {
    grid-column: 2;
    align-self: stretch;
    min-height: 62px;
    margin-top: 0;
  }

  .donation-widget .donation-feedback {
    grid-column: 1 / -1;
  }
}


/* v3.25: paramos finalinio veiksmo eilutėje CTA gauna pakankamai pločio, kad nebūtų silpnesnis už sumos lauką. */
@media (min-width: 700px) {
  .donation-widget form {
    grid-template-columns: minmax(0, 1fr) minmax(282px, .52fr);
  }

  .donation-widget .submit-btn {
    white-space: nowrap;
    padding-inline: 20px;
  }
}

@media (min-width: 700px) and (max-width: 860px) {
  .donation-widget form {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .48fr);
  }

  .donation-widget .submit-btn {
    font-size: 14px;
    padding-inline: 16px;
  }
}


/* v3.26: Impact ženklelio vizualizacija gauna daugiau svorio, kad dešinė sekcijos pusė neatrodytų per tuščia. */
@media (min-width: 1061px) {
  #zenklelis .badge-stage {
    gap: 20px;
    padding: clamp(34px, 3.4vw, 46px);
  }

  #zenklelis .impact-badge {
    width: min(390px, calc(100% - 32px));
    padding: 32px;
    border-radius: 42px;
  }

  #zenklelis .impact-badge::before {
    inset: 20px;
    border-radius: 34px;
  }

  #zenklelis .badge-actions .btn {
    min-width: min(100%, 330px);
  }
}


/* v3.28: Impact ženklelio showcase nebeverčiamas būti aukšta tuščia kortele.
   Dešinė pusė tampa natūralaus aukščio, centruota ir vizualiai artimesnė realiam ženklelio demonstravimui. */
@media (min-width: 1061px) {
  #zenklelis .badge-grid {
    align-items: center;
  }

  #zenklelis .badge-panel,
  #zenklelis .badge-stage {
    height: auto;
  }

  #zenklelis .badge-stage {
    justify-self: center;
    align-self: center;
    width: min(100%, 560px);
    min-height: auto;
    padding: clamp(32px, 3.2vw, 44px);
  }

  #zenklelis .impact-badge {
    width: min(370px, 100%);
  }
}


/* v3.29: masto skaičiai desktop režime tampa kompaktišku pasitikėjimo tiltu po hero,
   kad nedubliuotų hero statistikos kaip dar viena sunki sekcija. */
@media (min-width: 1061px) {
  .stats-section {
    padding-block: clamp(34px, 3.8vw, 52px);
  }

  .stats-section .container {
    display: grid;
    grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(26px, 3.4vw, 48px);
    padding: clamp(22px, 2.4vw, 30px);
    border: 1px solid rgba(201, 78, 28, .12);
    border-radius: 28px;
    background:
      radial-gradient(circle at 0% 0%, rgba(254, 136, 79, .10), transparent 18rem),
      linear-gradient(180deg, #fff, #fffdfb);
    box-shadow: 0 18px 46px rgba(21,28,45,.055);
  }

  .stats-section .section-head {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .stats-section .section-head h2 {
    max-width: 360px;
    margin-inline: 0;
    font-size: clamp(30px, 2.45vw, 38px);
    line-height: 1.08;
  }

  .stats-section .section-head p {
    max-width: 420px;
    margin-inline: 0;
    font-size: 16px;
    line-height: 1.55;
  }

  .stats-section .section-divider {
    display: none;
  }

  .stats-section .stats-grid {
    margin: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .stats-section .stat-card {
    min-height: 108px;
    padding: 10px 22px;
    justify-content: center;
  }

  .stats-section .stat-number {
    margin-bottom: 7px;
    font-size: clamp(34px, 3vw, 44px);
  }

  .stats-section .stat-card:last-child .stat-number {
    font-size: clamp(32px, 2.7vw, 42px);
  }

  .stats-section .stat-card p:first-of-type {
    font-size: 15px;
  }

  .stats-section .stat-card p:last-of-type {
    max-width: 150px;
    font-size: 13px;
    line-height: 1.36;
  }
}


/* v3.30: navigacijos šuoliai į sekcijas nebekiša antraščių po sticky headeriu. */
#top,
main section,
footer {
  scroll-margin-top: 104px;
}

@media (max-width: 1060px) {
  #top,
  main section,
  footer {
    scroll-margin-top: 84px;
  }
}

@media (max-width: 760px) {
  #top,
  main section,
  footer {
    scroll-margin-top: 72px;
  }
}


/* v3.31: „Apie programą“ dešinė kortelė nebecentruoja turinio per visą aukštį.
   Tikslas ir uždaviniai lygiuojami arčiau viršaus, kad abi kolonos skaitytųsi kaip viena sąmoninga kompozicija. */
@media (min-width: 1061px) {
  #apie .goal-card {
    justify-content: flex-start;
    padding-top: clamp(42px, 4vw, 58px);
  }

  #apie .goal-card h3 {
    margin-bottom: 16px;
  }

  #apie .goal-card h4 {
    margin-top: clamp(26px, 3vw, 34px);
  }
}



/* v3.33: „Projekto etapai“ sutankinamas į brandesnę, greičiau perskaitomą roadmap kompoziciją.
   Išlaikomas kelionės pojūtis, bet mažinamas vertikalus scroll'as, kortelių atstumai ir perteklinis baltas plotas,
   kad partnerystės CTA žemiau pasiektų lankytoją greičiau. */
@media (min-width: 1061px) {
  #etapai {
    padding-block: clamp(58px, 6.2vw, 82px);
    background:
      radial-gradient(circle at 50% 10%, rgba(254, 136, 79, .065), transparent 26rem),
      linear-gradient(180deg, #fff 0%, #fffdfb 56%, #fff 100%);
  }

  #etapai .section-head {
    margin-bottom: clamp(30px, 3.2vw, 42px);
  }

  #etapai .timeline {
    position: relative;
    max-width: 1080px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 4px 0;
  }

  #etapai .timeline::before {
    display: block;
    top: 12px;
    bottom: 12px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
      rgba(220, 91, 36, .08) 0%,
      rgba(220, 91, 36, .72) 13%,
      rgba(254, 136, 79, .40) 78%,
      rgba(254, 136, 79, .06) 100%);
  }

  #etapai .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-width: 0;
  }

  #etapai .timeline-dot {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: grid;
    width: 38px;
    height: 38px;
    border-color: rgba(201, 78, 28, .20);
    box-shadow:
      0 10px 20px rgba(201, 78, 28, .10),
      inset 0 0 0 7px rgba(254, 136, 79, .07);
  }

  #etapai .timeline-dot::before {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--cta), var(--orange));
    box-shadow: 0 0 0 5px rgba(220, 91, 36, .07);
  }

  #etapai .timeline-card {
    position: relative;
    grid-row: 1;
    height: auto;
    min-height: 132px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 5px;
    align-items: start;
    padding: 20px 22px;
    border-left: 0;
    border-top: 0;
    border-color: rgba(201, 78, 28, .15);
    background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(255,250,246,.82));
    box-shadow: 0 15px 34px rgba(21, 28, 45, .056);
  }

  #etapai .timeline-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: linear-gradient(90deg, rgba(220, 91, 36, .76), rgba(254, 136, 79, .30), transparent);
  }

  #etapai .timeline-card::after {
    display: block;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background: linear-gradient(135deg, #fff, #fffaf6);
    border-color: rgba(21, 28, 45, .09);
  }

  #etapai .timeline-item:nth-child(odd) .timeline-card {
    grid-column: 1;
  }

  #etapai .timeline-item:nth-child(even) .timeline-card {
    grid-column: 3;
  }

  #etapai .timeline-item:nth-child(odd) .timeline-card::after {
    left: auto;
    right: -9px;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid rgba(21, 28, 45, .09);
    border-top: 1px solid rgba(21, 28, 45, .09);
  }

  #etapai .timeline-item:nth-child(even) .timeline-card::after {
    left: -9px;
    border-right: 0;
    border-top: 0;
    border-left: 1px solid rgba(21, 28, 45, .09);
    border-bottom: 1px solid rgba(21, 28, 45, .09);
  }

  #etapai .timeline-card .card-kicker {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    justify-self: start;
    margin: 1px 0 0;
    padding: 6px 10px;
    background: rgba(201, 78, 28, .075);
    border-color: rgba(201, 78, 28, .14);
    font-size: 11px;
    letter-spacing: .075em;
  }

  #etapai .timeline-card h3,
  #etapai .timeline-card p {
    grid-column: 2;
  }

  #etapai .timeline-card h3 {
    margin-bottom: 4px;
    font-size: 19px;
    line-height: 1.22;
  }

  #etapai .timeline-card p {
    margin-bottom: 0;
    font-size: 15.5px;
    line-height: 1.5;
  }

  #etapai .timeline-item:nth-child(4) .timeline-card {
    min-height: 146px;
  }

  #etapai .timeline-item:nth-child(7) {
    grid-column: auto;
  }

  #etapai .timeline-item:nth-child(7) .timeline-card {
    grid-template-columns: 96px minmax(0, 1fr);
    width: auto;
    justify-self: stretch;
    align-items: start;
    background: linear-gradient(145deg, #fff8f2, #fff);
    border-color: rgba(201, 78, 28, .19);
  }

  #etapai .timeline-item:nth-child(7) .timeline-card .card-kicker {
    grid-row: 1 / span 2;
  }

  #etapai .timeline-item:nth-child(7) .timeline-card h3,
  #etapai .timeline-item:nth-child(7) .timeline-card p {
    grid-column: 2;
  }
}

@media (min-width: 1061px) and (max-width: 1220px) {
  #etapai .timeline {
    max-width: 980px;
  }

  #etapai .timeline-card {
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 20px;
  }

  #etapai .timeline-card .card-kicker,
  #etapai .timeline-card h3,
  #etapai .timeline-card p,
  #etapai .timeline-item:nth-child(7) .timeline-card .card-kicker,
  #etapai .timeline-item:nth-child(7) .timeline-card h3,
  #etapai .timeline-item:nth-child(7) .timeline-card p {
    grid-column: 1;
  }

  #etapai .timeline-card .card-kicker,
  #etapai .timeline-item:nth-child(7) .timeline-card .card-kicker {
    grid-row: auto;
  }
}

@media (max-width: 700px) {
  #etapai .timeline {
    gap: 12px;
  }

  #etapai .timeline-card {
    padding: 20px;
    border-left-width: 3px;
  }

  #etapai .timeline-card .card-kicker {
    margin-bottom: 8px;
  }
}


/* v3.37: paramos formoje pagrindinis veiksmas iškeltas į atskirą, aiškiai dominuojančią CTA eilutę.
   Taip parama nebesijaučia kaip suspausta dviejų laukų eilutė, o veiksmo hierarchija tampa natūralesnė: suma → kita suma → paremti. */
@media (min-width: 700px) {
  .donation-widget form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .donation-widget .amount-grid,
  .donation-widget .custom-input,
  .donation-widget .submit-btn,
  .donation-widget .donation-feedback {
    grid-column: 1;
  }

  .donation-widget .amount-grid {
    margin-bottom: 2px;
  }

  .donation-widget .custom-input {
    width: min(100%, 320px);
    justify-self: center;
    min-height: 58px;
    margin-bottom: 0;
    text-align: center;
    border-radius: 999px;
  }

  .donation-widget .submit-btn {
    width: min(100%, 500px);
    justify-self: center;
    min-height: 64px;
    margin-top: 2px;
    padding-inline: 26px;
    white-space: nowrap;
  }
}

@media (min-width: 960px) {
  .donation-widget {
    padding: clamp(24px, 2.7vw, 34px);
  }

  .donation-widget .amount-grid {
    gap: 13px;
  }
}

@media (max-width: 699px) {
  .donation-widget .custom-input {
    margin-bottom: 10px;
  }
}



/* v3.38: „Apie programą“ blokas perimtas iš v3.62 — dešinė tikslo kortelė nebėra tempiama per visą kairės kortelės aukštį, kolonos lygiuojamos viršuje. */
@media (min-width: 1061px) {
  #apie .split-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .92fr);
  }

  #apie .copy-card,
  #apie .goal-card {
    min-height: 0;
  }

  #apie .goal-card {
    align-self: start;
    padding: clamp(34px, 3.2vw, 44px);
  }

  #apie .goal-card .task-list {
    gap: 10px;
  }

  #apie .goal-card .task-list span {
    min-height: 88px;
    padding: 14px;
  }
}