﻿
@import url(menu.css);
@import url(footer.css?v=20260613-font-sync);
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


:root {
    --ilw-container: 1320px;
    --ilw-body-font-size: 18px;
    --ilw-body-line-height: 1.72;
    --ilw-eyebrow-font-size: 16px;
    --ilw-content-dark: #0f172a;
    --ilw-content-text: #334155;
    --ilw-content-muted: #64748b;
    --ilw-content-border: #e2e8f0;
    --ilw-content-bg: #f8fafc;
    --ilw-content-primary: #1d4ed8;
    --ilw-content-primary-soft: rgba(29, 78, 216, 0.08);
    --ilw-content-code-bg: #0f172a;
    --ilw-content-code-text: #e5e7eb;
    --ilw-content-radius: 16px;
}

body {
    font-size: var(--ilw-body-font-size);
    line-height: var(--ilw-body-line-height);
}

.ilw-content {
    color: var(--ilw-content-text);
    font-size: 18px;
    line-height: 1.85;
    word-break: break-word;
}

.ilw-content > *:first-child {
    margin-top: 0;
}

.ilw-content > *:last-child {
    margin-bottom: 0;
}

.ilw-content p {
    margin: 0 0 18px;
}

.ilw-content h1,
.ilw-content h2,
.ilw-content h3,
.ilw-content h4,
.ilw-content h5,
.ilw-content h6 {
    margin: 34px 0 16px;
    color: var(--ilw-content-dark);
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.ilw-content h1 {
    font-size: 38px;
}

.ilw-content h2 {
    font-size: 30px;
}

.ilw-content h3 {
    font-size: 26px;
}

.ilw-content h4 {
    font-size: 22px;
}

.ilw-content h5 {
    font-size: 19px;
}

.ilw-content h6 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ilw-content a {
    color: var(--ilw-content-primary);
    font-weight: 800;
    text-decoration: none;
}

.ilw-content a:hover {
    text-decoration: underline;
}

.ilw-content ul,
.ilw-content ol {
    margin: 0 0 22px;
    padding-left: 24px;
}
.ilw-content ul li{
    list-style: circle;
}
.ilw-content li {
    margin-bottom: 10px;
}

.ilw-content li::marker {
    color: var(--ilw-content-primary);
    font-weight: 900;
}

.ilw-content blockquote {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 5px solid var(--ilw-content-primary);
    border-radius: 0 var(--ilw-content-radius) var(--ilw-content-radius) 0;
    background: var(--ilw-content-primary-soft);
    color: var(--ilw-content-dark);
    font-size: 17px;
    line-height: 1.8;
    font-weight: 700;
}

.ilw-content blockquote p {
    margin-bottom: 0;
}

.ilw-content img {
    max-width: 100%;
    height: auto !important;
    margin: 26px 0;
    border-radius: 18px;
}

.ilw-content figure {
    margin: 28px 0;
}

.ilw-content figure img {
    margin: 0;
}

.ilw-content figcaption {
    margin-top: 10px;
    color: var(--ilw-content-muted);
    font-size: 14px;
    text-align: center;
}

.ilw-content table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid var(--ilw-content-border);
    border-radius: var(--ilw-content-radius);
}

.ilw-content th,
.ilw-content td {
    padding: 14px 16px;
    border: 1px solid var(--ilw-content-border);
    vertical-align: top;
}

.ilw-content th {
    background: var(--ilw-content-bg);
    color: var(--ilw-content-dark);
    font-weight: 900;
}

.ilw-content hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid var(--ilw-content-border);
}

.ilw-content strong,
.ilw-content b {
    color: var(--ilw-content-dark);
    font-weight: 900;
}

.ilw-content em,
.ilw-content i {
    color: var(--ilw-content-text);
}

.ilw-content mark {
    padding: 2px 6px;
    border-radius: 8px;
    background: #fef3c7;
    color: #92400e;
}

.ilw-content code {
    padding: 3px 7px;
    border-radius: 8px;
    background: var(--ilw-content-bg);
    color: #be123c;
    font-size: 0.92em;
    font-family: Consolas, Monaco, "Courier New", monospace;
}

.ilw-content pre {
    margin: 28px 0;
    padding: 20px;
    border-radius: 18px;
    background: var(--ilw-content-code-bg);
    color: var(--ilw-content-code-text);
    overflow-x: auto;
    line-height: 1.7;
}

.ilw-content pre code {
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 14px;
}

.ilw-content iframe,
.ilw-content video {
    width: 100%;
    max-width: 100%;
    margin: 28px 0;
    border-radius: 18px;
}

.ilw-content .table-responsive {
    margin: 28px 0;
}

/* DETAILS */
.ilw-content details {
    margin: 24px 0;
    border: 1px solid var(--ilw-content-border);
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
}

.ilw-content summary {
    cursor: pointer;
    padding: 16px 18px;
    color: var(--ilw-content-dark);
    font-weight: 800;
    background: var(--ilw-content-bg);
}

.ilw-content details > div,
.ilw-content details > p {
    padding: 18px;
}

/* DESCRIPTION LIST */
.ilw-content dl {
    margin: 24px 0;
}

.ilw-content dt {
    margin-bottom: 6px;
    color: var(--ilw-content-dark);
    font-weight: 900;
}

.ilw-content dd {
    margin: 0 0 18px 0;
    color: var(--ilw-content-text);
}

/* ABBR */
.ilw-content abbr {
    text-decoration: underline dotted;
    cursor: help;
}

/* ADDRESS */
.ilw-content address {
    margin: 24px 0;
    padding: 18px;
    border-radius: 16px;
    background: var(--ilw-content-bg);
    font-style: normal;
    line-height: 1.8;
}

/* SUB SUP */
.ilw-content sub,
.ilw-content sup {
    font-size: 0.75em;
}

/* KBD */
.ilw-content kbd {
    padding: 3px 8px;
    border-radius: 8px;
    background: #111827;
    color: #ffffff;
    font-size: 0.85em;
    font-family: monospace;
}

/* CHECKLIST */
.ilw-content ul.is-checklist {
    padding-left: 0;
    list-style: none;
}

.ilw-content ul.is-checklist li {
    position: relative;
    padding-left: 34px;
}

.ilw-content ul.is-checklist li{
    list-style: none;
}
.ilw-content ul.is-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ilw-content-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

/* ALERT BOX */
.ilw-content .ilw-alert {
    margin: 24px 0;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid transparent;
}

.ilw-content .ilw-alert--info {
    background: rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.16);
    color: #1e40af;
}

.ilw-content .ilw-alert--warning {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
    color: #92400e;
}

.ilw-content .ilw-alert--danger {
    background: rgba(220, 38, 38, 0.08);
    border-color: rgba(220, 38, 38, 0.18);
    color: #991b1b;
}

.ilw-content .ilw-alert--success {
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.18);
    color: #166534;
}

/* TOC */
.ilw-content .ilw-toc {
    margin: 28px 0;
    padding: 24px;
    border: 1px solid var(--ilw-content-border);
    border-radius: 20px;
    background: var(--ilw-content-bg);
}

.ilw-content .ilw-toc h3 {
    margin-top: 0;
    font-size: 20px;
}

.ilw-content .ilw-toc ul {
    margin-bottom: 0;
}

/* YOUTUBE / EMBED */
.ilw-content .ilw-embed {
    position: relative;
    width: 100%;
    margin: 28px 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 20px;
}

.ilw-content .ilw-embed iframe,
.ilw-content .ilw-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* IMAGE ALIGN */
.ilw-content .align-left {
    float: left;
    margin-right: 24px;
    margin-bottom: 16px;
}

.ilw-content .align-right {
    float: right;
    margin-left: 24px;
    margin-bottom: 16px;
}

.ilw-content .align-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* GALLERY */
.ilw-content .ilw-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.ilw-content .ilw-gallery img {
    margin: 0;
    height: 100%;
    object-fit: cover;
}

/* BLOCKQUOTE AUTHOR */
.ilw-content blockquote footer {
    margin-top: 12px;
    color: var(--ilw-content-muted);
    font-size: 14px;
    font-weight: 700;
}

/* TABLE THEAD TBODY */
.ilw-content thead {
    background: var(--ilw-content-bg);
}

.ilw-content tbody tr:nth-child(even) {
    background: rgba(15, 23, 42, 0.02);
}

/* SELECTION */
.ilw-content ::selection {
    background: rgba(29, 78, 216, 0.18);
}

/* CLEAR FLOAT */
.ilw-content::after {
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 575px) {
    .ilw-content {
        font-size: 15.5px;
        line-height: 1.8;
    }

    .ilw-content h1 {
        font-size: 32px;
    }

    .ilw-content h2 {
        font-size: 28px;
    }

    .ilw-content h3 {
        font-size: 24px;
    }

    .ilw-content h4 {
        font-size: 21px;
    }

    .ilw-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* index */
.main {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(36, 84, 255, 0.05),
            transparent 28%),

        radial-gradient(circle at bottom right,
            rgba(14, 165, 233, 0.05),
            transparent 28%),

        linear-gradient(
            180deg,
            var(--pa-bg-2) 0%,
            var(--pa-bg) 100%
        );
}

.main::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, 0.025) 1px,
            transparent 1px
        );

    background-size: 42px 42px;

    pointer-events: none;
}
/* Header logged-in account actions */
.ilw-accountbar {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.ilw-accountbar__item {
  position: relative;
}

.ilw-accountbar__icon,
.ilw-accountbar__user-btn {
  border: 1px solid rgba(49, 82, 244, 0.14);
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.ilw-accountbar__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ilw-accountbar__icon i {
  font-size: 18px;
  color: #3152f4;
}

.ilw-accountbar__dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
  border: 2px solid #ffffff;
}

.ilw-accountbar__user-btn {
  height: 44px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.ilw-accountbar__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #0ea5e9);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(49, 82, 244, 0.25);
}

.ilw-accountbar__avatar--lg {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.ilw-accountbar__name {
  max-width: 145px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ilw-accountbar__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 270px;
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
}

.ilw-accountbar__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ilw-accountbar__dropdown--notify {
  width: 340px;
}

.ilw-accountbar__dropdown-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 12px;
  border-bottom: 1px solid #eef2ff;
}

.ilw-accountbar__dropdown-head strong {
  color: #0f172a;
  font-size: 17px;
}

.ilw-accountbar__dropdown-head span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.ilw-accountbar__empty {
  padding: 24px 12px 18px;
  text-align: center;
  color: #64748b;
}

.ilw-accountbar__empty i {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 10px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 22px;
}

.ilw-accountbar__empty p {
  margin: 0 0 4px;
  color: #0f172a;
  font-weight: 900;
}

.ilw-accountbar__profile {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 8px 12px;
  margin-bottom: 6px;
  border-bottom: 1px solid #eef2ff;
}

.ilw-accountbar__profile strong,
.ilw-accountbar__profile small {
  display: block;
}

.ilw-accountbar__profile strong {
  color: #0f172a;
  font-size: 15px;
}

.ilw-accountbar__profile small {
  color: #64748b;
  max-width: 190px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ilw-accountbar__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 13px;
  color: #334155;
  text-decoration: none;
  font-weight: 800;
}

.ilw-accountbar__dropdown a:hover {
  color: #3152f4;
  background: #eef2ff;
}

.ilw-accountbar__dropdown a.is-danger {
  color: #dc2626;
}

.ilw-accountbar__dropdown hr {
  margin: 8px 0;
  border-color: #eef2ff;
}

@media (max-width: 991.98px) {
  .ilw-navbar__actions {
    display: none;
  }
}

/* Compact logged-in account menu refinement */
.ilw-accountbar__user-btn {
  width: 48px;
  height: 48px;
  padding: 5px;
  justify-content: center;
  gap: 0;
}

.ilw-accountbar__user-btn > .bi-chevron-down {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: #3152f4;
  font-size: 10px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.14);
}

.ilw-accountbar__avatar {
  overflow: hidden;
  text-transform: uppercase;
}

.ilw-accountbar__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ilw-accountbar__name {
  display: none !important;
}

.ilw-accountbar__dropdown--user {
  min-width: 238px;
  padding: 10px;
  border-radius: 18px;
}

.ilw-accountbar__profile {
  gap: 10px;
  padding: 7px 7px 10px;
  margin-bottom: 4px;
}

.ilw-accountbar__profile-name {
  display: block;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  max-width: 150px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ilw-accountbar__profile strong {
  font-weight: 600;
}

.ilw-accountbar__profile small {
  max-width: 150px;
  font-size: 11px;
}

.ilw-accountbar__dropdown a {
  gap: 9px;
  padding: 9px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
}

.ilw-accountbar__dropdown a i {
  width: 18px;
  text-align: center;
  color: #3152f4;
}

.ilw-accountbar__dropdown a.is-danger,
.ilw-accountbar__logout-link {
  margin-top: 4px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  justify-content: center;
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.18);
}

.ilw-accountbar__dropdown a.is-danger i,
.ilw-accountbar__logout-link i {
  color: #ffffff;
}

.ilw-accountbar__dropdown a.is-danger:hover,
.ilw-accountbar__logout-link:hover {
  color: #ffffff !important;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* =====================================================
   MOBILE HEADER FACEBOOK-LIKE AUTH LAYOUT
   - Left: menu icon
   - Center-left: compact logo
   - Right: notification + user avatar
   - Mobile dropdown: full-width panel
===================================================== */
@media (max-width: 991.98px) {
  .ilw-navbar__inner {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .ilw-mobile-toggle {
    order: 1;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #ffffff;
  }

  .ilw-navbar .ilw-logo {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .ilw-navbar .ilw-logo__mark {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px;
  }

  .ilw-navbar .ilw-logo__text {
    font-size: 22px !important;
    letter-spacing: -0.8px;
    white-space: nowrap;
  }

  .ilw-navbar__actions {
    display: none !important;
  }

  .ilw-navbar__actions--logged {
    order: 3;
    display: flex !important;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .ilw-navbar__actions--logged .ilw-accountbar {
    position: static;
    gap: 8px;
  }

  .ilw-navbar__actions--logged .ilw-accountbar__item {
    position: static;
  }

  .ilw-navbar__actions--logged .ilw-accountbar__icon,
  .ilw-navbar__actions--logged .ilw-accountbar__user-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 4px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .ilw-navbar__actions--logged .ilw-accountbar__icon i {
    font-size: 17px;
  }

  .ilw-navbar__actions--logged .ilw-accountbar__avatar {
    width: 31px;
    height: 31px;
    font-size: 13px;
  }

  .ilw-navbar__actions--logged .ilw-accountbar__user-btn > .bi-chevron-down {
    display: none;
  }

  .ilw-navbar__actions--logged .ilw-accountbar__dot {
    top: 8px;
    right: 8px;
  }

  .ilw-accountbar__dropdown,
  .ilw-accountbar__dropdown--notify,
  .ilw-accountbar__dropdown--user {
    position: fixed;
    top: 88px;
    left: 14px;
    right: 14px;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: calc(100vh - 112px);
    overflow: auto;
    border-radius: 22px;
    z-index: 10050;
    transform: translateY(10px) scale(.98);
  }

  .ilw-accountbar__dropdown.is-open {
    transform: translateY(0) scale(1);
  }

  .ilw-accountbar__dropdown-head strong {
    font-size: 16px;
  }

  .ilw-accountbar__dropdown a {
    min-height: 42px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .ilw-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ilw-navbar__inner {
    gap: 8px;
  }

  .ilw-mobile-toggle,
  .ilw-navbar__actions--logged .ilw-accountbar__icon,
  .ilw-navbar__actions--logged .ilw-accountbar__user-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }

  .ilw-navbar .ilw-logo__mark {
    width: 27px !important;
    height: 27px !important;
    flex-basis: 27px;
  }

  .ilw-navbar .ilw-logo__text {
    font-size: 20px !important;
  }

  .ilw-navbar__actions--logged .ilw-accountbar {
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .ilw-navbar .ilw-logo__text {
    font-size: 18px !important;
  }

  .ilw-navbar .ilw-logo__mark {
    width: 25px !important;
    height: 25px !important;
    flex-basis: 25px;
  }
}

@media (max-width: 991.98px) {
  .ilw-navbar .ilw-logo__image {
    height: 48px;
    max-width: 235px;
  }
}

@media (max-width: 420px) {
  .ilw-navbar .ilw-logo__image {
    height: 42px;
    max-width: 205px;
  }
}

/* LEXON LAWYERS home */
.ll-home {
  background: #ffffff;
  color: #101828;
  overflow: hidden;
}

.ll-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #3152f4;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ll-hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: 72px 0 84px;
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(8, 18, 45, .94) 0%, rgba(14, 34, 78, .86) 52%, rgba(49, 82, 244, .58) 100%),
    url("../images/lory-lawyers-noimages.webp") center/cover no-repeat;
}

.ll-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .18);
}

.ll-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .75fr);
  gap: 56px;
  align-items: center;
}

.ll-hero__content h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-hero__content p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.ll-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ll-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.ll-btn:hover {
  transform: translateY(-2px);
}

.ll-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1d4ed8);
  box-shadow: 0 18px 36px rgba(49, 82, 244, .26);
}

.ll-btn--light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.ll-hero__panel {
  position: relative;
  min-height: 520px;
}

