@font-face {
  font-family: "bdgrotesk-medium";
  src: url("../fonts/BDOGrotesk/BDOGrotesk-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --fynia-green: #00b86b;
  --fynia-green-strong: #00c853;
  --fynia-bg-soft: rgb(245, 248, 244);
  --fynia-text-muted: #425366;
  --fynia-border: #cfd8d2;
  --fynia-black: #000;
  --fynia-white: #fff;
  --fynia-blue: #aed6f1;
  --fynia-teal: #a3e4d7;
  --fynia-ideal: #82e0aa;
  --fynia-amber: #f7dc6f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Outfit, Arial, sans-serif;
  color: var(--fynia-black);
  background: var(--fynia-white);
}

body.no-scroll {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

.gtm-noscript-iframe {
  display: none;
  visibility: hidden;
}

.fynia-green {
  color: var(--fynia-green);
}

.page-sticky-27 {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.page-sticky-27 > .site-footer-27 {
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: min(1320px, calc(100% - 30px));
  margin: 16px auto 0;
  padding: 0 15px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  flex: 0 0 120px;
  width: 120px;
  height: 42px;
}

.logo-icon {
  width: 120px;
  height: 42px;
}

.navbar .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.navbar .nav-links a {
  position: relative;
  font-family: Outfit, Arial, sans-serif;
  font-size: 1.05rem;
  text-transform: capitalize;
}

.navbar .nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--fynia-green-strong);
}

.navbar .btn.get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  background-color: var(--fynia-green-strong);
  color: var(--fynia-white);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
}

.navbar .btn.get-started:hover {
  background-color: var(--fynia-black);
}

.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero-buttons {
  margin-top: 24px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn,
.submit-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  font-family: Outfit, Arial, sans-serif;
  border-radius: 999px;
}

.hero-buttons .btn.primary,
.submit-btn {
  background-color: var(--fynia-green-strong);
  color: var(--fynia-white);
  border: 1px solid var(--fynia-green-strong);
}

.hero-buttons .btn.primary:hover,
.submit-btn:hover,
.submit-btn:focus-visible {
  background-color: var(--fynia-black);
  color: var(--fynia-white);
  border-color: var(--fynia-black);
  outline: none;
}

.hero-buttons .btn.secondary {
  background-color: var(--fynia-white);
  color: var(--fynia-black);
  border: 1px dashed #ccc;
}

.hero-buttons .btn.secondary:hover,
.hero-buttons .btn.secondary:focus-visible {
  background-color: var(--fynia-bg-soft);
  color: var(--fynia-black);
  border: 1px solid var(--fynia-black);
  outline: none;
}

.examples-main {
  width: min(1320px, calc(100% - 30px));
  margin: 0 auto;
  padding: clamp(20px, 4vw, 38px) 0 clamp(42px, 6vw, 68px);
}

.examples-hero,
.examples-guide-shell,
.examples-library-shell,
.examples-cta-shell {
  margin-top: 18px;
}

.examples-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.examples-hero-card,
.examples-hero-side,
.examples-guide-heading,
.examples-guide-card,
.example-card,
.examples-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px dashed var(--fynia-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.055);
}

