@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

.header-offer {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid rgba(79, 70, 229, .18);
  border-radius: 11px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(11, 18, 48, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.header-offer:hover,
.header-offer:focus-visible {
  border-color: rgba(79, 70, 229, .55);
  box-shadow: 0 12px 30px rgba(79, 70, 229, .13);
  transform: translateY(-1px);
}

.header-offer-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 0 5px rgba(79, 70, 229, .10);
}

.header-offer-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.header-offer-label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-offer-time {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .02em;
}

.header-offer-code {
  padding: 4px 7px;
  border-radius: 7px;
  background: var(--navy-950);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .03em;
}

.offer-code-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.offer-code {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: .04em;
}

.offer-expired .offer-countdown {
  border-color: rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .7);
}

.modal-backdrop.open .offer-pop {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1180px) {
  .header-offer-code { display: none; }
}

@media (max-width: 1060px) {
  .header-offer {
    min-height: 36px;
    padding-inline: 9px;
  }

  .header-offer-label { display: none; }
}

@media (max-width: 900px) {
  .header-offer {
    margin-left: auto;
    border-radius: 10px;
  }

  .header-offer-copy { display: block; }
  .header-offer-time { font-size: 11px; }
}

@media (max-width: 520px) {
  .header-offer {
    gap: 7px;
    min-height: 34px;
    padding: 6px 8px;
  }

  .header-offer-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, .10);
  }

  .header-offer-time { font-size: 10px; }
}

/* Stable first-party project videos. */
.yt-loop.has-local-video {
  isolation: isolate;
  background: #080b1d;
}

.yt-loop.has-local-video::before,
.yt-loop.has-local-video .yt-loading,
.yt-loop.has-local-video .yt-loop-guard,
.yt-loop.has-local-video .media-consent-card {
  display: none !important;
}

.local-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #080b1d;
}

.local-project-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.yt-loop.has-local-video .yt-loop-cap {
  z-index: 3;
}

/* The heading is separated from the copy so mobile can show title, portrait, copy. */
.home-about-panel {
  grid-template-areas:
    "heading visual"
    "copy visual"
    "values values";
  grid-template-rows: auto 1fr auto;
  column-gap: 34px;
  row-gap: 0;
}

.home-about-heading {
  grid-area: heading;
  position: relative;
  z-index: 1;
  padding-bottom: 18px;
}

.home-about-copy {
  grid-area: copy;
}

.home-about-visual {
  grid-area: visual;
}

.home-value-grid {
  grid-area: values;
  margin-top: 34px;
}

/* Final responsive pass: page-specific rules after the legacy cascade. */
@media (max-width: 1439px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  html body main,
  html body section,
  html body .container {
    min-width: 0;
  }

  html body .btn,
  html body .btn-lg,
  html body .btn-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }

  html body .btn > svg,
  html body .btn > img {
    flex: 0 0 auto;
  }

  html body .web-hero-grid,
  html body .apps-hero-grid,
  html body .design-hero-grid,
  html body .seo-hero-grid {
    gap: clamp(28px, 4vw, 54px);
  }

  html body .build-card,
  html body .apps-usecase,
  html body .design-phase,
  html body .deliverable,
  html body .seo-pillar,
  html body .seo-ai-card,
  html body .seo-outcome {
    min-width: 0;
  }

  html body .apps-section,
  html body .design-section,
  html body .seo-section {
    padding-block: 68px;
  }

  html body .ref-bento {
    align-items: stretch;
  }

  html body .ref-bento-tile,
  html body .design-gallery-tile,
  html body .apps-ref,
  html body .mini-ref {
    min-width: 0;
  }

  html body .legal-page .section > .container,
  html body.legal-page .section > .container {
    max-width: 920px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  html body .web-hero-grid,
  html body .apps-hero-grid,
  html body .design-hero-grid,
  html body .seo-hero-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr) !important;
    align-items: center;
    gap: 28px !important;
  }

  html body .web-hero-video,
  html body .design-hero-side,
  html body .serp-mockup,
  html body .phone-wall {
    min-width: 0;
    max-width: 100%;
  }

  html body .build-grid,
  html body .apps-stack-grid,
  html body .apps-usecases,
  html body .design-process,
  html body .deliverables,
  html body .seo-pillars,
  html body .seo-outcomes {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  html body .apps-refs,
  html body .design-refs,
  html body .mini-refs {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  html body .design-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: 180px !important;
    gap: 10px !important;
  }

  html body .design-gallery-tile {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }

  html body .design-gallery-tile.big,
  html body .design-gallery-tile.wide {
    grid-column: span 4 !important;
  }

  html body .seo-dashboard {
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr) !important;
    gap: 14px !important;
  }

  html body.about-page .ceo-grid,
  html body.about-page .quality-grid,
  html body.about-page .network-grid {
    display: grid !important;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr) !important;
    gap: 30px !important;
  }

  html body.about-page .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body.request-page .anfrage-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr) !important;
    gap: 24px !important;
  }

  html body.references-page .ref-bento {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-rows: 210px !important;
    gap: 10px !important;
  }

  html body.references-page .ref-bento-tile {
    grid-column: span 2 !important;
  }

  html body.references-page .ref-bento-tile.two-thirds,
  html body.references-page .ref-bento-tile.full,
  html body.references-page .ref-bento-tile.yt-loop {
    grid-column: span 4 !important;
  }
}