.ll-hero__image {
  position: absolute;
  inset: 72px 0 0 54px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.ll-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ll-hero__card,
.ll-hero__metric {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.ll-hero__card {
  width: min(320px, 86%);
  padding: 22px;
  color: #101828;
}

.ll-hero__card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #ffffff;
  background: #3152f4;
}

.ll-hero__card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 900;
}

.ll-hero__card p,
.ll-hero__metric span {
  margin: 0;
  color: #667085;
  line-height: 1.6;
}

.ll-hero__metric {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 190px;
  padding: 20px;
  color: #101828;
}

.ll-hero__metric strong {
  display: block;
  color: #3152f4;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.ll-section {
  padding: 86px 0;
}

.ll-section--soft {
  background: #f8fafc;
}

.ll-section__head {
  max-width: 720px;
  margin-bottom: 34px;
}

.ll-section__head--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.ll-section__head h2,
.ll-about h2,
.ll-final-cta h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-section__head p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
}

.ll-practice-grid,
.ll-why-grid,
.ll-lawyer-grid,
.ll-blog-grid {
  display: grid;
  gap: 20px;
}

.ll-practice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ll-practice-card,
.ll-why-card,
.ll-lawyer-card,
.ll-blog-card {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.ll-practice-card {
  min-height: 176px;
  padding: 24px;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease;
}

.ll-practice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 82, 244, .34);
}

.ll-practice-card span,
.ll-why-card i {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 22px;
}

.ll-practice-card h3,
.ll-why-card h3,
.ll-lawyer-card h3,
.ll-blog-card h3 {
  margin: 0;
  color: #101828;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-practice-card p,
.ll-why-card p,
.ll-lawyer-card p,
.ll-lawyer-card small,
.ll-blog-card time {
  color: #667085;
}

.ll-practice-card p,
.ll-why-card p {
  margin: 10px 0 0;
  line-height: 1.65;
}

.ll-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
  gap: 56px;
  align-items: start;
}

.ll-about__text p {
  margin: 0 0 22px;
  color: #475467;
  font-size: 17px;
  line-height: 1.85;
}

.ll-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3152f4;
  font-weight: 900;
  text-decoration: none;
}

.ll-why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ll-why-card {
  padding: 24px;
}

.ll-lawyer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ll-lawyer-card {
  overflow: hidden;
}

.ll-lawyer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  background: #eef2ff;
}

.ll-lawyer-card div {
  padding: 20px;
}

.ll-lawyer-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: #b45309;
  font-size: 13px;
  font-weight: 900;
}

.ll-lawyer-card p {
  margin: 8px 0;
  line-height: 1.55;
  font-weight: 700;
}

.ll-lawyer-card small {
  display: block;
  line-height: 1.6;
}

.ll-achievements {
  padding: 54px 0;
  color: #ffffff;
  background: #101828;
}

.ll-achievements__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  overflow: hidden;
}

.ll-achievement {
  padding: 28px;
  background: #101828;
}

.ll-achievement strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.ll-achievement span {
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.ll-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ll-blog-card {
  overflow: hidden;
}

.ll-blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  background: #eef2ff;
}

.ll-blog-card div {
  padding: 20px;
}

.ll-blog-card time {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
}

.ll-blog-card h3 {
  min-height: 82px;
  margin-bottom: 16px;
}

.ll-blog-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3152f4;
  font-weight: 900;
  text-decoration: none;
}

.ll-final-cta {
  padding: 0 0 92px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ll-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 24, 40, .96), rgba(29, 78, 216, .9)),
    url("../images/lory-lawyers-noimages.webp") center/cover no-repeat;
}

.ll-final-cta__inner h2 {
  max-width: 780px;
  color: #ffffff;
}

.ll-final-cta__inner p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.75;
}

.ll-site-popup {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.ll-site-popup.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ll-site-popup--bottom-right {
  place-items: end;
}

.ll-site-popup__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 18, 47, .48);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.ll-site-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(7, 18, 47, .28);
  transform: translateY(12px) scale(.98);
  transition: transform .22s ease;
}

.ll-site-popup.is-visible .ll-site-popup__dialog {
  transform: translateY(0) scale(1);
}

.ll-site-popup--bottom-right .ll-site-popup__dialog {
  width: min(420px, 100%);
}

.ll-site-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #10236b;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(16, 35, 107, .1);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .12);
}

.ll-site-popup__media {
  aspect-ratio: 16 / 7;
  margin: 0;
  background: #eef3ff;
}

.ll-site-popup__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ll-site-popup__body {
  padding: 28px;
}

.ll-site-popup__body h2 {
  margin: 0;
  color: #07122f;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.ll-site-popup__body p {
  margin: 12px 0 0;
  color: #526179;
  font-size: 15.5px;
  line-height: 1.7;
}

.ll-site-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ll-site-popup__primary,
.ll-site-popup__secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.ll-site-popup__primary {
  color: #fff;
  background: #3152f4;
  box-shadow: 0 14px 28px rgba(49, 82, 244, .24);
}

.ll-site-popup__secondary {
  color: #10236b;
  background: #eef3ff;
  border: 1px solid rgba(49, 82, 244, .16);
}

@media (max-width: 575.98px) {
  .ll-site-popup {
    padding: 14px;
  }

  .ll-site-popup--bottom-right {
    place-items: center;
  }

  .ll-site-popup__body {
    padding: 22px;
  }

  .ll-site-popup__body h2 {
    font-size: 24px;
  }
}

@media (max-width: 1199.98px) {
  .ll-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ll-hero {
    min-height: auto;
    padding: 58px 0 68px;
  }

  .ll-hero__grid,
  .ll-about {
    grid-template-columns: 1fr;
  }

  .ll-hero__panel {
    min-height: 420px;
  }

  .ll-practice-grid,
  .ll-lawyer-grid,
  .ll-blog-grid,
  .ll-achievements__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ll-section {
    padding: 68px 0;
  }
}

@media (max-width: 767.98px) {
  .ll-section__head--row,
  .ll-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ll-practice-grid,
  .ll-why-grid,
  .ll-lawyer-grid,
  .ll-blog-grid,
  .ll-achievements__grid {
    grid-template-columns: 1fr;
  }

  .ll-hero__panel {
    min-height: 360px;
  }

  .ll-hero__image {
    inset: 58px 0 0 28px;
  }

  .ll-hero__metric {
    right: 12px;
    bottom: 16px;
  }

  .ll-final-cta__inner {
    padding: 30px;
  }
}

@media (max-width: 575.98px) {
  .ll-hero__content h1 {
    font-size: 38px;
  }

  .ll-hero__actions,
  .ll-btn {
    width: 100%;
  }

  .ll-hero__panel {
    min-height: 330px;
  }

  .ll-hero__card {
    width: 88%;
    padding: 18px;
  }

  .ll-hero__metric {
    width: 154px;
    padding: 16px;
  }

  .ll-hero__metric strong {
    font-size: 32px;
  }

  .ll-section {
    padding: 56px 0;
  }

  .ll-blog-card h3 {
    min-height: auto;
  }
}

/* Polished home visual upgrade */
.ll-home {
  background:
    linear-gradient(180deg, #fbfcff 0%, #ffffff 18%, #f8fafc 100%);
}

.ll-home :where(.ll-hero__content, .ll-hero__panel, .ll-section__head, .ll-practice-card, .ll-about, .ll-why-card, .ll-lawyer-card, .ll-achievement, .ll-blog-card, .ll-final-cta__inner) {
  animation: llFadeUp .72s ease both;
}

.ll-home :where(.ll-practice-card:nth-child(2), .ll-why-card:nth-child(2), .ll-lawyer-card:nth-child(2), .ll-blog-card:nth-child(2)) {
  animation-delay: .08s;
}

.ll-home :where(.ll-practice-card:nth-child(3), .ll-why-card:nth-child(3), .ll-lawyer-card:nth-child(3), .ll-blog-card:nth-child(3)) {
  animation-delay: .14s;
}

.ll-hero {
  isolation: isolate;
  background:
    linear-gradient(98deg, rgba(7, 15, 35, .96) 0%, rgba(10, 25, 62, .9) 45%, rgba(27, 63, 160, .58) 100%),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
}

.ll-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .18), transparent 25%),
    radial-gradient(circle at 78% 22%, rgba(244, 185, 74, .2), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  opacity: .72;
}

.ll-hero__content {
  padding: 12px 0;
}

.ll-hero .ll-eyebrow {
  color: #f7c76f;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

.ll-hero__content h1 {
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, .36);
}

.ll-hero__content p {
  color: rgba(255, 255, 255, .9);
}

.ll-btn--primary {
  background: linear-gradient(135deg, #3152f4 0%, #1d4ed8 52%, #0f2f8f 100%);
}

.ll-btn--light {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
}

.ll-btn:hover,
.ll-practice-card:hover,
.ll-why-card:hover,
.ll-lawyer-card:hover,
.ll-blog-card:hover {
  transform: translateY(-6px);
}

.ll-hero__panel {
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .28));
}

.ll-hero__image {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .28);
}

.ll-hero__image::after,
.ll-about__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 15, 35, .24));
}

.ll-hero__card,
.ll-hero__metric {
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
}

.ll-hero__card-icon,
.ll-practice-card span,
.ll-why-card i {
  background: linear-gradient(135deg, rgba(49, 82, 244, .12), rgba(247, 199, 111, .18));
}

.ll-section {
  position: relative;
}

.ll-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(49, 82, 244, .055), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(247, 199, 111, .12), transparent 22%);
}

.ll-section > .ilw-container {
  position: relative;
  z-index: 1;
}

.ll-section__head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ll-section__head--row {
  text-align: left;
}

.ll-section__head h2,
.ll-about h2,
.ll-final-cta h2 {
  text-wrap: balance;
}

.ll-practice-card,
.ll-why-card,
.ll-lawyer-card,
.ll-blog-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(148, 163, 184, .22);
  box-shadow: 0 22px 55px rgba(15, 23, 42, .075);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ll-practice-card::before,
.ll-why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #3152f4, #f7c76f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}

.ll-practice-card:hover,
.ll-why-card:hover,
.ll-lawyer-card:hover,
.ll-blog-card:hover {
  border-color: rgba(49, 82, 244, .28);
  box-shadow: 0 30px 76px rgba(15, 23, 42, .13);
}

.ll-practice-card:hover::before,
.ll-why-card:hover::before {
  transform: scaleX(1);
}

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

.ll-about__visual {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
}

.ll-about__visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
}

.ll-about__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(7, 15, 35, .72);
  backdrop-filter: blur(14px);
}

.ll-about__badge strong,
.ll-about__badge span {
  display: block;
}

.ll-about__badge strong {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 900;
}

.ll-about__badge span {
  color: rgba(255, 255, 255, .78);
  line-height: 1.45;
}

.ll-why-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.ll-lawyer-card img {
  aspect-ratio: 1 / 1.03;
  object-position: center;
  transition: transform .32s ease;
}

.ll-lawyer-card__photo--left {
  object-position: left center;
}

.ll-lawyer-card__photo--right {
  object-position: right center;
}

.ll-lawyer-card:hover img,
.ll-blog-card:hover img,
.ll-about__visual:hover img {
  transform: scale(1.045);
}

.ll-lawyer-card span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ed;
}

.ll-achievements {
  position: relative;
  background:
    linear-gradient(120deg, rgba(8, 15, 35, .96), rgba(12, 33, 83, .96)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
}

.ll-achievements::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ll-achievements .ilw-container {
  position: relative;
  z-index: 1;
}

.ll-achievements__grid {
  border-radius: 18px;
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.ll-achievement {
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
}

.ll-achievement strong {
  color: #f7c76f;
}

.ll-blog-card img {
  position: relative;
  transition: transform .32s ease;
}

.ll-blog-card {
  background: #ffffff;
}

.ll-final-cta__inner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(7, 15, 35, .95) 0%, rgba(28, 62, 148, .86) 100%),
    url("../images/home/law-team-about.webp") center/cover no-repeat;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .18);
}

.ll-final-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(247, 199, 111, .24), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: auto, 64px 64px;
}

.ll-final-cta__inner > * {
  position: relative;
  z-index: 1;
}

@keyframes llFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ll-home *,
  .ll-home *::before,
  .ll-home *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 991.98px) {
  .ll-section__head,
  .ll-section__head--row {
    text-align: left;
    margin-left: 0;
  }

  .ll-about__visual {
    max-width: 720px;
  }
}

@media (max-width: 575.98px) {
  .ll-about__badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }
}

/* Home refinement pass */
.ll-practice-card,
.ll-why-card,
.ll-lawyer-card,
.ll-post,
.ll-achievement {
  will-change: transform;
  transition:
    transform .46s cubic-bezier(.16, 1, .3, 1),
    box-shadow .46s cubic-bezier(.16, 1, .3, 1),
    border-color .32s ease,
    background .32s ease;
}

.ll-practice-card:hover,
.ll-why-card:hover,
.ll-lawyer-card:hover,
.ll-post:hover,
.ll-achievement:hover {
  transform: translate3d(0, -8px, 0);
}

.ll-practice-card--extra {
  display: none;
}

.ll-practice-grid.is-expanded .ll-practice-card--extra {
  display: block;
  animation: llFadeUp .48s ease both;
}

.ll-practice-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.ll-practice-more {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(49, 82, 244, .22);
  border-radius: 999px;
  color: #3152f4;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
  font-weight: 900;
  transition:
    transform .34s cubic-bezier(.16, 1, .3, 1),
    box-shadow .34s cubic-bezier(.16, 1, .3, 1),
    color .22s ease,
    background .22s ease;
}

.ll-practice-more:hover {
  transform: translateY(-4px);
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  box-shadow: 0 24px 48px rgba(49, 82, 244, .22);
}

.ll-practice-more i {
  transition: transform .28s ease;
}

.ll-practice-more[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.ll-about__visual img {
  transform: scale(1);
  transform-origin: center;
  transition: transform 1.18s cubic-bezier(.16, 1, .3, 1);
}

.ll-about__visual:hover img {
  transform: scale(1.09);
}

.ll-lawyer-grid {
  gap: 26px;
}

.ll-lawyer-card {
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, .2);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .09);
}

.ll-lawyer-card__media {
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  background: #0f172a;
}

.ll-lawyer-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, .62));
  pointer-events: none;
}

.ll-lawyer-card__media img {
  width: 100%;
  aspect-ratio: 1 / .88;
  display: block;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.16, 1, .3, 1);
}

.ll-lawyer-card:hover .ll-lawyer-card__media img {
  transform: scale(1.07);
}

.ll-lawyer-card__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  margin: 0 !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px !important;
  color: #ffffff !important;
  background: rgba(15, 23, 42, .58) !important;
  backdrop-filter: blur(12px);
  font-size: 12px !important;
  font-weight: 900 !important;
}

.ll-lawyer-card__body {
  padding: 22px !important;
}

.ll-lawyer-card__rating {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 10px !important;
  border-radius: 999px;
  color: #b45309;
  background: #fff7ed;
  font-size: 13px;
  font-weight: 900;
}

.ll-lawyer-card__body h3 {
  font-size: 21px;
}

.ll-lawyer-card__body p {
  margin: 8px 0 6px;
  color: #344054;
}

.ll-lawyer-card__body small {
  color: #667085;
  font-weight: 700;
}

.ll-lawyer-card__focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 0 !important;
}

.ll-lawyer-card__focus span {
  margin: 0 !important;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  color: #1d4ed8 !important;
  background: #eef2ff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.ll-lawyer-card__link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  font-weight: 900;
  text-decoration: none;
}

.ll-achievements {
  padding: 86px 0;
}

.ll-achievements__inner {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}

.ll-achievements__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.ll-achievements__intro .ll-eyebrow {
  color: #f7c76f;
}

.ll-achievements__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-achievements__intro p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.75;
}

.ll-achievements__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ll-achievement {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.ll-achievement:hover {
  background: rgba(255, 255, 255, .12);
}

.ll-achievement__icon {
  width: 44px;
  height: 44px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #081225 !important;
  background: #f7c76f;
  font-size: 20px;
}

.ll-achievement strong {
  color: #ffffff;
  font-size: 42px;
}

.ll-achievement em {
  display: block;
  margin-bottom: 10px;
  color: #f7c76f;
  font-style: normal;
  font-weight: 900;
}

.ll-achievement p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.6;
}

.ll-insights {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ll-posts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.ll-posts-list {
  display: grid;
  gap: 20px;
}

.ll-post {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.ll-post__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eef2ff;
}

.ll-post__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .86s cubic-bezier(.16, 1, .3, 1);
}

.ll-post:hover .ll-post__thumb img {
  transform: scale(1.07);
}

.ll-post__badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.ll-post__content {
  padding: 22px;
}

.ll-post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.ll-post__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ll-post__author span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  font-size: 13px;
  font-weight: 900;
}

.ll-post__author strong {
  color: #344054;
  font-size: 13px;
  white-space: nowrap;
}

.ll-post__meta time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.ll-post h3 {
  margin: 0;
  color: #101828;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
}

.ll-post h3 a {
  color: inherit;
  text-decoration: none;
}

.ll-post p {
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.65;
}

.ll-post--featured .ll-post__thumb {
  aspect-ratio: 16 / 10;
}

.ll-post--featured h3 {
  font-size: 28px;
}

