:root {
  --forest: #0b3b24;
  --deep: #062818;
  --green: #10b981;
  --lime: #a6f47a;
  --ink: #132019;
  --muted: #66736c;
  --line: #dfe8e1;
  --pale: #f4f8f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

.announcement {
  height: 34px;
  background: #092e1d;
  color: #d7f6df;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px #a6f47a22;
}

.header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(4vw, 38px);
  border-bottom: 1px solid #edf1ee;
  position: sticky;
  top: 0;
  background: #fffffff2;
  backdrop-filter: blur(10px);
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -1.4px;
  color: var(--forest);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--forest);
  color: var(--lime);
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 18px;
}

.official-brand {
  display: block;
  width: 138px;
  height: auto;
}

.official-brand img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  gap: 29px;
  font-size: 12px;
  font-weight: 700;
  color: #435148;
}

nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  background: var(--green);
  color: #fff;
  font: 700 12px 'Plus Jakarta Sans';
  padding: 15px 19px;
  cursor: pointer;
  box-shadow: 0 6px 15px #10b98121;
}

.button svg {
  width: 15px;
}

.header-cta {
  padding: 12px 15px;
}

.menu {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 620px;
  padding: 78px max(7vw, 55px) 72px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 62px;
  overflow: hidden;
  background: linear-gradient(110deg, #f6fbf7 0%, #f6fbf7 47%, #eef7f0 47%);
}

.hero-copy {
  max-width: 680px;
  align-self: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #098658;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: #9de89a;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  font-size: clamp(43px, 4.7vw, 69px);
  line-height: 1.04;
  letter-spacing: -.065em;
  margin: 19px 0 23px;
  font-weight: 800;
  color: var(--forest);
}

h1 em, h2 em {
  font-style: normal;
  color: #0c9b62;
}

h1 em {
  position: relative;
  white-space: nowrap;
  font-style: normal;
  color: #0c9b62;
  display: inline-block;
}

h1 em:after {
  content: '';
  height: 7px;
  width: 100%;
  background: #b7fa86;
  position: absolute;
  bottom: 1px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
  transform: rotate(-1.5deg);
  animation: soft-pen-stroke 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes soft-pen-stroke {
  0% {
    clip-path: inset(0 100% 0 0 round 4px);
    opacity: 0;
    filter: blur(1.5px);
  }
  6% {
    opacity: 0.6;
    filter: blur(0.8px);
  }
  38% {
    clip-path: inset(0 0% 0 0 round 4px);
    opacity: 1;
    filter: blur(0px);
  }
  75% {
    clip-path: inset(0 0% 0 0 round 4px);
    opacity: 1;
    filter: blur(0px);
  }
  92% {
    clip-path: inset(0 0% 0 0 round 4px);
    opacity: 0;
    filter: blur(0.5px);
  }
  100% {
    clip-path: inset(0 100% 0 0 round 4px);
    opacity: 0;
    filter: blur(1.5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  h1 em:after {
    animation: none;
    clip-path: none;
    opacity: 1;
    filter: none;
  }
}

.hero-copy > p {
  font-size: 15px;
  line-height: 1.75;
  color: #56655c;
  max-width: 610px;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  font-size: 12px;
  font-weight: 800;
  color: #096640;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-link svg {
  width: 15px;
}

.hero-proof {
  border-top: 1px solid #d7e4d8;
  margin-top: 46px;
  padding-top: 19px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -5px;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 800;
  background: #d6d1c3;
  color: #675e45;
}

.proof-avatars span:first-child {
  margin: 0;
  background: #b1c69c;
  color: #25442d;
}

.proof-avatars span:last-child {
  background: var(--forest);
  color: white;
}

.hero-proof p {
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
  color: #6b766e;
}

.hero-proof strong {
  color: #233b2b;
}

.hero-art {
  position: relative;
  min-height: 470px;
}

.hero-image {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  background-image: url('https://www.unido.org/sites/default/files/styles/article_hero_image/public/2024-09/Untitled%20design.jpg?itok=ZD74b-Fi');
}

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #09301cd9);
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 8px;
  padding: 13px 15px;
  box-shadow: 0 15px 35px #06281830;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.route {
  top: 31px;
  left: -32px;
  width: 205px;
}

.small-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #e4f8ed;
  color: #07965d;
  display: grid;
  place-items: center;
}

.small-icon svg {
  width: 16px;
}

.float-card small {
  display: block;
  font-size: 8px;
  color: #819087;
  font-weight: 800;
  letter-spacing: .09em;
  margin-bottom: 3px;
}

.float-card b {
  font-size: 11px;
  display: block;
}

.float-card span {
  font-size: 9px;
  color: #05965b;
}

.metric {
  right: -30px;
  bottom: 30px;
  display: block;
  width: 190px;
}

.metric b {
  font-size: 28px;
  letter-spacing: -2px;
  color: var(--forest);
}

.metric b span {
  font-size: 17px;
  color: var(--green);
}

.metric p {
  margin: 4px 0 0;
  color: #05965b;
  font-size: 9px;
  font-weight: 700;
}

.metric p svg {
  width: 11px;
  height: 11px;
  vertical-align: middle;
}

.hero-stamp {
  position: absolute;
  right: 24px;
  top: 104px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 1px solid #c9e9cb;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
  transform: rotate(13deg);
}

.hero-stamp svg {
  width: 17px;
  color: #b4f778;
}

/* Partner Logos / Trusted Rail */
.trusted {
  border-bottom: 1px solid #e5ece6;
  padding: 28px max(7vw, 55px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
}

.trusted p {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0;
  color: #8c9990;
  flex-shrink: 0;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logos img {
  display: block;
  max-height: 42px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 4px 6px;
  filter: contrast(1.05) saturate(1);
  mix-blend-mode: multiply;
  transition: opacity .2s, transform .2s;
}

.partner-logos img:hover {
  opacity: .8;
  transform: scale(1.02);
}

/* Sections Common */
.section {
  padding: 110px max(7vw, 55px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 45px;
}

.section-heading h2,
.tum-content h2,
.criteria h2,
.apply h2 {
  font-size: clamp(31px, 3.5vw, 48px);
  letter-spacing: -.055em;
  line-height: 1.12;
  margin: 14px 0 0;
  max-width: 685px;
}

.section-heading > p {
  max-width: 320px;
  color: #66746c;
  line-height: 1.75;
  font-size: 13px;
  margin: 0 0 3px;
}

/* Bottleneck / Comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 31px 34px;
}

.compare-card.active {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
  box-shadow: 0 15px 35px #06351d1c;
}

.card-label {
  font-size: 10px;
  letter-spacing: .1em;
  font-weight: 800;
  color: #78867d;
  display: flex;
  justify-content: space-between;
}

.active .card-label {
  color: #a9dfab;
}

.card-label svg {
  width: 15px;
}

.compare-card h3 {
  font-size: 25px;
  letter-spacing: -.05em;
  line-height: 1.2;
  margin: 24px 0;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  color: #637168;
  font-size: 12px;
  font-weight: 600;
}

.active ul {
  color: #def1df;
}

.compare-card li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.compare-card li svg {
  width: 15px;
  color: #b9c6be;
}

.active li svg {
  color: var(--lime);
  background: #a6f47a1b;
  border-radius: 50%;
}

.card-footer {
  border-top: 1px solid #ffffff25;
  margin-top: 25px;
  padding-top: 19px;
  color: #b5eeb7;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

.card-footer svg {
  width: 15px;
}

/* TUM Section */
.tum-section {
  display: grid;
  grid-template-columns: 42% 58%;
  background: var(--deep);
  color: white;
  min-height: 610px;
}

.tum-image {
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(90deg, #06281816, #062818a6), url('assets/commodity-truck.jpg');
}

.tum-content {
  padding: 82px max(7vw, 60px) 75px 70px;
}

.tum-content h2 {
  max-width: 640px;
}

.tum-content h2 em {
  color: #a6f47a;
}

.tum-content > p {
  color: #b5c7b9;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 34px;
}

.tum-cards {
  display: grid;
  gap: 0;
  border-top: 1px solid #ffffff25;
}

.tum-cards article {
  display: flex;
  gap: 17px;
  padding: 18px 0;
  border-bottom: 1px solid #ffffff25;
}

.tum-cards article > b {
  font-size: 22px;
  color: #a6f47a;
}

.tum-cards h3 {
  font-size: 13px;
  margin: 0 0 4px;
}

.tum-cards p {
  font-size: 11px;
  color: #aec0b2;
  line-height: 1.5;
  margin: 0;
}

/* Pricing / Structures */
.centered {
  text-align: center;
  justify-content: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered h2 {
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle {
  margin: 25px auto 0;
  border: 1px solid var(--line);
  background: #f6faf6;
  padding: 4px;
  border-radius: 8px;
  display: flex;
  width: max-content;
}

.toggle {
  border: 0;
  background: transparent;
  padding: 8px 16px;
  font: 700 11px 'Plus Jakarta Sans';
  color: #758078;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}

.toggle.active {
  background: white;
  box-shadow: 0 2px 7px #12351212;
  color: var(--forest);
}

.structure-grid {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  margin-top: 30px;
}

.structure-card {
  display: none;
  border: 1px solid var(--line);
  padding: 29px 32px 26px;
  border-radius: 11px;
  background: #fbfdfb;
}

.structure-card.selected {
  display: block;
  animation: structure-in .28s ease both;
}

@keyframes structure-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.structure-card.dark {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}

.structure-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #829087;
  font-weight: 800;
}

.dark .structure-top {
  color: #b1d8b5;
}

.tag {
  padding: 5px 8px;
  background: #e8f4e9;
  color: #29784f;
  border-radius: 3px;
  font-size: 8px;
  letter-spacing: .1em;
}

.dark .tag {
  background: #ffffff13;
  color: #b7efb8;
}

.structure-card h3 {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.045em;
  max-width: 350px;
  margin: 25px 0 10px;
}

.structure-card > p {
  font-size: 12px;
  line-height: 1.65;
  color: #68776e;
  margin-bottom: 27px;
  max-width: 420px;
}

.dark > p {
  color: #b9cbbd;
}

.rate small {
  display: block;
  color: #849188;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.rate b {
  display: inline-block;
  font-size: 44px;
  letter-spacing: -.08em;
  line-height: 1.1;
  color: #0c8654;
  margin: 7px 7px 12px 0;
}

.dark .rate b {
  color: #a6f47a;
}

.rate b span {
  font-size: 22px;
}

.rate em {
  font-size: 10px;
  color: #809087;
  font-style: normal;
  font-weight: 700;
}

.dark .rate em {
  color: #b4c6b8;
}

.term-pills {
  display: flex;
  gap: 7px;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}

.term-pills span {
  font-size: 9px;
  font-weight: 700;
  padding: 6px 9px;
  background: #eaf3eb;
  border-radius: 4px;
  color: #4d6655;
}

.structure-bottom {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 17px;
  font-size: 10px;
  line-height: 1.5;
  color: #6c796f;
  display: flex;
  justify-content: space-between;
}

.structure-bottom svg {
  width: 14px;
  color: var(--green);
  flex: none;
}

.daily {
  border-top: 1px solid #ffffff25;
  padding: 18px 0;
  display: flex;
  gap: 10px;
  color: #b9cfbc;
  font-size: 10px;
  line-height: 1.5;
}

.daily svg {
  width: 17px;
  color: #a6f47a;
  flex: none;
}

.daily b {
  color: #fff;
}

.light-btn {
  background: #a6f47a;
  color: #08351f;
  width: 100%;
  margin-top: 3px;
}

/* Criteria */
.criteria {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 95px;
  background: #f5f9f5;
}

.criteria-copy > p {
  color: #68776f;
  line-height: 1.7;
  max-width: 380px;
  font-size: 13px;
  margin: 20px 0 28px;
}

.min-volume {
  display: flex;
  gap: 14px;
  padding: 17px;
  background: #fff;
  border: 1px solid #e0ebe0;
  border-radius: 8px;
  max-width: 360px;
}

.min-volume > i {
  color: #098c58;
  width: 22px;
}

.min-volume small {
  font-size: 8px;
  color: #8c9990;
  font-weight: 800;
  letter-spacing: .1em;
  display: block;
}

.min-volume b {
  font-size: 16px;
  display: block;
  margin: 4px 0;
}

.min-volume span {
  font-size: 9px;
  color: #76847a;
}

.criteria-list {
  display: grid;
  gap: 10px;
  align-self: center;
}

.criteria-list article {
  background: #fff;
  padding: 22px;
  display: flex;
  gap: 17px;
  border-radius: 8px;
  border: 1px solid #e2ebe2;
}

.criteria-list > article > i {
  color: #0b9b61;
  background: #e4f7ea;
  width: 39px;
  height: 39px;
  padding: 10px;
  border-radius: 8px;
}

.criteria-list h3 {
  font-size: 14px;
  margin: 2px 0 5px;
}

.criteria-list p {
  font-size: 11px;
  color: #6a786f;
  margin: 0;
  line-height: 1.55;
}

/* Traction */
.traction {
  background: var(--forest);
  padding: 90px 7vw 75px;
  color: white;
}

.traction h2 {
  font-size: clamp(33px, 3.7vw, 50px);
  letter-spacing: -.06em;
  margin: 14px 0 45px;
}

.traction h2 em {
  color: #a6f47a;
}

.stats {
  border-top: 1px solid #ffffff26;
  border-bottom: 1px solid #ffffff26;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats > div {
  padding: 27px 38px;
}

.stats > div + div {
  border-left: 1px solid #ffffff26;
}

.stats b {
  font-size: 42px;
  letter-spacing: -.08em;
  color: #a6f47a;
}

.stats b span {
  font-size: 23px;
}

.stats p {
  font-size: 10px;
  color: #c0d5c3;
  margin: 5px 0 0;
  font-weight: 700;
}

.traction-note {
  text-align: center;
  margin: 25px 0 0;
  color: #bce1c0;
  font-size: 10px;
  font-weight: 700;
}

.traction-note svg {
  width: 14px;
  vertical-align: middle;
  color: #a6f47a;
}

/* How it Works */
.how {
  padding-bottom: 100px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.steps:before {
  content: '';
  height: 1px;
  background: #dbe5dc;
  position: absolute;
  top: 18px;
  left: 1%;
  right: 1%;
}

.steps article {
  position: relative;
  padding: 0 25px 0 0;
}

.steps article:not(:first-child) {
  padding-left: 24px;
}

.steps span {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: #c9f2c9;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.steps article > i {
  width: 20px;
  color: #09945d;
  margin-bottom: 15px;
}

.steps h3 {
  font-size: 14px;
  margin: 0 0 8px;
}

.steps p {
  font-size: 11px;
  color: #69776e;
  line-height: 1.6;
  margin: 0;
}

/* Application Form Section */
.apply {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 80px;
  padding: 86px max(7vw, 55px);
  background: #082e1d;
  color: white;
}

.apply h2 em {
  color: #a6f47a;
}

.apply-intro > p {
  color: #b4c8b8;
  line-height: 1.7;
  font-size: 13px;
  max-width: 390px;
  margin: 20px 0 36px;
}

.contact-line {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #d6ead8;
  font-size: 11px;
}

.contact-line i {
  color: #a6f47a;
  width: 18px;
}

.mini-disclaimer {
  font-size: 9px !important;
  border-top: 1px solid #ffffff22;
  padding-top: 17px;
  margin-top: 31px !important;
}

.apply form {
  background: white;
  color: var(--ink);
  padding: 27px;
  border-radius: 11px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  display: block;
  color: #4b5a51;
  margin-bottom: 14px;
}

input, select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #dce6df;
  background: #fbfdfb;
  border-radius: 5px;
  padding: 12px;
  font: 500 11px 'Plus Jakarta Sans';
  color: #374a3c;
  outline: none;
}

input:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px #10b98115;
}

.upload {
  height: 87px;
  border: 1px dashed #b9cdbd;
  border-radius: 6px;
  position: relative;
  text-align: center;
  padding: 16px;
  margin-top: 1px;
  color: #54645a;
}

.upload span {
  color: #94a298;
  font-weight: 500;
  margin-left: 3px;
}

.upload input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.upload > i {
  display: block;
  width: 18px;
  margin: 0 auto 3px;
  color: #0d9d62;
}

.upload b {
  display: block;
  font-size: 10px;
}

.upload em {
  font-style: normal;
  color: #058b56;
}

.upload small {
  font-size: 8px;
  color: #98a59b;
  font-weight: 500;
}

.captcha-wrap {
  margin: 4px 0 14px;
  min-height: 65px;
}

.captcha-wrap .cf-turnstile {
  transform: scale(.9);
  transform-origin: left top;
}

.submit {
  width: 100%;
  margin-top: 2px;
  padding: 14px;
}

.form-note {
  text-align: center;
  color: #89978e;
  font-size: 9px;
  margin: 13px 0 0;
}

.form-note svg {
  width: 11px;
  vertical-align: middle;
}

/* Footer */
footer {
  background: #061f13;
  color: #adbfaf;
  padding: 45px 7vw 25px;
  display: grid;
  grid-template-columns: 1.1fr 1fr .8fr;
  gap: 36px;
  font-size: 10px;
}

.footer-brand .brand {
  color: white;
}

.footer-brand .official-brand {
  width: 142px;
}

.footer-brand .official-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 10px 0;
}

.footer-links {
  display: flex;
  gap: 19px;
  align-items: center;
  font-weight: 700;
}

.footer-contact span {
  display: block;
  font-size: 8px;
  letter-spacing: .1em;
  color: #82a387;
  margin-bottom: 5px;
}

.footer-contact b {
  color: #e0efe1;
}

.legal {
  grid-column: span 2;
  border-top: 1px solid #ffffff1c;
  padding-top: 20px;
  line-height: 1.6;
  color: #88a18d;
}

.copyright {
  border-top: 1px solid #ffffff1c;
  padding-top: 20px;
  text-align: right;
  color: #88a18d;
}

/* Toast */
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: white;
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 15px 35px #00180e3d;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateY(120px);
  opacity: 0;
  transition: .3s;
  z-index: 30;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast > i {
  color: #09a160;
}

.toast b, .toast span {
  display: block;
  font-size: 11px;
}

.toast span {
  font-size: 9px;
  color: #6b776e;
  margin-top: 3px;
}

/* Responsive Styles */
@media (max-width: 980px) {
  .trusted {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 25px;
  }
  .partner-logos {
    justify-content: flex-start;
    gap: 32px;
    width: 100%;
  }
}

@media (max-width: 800px) {
  .announcement {
    font-size: 8px;
    padding: 0 12px;
    gap: 6px;
  }
  .header {
    height: 64px;
    padding: 0 21px;
  }
  nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 18px;
    background: white;
    flex-direction: column;
    box-shadow: 0 8px 18px #0001;
  }
  nav.show {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .menu {
    display: block;
  }
  .hero {
    padding: 58px 25px 48px;
    grid-template-columns: 1fr;
    background: #f6fbf7;
    gap: 36px;
  }
  .hero-art {
    min-height: 330px;
    margin: 0 15px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .float-card.route {
    left: -14px;
  }
  .float-card.metric {
    right: -14px;
  }
  .partner-logos {
    gap: 22px;
  }
  .partner-logos img {
    max-height: 32px;
    max-width: 110px;
  }
  .section {
    padding: 70px 25px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 18px;
  }
  .comparison, .criteria, .apply {
    grid-template-columns: 1fr;
  }
  .compare-card {
    padding: 25px;
  }
  .tum-section {
    grid-template-columns: 1fr;
  }
  .tum-image {
    height: 250px;
  }
  .tum-content {
    padding: 58px 25px;
  }
  .criteria {
    gap: 40px;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stats > div {
    padding: 22px 6px;
  }
  .stats > div + div {
    border-left: 0;
    border-top: 1px solid #ffffff26;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .steps:before {
    display: none;
  }
  .steps article, .steps article:not(:first-child) {
    padding: 0;
  }
  .apply {
    padding: 65px 25px;
    gap: 35px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 35px 25px 22px;
  }
  .legal, .copyright {
    grid-column: auto;
    text-align: left;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .section-heading h2, .tum-content h2, .criteria h2, .apply h2 {
    font-size: 34px;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 42px;
  }
  .hero-actions {
    display: block;
  }
  .hero-actions .text-link {
    margin-top: 18px;
  }
  .hero-art {
    margin: 0;
    min-height: 285px;
  }
  .metric {
    transform: scale(.83);
    transform-origin: bottom right;
  }
  .route {
    transform: scale(.86);
    transform-origin: top left;
  }
  .structure-card {
    padding: 24px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-stamp {
    display: none;
  }
}