@media (max-width: 768px) {
  html body .apps-section,
  html body .design-section,
  html body .seo-section {
    padding-block: 42px !important;
  }

  html body .web-hero-grid,
  html body .apps-hero-grid,
  html body .design-hero-grid,
  html body .seo-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }

  html body .web-hero-grid > :first-child,
  html body .design-hero-grid > :first-child,
  html body .seo-hero-grid > :first-child {
    order: 1;
  }

  html body .web-hero-video,
  html body .design-hero-side,
  html body .serp-mockup {
    order: 2;
    width: 100% !important;
  }

  html body .web-hero-video {
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
  }

  html body .apps-hero-grid .phone-wall {
    order: 2;
    width: min(100%, 430px);
    margin-inline: auto;
  }

  html body .apps-hero-grid > :last-child {
    order: 1;
  }

  html body .web-stat-strip,
  html body .apps-stat-row,
  html body .seo-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 8px !important;
  }

  html body .web-stat-strip > div,
  html body .apps-stat-row > div,
  html body .seo-kpi {
    min-height: 72px;
    padding: 11px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--line-2) !important;
  }

  html body .web-stat-strip > div:nth-child(odd),
  html body .apps-stat-row > div:nth-child(odd),
  html body .seo-kpi:nth-child(odd) {
    border-right: 1px solid var(--line-2) !important;
  }

  html body .web-stat-strip > div:nth-last-child(-n+2),
  html body .apps-stat-row > div:nth-last-child(-n+2),
  html body .seo-kpi:nth-last-child(-n+2) {
    border-bottom: 0 !important;
  }

  html body .build-grid,
  html body .design-process,
  html body .deliverables {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  html body .build-card,
  html body .design-phase,
  html body .deliverable {
    min-height: 0 !important;
    padding: 15px !important;
    border-radius: 14px !important;
  }

  html body .build-card h3,
  html body .design-phase h3 {
    font-size: 15px !important;
  }

  html body .build-card p,
  html body .design-phase p,
  html body .deliverable span {
    font-size: 11.5px !important;
    line-height: 1.42 !important;
  }

  html body .build-card-ic,
  html body .deliverable-ic {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }

  html body .build-card-price {
    font-size: 11px !important;
  }

  html body .web-split {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  html body .web-split-img {
    min-height: 0 !important;
    aspect-ratio: 16 / 11;
  }

  html body .web-split.reverse .web-split-img {
    order: 1;
  }

  html body .web-split.reverse > :last-child {
    order: 2;
  }

  html body .apps-stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  html body .apps-stack-card {
    padding: 14px 12px !important;
    border-radius: 14px !important;
  }

  html body .apps-stack-card h3 {
    font-size: 13px !important;
  }

  html body .apps-stack-chips {
    gap: 4px !important;
  }

  html body .apps-stack-chips span {
    padding: 4px 7px !important;
    font-size: 9.5px !important;
  }

  html body .apps-usecases,
  html body .apps-refs,
  html body .design-refs,
  html body .mini-refs,
  html body .seo-pillars,
  html body .seo-outcomes {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 18px 9px !important;
    margin-inline: -18px !important;
  }

  html body .apps-usecases::-webkit-scrollbar,
  html body .apps-refs::-webkit-scrollbar,
  html body .design-refs::-webkit-scrollbar,
  html body .mini-refs::-webkit-scrollbar,
  html body .seo-pillars::-webkit-scrollbar,
  html body .seo-outcomes::-webkit-scrollbar {
    display: none;
  }

  html body .apps-usecase,
  html body .apps-ref,
  html body .design-ref,
  html body .mini-ref,
  html body .seo-pillar,
  html body .seo-outcome {
    flex: 0 0 86% !important;
    width: 86% !important;
    max-width: 360px;
    scroll-snap-align: center;
  }

  html body .apps-usecase,
  html body .seo-pillar,
  html body .seo-outcome {
    padding: 19px 17px !important;
    border-radius: 16px !important;
  }

  html body .apps-ref,
  html body .design-ref,
  html body .mini-ref {
    aspect-ratio: 4 / 3 !important;
    min-height: 220px;
  }

  html body .apps-face-off,
  html body .design-face-off,
  html body .seo-face-off,
  html body .face-off {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 3px 18px 12px !important;
    margin-inline: -18px !important;
  }

  html body .apps-face-off::-webkit-scrollbar,
  html body .design-face-off::-webkit-scrollbar,
  html body .seo-face-off::-webkit-scrollbar,
  html body .face-off::-webkit-scrollbar {
    display: none;
  }

  html body .apps-fo-card,
  html body .design-fo-card,
  html body .seo-fo-card,
  html body .face-off-card {
    flex: 0 0 88% !important;
    width: 88% !important;
    max-width: 390px;
    min-width: 0;
    padding: 22px 19px !important;
    scroll-snap-align: center;
  }

  html body .apps-fo-card .price,
  html body .design-fo-card .price,
  html body .seo-fo-card .price {
    font-size: 38px !important;
  }

  html body .design-gallery {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-rows: auto !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 18px 10px !important;
    margin-inline: -18px !important;
  }

  html body .design-gallery::-webkit-scrollbar {
    display: none;
  }

  html body .design-gallery-tile,
  html body .design-gallery-tile.big,
  html body .design-gallery-tile.wide,
  html body .design-gallery-tile.narrow,
  html body .design-gallery-tile.tall {
    flex: 0 0 86% !important;
    width: 86% !important;
    max-width: 370px;
    height: auto !important;
    min-height: 270px !important;
    aspect-ratio: 4 / 3 !important;
    scroll-snap-align: center;
  }

  html body .seo-dashboard {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 14px !important;
  }

  html body .seo-side-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .seo-side-stat {
    padding: 13px !important;
  }

  html body .seo-chart {
    padding: 15px !important;
  }

  html body .seo-chart svg {
    height: 125px !important;
  }

  html body .seo-bar {
    grid-template-columns: 68px minmax(0, 1fr) 38px !important;
    gap: 6px !important;
    font-size: 10.5px !important;
  }

  html body .seo-ai-grid {
    grid-template-columns: 1fr !important;
    gap: 9px !important;
  }

  html body .seo-ai-card {
    padding: 18px !important;
  }

  html body.references-page .ref-bento {
    display: flex !important;
    grid-template-columns: none !important;
    grid-auto-rows: auto !important;
    grid-auto-flow: row !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 18px 10px !important;
    margin-inline: -18px !important;
  }

  html body.references-page .ref-bento::-webkit-scrollbar {
    display: none;
  }

  html body.references-page .ref-bento-tile,
  html body.references-page .ref-bento-tile.half,
  html body.references-page .ref-bento-tile.two-thirds,
  html body.references-page .ref-bento-tile.full,
  html body.references-page .ref-bento-tile.tall,
  html body.references-page .ref-bento-tile.yt-loop {
    flex: 0 0 88% !important;
    width: 88% !important;
    max-width: 390px;
    min-height: 265px !important;
    aspect-ratio: 4 / 3 !important;
    scroll-snap-align: center;
  }

  html body.references-page .ref-bento-quote,
  html body.references-page .ref-bento-stat {
    min-height: 265px !important;
  }

  html body.references-page .ref-filters {
    position: sticky;
    top: 60px;
    z-index: 20;
    justify-content: flex-start !important;
    margin-inline: -18px !important;
    padding: 10px 18px !important;
    background: rgba(245, 246, 250, .94);
    backdrop-filter: blur(14px);
  }

  html body.prices-page .price-filter-bar {
    top: 58px !important;
  }

  html body.prices-page .tier-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  html body.prices-page .tier-card {
    flex: 0 0 88% !important;
    width: 88% !important;
    max-width: 390px;
    scroll-snap-align: center;
  }

  html body.about-page .ceo-grid,
  html body.about-page .quality-grid,
  html body.about-page .network-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  html body.about-page .ceo-grid > :first-child {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  html body.about-page .ceo-grid > :last-child > div[style*="display:flex"] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  html body.about-page .ceo-grid > :last-child > div[style*="display:flex"] .btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  html body.about-page .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  html body.about-page .grid-4 .card {
    min-height: 0 !important;
    padding: 16px !important;
  }

  html body.about-page .grid-3 {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    gap: 10px !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 18px 10px !important;
    margin-inline: -18px !important;
  }

  html body.about-page .grid-3::-webkit-scrollbar {
    display: none;
  }

  html body.about-page .grid-3 .card {
    flex: 0 0 86% !important;
    width: 86% !important;
    min-height: 230px !important;
    padding: 21px !important;
    scroll-snap-align: center;
  }

  html body.request-page .anfrage-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  html body.services-page .svc-feat,
  html body.services-page .svc-feat.reverse {
    grid-template-columns: minmax(118px, .72fr) minmax(0, 1.28fr) !important;
    gap: 0 !important;
  }

  html body.services-page .svc-feat.reverse .svc-feat-img {
    order: 0 !important;
  }

  html body.services-page .svc-feat-img {
    min-height: 100% !important;
    padding: 14px !important;
  }

  html body.services-page .svc-feat-body {
    padding: 20px 17px !important;
  }

  html body.services-page .svc-feat-body h2 {
    font-size: 21px !important;
  }

  html body.services-page .svc-feat-body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  html body.legal-page .page-hero {
    padding-bottom: 18px !important;
  }

  html body.legal-page .section {
    padding-top: 22px !important;
  }

  html body.legal-page .section > .container {
    max-width: 760px !important;
  }

  html body.legal-page .section p,
  html body.legal-page .section li {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  /* Homepage founder block: title, portrait, short copy, actions, values. */
  html body.home-page .home-about-panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "heading"
      "visual"
      "copy"
      "values";
    gap: 0 !important;
    padding: 18px !important;
    border-radius: 22px !important;
  }

  html body.home-page .home-about-heading {
    padding-bottom: 17px;
  }

  html body.home-page .home-about-heading h2 {
    margin-top: 11px !important;
    font-size: clamp(27px, 8vw, 35px) !important;
    line-height: 1.06 !important;
  }

  html body.home-page .home-about-visual {
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    margin: 0 !important;
    border-radius: 18px !important;
  }

  html body.home-page .home-about-visual img {
    object-position: center 18% !important;
  }

  html body.home-page .home-about-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 11px;
  }

  html body.home-page .home-about-copy {
    padding-top: 18px;
  }

  html body.home-page .home-about-copy > .lead {
    margin: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  html body.home-page .home-about-quote {
    margin-top: 15px !important;
    padding: 15px 16px !important;
    border-radius: 14px !important;
    border-left: 3px solid var(--indigo);
  }

  html body.home-page .home-about-quote p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  html body.home-page .home-about-quote div {
    margin-top: 8px !important;
    font-size: 11px !important;
  }

  html body.home-page .home-about-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  html body.home-page .home-about-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    padding-inline: 8px !important;
  }

  html body.home-page .home-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  html body.home-page .home-value-grid > div {
    padding: 13px !important;
    border-radius: 13px !important;
  }

  html body.home-page .home-value-grid strong {
    font-size: 14px !important;
  }

  html body.home-page .home-value-grid span {
    margin-top: 4px !important;
    font-size: 10.5px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 480px) {
  html body .build-grid,
  html body .design-process,
  html body .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body .deliverable {
    display: block !important;
  }

  html body .deliverable-ic {
    margin-bottom: 9px;
  }

  html body .apps-stack-grid {
    grid-template-columns: 1fr !important;
  }

  html body .apps-stack-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
  }

  html body .apps-stack-card h3 {
    margin: 3px 0 0 !important;
  }

  html body .services-page .svc-feat,
  html body.services-page .svc-feat,
  html body .services-page .svc-feat.reverse,
  html body.services-page .svc-feat.reverse {
    grid-template-columns: 112px minmax(0, 1fr) !important;
  }

  html body.services-page .svc-feat-img {
    padding: 10px !important;
  }

  html body.services-page .svc-feat-body {
    padding: 17px 14px !important;
  }

  html body.services-page .svc-feat-body h2 {
    font-size: 18px !important;
  }

  html body.services-page .svc-feat-body p {
    -webkit-line-clamp: 3;
  }

  html body.home-page .home-about-panel {
    padding: 15px !important;
  }

  html body.home-page .home-about-visual {
    aspect-ratio: 4 / 4.6 !important;
  }

  html body.home-page .home-about-actions .btn {
    font-size: 11.5px !important;
  }

  html body.about-page .grid-4 .card {
    padding: 13px !important;
  }

  html body.about-page .grid-4 .card h3 {
    font-size: 16px !important;
  }
}