.ll-post__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.ll-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ll-post__tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 12px;
  font-weight: 900;
}

.ll-post__readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3152f4;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.ll-post--horizontal {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 190px;
}

.ll-post--horizontal .ll-post__thumb {
  min-height: 100%;
}

.ll-post--horizontal h3 {
  font-size: 20px;
}

.ll-post--horizontal p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 1199.98px) {
  .ll-achievements__inner,
  .ll-posts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ll-practice-actions {
    justify-content: stretch;
  }

  .ll-practice-more {
    width: 100%;
  }

  .ll-achievements__inner {
    padding: 18px;
  }

  .ll-achievements__intro {
    padding: 10px;
  }

  .ll-post--horizontal {
    grid-template-columns: 1fr;
  }

  .ll-post--horizontal .ll-post__thumb {
    aspect-ratio: 16 / 9;
  }

  .ll-post__meta,
  .ll-post__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* LEXON LAWYERS about page */
.ll-about-page {
  overflow: hidden;
  color: #101828;
  background: #ffffff;
}

.ll-about-hero {
  position: relative;
  padding: 82px 0 92px;
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(7, 15, 35, .97) 0%, rgba(12, 31, 76, .92) 55%, rgba(49, 82, 244, .62) 100%),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
  isolation: isolate;
}

.ll-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(247, 199, 111, .22), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
}

.ll-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 56px;
  align-items: center;
}

.ll-about-hero .ll-eyebrow,
.ll-about-process .ll-eyebrow,
.ll-about-commitment .ll-eyebrow,
.ll-about-cta .ll-eyebrow {
  color: #f7c76f;
}

.ll-about-hero__content h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-about-hero__content p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 18px;
  line-height: 1.8;
}

.ll-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ll-about-hero__visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .3);
}

.ll-about-hero__visual img,
.ll-about-story__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.ll-about-hero__visual:hover img,
.ll-about-story__visual:hover img {
  transform: scale(1.06);
}

.ll-about-hero__note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(7, 15, 35, .68);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.ll-about-hero__note i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #081225;
  background: #f7c76f;
}

.ll-about-stats {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.ll-about-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
  backdrop-filter: blur(14px);
}

.ll-about-stat {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  text-align: center;
}

.ll-about-stat strong {
  display: block;
  color: #3152f4;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.ll-about-stat span {
  display: block;
  margin-top: 8px;
  color: #475467;
  font-weight: 800;
}

.ll-about-section {
  position: relative;
  padding: 86px 0;
}

.ll-about-section--soft {
  background:
    radial-gradient(circle at 10% 16%, rgba(49, 82, 244, .06), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(247, 199, 111, .12), transparent 22%),
    #f8fafc;
}

.ll-about-story {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.ll-about-story__visual {
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
}

.ll-about-story__content h2,
.ll-about-head h2,
.ll-about-process__head h2,
.ll-about-commitment h2,
.ll-about-cta h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-about-story__content p {
  margin: 16px 0 0;
  color: #475467;
  font-size: 17px;
  line-height: 1.85;
}

.ll-about-story__points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.ll-about-story__points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #344054;
  font-weight: 800;
}

.ll-about-story__points i {
  color: #3152f4;
}

.ll-about-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.ll-about-values,
.ll-about-capabilities,
.ll-about-process__grid {
  display: grid;
  gap: 20px;
}

.ll-about-values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ll-about-value,
.ll-about-capability,
.ll-about-step {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
  transition: transform .46s cubic-bezier(.16, 1, .3, 1), box-shadow .46s cubic-bezier(.16, 1, .3, 1), border-color .3s ease;
}

.ll-about-value:hover,
.ll-about-capability:hover,
.ll-about-step:hover {
  transform: translateY(-8px);
  border-color: rgba(49, 82, 244, .28);
  box-shadow: 0 32px 78px rgba(15, 23, 42, .13);
}

.ll-about-value {
  padding: 24px;
}

.ll-about-value i,
.ll-about-capability > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: #3152f4;
  background: linear-gradient(135deg, rgba(49, 82, 244, .12), rgba(247, 199, 111, .22));
  font-size: 22px;
}

.ll-about-value h3,
.ll-about-capability h3,
.ll-about-step h3 {
  margin: 0;
  color: #101828;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-about-value p,
.ll-about-capability p,
.ll-about-step p {
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.68;
}

.ll-about-capabilities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ll-about-capability {
  display: flex;
  gap: 18px;
  padding: 22px;
}

.ll-about-capability > span {
  flex: 0 0 50px;
  margin-bottom: 0;
}

.ll-about-process {
  padding: 86px 0;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(7, 15, 35, .96), rgba(12, 33, 83, .94)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
}

.ll-about-process__head {
  max-width: 820px;
  margin-bottom: 34px;
}

.ll-about-process__head h2 {
  color: #ffffff;
}

.ll-about-process__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ll-about-step {
  padding: 24px;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.ll-about-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f7c76f;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.ll-about-step h3 {
  color: #ffffff;
}

.ll-about-step p {
  color: rgba(255, 255, 255, .7);
}

.ll-about-commitment,
.ll-about-cta {
  padding: 76px 0;
}

.ll-about-commitment__inner,
.ll-about-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: 38px;
  align-items: center;
  padding: 42px;
  border-radius: 26px;
}

.ll-about-commitment__inner {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .94), rgba(29, 78, 216, .84)),
    url("../images/home/law-team-about.webp") center/cover no-repeat;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .18);
}

.ll-about-commitment h2 {
  color: #ffffff;
}

.ll-about-commitment p,
.ll-about-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.78;
}

.ll-about-cta {
  padding: 92px 0 104px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ll-about-cta__inner {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(7, 15, 35, .96), rgba(22, 55, 150, .9)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
  box-shadow: 0 30px 90px rgba(15, 23, 42, .16);
}

.ll-about-cta h2 {
  max-width: 820px;
  color: #ffffff;
}

.ll-about-cta p {
  margin-top: 12px;
}

.ll-about-cta .ll-btn {
  width: fit-content;
  justify-self: end;
}

@media (max-width: 1199.98px) {
  .ll-about-values,
  .ll-about-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ll-about-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ll-about-hero__grid,
  .ll-about-story,
  .ll-about-commitment__inner,
  .ll-about-cta__inner {
    grid-template-columns: 1fr;
  }

  .ll-about-hero__visual,
  .ll-about-story__visual {
    min-height: 390px;
  }

  .ll-about-cta .ll-btn {
    justify-self: start;
  }
}

@media (max-width: 767.98px) {
  .ll-about-hero {
    padding: 58px 0 72px;
  }

  .ll-about-hero__content h1 {
    font-size: 38px;
  }

  .ll-about-stats {
    margin-top: -28px;
  }

  .ll-about-stats__grid,
  .ll-about-values,
  .ll-about-capabilities,
  .ll-about-process__grid {
    grid-template-columns: 1fr;
  }

  .ll-about-capability {
    flex-direction: column;
  }

  .ll-about-section,
  .ll-about-process,
  .ll-about-commitment,
  .ll-about-cta {
    padding: 58px 0;
  }

  .ll-about-commitment__inner,
  .ll-about-cta__inner {
    padding: 28px;
  }

  .ll-about-hero__actions,
  .ll-about-hero__actions .ll-btn,
  .ll-about-cta .ll-btn {
    width: 100%;
  }
}

/* About page corrections */
.ll-about-stats__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ll-about-stat {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ll-about-story {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}

.ll-about-story__visual {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.ll-about-commitment {
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 82, 244, .08), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(247, 199, 111, .16), transparent 20%),
    #f8fafc;
}

.ll-about-commitment .ll-eyebrow {
  color: #3152f4;
}

.ll-about-commitment__inner {
  position: relative;
  overflow: hidden;
  color: #101828;
  border: 1px solid rgba(148, 163, 184, .22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .96));
  box-shadow: 0 28px 80px rgba(15, 23, 42, .1);
}

.ll-about-commitment__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #3152f4, #f7c76f);
}

.ll-about-commitment__inner::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(49, 82, 244, .08);
}

.ll-about-commitment__inner > * {
  position: relative;
  z-index: 1;
}

.ll-about-commitment h2 {
  color: #101828;
}

.ll-about-commitment p {
  color: #475467;
}

@media (max-width: 1199.98px) {
  .ll-about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ll-about-story {
    grid-template-columns: 1fr;
  }

  .ll-about-story__visual {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 767.98px) {
  .ll-about-stats__grid {
    grid-template-columns: 1fr;
  }

  .ll-about-story__visual {
    aspect-ratio: 4 / 3;
  }
}

/* About stats visual upgrade */
.ll-about-stats__grid {
  padding: 14px;
  gap: 14px;
  border: 1px solid rgba(49, 82, 244, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .9)),
    radial-gradient(circle at 12% 20%, rgba(49, 82, 244, .12), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(247, 199, 111, .18), transparent 24%);
}

.ll-about-stat {
  position: relative;
  min-height: 154px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .2);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  text-align: left;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
  transition:
    transform .44s cubic-bezier(.16, 1, .3, 1),
    box-shadow .44s cubic-bezier(.16, 1, .3, 1),
    border-color .28s ease;
}

.ll-about-stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #3152f4, #f7c76f);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .34s ease;
}

.ll-about-stat::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: rgba(49, 82, 244, .055);
}

.ll-about-stat:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 82, 244, .26);
  box-shadow: 0 26px 64px rgba(15, 23, 42, .12);
}

.ll-about-stat:hover::before {
  transform: scaleX(1);
}

.ll-about-stat__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 18px;
  color: #3152f4;
  background: linear-gradient(135deg, rgba(49, 82, 244, .12), rgba(247, 199, 111, .22));
  font-size: 25px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.ll-about-stat > div {
  position: relative;
  z-index: 1;
}

.ll-about-stat strong {
  font-size: 40px;
}

.ll-about-stat span:not(.ll-about-stat__icon) {
  margin-top: 7px;
  color: #344054;
  line-height: 1.45;
}

@media (max-width: 767.98px) {
  .ll-about-stat {
    min-height: 132px;
  }
}

/* LEXON LAWYERS blog page */
.ll-blog-page {
  overflow: hidden;
  color: #101828;
  background: #ffffff;
}

.ll-blog-hero {
  position: relative;
  padding: 84px 0 120px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(110deg, rgba(7, 15, 35, .96), rgba(16, 43, 110, .86)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
  isolation: isolate;
}

.ll-blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 199, 111, .24), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
}

.ll-blog-hero__inner {
  max-width: 880px;
  margin: 0 auto;
}

.ll-blog-hero .ll-eyebrow {
  color: #f7c76f;
}

.ll-blog-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-blog-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.ll-blog-hero__tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin: 34px auto 0;
  max-width: 720px;
}

.ll-blog-search {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
}

.ll-blog-search i {
  color: #3152f4;
  font-size: 18px;
}

.ll-blog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #101828;
  background: transparent;
  font: inherit;
  font-weight: 700;
}

.ll-blog-featured {
  position: relative;
  z-index: 2;
  margin-top: -72px;
  padding-bottom: 62px;
}

.ll-blog-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .16);
}

.ll-blog-featured-card__image,
.ll-blog-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #eef2ff;
}

.ll-blog-featured-card__image img,
.ll-blog-card__image img,
.ll-blog-mini img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .86s cubic-bezier(.16, 1, .3, 1);
}

.ll-blog-featured-card:hover img,
.ll-blog-card:hover img,
.ll-blog-mini:hover img {
  transform: scale(1.06);
}

.ll-blog-featured-card__image {
  min-height: 420px;
}

.ll-blog-featured-card__image span,
.ll-blog-card__image span {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, .72);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.ll-blog-featured-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.ll-blog-featured-card__label {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ll-blog-featured-card h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-blog-featured-card h2 a,
.ll-blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.ll-blog-featured-card p {
  margin: 16px 0 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
}

.ll-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 18px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.ll-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ll-blog-readmore {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  font-weight: 900;
  text-decoration: none;
}

.ll-blog-content {
  padding: 20px 0 92px;
  background:
    radial-gradient(circle at 8% 12%, rgba(49, 82, 244, .055), transparent 24%),
    radial-gradient(circle at 92% 16%, rgba(247, 199, 111, .12), transparent 20%),
    #ffffff;
}

.ll-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.ll-blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.ll-blog-filter button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  color: #344054;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .055);
  font-weight: 900;
  transition: color .22s ease, background .22s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.ll-blog-filter button:hover,
.ll-blog-filter button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  transform: translateY(-2px);
}

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

.ll-blog-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
  transition: transform .44s cubic-bezier(.16, 1, .3, 1), box-shadow .44s cubic-bezier(.16, 1, .3, 1), border-color .3s ease;
}

.ll-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(49, 82, 244, .28);
  box-shadow: 0 32px 78px rgba(15, 23, 42, .13);
}

.ll-blog-card__image {
  aspect-ratio: 16 / 9;
}

.ll-blog-card__body {
  padding: 22px;
}

.ll-blog-card h3 {
  margin: 0;
  color: #101828;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-blog-card p {
  display: -webkit-box;
  min-height: 54px;
  margin: 12px 0 0;
  overflow: hidden;
  color: #667085;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ll-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eef2ff;
}

.ll-blog-card__footer > a {
  color: #3152f4;
  font-weight: 900;
  text-decoration: none;
}

.ll-blog-share {
  display: flex;
  gap: 8px;
}

.ll-blog-share a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  color: #344054;
  background: #ffffff;
  text-decoration: none;
}

.ll-blog-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.ll-blog-widget {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
}

.ll-blog-widget h3 {
  margin: 0 0 16px;
  color: #101828;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-blog-mini {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
}

.ll-blog-mini + .ll-blog-mini {
  border-top: 1px solid #eef2ff;
}

.ll-blog-mini img {
  width: 76px;
  height: 76px;
  border-radius: 14px;
}

.ll-blog-mini strong {
  display: -webkit-box;
  overflow: hidden;
  color: #101828;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ll-blog-mini small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.ll-blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ll-blog-tags a {
  padding: 8px 11px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ll-blog-widget--cta {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .95), rgba(29, 78, 216, .88)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
}

.ll-blog-widget--cta span {
  display: block;
  margin-bottom: 9px;
  color: #f7c76f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ll-blog-widget--cta h3 {
  color: #ffffff;
}

.ll-blog-widget--cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 0 16px;
  border-radius: 999px;
  color: #081225;
  background: #f7c76f;
  font-weight: 900;
  text-decoration: none;
}

.ll-blog-empty {
  display: none;
  margin-top: 18px;
  padding: 24px;
  border: 1px dashed rgba(49, 82, 244, .28);
  border-radius: 18px;
  color: #667085;
  background: #f8fafc;
  font-weight: 800;
  text-align: center;
}

.ll-blog-empty.is-visible {
  display: block;
}

@media (max-width: 1199.98px) {
  .ll-blog-layout {
    grid-template-columns: 1fr;
  }

  .ll-blog-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ll-blog-featured-card {
    grid-template-columns: 1fr;
  }

  .ll-blog-featured-card__image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .ll-blog-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ll-blog-hero {
    padding: 58px 0 96px;
  }

  .ll-blog-hero h1 {
    font-size: 36px;
  }

  .ll-blog-hero__tools,
  .ll-blog-grid {
    grid-template-columns: 1fr;
  }

  .ll-blog-featured-card__content,
  .ll-blog-card__body,
  .ll-blog-widget {
    padding: 18px;
  }

  .ll-blog-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* LEXON LAWYERS blog detail */
.ll-blog-detail-page {
  overflow: hidden;
  color: #101828;
  background:
    linear-gradient(180deg, #f8fafc 0, #ffffff 360px),
    #ffffff;
}

.ll-article-hero {
  position: relative;
  padding: 52px 0 78px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .97), rgba(18, 47, 120, .9)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
  isolation: isolate;
}

.ll-article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.ll-article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.ll-article-breadcrumb a,
.ll-article-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.ll-article-breadcrumb a:hover {
  color: #f7c76f;
}

.ll-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  gap: 46px;
  align-items: center;
}

.ll-article-category {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 13px;
  border: 1px solid rgba(247, 199, 111, .34);
  border-radius: 999px;
  color: #f7c76f;
  background: rgba(247, 199, 111, .09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ll-article-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-article-hero__content > p {
  max-width: 780px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.ll-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 800;
}

.ll-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ll-article-hero__image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
}

.ll-article-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ll-article-section {
  padding: 72px 0 84px;
}

.ll-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 32px;
  align-items: start;
}

.ll-article-main {
  padding: 34px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .08);
}

.ll-article-intro {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef2ff, #fff7e6);
}

.ll-article-intro__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  font-size: 24px;
}

.ll-article-intro p {
  margin: 0;
  color: #344054;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.ll-article-keypoints {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ll-article-keypoint {
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .055);
  transition: transform .36s cubic-bezier(.16, 1, .3, 1), box-shadow .36s cubic-bezier(.16, 1, .3, 1);
}

.ll-article-keypoint:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 62px rgba(15, 23, 42, .11);
}

.ll-article-keypoint span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 19px;
}

.ll-article-keypoint strong {
  display: block;
  color: #101828;
  font-size: 16px;
  font-weight: 900;
}