.examples-hero-card::before,
.examples-hero-side::before,
.examples-guide-heading::before,
.examples-guide-card::before,
.example-card::before,
.examples-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.examples-hero-card,
.examples-guide-heading,
.examples-cta-card {
  background: linear-gradient(180deg, #f8fbf8 0%, rgb(245, 248, 244) 100%);
}

.examples-hero-card::before,
.examples-guide-card--mint::before,
.example-card--mint::before,
.examples-cta-card::before {
  background: linear-gradient(90deg, var(--fynia-ideal) 0%, var(--fynia-teal) 100%);
}

.examples-hero-side::before,
.examples-guide-card--blue::before,
.example-card--blue::before {
  background: linear-gradient(90deg, var(--fynia-blue) 0%, #82c3ef 100%);
}

.examples-guide-card--teal::before,
.example-card--teal::before {
  background: linear-gradient(90deg, #8bded3 0%, #73cdb8 100%);
}

.example-card--amber::before {
  background: linear-gradient(90deg, var(--fynia-amber) 0%, #f2ca45 100%);
}

.examples-hero-card {
  display: grid;
  align-content: start;
  gap: 0;
  padding: clamp(28px, 4vw, 42px);
}

.examples-hero-side {
  display: grid;
  gap: 14px;
  padding: 20px;
  background:
    radial-gradient(circle at top right, rgba(174, 214, 241, 0.16), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.examples-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px dashed rgba(0, 184, 107, 0.38);
  background: rgba(0, 184, 107, 0.08);
  color: #007a48;
  font-family: Outfit, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.examples-pill--blue {
  border-color: rgba(174, 214, 241, 0.48);
  background: rgba(174, 214, 241, 0.18);
  color: #25618a;
}

.examples-pill--soft {
  background: rgba(130, 224, 170, 0.12);
}

#examples-title {
  margin: 18px 0 0;
  color: #000;
  font-family: Hanken Grotesk, Arial, sans-serif;
  font-size: clamp(2.4rem, 3vw + 1rem, 4.55rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -2.5px;
}

.examples-hero-copy,
.examples-guide-heading p,
.examples-guide-card p,
.p-card-examples,
.example-card-points li,
.examples-hero-note-list li,
.examples-cta-card p {
  color: var(--fynia-text-muted);
  font-family: Outfit, Arial, sans-serif;
}

.examples-hero-copy {
  margin: 18px 0 0;
  max-width: 64ch;
  font-size: clamp(17px, 0.45vw + 15px, 20px);
  line-height: 1.58;
}

.examples-hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.examples-hero-highlights article {
  min-height: 158px;
  padding: 18px 16px 16px;
  border: 1px dashed #d7ddd9;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.examples-hero-highlights strong,
.examples-guide-heading h2,
.examples-guide-card h3,
.examples-library-heading h2,
.title-cards-h2,
.examples-cta-card h2 {
  color: #111827;
  font-family: Hanken Grotesk, Arial, sans-serif;
}

.examples-hero-highlights strong {
  display: block;
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.08;
}

.examples-hero-highlights p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.examples-hero-actions {
  justify-content: flex-start;
}

.examples-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 18px;
  border: 1px dashed rgba(174, 214, 241, 0.48);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.examples-hero-image {
  width: min(100%, 320px);
  height: auto;
}

.examples-hero-note {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px dashed rgba(130, 224, 170, 0.38);
  border-radius: 20px;
  background: rgba(130, 224, 170, 0.12);
}

.examples-mini-label,
.examples-guide-kicker,
.example-card-label,
.example-card-chip {
  font-family: Outfit, Arial, sans-serif;
  text-transform: uppercase;
}

.examples-mini-label {
  color: #111827;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.examples-hero-note-list,
.example-card-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.examples-hero-note-list {
  display: grid;
  gap: 10px;
}

.examples-hero-note-list li,
.example-card-points li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.5;
}

.examples-hero-note-list li::before,
.example-card-points li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--fynia-green-strong);
  transform: translateY(-50%);
}

.examples-guide-shell,
.examples-library-shell {
  display: grid;
  gap: 18px;
}

.examples-guide-heading,
.examples-library-heading {
  padding: clamp(24px, 3.4vw, 34px);
}

.examples-library-heading {
  border: 1px dashed var(--fynia-border);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(163, 228, 215, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.examples-guide-heading h2,
.examples-library-heading h2,
.examples-cta-card h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 2vw + 1rem, 3.1rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -1.7px;
}

.examples-guide-heading p,
.examples-library-heading p,
.examples-cta-card p {
  margin: 14px 0 0;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.56;
}

.examples-guide-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.examples-guide-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px 20px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.examples-guide-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #425366;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.examples-guide-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 0.9vw + 1rem, 2.2rem);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.7px;
}

.examples-guide-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.example-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.example-card:hover,
.example-card:focus-visible {
  border-color: #19d079;
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
  outline: none;
}

.example-card-media {
  padding: 16px 16px 0;
}

.img-examples-card {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border: 1px dashed rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 248, 0.95) 100%);
}

.example-card-body {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 18px 18px 18px;
}

.example-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.example-card-label,
.example-card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.example-card-label {
  background: rgba(130, 224, 170, 0.16);
  color: #1d6b43;
}

.example-card-chip {
  background: rgba(15, 23, 42, 0.05);
  color: #425366;
}

.title-cards-h2 {
  margin: 14px 0 0;
  padding: 0;
  font-size: clamp(1.45rem, 0.9vw + 1rem, 2.05rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.7px;
  text-align: left;
}

.p-card-examples {
  margin: 14px 0 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.54;
  text-align: left;
}

.example-card-points {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.grid-container-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.grid-item-examples {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 92px;
  padding: 14px 12px 12px;
  border: 1px dashed #d7ddd9;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  transition: border-color 0.2s ease;
}

.grid-item-examples h2 {
  color: #111827;
  font-family: Hanken Grotesk, Arial, sans-serif;
  font-size: clamp(1.18rem, 1vw + 0.95rem, 1.65rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.grid-item-examples h3 {
  color: #4b5563;
  font-family: Outfit, Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.example-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.example-card-footer span {
  color: #1d6b43;
  font-family: Outfit, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.examples-cta-shell {
  margin-top: 20px;
}

.examples-cta-card {
  padding: clamp(26px, 4vw, 40px);
  background:
    radial-gradient(circle at top right, rgba(130, 224, 170, 0.16), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  text-align: left;
}

.end-message {
  width: 100%;
  margin: 0;
}

.contact-us-message {
  display: flex;
  justify-content: flex-start;
}

.examples-cta-actions {
  margin-top: 24px;
}

#get-started-aux {
  white-space: nowrap;
}

.site-footer-27 {
  max-width: 1320px;
  margin: 40px auto 0;
  padding: 40px 0;
  background: var(--fynia-black);
  color: var(--fynia-white);
  font-family: Outfit, Arial, sans-serif;
  text-align: center;
}

.footer-top-27 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto 20px;
}

.footer-links-27 {
  display: grid;
  grid-auto-flow: column;
  gap: clamp(12px, 4vw, 28px);
}

.footer-links-27 ul {
  text-align: left;
}

.footer-links-27 ul li a,
.footer-words {
  font-size: 14px;
  color: var(--fynia-white);
}

.footer-links-27 ul li a:hover,
.footer-words:hover {
  color: #19d079;
}

.footer-divider-27 {
  width: 80%;
  margin: 0 auto 20px;
  border: 0;
  border-top: 1px solid var(--fynia-white);
}

.footer-middle-27 {
  margin-bottom: 20px;
}

.social-icons-27 {
  display: inline-flex;
  gap: 20px;
}

.footer-bottom-27 {
  font-size: 14px;
  color: var(--fynia-white);
}

@media (max-width: 1100px) {
  .examples-hero {
    grid-template-columns: 1fr;
  }

  .examples-guide-strip,
  .examples-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: 60px;
  }

  .nav-links,
  .get-started {
    display: none !important;
  }

  .hamburger {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 44px;
    background: var(--fynia-white);
    border: none;
    cursor: pointer;
    line-height: 0;
  }

  .hamburger .bar {
    position: absolute;
    left: 50%;
    width: 26px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transform: translateX(-50%);
    transform-origin: 50% 50%;
    transition:
      transform 0.22s ease,
      top 0.22s ease,
      opacity 0.18s ease;
  }

  .hamburger .bar:nth-child(1) {
    top: 12px;
  }

  .hamburger .bar:nth-child(2) {
    top: 20px;
  }

  .hamburger .bar:nth-child(3) {
    top: 28px;
  }

  .hamburger.open .bar:nth-child(1) {
    top: 20px;
    transform: translateX(-50%) rotate(45deg);
  }

  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open .bar:nth-child(3) {
    top: 20px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: 64px;
    left: 15px;
    right: 15px;
    display: none;
    background: var(--fynia-white);
    border-top: 1px dashed var(--fynia-border);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    z-index: 999;
  }

  .mobile-menu.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
  }

  .mobile-menu ul li {
    border-bottom: 1px dashed #ddd;
  }

  .mobile-menu ul li:last-child {
    border-bottom: 0;
  }

  .mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .examples-main {
    width: min(100% - 24px, 640px);
    padding: 16px 0 42px;
  }

  .examples-hero,
  .examples-guide-shell,
  .examples-library-shell,
  .examples-cta-shell {
    margin-top: 14px;
  }

  .examples-hero-card,
  .examples-hero-side,
  .examples-guide-heading,
  .examples-guide-card,
  .example-card,
  .examples-cta-card,
  .examples-library-heading {
    border-radius: 22px;
  }

  .examples-hero-card,
  .examples-hero-side,
  .examples-guide-heading,
  .examples-library-heading,
  .examples-cta-card {
    padding: 18px 16px 16px;
  }

  #examples-title {
    margin-top: 14px;
    font-size: clamp(2rem, 8.5vw, 3.1rem);
    letter-spacing: -1.7px;
  }

  .examples-hero-copy,
  .examples-guide-heading p,
  .examples-guide-card p,
  .p-card-examples,
  .example-card-points li,
  .examples-hero-note-list li,
  .examples-library-heading p,
  .examples-cta-card p {
    font-size: 14px;
    line-height: 1.46;
  }

  .examples-hero-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .examples-hero-highlights article {
    min-height: auto;
    padding: 14px 12px 12px;
  }

  .examples-hero-highlights strong {
    font-size: 16px;
  }

  .examples-hero-highlights p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.42;
  }

  .examples-hero-actions,
  .examples-cta-actions {
    justify-content: stretch;
  }

  .examples-hero-actions .btn,
  .examples-cta-actions .submit-btn {
    width: 100%;
  }

  .examples-hero-visual {
    min-height: 185px;
    padding: 14px;
    border-radius: 18px;
  }

  .examples-hero-image {
    width: min(100%, 240px);
  }

  .examples-hero-note {
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .examples-mini-label {
    font-size: 12px;
  }

  .examples-guide-heading h2,
  .examples-library-heading h2,
  .examples-cta-card h2 {
    margin-top: 12px;
    font-size: clamp(1.7rem, 6vw, 2.25rem);
    letter-spacing: -1px;
  }

  .examples-guide-strip {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 84vw);
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .examples-guide-strip::-webkit-scrollbar {
    display: none;
  }

  .examples-guide-card {
    min-height: auto;
    padding: 16px 14px 14px;
    scroll-snap-align: start;
  }

  .examples-guide-kicker {
    width: 28px;
    min-height: 28px;
    font-size: 10px;
  }

  .examples-guide-card h3,
  .title-cards-h2 {
    font-size: 1.35rem;
    line-height: 1.08;
  }

  .examples-grid {
    gap: 14px;
  }

  .example-card-media {
    padding: 12px 12px 0;
  }

  .img-examples-card {
    border-radius: 18px;
  }

  .example-card-body {
    padding: 14px 14px 14px;
  }

  .example-card-label,
  .example-card-chip {
    min-height: 28px;
    padding: 0 9px;
    font-size: 10px;
  }

  .p-card-examples {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.42;
  }

  .example-card-points {
    gap: 7px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .grid-container-examples {
    gap: 8px;
    margin-top: 12px;
  }

  .grid-item-examples {
    min-height: 0;
    padding: 12px 10px 10px;
    border-radius: 16px;
  }

  .grid-item-examples h2 {
    font-size: 1.06rem;
  }

  .grid-item-examples h3 {
    font-size: 0.76rem;
    line-height: 1.18;
  }

  .example-card-footer {
    margin-top: 12px;
    padding-top: 12px;
  }

  .example-card-footer span {
    font-size: 14px;
  }

  .contact-us-message {
    justify-content: flex-start;
  }

  #get-started-aux {
    width: 100%;
    max-width: none;
    padding: 12px 16px;
  }

  .footer-top-27 {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    width: calc(100% - 30px);
  }

  .footer-links-27 {
    grid-auto-flow: row;
    justify-items: center;
    gap: 12px;
  }

  .footer-links-27 ul {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .examples-main {
    width: calc(100% - 20px);
  }

  .grid-item-examples h2 {
    font-size: 1rem;
  }

  .grid-item-examples h3 {
    font-size: 0.74rem;
  }
}

/* Shared button finish */
.navbar .btn.get-started,
.hero-buttons .btn.primary,
.submit-btn,
#get-started-aux,
.submit-btn-payment,
.gs-step-button--primary {
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 200, 83, 0.18);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.navbar .btn.get-started:hover,
.hero-buttons .btn.primary:hover,
.submit-btn:hover,
#get-started-aux:hover,
.submit-btn-payment:hover,
.gs-step-button--primary:hover {
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.hero-buttons .btn.secondary,
.gs-step-button--secondary {
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.hero-buttons .btn.secondary:hover,
.gs-step-button--secondary:hover {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.internal-context-link {
  color: #00a86b;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition:
    color 0.22s ease,
    text-decoration-color 0.22s ease;
}

.internal-context-link:hover {
  color: #007f4f;
  text-decoration-color: currentColor;
}

.related-resources {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 248, 244, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(0, 184, 107, 0.16);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.related-resources-title {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 0.7vw + 1rem, 1.45rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.related-resources p {
  margin: 0;
}

.related-resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.related-resource-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 184, 107, 0.28);
  color: #007f4f;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.related-resource-link:hover {
  background: #eefaf3;
  border-color: #00b86b;
  color: #006840;
  box-shadow: 0 10px 18px rgba(0, 184, 107, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .related-resources {
    margin-top: 18px;
    padding: 16px 15px;
    border-radius: 18px;
  }

  .related-resource-links {
    gap: 8px;
  }

  .related-resource-link {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 13px;
  }
}
