.elementor-33 .elementor-element.elementor-element-9fb0779{--display:flex;}/* Start custom CSS for html, class: .elementor-element-56fd784 *//* RESET & BASE --------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #5369414D 0, #536941B3 32%, #fef7ec 70%, #f9fdfb 100%);
  color: #12343b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  margin: 0 0 .5rem;
  font-weight: 600;
  color: #12343b;
}
p {
  margin: 0 0 1rem;
}
:root {
  --mw-mint: #61b29f;        /* Hauptgrün */
  --mw-mint-soft: #dff4eb;   /* softer Mint */
  --mw-rose: #ffd7a0;        /* Pastell-Orange/Peach */
  --mw-lilac: #e6f0ff;       /* dezentes Blaupastell */
  --mw-gold: #f7b267;        /* warmes Orange */
  --mw-deep: #12343b;        /* dunkler Petrol-Ton */
  --mw-text-soft: #4f6b74;
  --radius-xl: 1.5rem;
  --shadow-soft: 0 18px 45px rgba(15, 35, 52, 0.08);
  --transition-fast: 0.22s ease-out;
  scroll-behavior: smooth;
}

/* LANGUAGE HANDLING ---------------------------------------------------*/
.lang {
  display: none;
}
body.lang-de .lang-de {
  display: inline;
}
body.lang-en .lang-en {
  display: inline;
}
body.lang-pl .lang-pl {
  display: inline;
}

/* LAYOUT WRAPPER (scoped) ---------------------------------------------*/
.pg-2026.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.pg-2026 main {
  flex: 1;
}
.pg-2026 .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER (scoped) -----------------------------------------------------*/
.pg-2026 header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(230,244,239,0.95));
  border-bottom: 1px solid rgba(222,238,232,0.95);
}
.pg-2026 .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

/* LOGO / BRAND ELEMENT -----------------------------------------------*/
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #f7f1e9 25%, #dff4eb 60%, #e6f0ff 100%);
  box-shadow: 0 10px 25px rgba(100, 135, 120, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd7a0, #f7f1e9);
  width: 62%;
  height: 62%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.logo-mark::before {
  transform: translate(-50%, -50%) rotate(35deg);
  opacity: 0.9;
}
.logo-mark::after {
  transform: translate(-50%, -50%) rotate(-35deg);
  opacity: 0.8;
}
.logo-dot {
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #fff 0, #f7b267 45%, #ff9f6a 100%);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
  position: relative;
  z-index: 2;
}
.logo-text-main {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #12343b;
}
.logo-text-sub {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #6e8a92;
}

/* NAV (scoped) --------------------------------------------------------*/
.pg-2026 nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .9rem;
  color: #4f6b74;
}
.pg-2026 nav a {
  position: relative;
  padding-bottom: 3px;
}
.pg-2026 nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mw-gold), var(--mw-mint));
  border-radius: 999px;
  transition: width var(--transition-fast);
}
.pg-2026 nav a:hover::after {
  width: 100%;
}

/* LANGUAGE SWITCH -----------------------------------------------------*/
.lang-switch {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(185,213,203,0.9);
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  padding: .2rem .65rem;
  border-radius: 999px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #66807a;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--mw-mint-soft), var(--mw-rose));
  color: #12343b;
  box-shadow: 0 6px 15px rgba(91, 139, 120, 0.45);
}

/* HERO (scoped) --------------------------------------------------------*/
.pg-2026 #hero {
  padding: 4.5rem 0 3.5rem;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.8rem;
  border-radius: 2rem;
  background: radial-gradient(circle at top right,
    rgba(255,255,255,0.96) 0,
    rgba(245,252,249,0.96) 40%,
    rgba(223,244,235,0.96) 75%,
    rgba(255,245,230,0.96) 100%);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 255, 240, 0.7) 0, transparent 55%),
    radial-gradient(circle at 80% 0%, rgba(226, 245, 255, 0.55) 0, transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(253, 238, 217, 0.75) 0, transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}