.ll-article-keypoint p {
  margin: 9px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.ll-article-content {
  margin-top: 34px;
}

.ll-article-content section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #eef2ff;
}

.ll-article-content h2,
.ll-article-content h3,
.ll-article-content h4 {
  scroll-margin-top: 110px;
}

.ll-article-checklist {
  margin-top: 38px;
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .96), rgba(29, 78, 216, .9)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
}

.ll-article-checklist .ll-eyebrow {
  color: #f7c76f;
}

.ll-article-checklist h2 {
  max-width: 720px;
  color: #ffffff;
}

.ll-article-checklist ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ll-article-checklist li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.65;
  font-weight: 700;
}

.ll-article-checklist li i {
  color: #f7c76f;
  margin-top: 3px;
}

.ll-article-note {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(247, 199, 111, .36);
  border-radius: 18px;
  color: #92400e;
  background: #fffbeb;
}

.ll-article-note i {
  font-size: 22px;
}

.ll-article-note p {
  margin: 0;
  color: #92400e;
  line-height: 1.7;
  font-weight: 800;
}

.ll-article-author {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #f8fafc;
}

.ll-article-author__mark {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  font-size: 28px;
  font-weight: 900;
}

.ll-article-author span {
  color: #667085;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ll-article-author h3 {
  margin: 4px 0 6px;
  color: #101828;
  font-size: 22px;
  font-weight: 900;
}

.ll-article-author p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.ll-article-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.ll-article-widget {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
}

.ll-article-widget h3 {
  margin: 0 0 16px;
  color: #101828;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-article-widget--toc {
  border-color: rgba(49, 82, 244, .22);
}

.ll-article-widget--toc a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 0;
  color: #344054;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
  text-decoration: none;
}

.ll-article-widget--toc a + a {
  border-top: 1px solid #eef2ff;
}

.ll-article-widget--toc span {
  color: #3152f4;
}

.ll-article-widget--toc a.is-level-3 {
  padding-left: 12px;
  font-size: 13.5px;
  font-weight: 800;
}

.ll-article-widget--toc a.is-level-4 {
  padding-left: 22px;
  color: #667085;
  font-size: 13px;
  font-weight: 750;
}

.ll-article-mobile-toc {
  display: none;
  margin-bottom: 24px;
}

.ll-article-widget--cta {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .94), rgba(29, 78, 216, .9)),
    url("../images/home/law-team-about.webp") center/cover no-repeat;
}

.ll-article-widget--cta span {
  display: block;
  margin-bottom: 8px;
  color: #f7c76f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ll-article-widget--cta h3 {
  color: #ffffff;
}

.ll-article-widget--cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  padding: 0 16px;
  border-radius: 999px;
  color: #081225;
  background: #f7c76f;
  font-weight: 900;
  text-decoration: none;
}

.ll-article-related {
  padding: 0 0 92px;
}

.ll-article-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ll-article-missing {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .94), rgba(29, 78, 216, .88)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
}

.ll-article-missing__box {
  max-width: 680px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.ll-article-missing__box .ll-eyebrow {
  color: #f7c76f;
}

.ll-article-missing__box h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
}

.ll-article-missing__box p {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1199.98px) {
  .ll-article-layout,
  .ll-article-hero__grid {
    grid-template-columns: 1fr;
  }

  .ll-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ll-article-sidebar > .ll-article-widget--toc {
    display: none;
  }

  .ll-article-mobile-toc {
    padding: 20px;
  }

  .ll-article-mobile-toc h3 {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .ll-article-mobile-toc a {
    min-height: 48px;
    align-items: center;
    border-top: 1px solid #eef2ff;
  }
}

@media (max-width: 991.98px) {
  .ll-article-keypoints,
  .ll-article-related__grid {
    grid-template-columns: 1fr;
  }

  .ll-article-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ll-article-hero {
    padding: 40px 0 58px;
  }

  .ll-article-hero h1 {
    font-size: 35px;
  }

  .ll-article-main,
  .ll-article-missing__box {
    padding: 22px;
    border-radius: 22px;
  }

  .ll-article-intro,
  .ll-article-author,
  .ll-article-note {
    grid-template-columns: 1fr;
  }

  .ll-article-mobile-toc {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .ll-article-mobile-toc a {
    grid-template-columns: 32px minmax(0, 1fr);
    font-size: 13px;
  }

  .ll-article-checklist {
    padding: 22px;
  }
}

/* LEXON LAWYERS contact page */
.ll-contact-page {
  overflow: hidden;
  color: #101828;
  background: #ffffff;
}

.ll-contact-hero {
  position: relative;
  padding: 64px 0 92px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(7, 15, 35, .97), rgba(16, 43, 110, .88)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
  isolation: isolate;
}

.ll-contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 72px 72px;
}

.ll-contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 420px;
  gap: 46px;
  align-items: center;
}

.ll-contact-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.ll-contact-breadcrumb a,
.ll-contact-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.ll-contact-breadcrumb a:hover {
  color: #f7c76f;
}

.ll-contact-hero .ll-eyebrow {
  color: #f7c76f;
}

.ll-contact-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-contact-hero__content > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.ll-contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ll-contact-hero__panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 26px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.ll-contact-status {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .12);
}

.ll-contact-status > span,
.ll-contact-card__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #081225;
  background: #f7c76f;
  font-size: 24px;
}

.ll-contact-status strong {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
}

.ll-contact-status p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
}

.ll-contact-quick {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.ll-contact-quick a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  text-decoration: none;
  transition: transform .32s cubic-bezier(.16, 1, .3, 1), background .22s ease;
}

.ll-contact-quick a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .14);
}

.ll-contact-quick i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #f7c76f;
  background: rgba(247, 199, 111, .12);
}

.ll-contact-quick small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ll-contact-section {
  padding: 78px 0 72px;
  background:
    radial-gradient(circle at 8% 14%, rgba(49, 82, 244, .055), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(247, 199, 111, .14), transparent 20%),
    #ffffff;
}

.ll-contact-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ll-contact-info {
  display: grid;
  gap: 18px;
}

.ll-contact-card,
.ll-contact-methods,
.ll-contact-steps,
.ll-contact-form-panel {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
}

.ll-contact-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
}

.ll-contact-card h2 {
  margin: 0;
  color: #101828;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-contact-card p {
  margin: 8px 0 0;
  color: #667085;
  line-height: 1.7;
}

.ll-contact-methods {
  overflow: hidden;
}

.ll-contact-method {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 18px 20px;
  color: inherit;
  text-decoration: none;
}

.ll-contact-method + .ll-contact-method {
  border-top: 1px solid #eef2ff;
}

.ll-contact-method > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 20px;
}

.ll-contact-method small {
  display: block;
  margin-bottom: 4px;
  color: #667085;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ll-contact-method strong {
  display: block;
  color: #101828;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.ll-contact-steps {
  padding: 22px;
}

.ll-contact-steps h3 {
  margin: 0 0 16px;
  color: #101828;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-contact-steps ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ll-contact-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
}

.ll-contact-steps li span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #081225;
  background: #f7c76f;
  font-size: 13px;
  font-weight: 900;
}

.ll-contact-steps p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
  font-weight: 700;
}

.ll-contact-form-panel {
  padding: 32px;
}

.ll-contact-form-head h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-contact-form-head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.75;
}

.ll-contact-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

.ll-contact-form label {
  display: grid;
  gap: 8px;
}

.ll-contact-form label > span {
  color: #344054;
  font-size: 14px;
  font-weight: 900;
}

.ll-contact-form input,
.ll-contact-form select,
.ll-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 16px;
  color: #101828;
  background: #ffffff;
  outline: 0;
  font: inherit;
  font-weight: 700;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.ll-contact-form input,
.ll-contact-form select {
  min-height: 54px;
  padding: 0 15px;
}

.ll-contact-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 15px;
}

.ll-contact-form input:focus,
.ll-contact-form select:focus,
.ll-contact-form textarea:focus {
  border-color: rgba(49, 82, 244, .62);
  box-shadow: 0 0 0 4px rgba(49, 82, 244, .1);
}

.ll-contact-form__options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.ll-contact-check {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start;
  margin: 0;
  color: #667085;
  line-height: 1.55;
  font-weight: 700;
}

.ll-contact-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #3152f4;
}

.ll-contact-form__notice {
  display: none;
  padding: 14px 16px;
  border: 1px solid rgba(22, 163, 74, .25);
  border-radius: 16px;
  color: #166534;
  background: #f0fdf4;
  font-weight: 800;
  line-height: 1.6;
}

.ll-contact-form__notice.is-visible {
  display: block;
}

.ll-contact-form__notice.is-error {
  color: #991b1b;
  border-color: rgba(220, 38, 38, .24);
  background: #fef2f2;
}

.ll-contact-map-section {
  padding: 8px 0 92px;
  background: #ffffff;
}

.ll-contact-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 26px;
  min-height: 480px;
  background: #eef2ff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, .08);
}

.ll-contact-map iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  filter: saturate(.9) contrast(1.04);
}

.ll-contact-map__caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(420px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  color: #ffffff;
  background: rgba(7, 15, 35, .9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .2);
  backdrop-filter: blur(16px);
}

.ll-contact-map__caption span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #081225;
  background: #f7c76f;
  font-size: 22px;
}

.ll-contact-map__caption strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.ll-contact-map__caption p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.6;
}

@media (max-width: 1199.98px) {
  .ll-contact-hero__grid,
  .ll-contact-layout {
    grid-template-columns: 1fr;
  }

  .ll-contact-hero__panel,
  .ll-contact-info {
    max-width: none;
  }

  .ll-contact-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ll-contact-steps {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767.98px) {
  .ll-contact-hero {
    padding: 42px 0 68px;
  }

  .ll-contact-hero h1 {
    font-size: 35px;
  }

  .ll-contact-hero__panel,
  .ll-contact-form-panel,
  .ll-contact-card,
  .ll-contact-steps {
    padding: 20px;
    border-radius: 22px;
  }

  .ll-contact-status,
  .ll-contact-card {
    grid-template-columns: 1fr;
  }

  .ll-contact-info,
  .ll-contact-form__grid,
  .ll-contact-form__options {
    grid-template-columns: 1fr;
  }

  .ll-contact-form__options {
    display: grid;
  }

  .ll-contact-form__options .ll-btn {
    width: 100%;
  }

  .ll-contact-map {
    min-height: 420px;
  }

  .ll-contact-map iframe {
    height: 470px;
  }

  .ll-contact-map__caption {
    position: static;
    width: 100%;
    border-radius: 0;
  }
}

/* LEXON LAWYERS contact request form inspired by ilawyers/about */
.ll-contact-section {
  padding: 84px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 199, 111, .16), transparent 22%),
    radial-gradient(circle at 88% 8%, rgba(49, 82, 244, .12), transparent 24%),
    linear-gradient(180deg, #f8fafc 0, #ffffff 100%);
}

.ll-contact-request__box {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .985), rgba(18, 44, 112, .94)),
    url("../images/home/law-team-about.webp") center/cover no-repeat;
  box-shadow: 0 44px 120px rgba(15, 23, 42, .22);
  isolation: isolate;
}

.ll-contact-request__box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
}

.ll-contact-request__box::after {
  content: "";
  position: absolute;
  inset: auto 34px 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 199, 111, .72), transparent);
}

.ll-contact-request__box .ll-contact-layout {
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.ll-contact-request__box .ll-contact-info {
  display: block;
  color: #ffffff;
}

.ll-contact-info__content {
  max-width: 580px;
}

.ll-contact-info__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(247, 199, 111, .34);
  border-radius: 999px;
  color: #f7c76f;
  background: rgba(247, 199, 111, .1);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ll-contact-info__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-contact-info__desc {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.8;
}

.ll-contact-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.ll-contact-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .9);
  font-weight: 800;
}

.ll-contact-point i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #081225;
  background: #f7c76f;
}

.ll-contact-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.ll-contact-stats div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}

.ll-contact-stats strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.ll-contact-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.ll-contact-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.ll-contact-channels a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), background .22s ease;
}

.ll-contact-channels a:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .14);
}

.ll-contact-channels i {
  color: #f7c76f;
}

.ll-contact-request__box .ll-contact-form-panel {
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.ll-contact-request__box .ll-contact-form {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .98));
  box-shadow: 0 34px 92px rgba(0, 0, 0, .26);
}

.ll-contact-request__box .ll-contact-form-head {
  display: grid;
  gap: 8px;
}

.ll-contact-form__signal {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(49, 82, 244, .16);
  border-radius: 18px;
  background: #f8faff;
}

.ll-contact-form__signal > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 20px;
}

.ll-contact-form__signal strong {
  display: block;
  color: #101828;
  font-size: 15px;
  font-weight: 900;
}

.ll-contact-form__signal small {
  display: block;
  margin-top: 4px;
  color: #667085;
  line-height: 1.45;
  font-weight: 800;
}

.ll-contact-request__box .ll-contact-form-head .ll-eyebrow {
  margin: 0;
}

.ll-contact-request__box .ll-contact-form-head h2 {
  margin: 0;
  color: #101828;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-contact-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.ll-contact-form__chips span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 12px;
  font-weight: 900;
}

.ll-contact-form__section {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #eef2ff;
}

.ll-contact-form__section h3 {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-contact-request__box .ll-contact-form__grid {
  gap: 14px;
}

.ll-contact-field {
  display: grid;
  gap: 8px;
}

.ll-contact-field--full {
  grid-column: 1 / -1;
}

.ll-contact-form .ll-contact-field > span {
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.ll-contact-control {
  min-height: 54px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .035);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.ll-contact-control:focus-within {
  border-color: rgba(49, 82, 244, .62);
  box-shadow: 0 0 0 4px rgba(49, 82, 244, .1);
  transform: translateY(-1px);
}

.ll-contact-control > i {
  width: 44px;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3152f4;
  background: linear-gradient(180deg, #eef2ff, #f8faff);
  font-size: 17px;
}

.ll-contact-form .ll-contact-control input,
.ll-contact-form .ll-contact-control select,
.ll-contact-form .ll-contact-control textarea {
  min-height: 52px;
  border: 0;
  border-radius: 0;
  padding: 0 14px;
  box-shadow: none;
  background: transparent;
  font-weight: 400;
}

.ll-contact-form .ll-contact-control input::placeholder,
.ll-contact-form .ll-contact-control textarea::placeholder {
  color: #98a2b3;
  font-weight: 400;
}

.ll-contact-control--textarea {
  align-items: stretch;
}

.ll-contact-control--textarea > i {
  align-items: flex-start;
  padding-top: 17px;
}

.ll-contact-form .ll-contact-control textarea {
  min-height: 156px;
  padding: 14px;
}

.ll-contact-form__privacy {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(49, 82, 244, .15);
  border-radius: 18px;
  background: #f8faff;
}

.ll-contact-form__privacy-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 20px;
}

.ll-contact-form .ll-contact-check {
  color: #475467;
  font-size: 14px;
  font-weight: 800;
}

.ll-contact-form .ll-contact-check > span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.ll-contact-submit {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  box-shadow: 0 18px 42px rgba(49, 82, 244, .28);
  font-weight: 900;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1);
}

.ll-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(49, 82, 244, .36);
}

.ll-contact-form.is-submitting {
  position: relative;
  pointer-events: none;
}

.ll-contact-form.is-submitting::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .48);
  backdrop-filter: blur(2px);
  z-index: 3;
}

.ll-contact-form.is-submitting .ll-contact-submit {
  position: relative;
  z-index: 4;
  pointer-events: none;
  opacity: .95;
}

.ll-contact-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #ffffff;
  animation: llSpin .72s linear infinite;
}

.ll-honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes llSpin {
  to {
    transform: rotate(360deg);
  }
}

.ll-contact-upload {
  position: relative;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 14px 16px;
  border: 1px dashed rgba(49, 82, 244, .32);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8faff);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .035);
  cursor: pointer;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background .22s ease;
}

.ll-contact-upload:hover,
.ll-contact-upload:focus-within {
  border-color: rgba(49, 82, 244, .68);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(49, 82, 244, .12);
  transform: translateY(-1px);
}

.ll-contact-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.ll-contact-upload__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 900;
}

.ll-contact-upload__button i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  font-size: 18px;
}

.ll-contact-upload small {
  color: #667085;
  font-size: 13px;
  font-weight: 700;
}

.ll-contact-upload.is-invalid {
  border-color: rgba(220, 38, 38, .6);
  background: #fff7f7;
}

.ll-contact-upload.is-ready {
  border-style: solid;
  border-color: rgba(22, 163, 74, .4);
  background: #f7fdf9;
}

@media (max-width: 1199.98px) {
  .ll-contact-request__box .ll-contact-layout {
    grid-template-columns: 1fr;
  }

  .ll-contact-info__content {
    max-width: none;
  }

  .ll-contact-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ll-contact-request__box {
    padding: 26px;
  }

  .ll-contact-points,
  .ll-contact-channels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ll-contact-section {
    padding: 56px 0;
  }

  .ll-contact-request__box {
    padding: 18px;
    border-radius: 24px;
  }

  .ll-contact-info__title {
    font-size: 31px;
  }

  .ll-contact-stats {
    grid-template-columns: 1fr;
  }

  .ll-contact-request__box .ll-contact-form {
    padding: 18px;
    border-radius: 20px;
  }

  .ll-contact-form__privacy {
    grid-template-columns: 1fr;
  }
}

