:root {
  --kl-blue: #213f6a;
  --kl-blue-dark: #172f52;
  --kl-gold: #c3aa3d;
  --kl-gold-dark: #a98f27;
  --kl-ink: #252525;
  --kl-muted: #727272;
  --kl-soft: #f4f4f4;
  --kl-line: #e6e6e6;
  --kl-font: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --site-zoom: 1.1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--kl-ink);
  font-family: var(--kl-font);
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  zoom: var(--site-zoom);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.navbar {
  display: flex;
  align-items: center;
}

.navbar > .container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-collapse {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-submenu {
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item.has-submenu {
  position: relative;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.has-submenu.is-open .nav-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.has-submenu.is-open > .nav-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 10px 0;
  border: 1px solid #ececec;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.has-submenu.is-open > .nav-submenu a {
  display: block;
  padding: 9px 16px;
  color: #333;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.has-submenu.is-open > .nav-submenu a:hover {
  color: var(--kl-gold);
}

.navbar-toggler {
  display: none;
  background: transparent;
}

.navbar-toggler-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  background: #1e1e1e;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #1e1e1e;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.row > * {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
}

.g-3 {
  row-gap: 16px;
}

.g-4 {
  row-gap: 24px;
}

.g-5 {
  row-gap: 44px;
}

.align-items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.ms-auto {
  margin-left: auto;
}

.me-2 {
  margin-right: 8px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 24px;
}

.mt-5 {
  margin-top: 48px;
}

.d-none {
  display: none !important;
}

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

.container {
  width: 100%;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.btn-kl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 24px;
  border: 0;
  border-radius: 3px;
  background: var(--kl-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.btn-kl:hover {
  background: var(--kl-gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-kl svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.btn-kl img {
  display: block;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.btn-kl-dark {
  background: rgba(0, 0, 0, .66);
  border: 1px solid rgba(255, 255, 255, .42);
}

.btn-kl-dark:hover {
  background: #000;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--kl-soft);
}

.eyebrow {
  margin-bottom: 10px;
  color: #9b9b9b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-title {
  position: relative;
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.22;
}

.section-title::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 18px 0 0;
  border-radius: 999px;
  background: var(--kl-gold);
}

.text-center .section-title::after,
.intro-text .section-title::after {
  margin-right: auto;
  margin-left: auto;
}

.section-title .gold {
  color: var(--kl-gold);
}

.section-copy {
  max-width: 610px;
  margin: 18px auto 0;
  color: var(--kl-muted);
  font-size: 13px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 70px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.navbar-brand {
  display: flex;
  align-items: center;
  min-width: 170px;
}

.brand-logo {
  display: block;
  width: 215px;
  height: auto;
}

.brand-picture {
  display: block;
}

.nav-link {
  color: #1f1f1f;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--kl-gold);
}

.hero {
  position: relative;
  min-height: 395px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .62)), url("../img/hero-lawyers-original.jpg");
  background-size: cover;
  background-position: center 38%;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.06;
}

.hero p {
  max-width: 530px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.hero-actions .btn-kl {
  gap: 10px;
  min-width: 190px;
}

.hero-actions .btn-kl img {
  width: 21px;
  height: 21px;
}

.stats {
  padding: 21px 0;
  border-bottom: 1px solid var(--kl-line);
  background: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
}

.stat-icon,
.domain-icon,
.timeline-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  border: 2px solid var(--kl-gold);
  border-radius: 50%;
  color: var(--kl-gold);
  font-size: 13px;
  font-weight: 600;
}

.stat-icon svg,
.domain-icon svg,
.timeline-icon svg,
.article-lock svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.domain-icon svg,
.article-lock svg {
  width: 20px;
  height: 20px;
}

.stat strong {
  display: block;
  color: var(--kl-gold);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.stat span {
  display: block;
  color: #3d3d3d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.media-logos {
  display: block;
  width: 206px;
  max-width: 100%;
  height: auto;
  margin-top: 6px;
}

.intro-text {
  padding: 82px 0 88px;
  background: #f7f7f7;
  text-align: center;
}

.intro-text .container {
  max-width: 730px;
}

.intro-text p {
  margin: 22px auto 0;
  color: #6e6e6e;
  font-size: 13px;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 34px;
  margin-top: 60px;
}

.domain-card {
  text-align: center;
}

.domain-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: var(--kl-gold);
  color: #fff;
}

.domain-card h3 {
  margin: 0 0 9px;
  font-size: 15px;
  font-weight: 600;
}

.domain-card p {
  min-height: 52px;
  margin: 0 auto 12px;
  color: var(--kl-muted);
  font-size: 11px;
  line-height: 1.38;
}

.domain-card a {
  color: var(--kl-ink);
  font-size: 11px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cabinet {
  padding-top: 72px;
}

.cabinet-photo {
  width: 100%;
  min-height: 438px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 30px rgba(0, 0, 0, .18);
}

.cabinet h2 {
  max-width: 430px;
}

.cabinet p {
  color: #646464;
  font-size: 13px;
}

.timeline-section .container {
  max-width: 1120px;
}

.timeline {
  position: relative;
  max-width: 1010px;
  margin: 54px auto 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 34px;
  left: 50%;
  width: 1px;
  background: #e4e8ef;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 84px minmax(0, 1fr);
  align-items: start;
  min-height: 285px;
}

.timeline-item::before {
  content: attr(data-step);
  position: absolute;
  z-index: 0;
  top: 48px;
  color: #edf1f8;
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  opacity: .78;
  pointer-events: none;
}

.timeline-item:nth-child(odd)::before {
  right: calc(50% + 58px);
}

.timeline-item:nth-child(even)::before {
  left: calc(50% + 58px);
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  justify-self: start;
  text-align: center;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

.timeline-item:nth-child(1) .timeline-content,
.timeline-item:nth-child(3) .timeline-content {
  text-align: right;
}

.timeline-item:nth-child(1) .timeline-content {
  justify-self: end;
  margin-top: -10em;
  padding-top: 64px;
}

.timeline-item:nth-child(3) .timeline-content {
  margin-top: -10em;
}

.timeline-icon {
  position: relative;
  z-index: 2;
  grid-column: 2;
  justify-self: center;
  margin-top: 42px;
  width: 60px;
  height: 60px;
  background: #fff;
  font-size: 12px;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  border: 0;
  background: var(--kl-gold);
}

.timeline-content h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.18;
  white-space: nowrap;
}

.timeline-content h3 span {
  color: var(--kl-gold);
}

.timeline-content p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #6a6a6a;
  font-size: 15px;
  line-height: 1.52;
}

.timeline-content {
  position: relative;
  z-index: 1;
  width: 430px;
  max-width: 100%;
  padding-top: 44px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.reviews {
  padding-top: 62px;
}

.review-card {
  min-height: 170px;
  padding: 20px 20px 18px;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.stars {
  color: #f4b400;
  font-size: 17px;
  letter-spacing: 1px;
}

.google-dot {
  float: right;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.review-card p {
  margin: 10px 0 14px;
  color: #4d4d4d;
  font-size: 11px;
}

.review-card strong {
  display: block;
  font-size: 12px;
}

.review-card small {
  color: #888;
  font-size: 10px;
}

.articles {
  background: #efefef;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 650px;
  margin: 42px auto 0;
}

.article-card {
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
  text-align: center;
}

.article-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
}

.article-body {
  position: relative;
  min-height: 116px;
  padding: 29px 18px 18px;
}

.article-lock {
  position: absolute;
  top: -18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kl-gold);
  color: #fff;
  font-weight: 600;
  transform: translateX(-50%);
}

.figma-icon {
  border: 0;
  background: transparent;
  padding: 0;
  overflow: visible;
}

.figma-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-icon.figma-icon {
  width: 55px;
  height: 55px;
}

.domain-icon.figma-icon {
  width: 52px;
  height: 52px;
}

.article-lock.figma-icon {
  width: 38px;
  height: 38px;
  border: 3px solid #fff;
  background: var(--kl-gold);
  box-shadow: 0 5px 12px rgba(0, 0, 0, .14);
}

.article-lock.figma-icon img {
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.timeline-icon.figma-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--kl-gold);
  box-shadow: 0 5px 13px rgba(0, 0, 0, .16);
  filter: none;
}

.timeline-icon.figma-icon img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.article-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.18;
}

.article-card time {
  color: #aaa;
  font-size: 11px;
}

.faq-list {
  max-width: 760px;
  margin: 38px auto 0;
  border-top: 1px solid var(--kl-line);
}

.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 51px;
  border-bottom: 1px solid var(--kl-line);
  font-size: 13px;
  font-weight: 600;
}

.faq-row span:last-child {
  position: relative;
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
}

.faq-row span:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid #222;
  border-right: 1.5px solid #222;
  transform: translateY(-50%) rotate(45deg);
}

.contact {
  padding-top: 18px;
}

.contact-form {
  max-width: 760px;
  margin: 30px auto 0;
}

.contact-form .row {
  --bs-gutter-y: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-right: 0;
  margin-left: 0;
}

.contact-form .row > * {
  width: auto;
  margin-top: 0;
  padding-right: 0;
  padding-left: 0;
}

.contact-message {
  grid-column: 2;
  grid-row: 2 / span 2;
}

.form-control,
.form-select {
  min-height: 47px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #555;
  font-size: 12px;
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.contact-message textarea {
  height: 100%;
}

.contact-form .btn-kl {
  background: #50b747;
}

.contact-form .btn-kl:hover {
  background: #419d39;
}

.footer {
  padding: 42px 0;
  background: var(--kl-blue);
  color: #fff;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
}

.footer strong {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
}

.footer-links {
  text-align: right;
}

.footer-links a {
  display: block;
  color: #42b3e6;
  font-size: 11px;
  font-weight: 600;
}

.pillar-main {
  padding: 52px 0 64px;
  background: #f4f4f4;
}

.pillar-main .container {
  max-width: 980px;
}

.pillar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: start;
}

.pillar-content {
  color: #565656;
  font-size: 13px;
  line-height: 1.48;
}

.pillar-content h2 {
  margin: 0 0 13px;
  color: #303030;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
}

.pillar-content h2:not(:first-child) {
  margin-top: 42px;
}

.pillar-content p {
  margin: 0 0 14px;
}

.pillar-content ul {
  margin: 0;
  padding-left: 17px;
}

.pillar-content li {
  margin: 1px 0;
}

.pillar-sidebar {
  position: sticky;
  top: 94px;
}

.pillar-contact-card {
  padding: 30px 28px 34px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, .15);
  text-align: center;
}