.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .18rem .7rem .18rem .2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 20px rgba(158, 185, 171, 0.35);
  margin-bottom: 1rem;
  font-size: .78rem;
  color: #567373;
}
.hero-eyebrow-pill {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: conic-gradient(from 160deg, #fdf2df, #f7f1e9, #dff4eb, #fdf2df);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.9);
}
.hero-eyebrow-pill span {
  font-size: .58rem;
  font-weight: 600;
  color: #294342;
}
.hero-title {
  font-size: clamp(2.1rem, 3.1vw, 2.9rem);
  line-height: 1.13;
  margin-bottom: 1rem;
}
.hero-title span.highlight {
  background: linear-gradient(120deg, var(--mw-mint), var(--mw-gold), #ff9f6a);
  -webkit-background-clip: text;
  color: transparent;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--mw-text-soft);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .88rem;
  margin-bottom: 2rem;
  color: #4a6366;
}
.pill {
  border-radius: 999px;
  padding: .45rem .9rem;
  background: rgba(236,249,244,0.96);
  box-shadow: 0 10px 25px rgba(153, 189, 168, 0.45);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.pill strong {
  font-weight: 600;
  color: #23433f;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* BUTTONS --------------------------------------------------------------*/
.btn-main {
  border-radius: 999px;
  border: none;
  padding: .85rem 1.9rem;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  background: radial-gradient(circle at 0 0, #ffffff 0, #f7d7a6 35%, #61b29f 100%);
  color: #12343b;
  box-shadow: 0 22px 45px rgba(111, 153, 132, 0.65);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
}
.btn-main span.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  font-size: .85rem;
}
.btn-main:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 26px 55px rgba(103, 145, 125, 0.8);
}
.btn-secondary {
  border-radius: 999px;
  padding: .7rem 1.4rem;
  border: 1px solid rgba(129, 178, 153, 0.9);
  background: rgba(245,251,248,0.98);
  color: #32554d;
  font-size: .86rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 18px 35px rgba(141, 181, 160, 0.65);
  transform: translateY(-1px);
}

/* HERO VISUAL ----------------------------------------------------------*/
.hero-visual {
  position: relative;
}
.hero-orbit {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 2.2rem;
  background: radial-gradient(circle at 20% 0, #ffffff 0, #f5f9f6 35%, #dff4eb 70%, #fbeeda 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.hero-orbit-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1.6rem 1.6rem 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.orbit-badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: .35rem .9rem;
  background: rgba(19, 54, 47, 0.94);
  color: #f1fbf7;
  font-size: .74rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.orbit-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff 0, #9bffd4 100%);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem;
  margin-bottom: 1.1rem;
  font-size: .75rem;
}
.hero-stat-card {
  border-radius: 1.1rem;
  padding: .75rem .8rem;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 30px rgba(126, 159, 140, 0.45);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.hero-stat-card span.label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #6d8178;
}
.hero-stat-card span.value {
  font-weight: 600;
  color: #23433f;
}
.hero-timeline {
  border-radius: 1.4rem;
  padding: .9rem .95rem;
  background: linear-gradient(135deg, rgba(12, 45, 40, 1), rgba(29, 68, 59, 0.96));
  color: #e0f7ee;
  font-size: .77rem;
  box-shadow: 0 20px 40px rgba(8, 33, 28, 0.95);
}
.hero-timeline-title {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #bfe9db;
  margin-bottom: .45rem;
}
.hero-timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.hero-timeline-row strong {
  font-size: .9rem;
  color: #ffffff;
}
.hero-timeline-row span {
  font-size: .8rem;
  color: #d5f4e7;
}

/* GENERIC SECTION STYLES (scoped) -------------------------------------*/
.pg-2026 section {
  padding: 3.5rem 0;
}
.section-card {
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2.3rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.section-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(223,244,235,0.8) 0, transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(255,239,214,0.8) 0, transparent 45%);
  opacity: 0.6;
  pointer-events: none;
}
.section-card-inner {
  position: relative;
  z-index: 2;
}
.section-eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #7b9087;
  margin-bottom: .4rem;
}
.section-title {
  font-size: 1.6rem;
  margin-bottom: .6rem;
}
.section-lead {
  font-size: .98rem;
  color: var(--mw-text-soft);
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

/* GROUPS SECTION ------------------------------------------------------*/
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .4rem;
}
.badge {
  border-radius: 999px;
  padding: .35rem .75rem;
  background: rgba(235,248,243,0.98);
  font-size: .78rem;
  color: #415c55;
  box-shadow: 0 8px 18px rgba(144, 179, 158, 0.45);
}
.groups-grid {
  display: grid;
  grid-template-columns: 2.2fr 2fr;
  gap: 2.3rem;
  margin-top: 1.7rem;
}
.groups-list {
  display: grid;
  gap: .6rem;
  font-size: .92rem;
  color: #455f5c;
}
.groups-list-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.groups-list-item-icon {
  margin-top: .2rem;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mw-gold), var(--mw-mint));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #143834;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(146, 176, 151,0.7);
}
.groups-meta-card {
  border-radius: 1.4rem;
  background: rgba(12, 45, 40, 0.98);
  color: #e0f7ee;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 24px 45px rgba(6, 27, 23, 0.98);
  font-size: .9rem;
  position: relative;
  overflow: hidden;
}
.groups-meta-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0, rgba(248, 228, 199, 0.8) 0, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(191,232,222,0.7) 0, transparent 45%);
  opacity: 0.7;
  pointer-events: none;
}
.groups-meta-inner {
  position: relative;
  z-index: 2;
}
.groups-meta-title {
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: .7rem;
  color: #cfe9df;
}
.groups-meta-highlight {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: #ffffff;
}
.groups-meta-tagline {
  font-size: .85rem;
  color: #e3f6ee;
  margin-bottom: 1rem;
}
.groups-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .82rem;
  color: #d3f1e6;
}
.groups-meta-pill {
  border-radius: 999px;
  padding: .38rem .8rem;
  background: rgba(6,25,21,0.55);
  border: 1px solid rgba(188,232,221,0.65);
}