/* LEXON LAWYERS lawyers page */
.ll-section__action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.ll-lawyers-page {
  overflow: hidden;
  color: #101828;
  background: #ffffff;
}

.ll-lawyers-hero {
  position: relative;
  padding: 58px 0 92px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(7, 15, 35, .97), rgba(16, 43, 110, .88)),
    url("../images/home/law-team-about.webp") center/cover no-repeat;
  isolation: isolate;
}

.ll-lawyers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 199, 111, .22), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.ll-lawyers-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.ll-lawyers-breadcrumb a,
.ll-lawyers-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.ll-lawyers-breadcrumb a:hover {
  color: #f7c76f;
}

.ll-lawyers-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) 430px;
  gap: 46px;
  align-items: center;
}

.ll-lawyers-hero .ll-eyebrow {
  color: #f7c76f;
}

.ll-lawyers-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-lawyers-hero__content > p {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.ll-lawyers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ll-lawyers-hero__panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.ll-lawyers-hero__image {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, .08);
}

.ll-lawyers-hero__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ll-lawyers-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.ll-lawyers-hero__stats div {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
}

.ll-lawyers-hero__stats strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.ll-lawyers-hero__stats span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 800;
}

.ll-lawyers-section {
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 8% 12%, rgba(49, 82, 244, .055), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(247, 199, 111, .12), transparent 20%),
    #ffffff;
}

.ll-lawyers-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 22px;
  align-items: end;
}

.ll-lawyers-toolbar h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyers-search {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.ll-lawyers-search i {
  color: #3152f4;
}

.ll-lawyers-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #101828;
  background: transparent;
  font: inherit;
  font-weight: 400;
}

.ll-lawyers-search input::placeholder {
  color: #98a2b3;
}

.ll-lawyers-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.ll-lawyers-filter button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  color: #344054;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .055);
  font-weight: 900;
  transition: color .22s ease, background .22s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.ll-lawyers-filter button:hover,
.ll-lawyers-filter button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  transform: translateY(-2px);
}

.ll-lawyers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.ll-lawyer-profile-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
  transition: transform .44s cubic-bezier(.16, 1, .3, 1), box-shadow .44s cubic-bezier(.16, 1, .3, 1), border-color .3s ease;
}

.ll-lawyer-profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(49, 82, 244, .3);
  box-shadow: 0 34px 82px rgba(15, 23, 42, .14);
}

.ll-lawyer-profile-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3.15;
  background: #eef2ff;
  color: inherit;
  text-decoration: none;
}

.ll-lawyer-profile-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(7, 15, 35, .78));
}

.ll-lawyer-profile-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .86s cubic-bezier(.16, 1, .3, 1);
}

.ll-lawyer-profile-card:hover .ll-lawyer-profile-card__media img {
  transform: scale(1.06);
}

.ll-lawyer-profile-card__photo--left {
  object-position: 38% center;
}

.ll-lawyer-profile-card__photo--right {
  object-position: 62% center;
}

.ll-lawyer-profile-card__role {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #081225;
  background: #f7c76f;
  font-size: 12px;
  font-weight: 900;
}

.ll-lawyer-profile-card__body {
  padding: 20px;
}

.ll-lawyer-profile-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.ll-lawyer-profile-card h3 {
  margin: 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-profile-card__top p {
  margin: 7px 0 0;
  color: #3152f4;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
}

.ll-lawyer-profile-card__rating {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  font-size: 13px;
  font-weight: 900;
}

.ll-lawyer-profile-card__bio {
  display: -webkit-box;
  min-height: 72px;
  margin: 14px 0 0;
  overflow: hidden;
  color: #667085;
  line-height: 1.65;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ll-lawyer-profile-card__meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
}

.ll-lawyer-profile-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #475467;
  font-size: 13px;
  font-weight: 800;
}

.ll-lawyer-profile-card__meta i {
  color: #3152f4;
}

.ll-lawyer-profile-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ll-lawyer-profile-card__tags span {
  padding: 7px 9px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 12px;
  font-weight: 900;
}

.ll-lawyer-profile-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #eef2ff;
}

.ll-lawyer-profile-card__footer small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.ll-lawyer-profile-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3152f4;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ll-lawyers-empty {
  display: none;
  margin-top: 22px;
  padding: 24px;
  border: 1px dashed rgba(49, 82, 244, .28);
  border-radius: 18px;
  color: #667085;
  background: #f8fafc;
  font-weight: 800;
  text-align: center;
}

.ll-lawyers-empty.is-visible {
  display: block;
}

.ll-lawyers-cta {
  padding: 0 0 92px;
  background: #ffffff;
}

.ll-lawyers-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .96), rgba(29, 78, 216, .88)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .16);
}

.ll-lawyers-cta__inner .ll-eyebrow {
  color: #f7c76f;
}

.ll-lawyers-cta__inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyers-cta__inner p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

@media (max-width: 1399.98px) {
  .ll-lawyers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .ll-lawyers-hero__grid,
  .ll-lawyers-toolbar,
  .ll-lawyers-cta__inner {
    grid-template-columns: 1fr;
  }

  .ll-lawyers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ll-lawyers-hero {
    padding: 42px 0 68px;
  }

  .ll-lawyers-hero h1 {
    font-size: 35px;
  }

  .ll-lawyers-hero__stats,
  .ll-lawyers-grid {
    grid-template-columns: 1fr;
  }

  .ll-lawyers-search {
    border-radius: 18px;
  }

  .ll-lawyer-profile-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ll-lawyers-cta__inner {
    padding: 24px;
  }
}

/* LEXON LAWYERS services page */
.ll-services-page {
  overflow: hidden;
  color: #101828;
  background: #ffffff;
}

.ll-services-hero {
  position: relative;
  padding: 58px 0 96px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(7, 15, 35, .97), rgba(16, 43, 110, .88)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
  isolation: isolate;
}

.ll-services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 16%, rgba(247, 199, 111, .22), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.ll-services-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.ll-services-breadcrumb a,
.ll-services-breadcrumb span {
  color: inherit;
  text-decoration: none;
}

.ll-services-breadcrumb a:hover {
  color: #f7c76f;
}

.ll-services-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: center;
}

.ll-services-hero .ll-eyebrow {
  color: #f7c76f;
}

.ll-services-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-services-hero__content > p {
  max-width: 790px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.ll-services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ll-services-hero__panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.ll-services-hero__stat {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 98px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
}

.ll-services-hero__stat span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #081225;
  background: #f7c76f;
  font-size: 24px;
}

.ll-services-hero__stat strong {
  display: block;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.ll-services-hero__stat em {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .68);
  font-style: normal;
  font-weight: 800;
}

.ll-services-tree-section {
  padding: 78px 0 88px;
  background:
    radial-gradient(circle at 8% 12%, rgba(49, 82, 244, .055), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(247, 199, 111, .13), transparent 20%),
    #ffffff;
}

.ll-services-tree {
  display: grid;
  gap: 24px;
}

.ll-service-parent-card {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(15, 23, 42, .08);
}

.ll-service-parent-card__head {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 26px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .96), rgba(29, 78, 216, .86)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
}

.ll-service-parent-card__icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: #081225;
  background: #f7c76f;
  font-size: 28px;
}

.ll-service-parent-card__head small,
.ll-service-child-card__head span {
  display: block;
  margin-bottom: 7px;
  color: #f7c76f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ll-service-parent-card__head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-service-parent-card__head p {
  max-width: 820px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

.ll-service-child-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background: #f8fafc;
}

.ll-service-child-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .055);
}

.ll-service-child-card__head h4 {
  margin: 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-service-child-card__head p {
  min-height: 52px;
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.65;
}

.ll-service-items {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.ll-service-item {
  position: relative;
  display: block;
  min-height: 96px;
  padding: 14px 42px 14px 14px;
  border: 1px solid rgba(49, 82, 244, .12);
  border-radius: 16px;
  color: inherit;
  background: #f8faff;
  text-decoration: none;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-service-item:hover {
  transform: translateY(-5px);
  border-color: rgba(49, 82, 244, .28);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .1);
}

.ll-service-item strong {
  display: block;
  color: #101828;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.ll-service-item small {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: #667085;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ll-service-item i {
  position: absolute;
  top: 16px;
  right: 14px;
  color: #3152f4;
}

.ll-service-articles-section {
  padding: 78px 0 88px;
  background: #f8fafc;
}

.ll-services-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 22px;
  align-items: end;
}

.ll-services-toolbar h2 {
  max-width: 860px;
  margin: 0;
  color: #101828;
  font-size: clamp(31px, 3.4vw, 46px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-services-toolbar p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #667085;
  line-height: 1.75;
}

.ll-services-search {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .07);
}

.ll-services-search i {
  color: #3152f4;
}

.ll-services-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #101828;
  background: transparent;
  font: inherit;
  font-weight: 400;
}

.ll-service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.ll-service-filter button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  color: #344054;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .055);
  font-weight: 900;
  transition: color .22s ease, background .22s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.ll-service-filter button:hover,
.ll-service-filter button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  transform: translateY(-2px);
}

.ll-service-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ll-service-article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, .07);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .42s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-service-article-card:hover {
  transform: translateY(-7px);
  border-color: rgba(49, 82, 244, .28);
  box-shadow: 0 30px 76px rgba(15, 23, 42, .13);
}

.ll-service-article-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ll-service-article-card__head span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eef2ff;
  font-size: 12px;
  font-weight: 900;
}

.ll-service-article-card__head time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.ll-service-article-card h3 {
  margin: 16px 0 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.32;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-service-article-card p {
  display: -webkit-box;
  min-height: 80px;
  margin: 12px 0 0;
  overflow: hidden;
  color: #667085;
  line-height: 1.68;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ll-service-article-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ll-service-article-card__tags span {
  padding: 7px 9px;
  border-radius: 999px;
  color: #344054;
  background: #f2f4f7;
  font-size: 12px;
  font-weight: 900;
}

.ll-service-article-card__tags span:first-child {
  color: #92400e;
  background: #fffbeb;
}

.ll-service-article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #eef2ff;
}

.ll-service-article-card__footer small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667085;
  font-size: 12px;
  font-weight: 800;
}

.ll-service-article-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3152f4;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.ll-services-empty {
  display: none;
  margin-top: 22px;
  padding: 24px;
  border: 1px dashed rgba(49, 82, 244, .28);
  border-radius: 18px;
  color: #667085;
  background: #ffffff;
  font-weight: 800;
  text-align: center;
}

.ll-services-empty.is-visible {
  display: block;
}

.ll-services-cta {
  padding: 0 0 92px;
  background: #f8fafc;
}

.ll-services-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .96), rgba(29, 78, 216, .88)),
    url("../images/home/law-team-about.webp") center/cover no-repeat;
  box-shadow: 0 34px 90px rgba(15, 23, 42, .16);
}

.ll-services-cta__inner .ll-eyebrow {
  color: #f7c76f;
}

.ll-services-cta__inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-services-cta__inner p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

@media (max-width: 1199.98px) {
  .ll-services-hero__grid,
  .ll-services-toolbar,
  .ll-services-cta__inner {
    grid-template-columns: 1fr;
  }

  .ll-service-child-grid,
  .ll-service-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ll-services-hero {
    padding: 42px 0 68px;
  }

  .ll-services-hero h1 {
    font-size: 35px;
  }

  .ll-service-parent-card__head,
  .ll-services-hero__stat {
    grid-template-columns: 1fr;
  }

  .ll-service-child-grid,
  .ll-service-articles-grid {
    grid-template-columns: 1fr;
  }

  .ll-services-search {
    border-radius: 18px;
  }

  .ll-service-article-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ll-services-cta__inner {
    padding: 24px;
  }
}

/* Refined service directory */
.ll-services-page--refined .ll-services-hero {
  padding-bottom: 104px;
}

.ll-services-navigator-section {
  position: relative;
  padding: 82px 0 90px;
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 82, 244, .07), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(247, 199, 111, .16), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.ll-services-dashboard {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 30px;
}

.ll-services-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 62px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.ll-services-group-button {
  width: 100%;
  min-height: 86px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid transparent;
  border-radius: 18px;
  color: #344054;
  background: transparent;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), background .22s ease, border-color .22s ease;
}

.ll-services-group-button:hover,
.ll-services-group-button.is-active {
  transform: translateY(-4px);
  border-color: rgba(49, 82, 244, .18);
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, .1);
}

.ll-services-group-button__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #0b1530;
  background: #f7c76f;
  font-size: 22px;
}

.ll-services-group-button strong {
  display: block;
  color: #101828;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.ll-services-group-button small {
  display: block;
  margin-top: 5px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.ll-services-group-button > i {
  color: #98a2b3;
  transition: color .22s ease, transform .34s cubic-bezier(.16, 1, .3, 1);
}

.ll-services-group-button.is-active > i,
.ll-services-group-button:hover > i {
  color: #3152f4;
  transform: translateX(3px);
}

.ll-services-panels {
  min-width: 0;
}

.ll-services-panel {
  display: none;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 76px rgba(15, 23, 42, .09);
}

.ll-services-panel.is-active {
  display: block;
  animation: llServicePanelIn .38s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes llServicePanelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ll-services-panel__head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .96), rgba(22, 57, 168, .86)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
}

.ll-services-panel__icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  color: #081225;
  background: #f7c76f;
  font-size: 30px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
}

.ll-services-panel__head small,
.ll-services-category-card__head span {
  display: block;
  margin-bottom: 8px;
  color: #f7c76f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ll-services-panel__head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-services-panel__head p {
  max-width: 780px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
}

.ll-services-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.ll-services-category-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .06);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .42s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-services-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 82, 244, .22);
  box-shadow: 0 28px 66px rgba(15, 23, 42, .12);
}

.ll-services-category-card__head span {
  color: #3152f4;
}

.ll-services-category-card__head h4 {
  margin: 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-services-category-card__head p {
  min-height: 76px;
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.62;
}

.ll-services-item-list {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.ll-services-item-button {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(49, 82, 244, .12);
  border-radius: 16px;
  color: inherit;
  background: #f8faff;
  text-decoration: none;
  transition: transform .38s cubic-bezier(.16, 1, .3, 1), box-shadow .38s cubic-bezier(.16, 1, .3, 1), border-color .22s ease, background .22s ease;
}

.ll-services-item-button:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 82, 244, .3);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .1);
}

.ll-services-item-button strong {
  display: block;
  color: #101828;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.ll-services-item-button small {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  color: #667085;
  font-size: 13px;
  line-height: 1.48;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ll-services-item-button > i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 13px;
  transition: color .22s ease, background .22s ease, transform .34s cubic-bezier(.16, 1, .3, 1);
}

.ll-services-item-button:hover > i {
  color: #ffffff;
  background: #3152f4;
  transform: translate(2px, -2px);
}

.ll-service-articles-section--refined {
  background:
    radial-gradient(circle at 88% 0%, rgba(247, 199, 111, .14), transparent 23%),
    #f8fafc;
}

.ll-service-articles-section--refined .ll-service-filter {
  max-height: 152px;
  overflow: auto;
  padding: 2px 2px 8px;
}