.pillar-contact-card h2 {
  margin: 0;
  color: #2c2c2c;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

.pillar-contact-card .gold {
  color: var(--kl-gold);
}

.pillar-contact-card p {
  max-width: 250px;
  margin: 12px auto 18px;
  color: #5e5e5e;
  font-size: 12px;
  line-height: 1.35;
}

.pillar-contact-form {
  display: grid;
  gap: 10px;
}

.pillar-contact-form .form-control,
.pillar-contact-form .form-select {
  min-height: 42px;
}

.pillar-contact-form textarea.form-control {
  min-height: 92px;
}

.pillar-contact-form .btn-kl {
  min-height: 48px;
  margin-top: 8px;
  background: #50b747;
  font-size: 13px;
}

.pillar-contact-form .btn-kl:hover {
  background: #419d39;
}

.pillar-cta {
  position: relative;
  padding: 66px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, .64), rgba(0, 0, 0, .64)), url("../img/article-road.png");
  background-position: center;
  background-size: cover;
}

.pillar-cta h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
}

.pillar-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.btn-kl-light {
  background: #fff;
  color: #252525;
}

.btn-kl-light:hover {
  background: #f2f2f2;
  color: #252525;
}

@media (max-width: 991.98px) {
  .nav-toggle::after {
    content: none;
  }

  .topbar {
    min-height: 52px;
  }

  .navbar-brand {
    min-width: auto;
  }

  .brand-logo {
    width: 40px;
    height: auto;
  }

  .navbar .btn-kl {
    min-height: 30px;
    padding: 0 14px;
    font-size: 10px;
  }

  .navbar > .container {
    min-height: 52px;
    gap: 10px;
  }

  .navbar-collapse {
    display: none;
  }

  .navbar-collapse.show {
    position: absolute;
    top: 52px;
    right: 0;
    left: 0;
    display: block;
    padding: 18px 24px 22px;
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
  }

  .navbar-collapse.show .navbar-nav {
    display: grid;
    gap: 0;
    align-items: stretch;
  }

  .navbar-collapse.show .nav-item {
    border-bottom: 1px solid #ededed;
  }

  .navbar-collapse.show .nav-link {
    display: block;
    padding: 14px 0;
    font-size: 12px;
  }

  .navbar-collapse.show .nav-submenu {
    display: grid;
    position: static;
    min-width: 0;
    gap: 0;
    padding: 0 0 12px 14px;
    border: 0;
    box-shadow: none;
  }

  .navbar-collapse.show .nav-submenu a {
    display: block;
    padding: 7px 0;
    color: #656565;
    font-size: 11px;
    font-weight: 700;
  }

  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 28px;
    padding: 0;
    border: 0;
  }

  .hero {
    min-height: 334px;
    background-position: center top;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    max-width: 310px;
    font-size: 12px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-actions .btn-kl {
    min-width: 136px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 10px;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 23px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 14px;
  }

  .stat {
    justify-content: flex-start;
  }

  .stat strong {
    font-size: 18px;
  }

  .stat span {
    font-size: 10px;
  }

  .intro-text {
    padding: 55px 0 62px;
  }

  .domain-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    max-width: 310px;
    margin: 44px auto 0;
  }

  .domain-card p {
    min-height: 0;
  }

  .cabinet {
    padding-top: 24px;
  }

  .cabinet-photo {
    min-height: 0;
    aspect-ratio: 1 / 1.06;
  }

  .timeline-section .container {
    max-width: 100%;
  }

  .timeline {
    max-width: 330px;
    margin-top: 44px;
  }

  .timeline::before {
    left: 21px;
    top: 0;
  }

  .timeline-item {
    grid-template-columns: 42px 1fr;
    align-items: start;
    min-height: 0;
    padding-bottom: 42px;
  }

  .timeline-item::before {
    top: 0;
    right: 4px;
    left: auto;
    font-size: 58px;
    opacity: .64;
    transform: none;
  }

  .timeline-item:nth-child(odd)::before,
  .timeline-item:nth-child(even)::before {
    right: 4px;
    left: auto;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    width: auto;
    max-width: 245px;
    margin-right: 0;
    margin-left: 0;
    padding-top: 2px;
    text-align: left;
  }

  .timeline-icon {
    grid-column: 1;
    width: 40px;
    height: 40px;
    margin-top: 0;
  }

  .timeline-icon.figma-icon {
    width: 40px;
    height: 40px;
  }

  .timeline-icon.figma-icon img {
    width: 26px;
    height: 26px;
  }

  .timeline-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
    white-space: normal;
  }

  .timeline-content p {
    font-size: 11px;
    line-height: 1.55;
  }

  .article-grid {
    grid-template-columns: 1fr;
    max-width: 310px;
  }

  .faq-row {
    min-height: 48px;
    font-size: 11px;
  }

  .contact-form .row {
    grid-template-columns: 1fr;
  }

  .contact-message {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-message textarea {
    min-height: 108px;
  }

  .pillar-main {
    padding: 40px 0 52px;
  }

  .pillar-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pillar-content h2 {
    font-size: 22px;
  }

  .pillar-sidebar {
    position: static;
  }

  .pillar-contact-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .pillar-cta {
    padding: 48px 0;
  }

  .pillar-cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    margin-top: 24px;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .gap-lg-3 {
    gap: 22px;
  }
}