/* STEPS SECTION -------------------------------------------------------*/
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
  margin-top: 1.7rem;
}
.step-card {
  border-radius: 1.5rem;
  background: rgba(249,253,251,0.98);
  box-shadow: 0 16px 36px rgba(140,171,154,0.45);
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: attr(data-step);
  position: absolute;
  right: 1.2rem;
  top: 1rem;
  font-size: 3.4rem;
  font-weight: 700;
  color: rgba(223,238,230,0.9);
  letter-spacing: .05em;
}
.step-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #7a8f83;
}
.step-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #23433f;
}
.step-body {
  font-size: .9rem;
  color: var(--mw-text-soft);
  flex: 1;
}
.step-footnote {
  font-size: .82rem;
  color: #7b8f87;
  margin-top: .4rem;
}

/* SKILLS SECTION ------------------------------------------------------*/
.skills-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 2.2fr);
  gap: 1.8rem;
  margin-top: 1.6rem;
}
.skills-list {
  display: grid;
  gap: .7rem;
  font-size: .9rem;
  color: #435d5a;
}
.skills-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .4rem;
}
.skills-pill {
  border-radius: 999px;
  padding: .35rem .8rem;
  font-size: .8rem;
  background: rgba(236,249,244,0.98);
  box-shadow: 0 10px 20px rgba(150,182,163,0.45);
  color: #304843;
}
.quote-card {
  border-radius: 1.4rem;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(135deg, rgba(12,45,40,1), rgba(27,65,56,0.98));
  color: #e4f8f0;
  box-shadow: 0 20px 40px rgba(7,28,24,0.95);
  font-size: .92rem;
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "“";
  position: absolute;
  font-size: 5.4rem;
  left: .6rem;
  top: -1.2rem;
  color: rgba(175, 215, 199, 0.4);
}
.quote-author {
  margin-top: 1rem;
  font-size: .82rem;
  color: #c4e7d9;
}