.ll-service-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.ll-service-blog-grid .ll-blog-card__image span {
  max-width: calc(100% - 28px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ll-service-blog-grid .ll-blog-card {
  border-radius: 18px;
}

.ll-service-blog-grid .ll-blog-card__body {
  padding: 18px;
}

.ll-service-blog-grid .ll-blog-card h3 {
  font-size: 18px;
}

.ll-service-blog-grid .ll-blog-card__image {
  aspect-ratio: 16 / 8.8;
}

.ll-service-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.ll-service-pagination > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.ll-service-pagination a {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 999px;
  color: #344054;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .055);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .24s ease;
}

.ll-service-pagination a:hover,
.ll-service-pagination a.is-active {
  color: #ffffff;
  border-color: #3152f4;
  background: linear-gradient(135deg, #3152f4, #1639a8);
  transform: translateY(-2px);
}

.ll-service-pagination a.is-disabled {
  pointer-events: none;
  opacity: .45;
  transform: none;
}

.ll-blog-share button {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 999px;
  color: #344054;
  background: #ffffff;
  cursor: pointer;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}

.ll-blog-share a:hover,
.ll-blog-share button:hover,
.ll-blog-share button.is-copied {
  color: #3152f4;
  border-color: rgba(49, 82, 244, .28);
  background: #eef2ff;
  transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
  .ll-service-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ll-service-blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199.98px) {
  .ll-services-dashboard {
    grid-template-columns: 1fr;
  }

  .ll-services-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ll-services-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ll-services-page--refined .ll-services-hero {
    padding-bottom: 72px;
  }

  .ll-services-navigator-section {
    padding: 56px 0 64px;
  }

  .ll-services-sidebar,
  .ll-services-category-grid {
    grid-template-columns: 1fr;
  }

  .ll-services-panel__head {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ll-services-category-grid {
    padding: 16px;
  }

  .ll-services-category-card__head p {
    min-height: 0;
  }

  .ll-services-group-button {
    min-height: 78px;
  }

  .ll-service-articles-section--refined .ll-service-filter {
    max-height: 188px;
  }
}

/* Scalable service drill-down explorer */
.ll-services-explorer {
  display: grid;
  grid-template-columns: 290px 320px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 30px;
}

.ll-services-explorer__rail,
.ll-services-explorer__detail {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 62px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.ll-services-explorer__rail {
  display: flex;
  min-height: 620px;
  max-height: 720px;
  flex-direction: column;
  padding: 14px;
}

.ll-services-explorer__detail {
  overflow: hidden;
}

.ll-services-explorer__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px 14px;
  color: #101828;
  font-weight: 900;
}

.ll-services-explorer__head span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #0b1530;
  background: #f7c76f;
  font-size: 13px;
}

.ll-services-directory-search {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0 14px;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 16px;
  background: #f8fafc;
}

.ll-services-directory-search i {
  color: #3152f4;
}

.ll-services-directory-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #101828;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
}

.ll-services-group-list,
.ll-services-category-list {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding: 2px 4px 6px 2px;
}

.ll-services-group-list {
  flex: 1;
}

.ll-services-category-list {
  flex: 1;
}

.ll-services-explorer .ll-services-group-button {
  min-height: 78px;
}

.ll-services-category-button {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 18px;
  color: #344054;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease, background .22s ease;
}

.ll-services-category-button:hover,
.ll-services-category-button.is-active {
  transform: translateY(-4px);
  border-color: rgba(49, 82, 244, .24);
  background: #f8faff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, .1);
}

.ll-services-category-button strong {
  display: block;
  color: #101828;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 900;
}

.ll-services-category-button small {
  display: block;
  margin-top: 6px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.ll-services-category-button > i {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #3152f4;
  background: #eef2ff;
}

.ll-services-detail-panel {
  display: none;
  min-height: 100%;
}

.ll-services-detail-panel.is-active {
  display: block;
  animation: llServicePanelIn .38s cubic-bezier(.16, 1, .3, 1) both;
}

.ll-services-detail-panel__hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .96), rgba(22, 57, 168, .86)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
}

.ll-services-detail-panel__hero small {
  display: block;
  margin-bottom: 8px;
  color: #f7c76f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ll-services-detail-panel__hero h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-services-detail-panel__hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
}

.ll-services-detail-panel__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(148, 163, 184, .18);
  background: #ffffff;
}

.ll-services-detail-panel__meta span,
.ll-services-detail-panel__meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.ll-services-detail-panel__meta a {
  color: #3152f4;
}

.ll-services-item-list--drilldown {
  max-height: 430px;
  overflow: auto;
  padding: 22px;
  background:
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.ll-services-more-button {
  width: calc(100% - 44px);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 22px 22px;
  border: 1px solid rgba(49, 82, 244, .2);
  border-radius: 16px;
  color: #3152f4;
  background: #eef2ff;
  font-weight: 900;
  cursor: pointer;
}

.ll-services-empty-directory {
  display: none;
  padding: 18px;
  color: #667085;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .ll-services-explorer {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .ll-services-explorer__detail {
    grid-column: 1 / -1;
  }

  .ll-services-explorer__rail {
    min-height: 360px;
    max-height: 480px;
  }
}

@media (max-width: 767.98px) {
  .ll-services-explorer {
    grid-template-columns: 1fr;
  }

  .ll-services-explorer__rail {
    min-height: auto;
    max-height: 420px;
  }

  .ll-services-detail-panel__hero {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ll-services-detail-panel__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .ll-services-item-list--drilldown {
    max-height: none;
    padding: 16px;
  }
}

/* Two-level services page */
.ll-services-two-level {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 30px;
}

.ll-services-two-level__groups {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 62px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.ll-services-two-level__content {
  min-width: 0;
}

.ll-services-group-panel {
  display: none;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 76px rgba(15, 23, 42, .09);
}

.ll-services-group-panel.is-active {
  display: block;
  animation: llServicePanelIn .38s cubic-bezier(.16, 1, .3, 1) both;
}

.ll-services-group-panel__head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 30px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 15, 35, .96), rgba(22, 57, 168, .86)),
    url("../images/home/legal-insights.webp") center/cover no-repeat;
}

.ll-services-group-panel__head small {
  display: block;
  margin-bottom: 8px;
  color: #f7c76f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ll-services-group-panel__head h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-services-group-panel__head p {
  max-width: 780px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
}

.ll-services-child-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background:
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.ll-services-child-card {
  position: relative;
  --service-rgb: 49, 82, 244;
  --service-soft: #eef2ff;
  --service-color: #3152f4;
  overflow: hidden;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .2);
  border-radius: 22px;
  color: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .9)),
    #ffffff;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .055);
  isolation: isolate;
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .42s cubic-bezier(.16, 1, .3, 1), border-color .22s ease, background .22s ease;
}

.ll-services-child-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .86;
  background:
    radial-gradient(circle at 86% 10%, rgba(var(--service-rgb), .15), transparent 28%),
    linear-gradient(145deg, rgba(var(--service-rgb), .07), rgba(255, 255, 255, .95) 60%);
}

.ll-services-child-card::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  z-index: -1;
  border-radius: 14px;
  background: rgba(var(--service-rgb), .1);
  transform: rotate(10deg);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), opacity .22s ease;
}

.ll-services-child-card:hover,
.ll-services-child-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(49, 82, 244, .28);
  box-shadow: 0 28px 66px rgba(15, 23, 42, .12);
}

.ll-services-child-card:hover::after,
.ll-services-child-card.is-active::after {
  opacity: 1;
  transform: rotate(10deg) scale(1.18);
}

.ll-services-child-card--theme-blue {
  --service-rgb: 49, 82, 244;
  --service-soft: #eef2ff;
  --service-color: #3152f4;
}

.ll-services-child-card--theme-emerald {
  --service-rgb: 16, 185, 129;
  --service-soft: #ecfdf5;
  --service-color: #047857;
}

.ll-services-child-card--theme-amber {
  --service-rgb: 247, 199, 111;
  --service-soft: #fffbeb;
  --service-color: #92400e;
}

.ll-services-child-card--theme-indigo {
  --service-rgb: 99, 102, 241;
  --service-soft: #eef2ff;
  --service-color: #4338ca;
}

.ll-services-child-card--theme-rose {
  --service-rgb: 244, 63, 94;
  --service-soft: #fff1f2;
  --service-color: #be123c;
}

.ll-services-child-card--theme-cyan {
  --service-rgb: 6, 182, 212;
  --service-soft: #ecfeff;
  --service-color: #0e7490;
}

.ll-services-child-card--theme-slate {
  --service-rgb: 100, 116, 139;
  --service-soft: #f1f5f9;
  --service-color: #334155;
}

.ll-services-child-card--theme-violet {
  --service-rgb: 139, 92, 246;
  --service-soft: #f5f3ff;
  --service-color: #6d28d9;
}

.ll-services-child-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--service-color);
  background: var(--service-soft);
  font-size: 12px;
  font-weight: 900;
}

.ll-services-child-card h4 {
  margin: 0;
  color: #101828;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-services-child-card p {
  display: -webkit-box;
  margin: 10px 0 0;
  overflow: hidden;
  color: #667085;
  line-height: 1.62;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.ll-services-child-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: #3152f4;
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

.ll-service-article-card h3 a {
  color: inherit;
  text-decoration: none;
}

.ll-service-article-card h3 a:hover {
  color: #3152f4;
}

.ll-service-detail-hero__content {
  max-width: 980px;
}

@media (max-width: 1199.98px) {
  .ll-services-two-level {
    grid-template-columns: 1fr;
  }

  .ll-services-two-level__groups {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ll-services-child-grid-modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ll-services-two-level__groups,
  .ll-services-child-grid-modern {
    grid-template-columns: 1fr;
  }

  .ll-services-group-panel__head {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ll-services-child-grid-modern {
    padding: 16px;
  }

  .ll-services-child-card {
    min-height: 0;
  }
}

/* LEXON LAWYERS careers page */
.ll-careers-page {
  overflow: hidden;
  color: #101828;
  background: #ffffff;
}

.ll-careers-hero {
  position: relative;
  padding: 58px 0 96px;
  color: #ffffff;
  background:
    linear-gradient(115deg, rgba(7, 15, 35, .97), rgba(16, 43, 110, .86)),
    url("../images/home/law-office-hero.webp") center/cover no-repeat;
  isolation: isolate;
}

.ll-careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 199, 111, .22), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
}

.ll-careers-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.ll-careers-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.ll-careers-breadcrumb a:hover {
  color: #f7c76f;
}

.ll-careers-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 46px;
  align-items: center;
}

.ll-careers-hero .ll-eyebrow {
  color: #f7c76f;
}

.ll-careers-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.6vw, 66px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.ll-careers-hero__content > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.8;
}

.ll-careers-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ll-careers-hero__panel {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.ll-careers-hero__panel div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .1);
}

.ll-careers-hero__panel strong {
  display: block;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
}

.ll-careers-hero__panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
}

.ll-careers-culture,
.ll-careers-jobs,
.ll-careers-process,
.ll-careers-apply {
  padding: 78px 0 88px;
}

.ll-careers-culture,
.ll-careers-process {
  background:
    radial-gradient(circle at 10% 16%, rgba(49, 82, 244, .06), transparent 26%),
    radial-gradient(circle at 90% 6%, rgba(247, 199, 111, .14), transparent 22%),
    #ffffff;
}

.ll-careers-jobs,
.ll-careers-apply {
  background: #f8fafc;
}

.ll-careers-values,
.ll-careers-job-grid,
.ll-careers-process__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.ll-careers-values article,
.ll-careers-job-card,
.ll-careers-process__grid div {
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
}

.ll-careers-values article {
  padding: 24px;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-careers-values article:hover,
.ll-careers-job-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 82, 244, .28);
  box-shadow: 0 30px 76px rgba(15, 23, 42, .13);
}

.ll-careers-values span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 24px;
}

.ll-careers-values h3,
.ll-careers-job-card h3 {
  margin: 18px 0 0;
  color: #101828;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-careers-values p,
.ll-careers-job-card p,
.ll-careers-process__grid p,
.ll-careers-apply__content p {
  margin: 10px 0 0;
  color: #667085;
  line-height: 1.7;
}

.ll-careers-job-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ll-careers-job-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-careers-job-card__head,
.ll-careers-job-card__meta,
.ll-careers-job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ll-careers-job-card__head {
  justify-content: space-between;
}

.ll-careers-job-card__head span,
.ll-careers-job-card__tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 12px;
  font-weight: 900;
}

.ll-careers-job-card__head small,
.ll-careers-job-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.ll-careers-job-card ul,
.ll-careers-apply__content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ll-careers-job-card li,
.ll-careers-apply__content li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #344054;
  line-height: 1.6;
  font-weight: 800;
}

.ll-careers-job-card li i,
.ll-careers-apply__content li i {
  color: #3152f4;
  margin-top: 3px;
}

.ll-careers-job-card__tags {
  margin-top: 18px;
}

.ll-careers-job-card__apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  color: #3152f4;
  font-weight: 900;
  text-decoration: none;
}

.ll-careers-process__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ll-careers-process__grid div {
  padding: 22px;
}

.ll-careers-process__grid span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #081225;
  background: #f7c76f;
  font-weight: 900;
}

.ll-careers-process__grid strong {
  display: block;
  margin-top: 16px;
  color: #101828;
  font-size: 18px;
  font-weight: 900;
}

.ll-careers-apply__inner {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ll-careers-apply__content,
.ll-careers-form {
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .075);
}

.ll-careers-apply__content h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-careers-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ll-careers-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.ll-careers-form__full,
.ll-careers-form button,
.ll-careers-form__notice {
  grid-column: 1 / -1;
}

.ll-careers-form input,
.ll-careers-form select,
.ll-careers-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 14px;
  color: #101828;
  background: #f8fafc;
  font: inherit;
  font-weight: 400;
  outline: 0;
}

.ll-careers-form input,
.ll-careers-form select {
  min-height: 50px;
  padding: 0 14px;
}

.ll-careers-form textarea {
  resize: vertical;
  padding: 14px;
}

.ll-careers-form input:focus,
.ll-careers-form select:focus,
.ll-careers-form textarea:focus {
  border-color: rgba(49, 82, 244, .45);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(49, 82, 244, .08);
}

.ll-careers-form__notice {
  display: none;
  padding: 14px;
  border-radius: 14px;
  color: #047857;
  background: #ecfdf5;
  font-weight: 900;
}

.ll-careers-form__notice.is-visible {
  display: block;
}

.ll-careers-form__notice.is-error {
  color: #991b1b;
  background: #fef2f2;
}

.ll-careers-application-form {
  position: relative;
}

.ll-careers-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.ll-careers-application-form.is-submitting {
  cursor: wait;
}

.ll-careers-application-form.is-submitting input,
.ll-careers-application-form.is-submitting select,
.ll-careers-application-form.is-submitting textarea,
.ll-careers-application-form.is-submitting button {
  cursor: wait;
}

.ll-careers-submit-lock {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 20, 38, .58);
  backdrop-filter: blur(8px);
}

.ll-careers-submit-lock.is-active {
  display: flex;
}

.ll-careers-submit-lock__box {
  width: min(420px, 100%);
  padding: 28px;
  text-align: center;
  color: #0f1f35;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(15, 31, 53, .22);
}

.ll-careers-submit-lock__box > span {
  width: 46px;
  height: 46px;
  display: inline-block;
  margin-bottom: 16px;
  border: 4px solid rgba(49, 82, 244, .16);
  border-top-color: #3152f4;
  border-radius: 999px;
  animation: ll-career-spin .8s linear infinite;
}

.ll-careers-submit-lock__box strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
  color: #0f1f35;
}

.ll-careers-submit-lock__box p {
  margin: 8px 0 0;
  color: #5b6b80;
  font-size: 14px;
  line-height: 1.6;
}

@keyframes ll-career-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1199.98px) {
  .ll-careers-hero__grid,
  .ll-careers-apply__inner {
    grid-template-columns: 1fr;
  }

  .ll-careers-values,
  .ll-careers-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ll-careers-hero {
    padding: 42px 0 68px;
  }

  .ll-careers-hero h1 {
    font-size: 35px;
  }

  .ll-careers-values,
  .ll-careers-job-grid,
  .ll-careers-process__grid,
  .ll-careers-form {
    grid-template-columns: 1fr;
  }

  .ll-careers-culture,
  .ll-careers-jobs,
  .ll-careers-process,
  .ll-careers-apply {
    padding: 56px 0 64px;
  }

  .ll-careers-apply__content,
  .ll-careers-form {
    padding: 20px;
  }
}

/* LEXON LAWYERS forms library */
.ll-forms-page .ll-blog-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(247, 199, 111, .22), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(49, 82, 244, .22), transparent 36%),
    linear-gradient(135deg, #07122f 0%, #10236b 56%, #0b163f 100%);
}

.ll-forms-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.ll-forms-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.ll-forms-stats strong {
  color: #ffffff;
  font-size: 16px;
}

.ll-forms-featured-card,
.ll-form-card {
  position: relative;
}

.ll-forms-featured-card::after,
.ll-form-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #3152f4, #f7c76f);
  opacity: .78;
}

.ll-form-card__downloads {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.ll-form-card__downloads span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 12px;
  color: #344054;
  background: #f8faff;
  font-size: 13px;
  font-weight: 800;
}

.ll-form-card__downloads i {
  color: #dc2626;
  font-size: 16px;
}

.ll-form-download-panel {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(49, 82, 244, .14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(49, 82, 244, .08), rgba(247, 199, 111, .1)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.ll-form-download-panel__head {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.ll-form-download-panel__head h2 {
  margin: 0;
  color: #101828;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-form-download-panel__head p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.8;
}

.ll-form-download-list {
  display: grid;
  gap: 12px;
}

.ll-form-download-item,
.ll-form-sidebar-download a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 18px;
  color: #101828;
  background: rgba(255, 255, 255, .84);
  text-decoration: none;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease, background .22s ease;
}

.ll-form-download-item:hover,
.ll-form-sidebar-download a:hover {
  transform: translateY(-4px);
  border-color: rgba(49, 82, 244, .32);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(49, 82, 244, .12);
}

.ll-form-download-item__icon,
.ll-form-sidebar-download a > i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #dc2626, #f97316);
  font-size: 20px;
}

.ll-form-download-item strong {
  display: block;
  color: #101828;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.ll-form-download-item small {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.ll-form-download-item > i {
  color: #3152f4;
  font-size: 20px;
}

.ll-form-sidebar-download {
  display: grid;
  gap: 10px;
}

.ll-form-sidebar-download h3 {
  margin-bottom: 4px;
}

.ll-form-sidebar-download a {
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 12px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 900;
}

.ll-form-sidebar-download a > i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 17px;
}

@media (max-width: 767.98px) {
  .ll-form-download-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .ll-form-download-panel__head h2 {
    font-size: 24px;
  }

  .ll-form-download-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .ll-form-download-item > i {
    display: none;
  }
}

/* LEXON LAWYERS individual lawyer landing page */
.ll-lawyer-landing {
  overflow: hidden;
  color: #101828;
  background: #f6f8fc;
}

.ll-lawyer-landing-hero {
  position: relative;
  padding: 54px 0 94px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 20%, rgba(247, 199, 111, .24), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(49, 82, 244, .32), transparent 36%),
    linear-gradient(135deg, #07122f 0%, #10236b 56%, #0b163f 100%);
}

.ll-lawyer-landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.ll-lawyer-landing-hero .ilw-container {
  position: relative;
  z-index: 1;
}

.ll-lawyer-landing-hero .ll-lawyers-breadcrumb {
  color: rgba(255, 255, 255, .7);
}

.ll-lawyer-landing-hero .ll-lawyers-breadcrumb a,
.ll-lawyer-landing-hero .ll-lawyers-breadcrumb span {
  color: rgba(255, 255, 255, .78);
}

.ll-lawyer-landing-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: center;
  margin-top: 32px;
}

.ll-lawyer-landing-hero .ll-eyebrow {
  color: #f7c76f;
}

.ll-lawyer-landing-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-landing-hero__content > p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.85;
}

.ll-lawyer-landing-hero__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.ll-lawyer-landing-hero__keywords span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 800;
}

.ll-lawyer-landing-hero__actions,
.ll-lawyer-landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.ll-lawyer-landing-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.ll-lawyer-landing-card__photo {
  aspect-ratio: 4 / 3.35;
  overflow: hidden;
  background: #0b163f;
}

.ll-lawyer-landing-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}

.ll-lawyer-landing-card__body {
  padding: 24px;
}

.ll-lawyer-landing-card__body > span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: #f7c76f;
  background: rgba(247, 199, 111, .14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ll-lawyer-landing-card h2 {
  margin: 16px 0 6px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-landing-card p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-weight: 800;
}

.ll-lawyer-landing-card__meta {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.ll-lawyer-landing-card__meta a,
.ll-lawyer-landing-card__meta span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.ll-lawyer-landing-card__meta i {
  color: #f7c76f;
}

.ll-lawyer-landing-stats {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.ll-lawyer-landing-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 26px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
  backdrop-filter: blur(18px);
}

.ll-lawyer-landing-stats__grid div {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8faff);
}

.ll-lawyer-landing-stats__grid strong {
  display: block;
  color: #101828;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-landing-stats__grid span {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.ll-lawyer-intro-section {
  padding: 84px 0 0;
}

.ll-lawyer-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 24px;
  align-items: stretch;
}

.ll-lawyer-intro-card,
.ll-lawyer-achievements-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 62px rgba(15, 23, 42, .08);
}

.ll-lawyer-intro-card {
  padding: 34px;
}

.ll-lawyer-intro-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #3152f4, #f7c76f);
}

.ll-lawyer-intro-card h2,
.ll-lawyer-achievements-card h2 {
  margin: 12px 0 0;
  color: #101828;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-intro-card p {
  margin: 16px 0 0;
  color: #475467;
  font-size: 16px;
  line-height: 1.9;
}

.ll-lawyer-achievements-card {
  padding: 28px;
  background:
    radial-gradient(circle at 20% 12%, rgba(247, 199, 111, .22), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8faff);
}

.ll-lawyer-achievements-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.ll-lawyer-achievements-grid div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(49, 82, 244, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1);
}

.ll-lawyer-achievements-grid div:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(49, 82, 244, .11);
}

.ll-lawyer-achievements-grid div > span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 21px;
}

.ll-lawyer-achievements-grid strong {
  color: #101828;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-achievements-grid p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.ll-lawyer-landing-section,
.ll-lawyer-services-section,
.ll-lawyer-qualification-section,
.ll-lawyer-cv-section,
.ll-lawyer-prep-section,
.ll-lawyer-timeline-section,
.ll-lawyer-process-section,
.ll-lawyer-resources-section,
.ll-lawyer-faq-section {
  padding: 84px 0;
}

.ll-lawyer-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ll-lawyer-expertise-card,
.ll-lawyer-cv-box,
.ll-lawyer-timeline article,
.ll-lawyer-process-grid article,
.ll-lawyer-faq-list article {
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-lawyer-expertise-card:hover,
.ll-lawyer-cv-box:hover,
.ll-lawyer-process-grid article:hover,
.ll-lawyer-faq-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 82, 244, .24);
  box-shadow: 0 24px 58px rgba(49, 82, 244, .12);
}

.ll-lawyer-expertise-card {
  padding: 24px;
}

.ll-lawyer-expertise-card > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 22px;
}

.ll-lawyer-expertise-card h3,
.ll-lawyer-cv-box h3,
.ll-lawyer-process-grid h3,
.ll-lawyer-faq-list h3,
.ll-lawyer-timeline h3 {
  margin: 18px 0 0;
  color: #101828;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-expertise-card p,
.ll-lawyer-services-grid p,
.ll-lawyer-qualification-list p,
.ll-lawyer-principles-grid p,
.ll-lawyer-prep-layout p,
.ll-lawyer-resources-grid p,
.ll-lawyer-process-grid p,
.ll-lawyer-faq-list p,
.ll-lawyer-timeline p,
.ll-lawyer-cv-sidebar p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.75;
}

.ll-lawyer-services-section,
.ll-lawyer-prep-section,
.ll-lawyer-resources-section {
  background: #ffffff;
}

.ll-lawyer-services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ll-lawyer-services-grid article,
.ll-lawyer-qualification-card,
.ll-lawyer-principles-card,
.ll-lawyer-prep-layout,
.ll-lawyer-resources-grid a {
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.ll-lawyer-services-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-lawyer-services-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #3152f4, #f7c76f);
}

.ll-lawyer-services-grid article:hover,
.ll-lawyer-resources-grid a:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 82, 244, .24);
  box-shadow: 0 24px 58px rgba(49, 82, 244, .12);
}

.ll-lawyer-services-grid h3,
.ll-lawyer-qualification-list h3,
.ll-lawyer-principles-grid h3,
.ll-lawyer-resources-grid h3 {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-qualification-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.ll-lawyer-qualification-card,
.ll-lawyer-principles-card {
  padding: 28px;
}

.ll-lawyer-qualification-card h2,
.ll-lawyer-principles-card h2,
.ll-lawyer-prep-layout h2 {
  margin: 12px 0 0;
  color: #101828;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-qualification-list,
.ll-lawyer-principles-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.ll-lawyer-qualification-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #f8faff;
}

.ll-lawyer-qualification-list article > span,
.ll-lawyer-principles-grid article > span {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #3152f4;
  background: #eef2ff;
  font-size: 21px;
}

.ll-lawyer-principles-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ll-lawyer-principles-grid article {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, .16);
  border-radius: 18px;
  background: #f8faff;
}

.ll-lawyer-principles-grid h3 {
  margin-top: 14px;
}

.ll-lawyer-prep-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 199, 111, .16), transparent 32%),
    linear-gradient(135deg, #ffffff, #f8faff);
}

.ll-lawyer-prep-layout ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ll-lawyer-prep-layout li {
  display: flex;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(49, 82, 244, .12);
  border-radius: 15px;
  color: #344054;
  background: rgba(255, 255, 255, .8);
  font-weight: 800;
  line-height: 1.6;
}

.ll-lawyer-prep-layout li i {
  color: #3152f4;
  margin-top: 3px;
}

.ll-lawyer-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ll-lawyer-resources-grid a {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform .34s cubic-bezier(.16, 1, .3, 1), box-shadow .34s cubic-bezier(.16, 1, .3, 1), border-color .22s ease;
}

.ll-lawyer-resources-grid a > span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #3152f4, #1639a8);
}

.ll-lawyer-resources-grid p {
  margin-top: 10px;
}

.ll-lawyer-cv-section {
  background: #ffffff;
}

.ll-lawyer-cv-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.ll-lawyer-cv-sidebar {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #10236b, #07122f);
  box-shadow: 0 24px 58px rgba(15, 23, 42, .16);
}

.ll-lawyer-cv-sidebar .ll-eyebrow {
  color: #f7c76f;
}

.ll-lawyer-cv-sidebar h2 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-cv-sidebar p {
  color: rgba(255, 255, 255, .76);
}

.ll-lawyer-cv-main {
  display: grid;
  gap: 18px;
}

.ll-lawyer-cv-box {
  padding: 28px;
}

.ll-lawyer-cv-box ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ll-lawyer-cv-box li {
  display: flex;
  gap: 10px;
  color: #344054;
  font-weight: 800;
  line-height: 1.65;
}

.ll-lawyer-cv-box li i {
  color: #3152f4;
  margin-top: 3px;
}

.ll-lawyer-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ll-lawyer-timeline article {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.ll-lawyer-timeline article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 72px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #3152f4, #f7c76f);
}

.ll-lawyer-timeline article > span {
  display: inline-flex;
  color: #3152f4;
  font-size: 13px;
  font-weight: 900;
}

.ll-lawyer-process-section {
  background: #ffffff;
}

.ll-lawyer-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ll-lawyer-process-grid article {
  padding: 24px;
}

.ll-lawyer-process-grid article > span {
  display: inline-flex;
  color: #f7c76f;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.ll-lawyer-faq-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
}

.ll-lawyer-faq-layout h2 {
  margin: 12px 0 0;
  color: #101828;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-faq-layout > div > p {
  margin: 14px 0 0;
  color: #667085;
  line-height: 1.75;
}

.ll-lawyer-faq-list {
  display: grid;
  gap: 14px;
}

.ll-lawyer-faq-list article {
  padding: 22px;
}

.ll-lawyer-faq-list h3 {
  margin: 0;
}

.ll-lawyer-landing-cta {
  padding: 0 0 92px;
}

.ll-lawyer-landing-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 199, 111, .2), transparent 34%),
    linear-gradient(135deg, #10236b, #07122f);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
}

.ll-lawyer-landing-cta__inner .ll-eyebrow {
  color: #f7c76f;
}

.ll-lawyer-landing-cta__inner h2 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
}

.ll-lawyer-landing-cta__inner p {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.75;
}

@media (max-width: 1199.98px) {
  .ll-lawyer-landing-hero__grid,
  .ll-lawyer-intro-layout,
  .ll-lawyer-qualification-layout,
  .ll-lawyer-prep-layout,
  .ll-lawyer-cv-layout,
  .ll-lawyer-faq-layout,
  .ll-lawyer-landing-cta__inner {
    grid-template-columns: 1fr;
  }

  .ll-lawyer-cv-sidebar {
    position: static;
  }

  .ll-lawyer-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ll-lawyer-services-grid,
  .ll-lawyer-resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ll-lawyer-landing-stats__grid,
  .ll-lawyer-expertise-grid,
  .ll-lawyer-timeline,
  .ll-lawyer-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ll-lawyer-landing-hero {
    padding: 42px 0 76px;
  }

  .ll-lawyer-landing-hero h1 {
    font-size: 37px;
  }

  .ll-lawyer-landing-card__body,
  .ll-lawyer-intro-card,
  .ll-lawyer-achievements-card,
  .ll-lawyer-qualification-card,
  .ll-lawyer-principles-card,
  .ll-lawyer-prep-layout,
  .ll-lawyer-cv-sidebar,
  .ll-lawyer-cv-box,
  .ll-lawyer-landing-cta__inner {
    padding: 20px;
  }

  .ll-lawyer-landing-stats__grid,
  .ll-lawyer-expertise-grid,
  .ll-lawyer-services-grid,
  .ll-lawyer-principles-grid,
  .ll-lawyer-resources-grid,
  .ll-lawyer-timeline,
  .ll-lawyer-process-grid {
    grid-template-columns: 1fr;
  }

  .ll-lawyer-landing-section,
  .ll-lawyer-intro-section,
  .ll-lawyer-services-section,
  .ll-lawyer-qualification-section,
  .ll-lawyer-cv-section,
  .ll-lawyer-prep-section,
  .ll-lawyer-timeline-section,
  .ll-lawyer-process-section,
  .ll-lawyer-resources-section,
  .ll-lawyer-faq-section {
    padding: 58px 0;
  }

  .ll-lawyer-faq-layout h2,
  .ll-lawyer-landing-cta__inner h2 {
    font-size: 30px;
  }
}

.ll-contact-thank-page {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.ll-contact-thank {
  padding: 92px 0;
}

.ll-contact-thank__card {
  background: #ffffff;
  border: 1px solid rgba(14, 67, 145, .12);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(15, 35, 70, .1);
  margin: 0 auto;
  max-width: 900px;
  padding: 54px;
  text-align: center;
}

.ll-contact-thank__icon {
  align-items: center;
  background: #eaf4ff;
  border: 1px solid #cfe2ff;
  border-radius: 24px;
  color: #0b63ce;
  display: inline-flex;
  font-size: 42px;
  height: 88px;
  justify-content: center;
  margin-bottom: 24px;
  width: 88px;
}

.ll-contact-thank__card h1 {
  color: #10233f;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  margin: 14px auto 16px;
  max-width: 720px;
}

.ll-contact-thank__card > p {
  color: #52657d;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 720px;
}

.ll-contact-thank__steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0;
}

.ll-contact-thank__steps div {
  align-items: center;
  background: #f7faff;
  border: 1px solid #dfebfb;
  border-radius: 18px;
  color: #203653;
  display: flex;
  gap: 10px;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
}

.ll-contact-thank__steps i {
  color: #0b63ce;
  font-size: 20px;
}

.ll-contact-thank__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ll-contact-thank__actions .ll-btn--light,
.ll-error-actions .ll-btn--light {
  background: #eef5ff;
  border: 1px solid #cfe0fb;
  box-shadow: 0 14px 28px rgba(15, 35, 70, .08);
  color: #123d7a;
}

.ll-contact-thank__actions .ll-btn--light i,
.ll-error-actions .ll-btn--light i {
  color: #0b63ce;
}

.ll-contact-thank__actions .ll-btn--light:hover,
.ll-error-actions .ll-btn--light:hover {
  background: #e3efff;
  border-color: #a9c7f5;
  box-shadow: 0 18px 34px rgba(15, 35, 70, .12);
}

.ll-contact-thank__note {
  align-items: flex-start;
  background: #f8fbff;
  border: 1px solid #dfebfb;
  border-radius: 18px;
  color: #5f7188;
  display: flex;
  gap: 10px;
  line-height: 1.6;
  margin-top: 28px;
  padding: 16px 18px;
  text-align: left;
}

.ll-contact-thank__note i {
  color: #0b63ce;
  margin-top: 3px;
}