/* INVESTMENT SECTION --------------------------------------------------*/
.investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 2.2fr);
  gap: 1.9rem;
  margin-top: 1.5rem;
}
.price-highlight {
  border-radius: 1.6rem;
  background: linear-gradient(135deg, #fdf2df, #ffe8cc);
  padding: 1.5rem 1.7rem;
  box-shadow: 0 18px 36px rgba(204, 170, 132, 0.5);
  font-size: .94rem;
}
.price-value {
  font-size: 1.7rem;
  font-weight: 700;
  color: #12343b;
}
.price-caption {
  font-size: .86rem;
  color: #5f6d6f;
}
.voucher-card {
  border-radius: 1.4rem;
  background: rgba(248,252,255,0.98);
  border: 1px dashed rgba(168, 206, 190, 0.95);
  padding: 1.3rem 1.4rem;
  font-size: .9rem;
  color: #3f5551;
  display: grid;
  gap: .45rem;
}

/* FORM SECTION --------------------------------------------------------*/
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 2fr);
  gap: 2.1rem;
  margin-top: 1.4rem;
  align-items: start;
}
form {
  display: grid;
  gap: 1rem;
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .86rem;
  color: #435b55;
}
.field label {
  font-weight: 500;
}
.field span.hint {
  font-size: .78rem;
  color: #7a8f88;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border-radius: .9rem;
  border: 1px solid rgba(168, 194, 183, 0.95);
  padding: .6rem .8rem;
  font-family: inherit;
  font-size: .9rem;
  background: rgba(250,252,251,0.98);
  outline: none;
  transition: border var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--mw-mint);
  box-shadow: 0 0 0 1px rgba(97,178,159,0.8), 0 16px 30px rgba(154,191,169,0.6);
  background: #ffffff;
  transform: translateY(-1px);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-field {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .82rem;
  color: #566d67;
}
.checkbox-field input {
  margin-top: .2rem;
}
.form-footnote {
  font-size: .78rem;
  color: #7e8f88;
}
.form-status {
  font-size: .85rem;
  margin-top: .4rem;
  min-height: 1.2rem;
}
.form-status.success {
  color: #1b7c4d;
}
.form-status.error {
  color: #b23a3a;
}
.field.invalid input,
.field.invalid textarea,
.field.invalid select {
  border-color: #b23a3a;
  box-shadow: 0 0 0 1px rgba(178,58,58,0.7);
}

/* SIDE CARD -----------------------------------------------------------*/
.apply-side-card {
  border-radius: 1.6rem;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, rgba(12, 45, 40,1), rgba(29, 68, 59, 0.96));
  color: #e5f7ef;
  box-shadow: 0 22px 40px rgba(6, 26, 22, 0.98);
  font-size: .9rem;
  position: relative;
  overflow: hidden;
}
.apply-side-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(248, 228, 199, 0.8) 0, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(191,232,222,0.7) 0, transparent 45%);
  opacity: 0.65;
  pointer-events: none;
}
.apply-side-inner {
  position: relative;
  z-index: 2;
}
.apply-side-tag {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #caebdd;
  margin-bottom: .5rem;
}
.apply-side-title {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.apply-side-list {
  margin: .2rem 0 .9rem;
  padding-left: 1rem;
  font-size: .86rem;
}
.apply-side-list li {
  margin-bottom: .2rem;
}

/* FOOTER (scoped) -----------------------------------------------------*/
.pg-2026 footer {
  padding: 2rem 1.5rem 2.4rem;
  font-size: .8rem;
  color: #6b7f79;
  text-align: center;
}

/* SCROLL ANIMATIONS ---------------------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE ----------------------------------------------------------*/
@media (max-width: 990px) {
  .hero-inner {
    grid-template-columns: minmax(0,1fr);
    padding: 2.1rem 1.7rem 2.3rem;
  }
  .hero-visual {
    order: -1;
  }
  .groups-grid,
  .skills-layout,
  .investment-layout,
  .form-layout {
    grid-template-columns: minmax(0,1fr);
  }
  .section-card {
    padding: 2rem 1.7rem;
  }
  .pg-2026 header {
    position: sticky;
  }
  .pg-2026 nav {
    display: none;
  }
}
@media (max-width: 780px) {
  .pg-2026 #hero {
    padding-top: 3.2rem;
  }
  .steps-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .field-row {
    grid-template-columns: minmax(0,1fr);
  }
  .pg-2026 .header-inner {
    padding-inline: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-inner {
    padding: 1.7rem 1.4rem 2.1rem;
  }
  .section-card {
    padding: 1.7rem 1.2rem;
  }
}/* End custom CSS */