.ll-error-page {
  background:
    radial-gradient(circle at 20% 12%, rgba(11, 99, 206, .12), transparent 34%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.ll-error-hero {
  padding: 96px 0;
}

.ll-error-card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(14, 67, 145, .12);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(15, 35, 70, .12);
  margin: 0 auto;
  max-width: 920px;
  overflow: hidden;
  padding: 58px;
  position: relative;
  text-align: center;
}

.ll-error-card::before {
  background: linear-gradient(90deg, #0b63ce, #17a2b8);
  content: "";
  height: 6px;
  inset: 0 0 auto;
  position: absolute;
}

.ll-error-card__meta {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 18px;
}

.ll-error-card__meta span {
  color: #0b63ce;
  font-size: 72px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.ll-error-card__meta i {
  align-items: center;
  background: #eaf4ff;
  border: 1px solid #cfe2ff;
  border-radius: 20px;
  color: #0b63ce;
  display: inline-flex;
  font-size: 34px;
  height: 68px;
  justify-content: center;
  width: 68px;
}

.ll-error-card h1 {
  color: #10233f;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  margin: 12px auto 16px;
  max-width: 740px;
}

.ll-error-card > p {
  color: #52657d;
  font-size: 17px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 720px;
}

.ll-error-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.ll-error-links {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.ll-error-links a {
  align-items: center;
  background: #f8fbff;
  border: 1px solid #dfebfb;
  border-radius: 18px;
  color: #203653;
  display: flex;
  gap: 10px;
  justify-content: center;
  min-height: 64px;
  padding: 12px;
  text-decoration: none;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.ll-error-links a:hover {
  border-color: rgba(11, 99, 206, .32);
  box-shadow: 0 16px 32px rgba(15, 35, 70, .08);
  transform: translateY(-1px);
}

.ll-error-links i {
  color: #0b63ce;
  font-size: 20px;
}

.ll-legal-page {
  background: #f6f9ff;
}

.ll-legal-hero {
  padding: 64px 0 42px;
}

.ll-legal-hero__grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) 330px;
  margin-top: 24px;
}

.ll-legal-hero__grid h1 {
  color: #10233f;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin: 14px 0;
}

.ll-legal-hero__grid p {
  color: #52657d;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 760px;
}

.ll-legal-effective {
  align-items: center;
  background: #ffffff;
  border: 1px solid #dce8fb;
  border-radius: 999px;
  color: #123d7a;
  display: inline-flex;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 14px;
}

.ll-legal-effective i {
  color: #0b63ce;
}

.ll-legal-hero__aside {
  background: #ffffff;
  border: 1px solid #dce8fb;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 35, 70, .08);
  padding: 26px;
}

.ll-legal-hero__aside > i {
  align-items: center;
  background: #eaf4ff;
  border-radius: 16px;
  color: #0b63ce;
  display: inline-flex;
  font-size: 28px;
  height: 56px;
  justify-content: center;
  margin-bottom: 18px;
  width: 56px;
}

.ll-legal-hero__aside strong {
  color: #10233f;
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.ll-legal-content-section {
  padding: 0 0 76px;
}

.ll-legal-content {
  background: #ffffff;
  border: 1px solid #dce8fb;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(15, 35, 70, .08);
  color: #263b57;
  line-height: 1.8;
  padding: 42px;
}

.ll-legal-content h2 {
  color: #10233f;
  font-size: 24px;
  font-weight: 800;
  margin: 30px 0 12px;
}

.ll-legal-content h2:first-child {
  margin-top: 0;
}

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

.ll-legal-note {
  align-items: flex-start;
  background: #eef5ff;
  border: 1px solid #cfe0fb;
  border-radius: 18px;
  color: #123d7a;
  display: flex;
  gap: 10px;
  line-height: 1.65;
  margin-top: 18px;
  padding: 16px 18px;
}

.ll-legal-note i {
  color: #0b63ce;
  margin-top: 4px;
}

@media (max-width: 767.98px) {
  .ll-contact-thank {
    padding: 54px 0;
  }

  .ll-contact-thank__card {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .ll-contact-thank__card h1 {
    font-size: 30px;
  }

  .ll-contact-thank__steps {
    grid-template-columns: 1fr;
  }

  .ll-error-hero {
    padding: 54px 0;
  }

  .ll-error-card {
    border-radius: 22px;
    padding: 34px 20px;
  }

  .ll-error-card__meta span {
    font-size: 56px;
  }

  .ll-error-card h1 {
    font-size: 30px;
  }

  .ll-error-links {
    grid-template-columns: 1fr;
  }

  .ll-legal-hero {
    padding: 42px 0 28px;
  }

  .ll-legal-hero__grid {
    grid-template-columns: 1fr;
  }

  .ll-legal-hero__grid h1 {
    font-size: 32px;
  }

  .ll-legal-content {
    border-radius: 20px;
    padding: 24px 20px;
  }
}

/* Frontend mobile navigation refinements */
@media (max-width: 991.98px) {
  .ilw-navbar .ilw-logo {
    left: 45%;
  }

  .ilw-mobile {
    height: 100vh;
    height: 100svh;
    height: var(--ilw-mobile-panel-height, 100dvh);
    max-height: var(--ilw-mobile-panel-height, 100dvh);
  }

  .ilw-mobile__body {
    min-height: 0;
  }

  .ilw-mobile__social {
    display: block;
    flex: 0 0 auto;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    visibility: visible;
  }

  .ilw-navbar .ilw-logo__image {
    height: 60px;
    max-width: 285px;
  }

  .ilw-mobile__head .ilw-logo__image {
    height: 66px;
    max-width: 330px;
  }

  .ilw-mobile__link,
  .ilw-mobile__dropdown-button {
    font-size: 17px;
    line-height: 1.45;
  }

  .ilw-mobile__submenu-button {
    min-height: 48px;
    font-size: 16.5px;
    line-height: 1.45;
  }

  .ilw-mobile__submenu-link {
    min-height: 42px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    padding: 5px 0;
  }

  .ilw-mobile__social-title {
    font-size: 13px;
  }

  .ilw-mobile__social a {
    height: 44px;
    width: 44px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .ilw-navbar .ilw-logo {
    left: 45%;
  }

  .ilw-navbar .ilw-logo__image {
    height: 55px;
    max-width: 235px;
  }

  .ilw-mobile__head .ilw-logo__image {
    height: 60px;
    max-width: 280px;
  }
}

@media (max-width: 360px) {
  .ilw-navbar .ilw-logo {
    left: 45%;
  }

  .ilw-navbar .ilw-logo__image {
    height: 51px;
    max-width: 215px;
  }

  .ilw-mobile__head .ilw-logo__image {
    height: 56px;
    max-width: 245px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: var(--ilw-body-font-size);
    line-height: var(--ilw-body-line-height);
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  .ll-section__head p,
  .ll-hero__lead,
  .ll-about p,
  .ll-about-card p,
  .ll-practice-card p,
  .ll-blog-card p,
  .ll-form-card p,
  .ll-career-card p,
  .ll-lawyer-card p,
  .ll-lawyer-profile-card__bio,
  .ll-contact-card p,
  .ilw-content,
  .ilw-content p {
    font-size: var(--ilw-body-font-size);
    line-height: 1.75;
  }

  .ll-footer p,
  .ilw-footer,
  .ilw-footer p,
  .ilw-footer a,
  .ilw-footer li {
    font-size: var(--ilw-footer-font-size, 16px);
    line-height: 1.72;
  }

  .ll-eyebrow,
  .ll-card-eyebrow,
  .ll-kicker,
  .ll-meta,
  .ll-blog-card__meta,
  .ll-lawyer-card__meta,
  .ll-service-card__meta {
    font-size: var(--ilw-eyebrow-font-size);
  }

  .ilw-footer {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-bottom-bar {
    align-items: center;
    display: flex !important;
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    z-index: 10020;
  }

  .mobile-bottom-bar a {
    font-size: 14.5px;
    line-height: 1.2;
    padding: 9px 0 8px;
  }

  .mobile-bottom-bar i {
    font-size: 21px;
  }
}

/* Article detail mobile hardening: blogs, service articles, forms */
.ll-blog-detail-page,
.ll-blog-detail-page * {
  box-sizing: border-box;
}

.ll-blog-detail-page {
  overflow-x: hidden;
}

.ll-article-hero__content,
.ll-article-main,
.ll-article-sidebar,
.ll-article-widget,
.ll-article-content,
.ll-article-content section,
.ll-form-download-panel,
.ll-form-download-item,
.ll-service-article-card {
  min-width: 0;
  max-width: 100%;
}

.ll-article-breadcrumb,
.ll-article-breadcrumb a,
.ll-article-breadcrumb span,
.ll-article-category,
.ll-article-hero h1,
.ll-article-hero__content > p,
.ll-article-meta,
.ll-article-meta span,
.ll-article-content,
.ll-article-content p,
.ll-article-content li,
.ll-article-widget--toc a,
.ll-form-download-item strong,
.ll-form-download-item small,
.ll-service-article-card h3,
.ll-service-article-card p {
  overflow-wrap: anywhere;
  word-break: normal;
}

.ll-article-category {
  max-width: 100%;
  white-space: normal;
  text-align: left;
}

.ll-article-main {
  overflow: hidden;
}

.ll-article-main .ilw-content * {
  max-width: 100%;
}

.ll-article-main .ilw-content a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ll-article-main .ilw-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.ll-article-main .ilw-content img,
.ll-article-main .ilw-content iframe,
.ll-article-main .ilw-content video,
.ll-article-main .ilw-content figure,
.ll-article-main .ilw-content .image,
.ll-article-main .ilw-content .media,
.ll-article-main .ilw-content .table {
  max-width: 100% !important;
}

.ll-article-main .ilw-content img,
.ll-article-main .ilw-content video {
  height: auto !important;
}

.ll-article-main .ilw-content iframe {
  min-height: 220px;
}

@media (max-width: 767.98px) {
  .ll-article-hero {
    padding: 30px 0 44px;
  }

  .ll-article-breadcrumb {
    gap: 6px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
  }

  .ll-article-category {
    margin-bottom: 12px;
    padding: 7px 10px;
    font-size: 11.5px;
    line-height: 1.45;
    letter-spacing: .02em;
  }

  .ll-article-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.18;
    text-wrap: auto;
  }

  .ll-article-hero__content > p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.72;
  }

  .ll-article-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 18px;
    font-size: 13.5px;
  }

  .ll-article-meta span {
    align-items: flex-start;
    line-height: 1.5;
  }

  .ll-article-hero__grid {
    gap: 22px;
  }

  .ll-article-hero__image {
    border-radius: 18px;
    aspect-ratio: 16 / 10;
  }

  .ll-article-section {
    padding: 32px 0 52px;
  }

  .ll-article-layout {
    gap: 20px;
  }

  .ll-article-main,
  .ll-article-widget,
  .ll-article-missing__box {
    padding: 18px;
    border-radius: 20px;
  }

  .ll-article-intro,
  .ll-article-author,
  .ll-article-note,
  .ll-article-checklist,
  .ll-form-download-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .ll-article-intro__icon,
  .ll-article-author__mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 20px;
  }

  .ll-article-intro p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 650;
  }

  .ll-article-content {
    margin-top: 26px;
  }

  .ll-article-content section + section {
    margin-top: 26px;
    padding-top: 24px;
  }

  .ll-article-content h2,
  .ll-article-checklist h2,
  .ll-form-download-panel__head h2 {
    font-size: 24px;
    line-height: 1.28;
  }

  .ll-article-content p,
  .ll-article-checklist li,
  .ll-article-note p,
  .ll-article-author p,
  .ll-form-download-panel__head p {
    font-size: 16px;
    line-height: 1.74;
  }

  .ll-article-mobile-toc {
    gap: 0;
    padding: 16px;
  }

  .ll-article-mobile-toc a,
  .ll-article-widget--toc a {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    min-height: 44px;
    font-size: 14px;
    line-height: 1.45;
  }

  .ll-article-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ll-blog-mini {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  .ll-blog-mini img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }

  .ll-blog-mini strong {
    font-size: 14px;
    line-height: 1.42;
  }

  .ll-blog-tags a {
    padding: 7px 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .ll-form-download-item {
    align-items: flex-start;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .ll-form-download-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .ll-service-article-card {
    padding: 18px;
    border-radius: 18px;
  }

  .ll-service-article-card__head,
  .ll-service-article-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .ll-service-article-card h3 {
    font-size: 20px;
  }

  .ll-article-related {
    padding-bottom: 68px;
  }
}

@media (max-width: 420px) {
  .ll-article-main,
  .ll-article-widget,
  .ll-article-missing__box {
    padding: 16px;
  }

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

  .ll-article-content h2,
  .ll-article-checklist h2,
  .ll-form-download-panel__head h2 {
    font-size: 22px;
  }
}

/* Article detail desktop correction: blogs, service articles, forms */
@media (min-width: 768px) {
  .ll-blog-detail-page .ll-article-hero .ilw-container,
  .ll-blog-detail-page .ll-article-section .ilw-container,
  .ll-blog-detail-page .ll-article-related .ilw-container {
    width: 100%;
    max-width: var(--ilw-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .ll-article-breadcrumb,
  .ll-article-breadcrumb a,
  .ll-article-breadcrumb span,
  .ll-article-category,
  .ll-article-hero h1,
  .ll-article-hero__content > p,
  .ll-article-meta,
  .ll-article-meta span,
  .ll-article-content,
  .ll-article-content p,
  .ll-article-content li,
  .ll-article-widget--toc a,
  .ll-form-download-item strong,
  .ll-form-download-item small,
  .ll-service-article-card h3,
  .ll-service-article-card p {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .ll-article-main {
    overflow: visible;
  }

  .ll-article-main .ilw-content table {
    display: table;
    width: auto;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .ll-article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
  }

  .ll-article-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 30px;
  }

  .ll-article-sidebar {
    position: sticky;
    top: 96px;
    grid-template-columns: 1fr;
  }

  .ll-article-mobile-toc {
    display: none;
  }

  .ll-article-sidebar > .ll-article-widget--toc {
    display: block;
  }
}

@media (min-width: 1200px) {
  .ll-article-hero__grid {
    grid-template-columns: minmax(0, .98fr) minmax(320px, 470px);
    gap: 40px;
  }

  .ll-article-hero h1 {
    font-size: 38px;
    line-height: 1.14;
  }

  .ll-article-hero__content > p {
    font-size: 17px;
    line-height: 1.75;
  }

  .ll-article-section {
    padding: 66px 0 86px;
  }

  .ll-article-layout {
    grid-template-columns: minmax(0, 820px) 360px;
    justify-content: center;
    gap: 36px;
  }

  .ll-article-main {
    padding: 42px;
    border-radius: 24px;
  }

  .ll-article-sidebar {
    top: 96px;
    align-self: start;
    padding-right: 4px;
  }

  .ll-article-widget--toc a {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .ll-service-detail-hero__content {
    max-width: 960px;
  }
}

/* Frontend hero typography alignment */
@media (min-width: 768px) {
  .ll-blog-hero h1,
  .ll-article-hero h1 {
    font-size: 38px;
    line-height: 1.14;
  }
}

@media (max-width: 767.98px) {
  .ll-blog-hero h1,
  .ll-article-hero h1 {
    font-size: 34px;
    line-height: 1.18;
  }
}

/* Frontend typography sync: mobile keeps the same readable scale as desktop */
@media (max-width: 767.98px) {
  html,
  body {
    font-size: var(--ilw-body-font-size) !important;
  }

  body,
  p,
  li,
  a,
  input,
  textarea,
  select,
  button,
  .ll-section__head p,
  .ll-hero__lead,
  .ll-about p,
  .ll-about-card p,
  .ll-practice-card p,
  .ll-blog-card p,
  .ll-form-card p,
  .ll-career-card p,
  .ll-lawyer-card p,
  .ll-lawyer-profile-card__bio,
  .ll-lawyer-profile-card__meta,
  .ll-contact-card p,
  .ll-article-content,
  .ll-article-content p,
  .ll-article-content li,
  .ll-article-hero__content > p,
  .ilw-content,
  .ilw-content p,
  .ilw-content li {
    font-size: var(--ilw-body-font-size) !important;
    line-height: var(--ilw-body-line-height);
  }

  .ll-eyebrow,
  .ll-card-eyebrow,
  .ll-kicker,
  .ll-meta,
  .ll-blog-card__meta,
  .ll-lawyer-card__meta,
  .ll-service-card__meta,
  .ll-article-category,
  .ll-article-meta,
  .ll-article-breadcrumb,
  .ll-article-breadcrumb a,
  .ll-article-breadcrumb span {
    font-size: var(--ilw-eyebrow-font-size) !important;
    line-height: 1.5;
  }

  .ll-hero h1,
  .ll-blog-hero h1,
  .ll-about-hero h1,
  .ll-contact-hero h1,
  .ll-lawyers-hero h1,
  .ll-services-hero h1,
  .ll-careers-hero h1,
  .ll-article-hero h1,
  .ll-lawyer-landing-hero h1,
  .ll-article-missing__box h1,
  .ilw-content h1 {
    font-size: 38px !important;
    line-height: 1.14;
    letter-spacing: 0;
  }

  .ll-section__head h2,
  .ll-about-process h2,
  .ll-about-commitment h2,
  .ll-about-cta h2,
  .ll-blog-section h2,
  .ll-contact-section h2,
  .ll-lawyers-section h2,
  .ll-services-section h2,
  .ll-careers-section h2,
  .ll-article-content h2,
  .ll-article-checklist h2,
  .ll-form-download-panel__head h2,
  .ilw-content h2 {
    font-size: 30px !important;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .ilw-content h3,
  .ll-blog-card h3,
  .ll-service-article-card h3,
  .ll-lawyer-card h3,
  .ll-career-card h3,
  .ll-form-card h3 {
    font-size: 26px !important;
    line-height: 1.25;
  }

  .ilw-mobile__link,
  .ilw-mobile__dropdown-button,
  .ilw-mobile__submenu-button,
  .ilw-mobile__submenu-link {
    font-size: var(--ilw-body-font-size) !important;
    line-height: 1.45;
  }

  .mobile-bottom-bar a {
    font-size: 14.5px;
  }
}

/* Mobile header size lock: keep menu icon and unopened navbar logo prominent */
@media (max-width: 767.98px) {
  .ilw-navbar__inner {
    min-height: 92px;
    justify-content: flex-start;
    gap: 10px;
  }

  .ilw-mobile-toggle {
    position: relative !important;
    z-index: 30 !important;
    order: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    flex: 0 0 58px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #3152f4 !important;
    box-shadow: none !important;
  }

  .ilw-mobile-toggle i {
    display: block !important;
    color: #3152f4 !important;
    font-size: 34px !important;
    line-height: 1 !important;
  }

  .ilw-navbar .ilw-logo {
    position: static !important;
    order: 2 !important;
    min-width: 0;
    flex: 1 1 auto;
    transform: none !important;
    margin-left: 2px;
    z-index: 20 !important;
    pointer-events: auto;
  }

  .ilw-navbar .ilw-logo__image {
    display: block;
    width: min(330px, calc(100vw - 102px)) !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain;
  }

  .ilw-mobile__head .ilw-logo__image {
    height: 88px !important;
    max-width: 380px !important;
  }
}

@media (max-width: 420px) {
  .ilw-navbar__inner {
    min-height: 88px;
    gap: 8px;
  }

  .ilw-mobile-toggle {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    flex-basis: 54px !important;
  }

  .ilw-mobile-toggle i {
    font-size: 32px !important;
  }

  .ilw-navbar .ilw-logo {
    min-width: 0;
  }

  .ilw-navbar .ilw-logo__image {
    width: min(310px, calc(100vw - 96px)) !important;
    height: auto !important;
    max-width: 100% !important;
  }

  .ilw-mobile__head .ilw-logo__image {
    height: 82px !important;
    max-width: 340px !important;
  }
}

@media (max-width: 360px) {
  .ilw-mobile-toggle {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    flex-basis: 50px !important;
  }

  .ilw-mobile-toggle i {
    font-size: 30px !important;
  }

  .ilw-navbar .ilw-logo {
    min-width: 0;
  }

  .ilw-navbar .ilw-logo__image {
    width: min(285px, calc(100vw - 90px)) !important;
    height: auto !important;
    max-width: 100% !important;
  }
}

