/**
 * Component Library
 * Buttons, forms, cards, alerts, navigation
 */

/* ===== BUTTONS ===== */

.le-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--le-space-4) var(--le-space-8);
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--le-transition-base);
  min-width: 160px;
}

.le-button:focus {
  outline: 2px solid var(--le-accent);
  outline-offset: 2px;
}

.le-button--primary {
  background-color: var(--le-primary);
  color: var(--le-text-inverse);
  border-color: var(--le-primary);
}

.le-button--primary:hover {
  background-color: var(--le-primary-light);
}

.le-button--secondary {
  background-color: transparent;
  color: var(--le-text);
  border-color: var(--le-text);
}

.le-button--secondary:hover {
  background-color: var(--le-bg-tertiary);
}

.le-button--accent {
  background-color: var(--le-accent);
  color: var(--le-bg-primary);
  border-color: var(--le-accent);
}

.le-button--accent:hover {
  background-color: var(--le-accent-light);
}

.le-button--large {
  padding: var(--le-space-5) var(--le-space-10);
  font-size: var(--le-text-base);
  min-width: 200px;
}

.le-button--small {
  padding: var(--le-space-2) var(--le-space-4);
  font-size: var(--le-text-xs);
  min-width: auto;
}

.le-button--block {
  display: flex;
  width: 100%;
}

/* ===== FORMS ===== */

.le-form-group {
  margin-bottom: var(--le-space-5);
}

.le-form-group:last-child {
  margin-bottom: 0;
}

.le-form-label {
  display: block;
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--le-text);
  margin-bottom: var(--le-space-2);
}

.le-form-input {
  display: block;
  width: 100%;
  padding: var(--le-space-3) var(--le-space-4);
  font-family: var(--le-font-body);
  font-size: var(--le-text-base);
  color: var(--le-text);
  background-color: #ffffff;
  border: 1px solid var(--le-border);
  border-radius: var(--le-radius-sm);
  transition: border-color var(--le-transition-fast), box-shadow var(--le-transition-fast);
}

.le-form-input:focus {
  outline: none;
  border-color: var(--le-accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.le-form-input--error {
  border-color: var(--le-error);
}

.le-form-input--error:focus {
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.15);
}

.le-form-error {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-error);
  margin: var(--le-space-2) 0;
  padding: var(--le-space-2) var(--le-space-3);
  background-color: var(--le-error-bg);
  border-radius: var(--le-radius-sm);
}

.le-form-hint {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
  margin-top: var(--le-space-2);
}

/* ===== CARDS ===== */

.le-card {
  background-color: #ffffff;
  border: 1px solid var(--le-border-light);
  border-radius: var(--le-radius-md);
  padding: var(--le-space-6);
  box-shadow: var(--le-shadow-sm);
}

.le-card--accent {
  border-left: 3px solid var(--le-accent);
}

.le-card__header {
  padding-bottom: var(--le-space-4);
  margin-bottom: var(--le-space-4);
  border-bottom: 1px solid var(--le-border-light);
}

.le-card__title {
  font-family: var(--le-font-display);
  font-size: var(--le-text-xl);
  font-weight: 600;
  margin: 0;
}

.le-quote-card {
  border-left: 4px solid var(--le-primary);
  padding: var(--le-space-4);
  background-color: #ffffff;
  box-shadow: var(--le-shadow-sm);
}

.le-quote-card footer {
  margin-top: var(--le-space-3);
  font-style: italic;
  color: var(--le-text-secondary);
}

.le-publications {
  gap: var(--le-space-4);
}

.le-publication {
  border: 1px solid var(--le-border-light);
  border-radius: var(--le-radius-md);
  padding: var(--le-space-4);
  background-color: #ffffff;
  box-shadow: var(--le-shadow-sm);
}

.le-publication h3 {
  margin-top: 0;
}

/* ===== ALERTS ===== */

.le-alert {
  padding: var(--le-space-4);
  border-radius: var(--le-radius-sm);
  border-left: 3px solid;
  margin-bottom: var(--le-space-4);
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
}

.le-alert--success {
  background-color: var(--le-success-bg);
  border-left-color: var(--le-success);
  color: #1b5e20;
}

.le-alert--warning {
  background-color: var(--le-warning-bg);
  border-left-color: var(--le-accent);
  color: #8b6914;
}

.le-alert--error {
  background-color: var(--le-error-bg);
  border-left-color: var(--le-error);
  color: #b71c1c;
}

.le-alert--info {
  background-color: var(--le-info-bg);
  border-left-color: var(--le-info);
  color: #0d47a1;
}

/* ===== LABELS ===== */

.le-label {
  font-family: var(--le-font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--le-text-secondary);
  display: block;
  margin-bottom: var(--le-space-2);
}

/* ===== DIVIDERS ===== */

.le-divider {
  display: flex;
  align-items: center;
  margin: var(--le-space-6) 0;
}

.le-divider::before,
.le-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--le-border);
}

.le-divider__text {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
  padding: 0 var(--le-space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.le-brass-rule {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--le-accent) 20%,
    var(--le-accent) 80%,
    transparent
  );
  margin: var(--le-space-8) 0;
}

/* ===== ACCESSIBILITY ===== */

.le-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.le-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--le-primary);
  color: var(--le-text-inverse);
  padding: var(--le-space-2) var(--le-space-4);
  z-index: 100;
  transition: top var(--le-transition-fast);
}

.le-skip-link:focus {
  top: 0;
}

/* ===== HORIZONTAL NAVIGATION ===== */

.le-nav {
  background-color: var(--le-bg-primary);
  padding: var(--le-space-4) 0;
  position: relative;
  z-index: 100;
}

.le-nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--le-container-xl);
  margin: 0 auto;
  padding: 0 var(--le-space-6);
}

.le-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--le-space-3);
  text-decoration: none;
  color: var(--le-text);
}

.le-nav__logo {
  width: 32px;
  height: 32px;
  background-color: var(--le-accent);
  border-radius: var(--le-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--le-text-inverse);
  font-family: var(--le-font-display);
  font-size: var(--le-text-sm);
  font-weight: 700;
}

.le-nav__brand-text {
  font-family: var(--le-font-display);
  font-size: var(--le-text-lg);
  font-weight: 600;
  color: var(--le-text);
}

.le-nav__links {
  display: flex;
  align-items: center;
  gap: var(--le-space-8);
  list-style: none;
  padding: 0;
  margin: 0;
}

.le-nav__link {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  font-weight: 500;
  color: var(--le-text);
  text-decoration: none;
  transition: color var(--le-transition-fast);
}

.le-nav__link:hover {
  color: var(--le-accent);
}

.le-nav__link--active {
  color: var(--le-primary);
}

.le-nav__cta {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  font-weight: 600;
  padding: var(--le-space-2) var(--le-space-5);
  background-color: var(--le-primary);
  color: var(--le-text-inverse);
  text-decoration: none;
  border-radius: var(--le-radius-sm);
  border: 1px solid var(--le-primary);
  transition: all var(--le-transition-fast);
}

.le-nav__cta:hover {
  background-color: var(--le-primary-light);
}

/* Mobile navigation toggle */
.le-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--le-space-2);
}

.le-nav__hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--le-text);
  position: relative;
}

.le-nav__hamburger::before,
.le-nav__hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--le-text);
  left: 0;
}

.le-nav__hamburger::before {
  top: -7px;
}

.le-nav__hamburger::after {
  bottom: -7px;
}

@media (max-width: 767px) {
  .le-nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--le-bg-primary);
    flex-direction: column;
    padding: var(--le-space-6);
    gap: var(--le-space-4);
    box-shadow: var(--le-shadow-lg);
  }

  .le-nav__links.is-open {
    display: flex;
  }

  .le-nav__toggle {
    display: block;
  }

  .le-nav__cta {
    width: 100%;
    text-align: center;
  }
}

/* ===== FOOTER ===== */

.le-footer {
  background-color: var(--le-bg-secondary);
  padding: var(--le-space-8) var(--le-space-4);
}

.le-footer__container {
  max-width: var(--le-container-lg);
  margin: 0 auto;
}

.le-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--le-space-8);
  margin-bottom: var(--le-space-6);
}

.le-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--le-space-4);
}

.le-footer__links a {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  color: var(--le-text);
  text-decoration: none;
}

.le-footer__links a:hover {
  color: var(--le-accent);
  text-decoration: underline;
}

.le-footer__copyright {
  text-align: center;
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
}

.le-footer__copyright a {
  color: var(--le-primary);
}

/* ===== HEADER & SEARCH ===== */

.le-header {
  background-color: var(--le-bg-primary);
  border-bottom: 1px solid var(--le-border-light);
  padding: var(--le-space-3) var(--le-space-4);
}

@media (min-width: 768px) {
  .le-header {
    padding: var(--le-space-4) var(--le-space-6);
  }
}

.le-header__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: var(--le-container-lg);
  margin: 0 auto;
}

.le-search-form {
  display: flex;
  align-items: center;
  gap: var(--le-space-2);
}

.le-search-input {
  width: 200px;
  padding: var(--le-space-2) var(--le-space-3);
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
  color: var(--le-text);
  background-color: var(--le-bg-secondary);
  border: 1px solid var(--le-border);
  border-radius: var(--le-radius-sm);
  transition: all var(--le-transition-fast);
}

.le-search-input:focus {
  outline: none;
  border-color: var(--le-accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.le-search-input::placeholder {
  color: var(--le-text-tertiary);
}

.le-search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--le-primary);
  color: var(--le-text-inverse);
  border: none;
  border-radius: var(--le-radius-sm);
  cursor: pointer;
  transition: background-color var(--le-transition-fast);
}

.le-search-button:hover {
  background-color: var(--le-primary-light);
}

.le-search-button:focus {
  outline: 2px solid var(--le-accent);
  outline-offset: 2px;
}

/* ===== PAGE HEADER ===== */

.le-page-header {
  text-align: center;
  margin-bottom: var(--le-space-8);
}

.le-page-header--left {
  text-align: left;
}

.le-page-header__title {
  font-family: var(--le-font-display);
  font-size: var(--le-text-4xl);
  font-weight: 700;
  color: var(--le-text);
  margin: 0 0 var(--le-space-3);
  line-height: var(--le-leading-tight);
}

.le-page-header__subtitle {
  font-family: var(--le-font-body);
  font-size: var(--le-text-lg);
  color: var(--le-text-secondary);
  margin: 0;
  line-height: var(--le-leading-relaxed);
}

/* Page Header Compact Variant */
.le-page-header--compact {
  margin-bottom: var(--le-space-4);
}

.le-page-header--compact .le-page-header__title {
  font-size: var(--le-text-2xl);
  margin-bottom: var(--le-space-2);
}

.le-page-header--compact .le-page-header__subtitle {
  font-size: var(--le-text-sm);
}

.le-page-header--compact .le-label {
  margin-bottom: var(--le-space-1);
}

/* ===== HERO SECTION ===== */

.le-hero {
  min-height: calc(100vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--le-space-8) var(--le-space-4) 5rem;
  text-align: center;
  position: relative;
}

@media (max-width: 767px) {
  .le-hero {
    padding: var(--le-space-6) var(--le-space-4);
  }
}

.le-hero__content {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--le-space-4);
}

.le-hero__tagline {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--le-accent);
  margin-bottom: var(--le-space-6);
}

.le-hero__tagline span {
  margin: 0 var(--le-space-2);
}

.le-hero__heading {
  font-family: var(--le-font-display);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--le-text);
  margin: 0 0 var(--le-space-8);
  line-height: 1.1;
}

@media (max-width: 1023px) {
  .le-hero__heading {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .le-hero__heading {
    font-size: 2.5rem;
  }
}

.le-hero__description {
  font-family: var(--le-font-body);
  font-size: var(--le-text-xl);
  color: var(--le-text-secondary);
  margin: 0 0 var(--le-space-10);
  line-height: var(--le-leading-relaxed);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.le-hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--le-space-4);
  flex-wrap: wrap;
}

.le-hero__scroll-indicator {
  position: absolute;
  bottom: var(--le-space-10);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--le-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--le-space-2);
}

.le-hero__scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--le-accent) 0%, transparent 100%);
  animation: le-scroll-pulse 2s var(--le-ease-elegant) infinite;
}

@media (max-width: 767px) {
  .le-hero__scroll-indicator {
    bottom: var(--le-space-4);
  }

  .le-hero__scroll-indicator::after {
    height: 32px;
  }
}

/* Two-column hero variant for inner pages */
.le-hero--split {
  text-align: left;
}

.le-hero--split .le-hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--le-space-8);
  max-width: none;
}

@media (min-width: 768px) {
  .le-hero--split .le-hero__content {
    grid-template-columns: 3fr 1fr;
    gap: var(--le-space-10);
  }
}

.le-hero--split .le-hero__heading {
  font-size: var(--le-text-4xl);
  text-align: left;
}

.le-hero--split .le-hero__description {
  text-align: left;
  margin-left: 0;
}

/* ===== BODY TEXT ===== */

.le-body-text {
  font-family: var(--le-font-body);
  font-size: var(--le-text-base);
  line-height: var(--le-leading-relaxed);
  color: var(--le-text);
  margin: 0 0 var(--le-space-4);
}

.le-body-text--lead {
  font-size: var(--le-text-lg);
}

/* ===== SERVICE GROUPS ===== */

.le-service-group {
  margin-top: var(--le-space-5);
}

.le-service-group__heading {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  font-weight: 600;
  color: var(--le-text);
  margin: 0 0 var(--le-space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.le-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.le-service-list__item {
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
  line-height: var(--le-leading-normal);
  padding: var(--le-space-2) 0;
  padding-left: var(--le-space-4);
  position: relative;
}

.le-service-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 4px;
  height: 4px;
  background-color: var(--le-accent);
  border-radius: 50%;
}

.le-service-list__item a {
  color: var(--le-primary);
  text-decoration: none;
}

.le-service-list__item a:hover {
  text-decoration: underline;
}

/* ===== PRICE TAGS ===== */

.le-price {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  font-weight: 600;
  color: var(--le-primary);
}

.le-price--free {
  color: var(--le-accent);
}

/* ===== AWARD FIGURE ===== */

.le-award {
  margin: 0;
  text-align: center;
}

.le-award img {
  display: block;
  margin: 0 auto;
}

/* ===== ATTORNEY PHOTO ===== */
.le-attorney-photo {
  display: block;
  max-width: 160px;
  margin: var(--le-space-4) auto;
}

.le-attorney-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--le-radius-md);
  box-shadow: var(--le-shadow-sm);
}

.le-award__image {
  max-width: 100%;
  height: auto;
  border-radius: var(--le-radius-md);
  box-shadow: var(--le-shadow-md);
}

.le-award__caption {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-normal);
  margin-top: var(--le-space-4);
}

/* ===== AUTH FORM ===== */

.le-auth-form {
  max-width: var(--le-container-sm);
  margin: 0 auto;
}

.le-auth-form__section {
  margin-bottom: var(--le-space-6);
}

.le-auth-form__footer {
  text-align: center;
  padding-top: var(--le-space-6);
  border-top: 1px solid var(--le-border-light);
}

.le-auth-form__footer a {
  display: block;
  margin-bottom: var(--le-space-4);
}

.le-auth-form__help {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
}

/* ===== ANNOUNCEMENT BANNER ===== */

.le-announcement {
  background-color: var(--le-primary);
  color: var(--le-text-inverse);
  padding: var(--le-space-4) var(--le-space-4);
  text-align: center;
}

.le-announcement__title {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--le-space-2);
}

.le-announcement__text {
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
  line-height: var(--le-leading-normal);
  margin: 0;
  text-align: center;
}

.le-announcement a {
  color: var(--le-accent-light);
  text-decoration: underline;
}

.le-announcement a:hover {
  color: #ffffff;
}

/* ===== SERVICE CARD (Interactive) ===== */

.le-service-fieldset {
  border: none;
  padding: 0;
  margin: var(--le-space-8) 0;
}

.le-service-card {
  display: block;
  background: #ffffff;
  border: 2px solid var(--le-border-light);
  border-radius: var(--le-radius-md);
  margin-bottom: var(--le-space-4);
  cursor: pointer;
  transition: all var(--le-transition-base);
  position: relative;
}

.le-service-card:hover {
  border-color: var(--le-border-dark);
  box-shadow: var(--le-shadow-md);
}

.le-service-card--selected,
.le-service-card:has(.le-service-card__checkbox:checked) {
  border-color: var(--le-accent);
  border-left-width: 4px;
  box-shadow: 0 2px 12px rgba(184, 134, 11, 0.15);
}

/* Reset styles when unchecked (overrides --selected class) */
.le-service-card:has(.le-service-card__checkbox:not(:checked)) {
  border-color: var(--le-border-light);
  border-left-width: 2px;
  box-shadow: var(--le-shadow-sm);
}

.le-service-card__checkbox {
  position: absolute;
  opacity: 0;
  /* Allow clicking on checkbox area */
}

.le-service-card__checkbox:focus + .le-service-card__content {
  outline: 2px solid var(--le-accent);
  outline-offset: 2px;
}

.le-service-card__content {
  padding: var(--le-space-6);
}

.le-service-card__header {
  display: flex;
  align-items: flex-start;
  gap: var(--le-space-4);
  margin-bottom: var(--le-space-4);
}

.le-service-card__indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--le-border-dark);
  border-radius: 3px;
  margin-top: 2px;
  position: relative;
  transition: all var(--le-transition-fast);
}

.le-service-card--selected .le-service-card__indicator,
.le-service-card:has(.le-service-card__checkbox:checked) .le-service-card__indicator {
  background-color: var(--le-accent);
  border-color: var(--le-accent);
}

/* Reset indicator when unchecked */
.le-service-card:has(.le-service-card__checkbox:not(:checked)) .le-service-card__indicator {
  background-color: transparent;
  border-color: var(--le-border-dark);
}

.le-service-card--selected .le-service-card__indicator::after,
.le-service-card:has(.le-service-card__checkbox:checked) .le-service-card__indicator::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Hide checkmark when unchecked */
.le-service-card:has(.le-service-card__checkbox:not(:checked)) .le-service-card__indicator::after {
  content: none;
}

.le-service-card__title-group {
  flex: 1;
}

.le-service-card__title {
  font-family: var(--le-font-display);
  font-size: var(--le-text-xl);
  font-weight: 600;
  color: var(--le-text);
  margin: 0 0 var(--le-space-1);
  line-height: var(--le-leading-snug);
}

.le-service-card__price {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-base);
  font-weight: 600;
  color: var(--le-primary);
}

.le-service-card__price--free {
  color: var(--le-accent);
}

.le-service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--le-space-4);
  padding-left: 36px;
}

.le-service-card__features li {
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
  line-height: var(--le-leading-normal);
  color: var(--le-text-secondary);
  padding: var(--le-space-1) 0;
  padding-left: var(--le-space-4);
  position: relative;
}

.le-service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 4px;
  height: 4px;
  background-color: var(--le-accent);
  border-radius: 50%;
}

.le-service-card__more {
  display: inline-block;
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  font-weight: 500;
  color: var(--le-primary);
  text-decoration: none;
  margin-left: 36px;
  transition: color var(--le-transition-fast);
}

.le-service-card__more::after {
  content: ' →';
  transition: transform var(--le-transition-fast);
  display: inline-block;
}

.le-service-card__more:hover {
  color: var(--le-accent);
}

.le-service-card__more:hover::after {
  transform: translateX(3px);
}

/* Service Card Compact Variant */
.le-service-fieldset--compact {
  margin: var(--le-space-4) 0;
}

.le-service-fieldset--compact .le-service-card {
  margin-bottom: var(--le-space-2);
}

.le-service-fieldset--compact .le-service-card__content {
  padding: var(--le-space-3) var(--le-space-4);
}

.le-service-fieldset--compact .le-service-card__header {
  margin-bottom: var(--le-space-2);
}

.le-service-fieldset--compact .le-service-card__indicator {
  width: 18px;
  height: 18px;
}

.le-service-fieldset--compact .le-service-card__indicator::after {
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
}

.le-service-fieldset--compact .le-service-card__title {
  font-size: var(--le-text-lg);
}

.le-service-fieldset--compact .le-service-card__price {
  font-size: var(--le-text-sm);
}

.le-service-fieldset--compact .le-service-card__features {
  margin: 0 0 var(--le-space-2);
  padding-left: 30px;
}

.le-service-fieldset--compact .le-service-card__features li {
  padding: 0;
  padding-left: var(--le-space-3);
  font-size: var(--le-text-xs);
  line-height: var(--le-leading-snug);
}

.le-service-fieldset--compact .le-service-card__features li::before {
  top: 0.45rem;
  width: 3px;
  height: 3px;
}

.le-service-fieldset--compact .le-service-card__more {
  margin-left: 30px;
  font-size: var(--le-text-base);
}

.le-service-fieldset--compact .le-form-hint {
  font-size: var(--le-text-xs);
  margin-bottom: var(--le-space-1);
}

/* ===== FORM FOOTER ===== */

.le-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--le-space-4);
  padding-top: var(--le-space-6);
  border-top: 1px solid var(--le-border-light);
}

.le-form-footer__help {
  margin-left: auto;
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
}

/* ===== ANIMATIONS ===== */

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

.le-animate-in {
  animation: le-fadeIn 0.4s ease-out forwards;
}

.le-stagger-item {
  opacity: 0;
  animation: le-fadeIn 0.3s ease-out forwards;
}

.le-stagger-item:nth-child(1) { animation-delay: 0.1s; }
.le-stagger-item:nth-child(2) { animation-delay: 0.15s; }
.le-stagger-item:nth-child(3) { animation-delay: 0.2s; }
.le-stagger-item:nth-child(4) { animation-delay: 0.25s; }
.le-stagger-item:nth-child(5) { animation-delay: 0.3s; }

/* ===== SECTION REVEAL ANIMATIONS ===== */

/* Base reveal state - hidden */
.le-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s var(--le-ease-reveal),
    transform 1s var(--le-ease-reveal);
}

/* Revealed state */
.le-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal variants */
.le-reveal--fade {
  transform: none;
}

.le-reveal--slide-left {
  transform: translateX(-60px);
}

.le-reveal--slide-right {
  transform: translateX(60px);
}

.le-reveal--scale {
  transform: scale(0.95);
}

/* Staggered children reveals */
.le-reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--le-ease-reveal),
    transform 0.8s var(--le-ease-reveal);
}

/* Final state for all children */
.le-reveal-stagger.is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.le-reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0.1s; }
.le-reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 0.2s; }
.le-reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 0.3s; }
.le-reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 0.4s; }
.le-reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 0.5s; }
.le-reveal-stagger.is-revealed > *:nth-child(6) { transition-delay: 0.6s; }

/* Hero entrance animation */
@keyframes le-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.le-hero-animate {
  opacity: 0;
  animation: le-hero-reveal 1.2s var(--le-ease-reveal) 0.3s forwards;
}

/* Eyebrow/label entrance */
@keyframes le-fade-slide-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.le-animate-eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: le-fade-slide-up 0.8s var(--le-ease-reveal) 0.5s forwards;
}

/* CTA group entrance */
.le-animate-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: le-fade-slide-up 0.8s var(--le-ease-reveal) 0.9s forwards;
}

/* Scroll indicator pulse */
@keyframes le-scroll-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

.le-scroll-indicator__line {
  animation: le-scroll-pulse 2s var(--le-ease-elegant) infinite;
}

/* ===== PROCESS TIMELINE ===== */

.le-timeline {
  max-width: var(--le-container-md);
  margin: 0 auto;
  position: relative;
  padding-left: var(--le-space-16);
}

/* Vertical timeline line */
.le-timeline__line {
  position: absolute;
  left: 40px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--le-accent) 0%,
    var(--le-accent-light) 50%,
    var(--le-accent) 100%
  );
  opacity: 0.3;
}

/* Timeline step */
.le-timeline__step {
  position: relative;
  padding-left: var(--le-space-12);
  margin-bottom: var(--le-space-12);

  /* Reveal animation */
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--le-ease-reveal);
}

.le-timeline__step.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Step number */
.le-timeline__number {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--le-primary) 0%, var(--le-primary-dark) 100%);
  border-radius: var(--le-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--le-font-display);
  font-size: var(--le-text-3xl);
  font-weight: 600;
  color: var(--le-accent-light);
  box-shadow: var(--le-shadow-lg);
}

/* Step content */
.le-timeline__content h3 {
  font-family: var(--le-font-display);
  font-size: var(--le-text-2xl);
  color: var(--le-text);
  margin-bottom: var(--le-space-3);
}

.le-timeline__content p {
  font-family: var(--le-font-body);
  font-size: var(--le-text-lg);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
}

/* Timeline responsive */
@media (max-width: 768px) {
  .le-timeline {
    padding-left: var(--le-space-10);
  }

  .le-timeline__line {
    left: 20px;
  }

  .le-timeline__step {
    padding-left: var(--le-space-8);
  }

  .le-timeline__number {
    width: 60px;
    height: 60px;
    font-size: var(--le-text-xl);
  }
}

/* ===== SECTION STYLES ===== */

.le-section {
  padding: var(--le-space-24) var(--le-space-4);
}

@media (min-width: 768px) {
  .le-section {
    padding: var(--le-space-32) var(--le-space-8);
  }
}

.le-section__header {
  max-width: var(--le-container-md);
  margin: 0 auto var(--le-space-12);
  text-align: center;
}

.le-section__header h2 {
  font-family: var(--le-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--le-text);
  margin-bottom: var(--le-space-4);
  line-height: var(--le-leading-tight);
}

.le-section__header p {
  font-family: var(--le-font-body);
  font-size: var(--le-text-lg);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
}

/* Alternate section background */
.le-section--alt {
  background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 95, 0.02) 50%, transparent 100%);
}

/* Dark section */
.le-section--dark {
  background: linear-gradient(135deg, var(--le-primary) 0%, var(--le-primary-dark) 100%);
  color: var(--le-text-inverse);
}

.le-section--dark .le-label {
  color: var(--le-accent-light);
}

.le-section--dark h2 {
  color: var(--le-text-inverse);
}

.le-section--dark p {
  color: rgba(250, 248, 245, 0.8);
}

/* ===== HELP CTA ===== */

.le-help-cta {
  text-align: center;
  padding: var(--le-space-8) var(--le-space-4);
  margin: var(--le-space-6) 0;
}

.le-help-cta__text {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
  margin: 0;
}

.le-help-cta__link {
  color: var(--le-accent);
  text-decoration: none;
  font-weight: 500;
}

.le-help-cta__link:hover {
  color: var(--le-accent-light);
  text-decoration: underline;
}

/* ===== DOCUMENT LIST ===== */

.le-document-list {
  margin: var(--le-space-8) 0;
}

.le-document-list__header {
  margin-bottom: var(--le-space-6);
}

.le-document-list__header h3 {
  font-family: var(--le-font-display);
  font-size: var(--le-text-2xl);
  font-weight: 600;
  color: var(--le-text);
  margin: 0 0 var(--le-space-3);
}

.le-document-list__header p {
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
  margin: 0;
}

.le-document-grid {
  display: grid;
  gap: var(--le-space-4);
}

/* ===== DOCUMENT CARD ===== */

.le-document-card {
  background: #ffffff;
  border: 1px solid var(--le-border-light);
  border-left: 3px solid var(--le-accent);
  border-radius: var(--le-radius-md);
  padding: var(--le-space-5);
  transition: box-shadow var(--le-transition-fast);
}

.le-document-card:hover {
  box-shadow: var(--le-shadow-md);
}

.le-document-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--le-space-3);
  margin-bottom: var(--le-space-4);
}

.le-document-card__type {
  font-family: var(--le-font-display);
  font-size: var(--le-text-lg);
  font-weight: 600;
  color: var(--le-text);
}

.le-document-card__status {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--le-space-1) var(--le-space-3);
  border-radius: var(--le-radius-sm);
}

.le-document-card__status--active {
  background-color: var(--le-success-bg);
  color: var(--le-success);
}

.le-document-card__status--expired {
  background-color: var(--le-bg-tertiary);
  color: var(--le-text-secondary);
}

.le-document-card__body {
  margin-bottom: var(--le-space-4);
}

.le-document-card__details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--le-space-2) var(--le-space-4);
  font-size: var(--le-text-sm);
  margin: 0;
}

.le-document-card__details dt {
  font-family: var(--le-font-ui);
  font-weight: 600;
  color: var(--le-text-secondary);
}

.le-document-card__details dd {
  font-family: var(--le-font-body);
  color: var(--le-text);
  margin: 0;
}

.le-document-card__actions {
  padding-top: var(--le-space-4);
  border-top: 1px solid var(--le-border-light);
}

.le-document-card__actions form {
  margin: 0;
}

/* Empty state */
.le-document-empty {
  text-align: center;
  padding: var(--le-space-6) var(--le-space-4);
  color: var(--le-text-secondary);
  font-family: var(--le-font-body);
}

/* ===== COMPACT DOCUMENT ROW (Horizontal Split Cards) ===== */

.le-document-list--compact {
  margin: var(--le-space-6) 0;
}

.le-document-list--compact .le-document-list__header {
  margin-bottom: var(--le-space-4);
}

.le-document-list--compact .le-document-list__header h3 {
  font-size: var(--le-text-xl);
  margin-bottom: var(--le-space-2);
}

.le-document-rows {
  display: flex;
  flex-direction: column;
  gap: var(--le-space-3);
}

.le-doc-row {
  background: #ffffff;
  border: 1px solid var(--le-border-light);
  border-radius: var(--le-radius-md);
  padding: var(--le-space-3) var(--le-space-4);
  transition: box-shadow var(--le-transition-fast);
}

.le-doc-row:hover {
  box-shadow: var(--le-shadow-sm);
}

.le-doc-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--le-space-3);
}

.le-doc-row__type {
  font-family: var(--le-font-display);
  font-size: var(--le-text-base);
  font-weight: 600;
  color: var(--le-text);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.le-doc-row__status {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  font-weight: 500;
  padding: var(--le-space-1) var(--le-space-2);
  border-radius: var(--le-radius-sm);
}

.le-doc-row__status--active {
  background-color: var(--le-success-bg);
  color: var(--le-success);
}

.le-doc-row__status--locked {
  background-color: var(--le-bg-tertiary);
  color: var(--le-text-tertiary);
}

.le-doc-row .le-brass-rule--thin {
  margin: var(--le-space-2) 0;
  height: 1px;
  background: linear-gradient(90deg, var(--le-accent) 0%, var(--le-border-light) 100%);
}

.le-doc-row__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--le-space-4);
  flex-wrap: wrap;
}

.le-doc-row__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--le-space-2) var(--le-space-4);
  flex: 1;
  min-width: 0;
}

.le-doc-row__detail {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
  white-space: nowrap;
}

.le-doc-row__detail strong {
  color: var(--le-text-tertiary);
  font-weight: 500;
  margin-right: var(--le-space-1);
}

.le-doc-row__detail--expires {
  color: var(--le-accent-muted);
}

.le-doc-row__action {
  flex-shrink: 0;
}

.le-doc-row__action form {
  margin: 0;
}

@media (max-width: 640px) {
  .le-doc-row {
    padding: var(--le-space-3);
  }

  .le-doc-row__type {
    font-size: var(--le-text-sm);
  }

  .le-doc-row__content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--le-space-3);
  }

  .le-doc-row__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--le-space-1);
  }

  .le-doc-row__action {
    width: 100%;
  }

  .le-doc-row__action .le-button {
    width: 100%;
  }
}

/* ===== PAGINATION ===== */

.le-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--le-space-4);
  margin-top: var(--le-space-6);
  padding-top: var(--le-space-6);
  border-top: 1px solid var(--le-border-light);
}

.le-pagination__info {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
}

.le-pagination__controls {
  display: flex;
  gap: var(--le-space-2);
}

.le-pagination__btn {
  padding: var(--le-space-2) var(--le-space-3);
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  color: var(--le-text);
  background: transparent;
  border: 1px solid var(--le-border);
  border-radius: var(--le-radius-sm);
  cursor: pointer;
  transition: all var(--le-transition-fast);
}

.le-pagination__btn:hover:not(:disabled) {
  border-color: var(--le-accent);
  color: var(--le-accent);
}

.le-pagination__btn--active {
  background-color: var(--le-primary);
  border-color: var(--le-primary);
  color: var(--le-text-inverse);
}

.le-pagination__btn--active:hover {
  background-color: var(--le-primary-light);
  border-color: var(--le-primary-light);
  color: var(--le-text-inverse);
}

.le-pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.le-pagination__ellipsis {
  padding: var(--le-space-2) var(--le-space-2);
  font-family: var(--le-font-ui);
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
}

@media (max-width: 767px) {
  .le-pagination {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .le-pagination__controls {
    justify-content: center;
  }
}

/* ===== DEFINITION LIST ===== */

.le-definition-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--le-space-2) var(--le-space-4);
  margin: 0;
}

.le-definition-list dt {
  font-family: var(--le-font-ui);
  font-weight: 600;
  color: var(--le-text-secondary);
  font-size: var(--le-text-sm);
}

.le-definition-list dd {
  font-family: var(--le-font-body);
  color: var(--le-text);
  margin: 0;
}

/* ===== BODY LIST ===== */

.le-body-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.le-body-list li {
  padding: var(--le-space-3) 0;
  border-bottom: 1px solid var(--le-border-light);
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
}

.le-body-list li:last-child {
  border-bottom: none;
}

/* ===== ORDERED LIST ===== */

.le-ordered-list {
  counter-reset: le-steps;
  list-style: none;
  padding: 0;
  margin: 0;
}

.le-ordered-list li {
  counter-increment: le-steps;
  position: relative;
  padding-left: var(--le-space-12);
  margin-bottom: var(--le-space-5);
}

.le-ordered-list li::before {
  content: counter(le-steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--le-primary);
  color: var(--le-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--le-font-ui);
  font-weight: 600;
  font-size: var(--le-text-sm);
}

.le-ordered-list li strong {
  display: block;
  color: var(--le-text);
  margin-bottom: var(--le-space-1);
}

/* ===== SERVICES GRID (Homepage) ===== */

.le-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--le-space-8);
  max-width: var(--le-container-lg);
  margin: 0 auto;
}

/* Staggered reveal for service items */
.le-reveal.is-revealed .le-service-item {
  opacity: 1;
  transform: translateY(0);
}

.le-service-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--le-ease-reveal), transform 0.6s var(--le-ease-reveal);
}

.le-reveal.is-revealed .le-service-item:nth-child(1) { transition-delay: 0.1s; }
.le-reveal.is-revealed .le-service-item:nth-child(2) { transition-delay: 0.2s; }
.le-reveal.is-revealed .le-service-item:nth-child(3) { transition-delay: 0.3s; }
.le-reveal.is-revealed .le-service-item:nth-child(4) { transition-delay: 0.4s; }

/* Staggered reveal for attorney aside */
.le-attorney-aside {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--le-ease-reveal), transform 0.6s var(--le-ease-reveal);
  transition-delay: 0.2s;
}

.le-reveal.is-revealed .le-attorney-aside {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .le-services-grid {
    grid-template-columns: 2fr 1fr;
    gap: var(--le-space-10);
  }
}

.le-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--le-space-4);
}

.le-service-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--le-space-3);
  padding: var(--le-space-5);
  background: #ffffff;
  border: 1px solid var(--le-border-light);
  border-left: 3px solid var(--le-accent);
  border-radius: var(--le-radius-md);
  transition: box-shadow var(--le-transition-fast), transform var(--le-transition-fast);
}

.le-service-item:hover {
  box-shadow: var(--le-shadow-md);
  transform: translateY(-2px);
}

.le-service-item__content {
  flex: 1;
  min-width: 200px;
}

.le-service-item__title {
  font-family: var(--le-font-display);
  font-size: var(--le-text-lg);
  font-weight: 600;
  color: var(--le-text);
  margin: 0 0 var(--le-space-2);
}

.le-service-item__description {
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
  margin: 0;
}

.le-service-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--le-space-2);
  text-align: right;
}

.le-service-item__price {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-lg);
  font-weight: 700;
  color: var(--le-primary);
}

.le-service-item__price--free {
  color: var(--le-accent);
  font-size: var(--le-text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.le-service-item__link {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-primary);
  text-decoration: none;
}

.le-service-item__link:hover {
  color: var(--le-accent);
  text-decoration: underline;
}

/* Attorney Aside */
.le-attorney-aside {
  text-align: center;
  padding: var(--le-space-6);
  background: #ffffff;
  border: 1px solid var(--le-border-light);
  border-radius: var(--le-radius-md);
  box-shadow: var(--le-shadow-sm);
  height: fit-content;
  position: sticky;
  top: var(--le-space-6);
}

.le-attorney-aside__photo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 auto var(--le-space-4);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--le-shadow-md);
}

.le-attorney-aside__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.le-attorney-aside__info {
  margin-bottom: var(--le-space-4);
}

.le-attorney-aside__name {
  font-family: var(--le-font-display);
  font-size: var(--le-text-lg);
  font-weight: 600;
  color: var(--le-text);
  margin: 0 0 var(--le-space-2);
}

.le-attorney-aside__credentials {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
  margin: 0;
}

.le-attorney-aside .le-brass-rule {
  margin: var(--le-space-4) 0;
}

.le-attorney-aside__bio {
  font-family: var(--le-font-body);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
  text-align: justify;
  margin: 0;
}

.le-attorney-aside__contact {
  font-family: var(--le-font-body);
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
  margin: 0;
}

.le-attorney-aside__contact a {
  color: var(--le-accent);
  text-decoration: none;
}

.le-attorney-aside__contact a:hover {
  text-decoration: underline;
}

.le-attorney-aside__contact strong {
  color: var(--le-text);
}

@media (max-width: 767px) {
  .le-attorney-aside {
    position: static;
  }
}

/* ===== STEPS LIST (Homepage) ===== */

.le-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: var(--le-container-md);
  margin-left: auto;
  margin-right: auto;
}

.le-steps__item {
  display: flex;
  gap: var(--le-space-5);
  padding: var(--le-space-6) 0;
  border-bottom: 1px solid var(--le-border-light);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--le-ease-reveal), transform 0.6s var(--le-ease-reveal);
}

/* Staggered reveal for steps */
.le-reveal.is-revealed .le-steps__item {
  opacity: 1;
  transform: translateY(0);
}

.le-reveal.is-revealed .le-steps__item:nth-child(1) { transition-delay: 0.1s; }
.le-reveal.is-revealed .le-steps__item:nth-child(2) { transition-delay: 0.2s; }
.le-reveal.is-revealed .le-steps__item:nth-child(3) { transition-delay: 0.3s; }
.le-reveal.is-revealed .le-steps__item:nth-child(4) { transition-delay: 0.4s; }
.le-reveal.is-revealed .le-steps__item:nth-child(5) { transition-delay: 0.5s; }

.le-steps__item:last-child {
  border-bottom: none;
}

.le-steps__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--le-primary) 0%, var(--le-primary-dark) 100%);
  color: var(--le-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--le-font-display);
  font-weight: 600;
  font-size: var(--le-text-xl);
  box-shadow: var(--le-shadow-sm);
}

.le-steps__content {
  flex: 1;
  padding-top: var(--le-space-2);
}

.le-steps__content strong {
  display: block;
  font-family: var(--le-font-display);
  font-size: var(--le-text-lg);
  font-weight: 600;
  color: var(--le-text);
  margin-bottom: var(--le-space-2);
}

.le-steps__content p {
  font-family: var(--le-font-body);
  font-size: var(--le-text-base);
  color: var(--le-text-secondary);
  line-height: var(--le-leading-relaxed);
  margin: 0;
}

@media (max-width: 767px) {
  .le-steps__item {
    gap: var(--le-space-4);
    padding: var(--le-space-5) 0;
  }

  .le-steps__number {
    width: 40px;
    height: 40px;
    font-size: var(--le-text-lg);
  }

  .le-steps__content strong {
    font-size: var(--le-text-base);
  }

  .le-steps__content p {
    font-size: var(--le-text-sm);
  }
}

/* ===== WIZARD PROGRESS ===== */

.le-wizard-progress {
  margin-bottom: var(--le-space-8);
}

.le-wizard-progress__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.le-wizard-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 120px;
}

.le-wizard-progress__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 60%;
  width: 80%;
  height: 3px;
  background: var(--le-border);
}

.le-wizard-progress__step.is-complete:not(:last-child)::after {
  background: var(--le-success);
}

.le-wizard-progress__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--le-bg-tertiary);
  color: var(--le-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--le-font-ui);
  font-weight: 600;
  font-size: var(--le-text-sm);
  margin-bottom: var(--le-space-2);
  position: relative;
  z-index: 1;
}

.le-wizard-progress__step.is-complete .le-wizard-progress__circle {
  background: var(--le-success);
  color: var(--le-text-inverse);
}

.le-wizard-progress__step.is-active .le-wizard-progress__circle {
  background: var(--le-primary);
  color: var(--le-text-inverse);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.2);
}

.le-wizard-progress__label {
  font-family: var(--le-font-ui);
  font-size: var(--le-text-xs);
  color: var(--le-text-secondary);
  text-align: center;
}

.le-wizard-progress__step.is-active .le-wizard-progress__label,
.le-wizard-progress__step.is-complete .le-wizard-progress__label {
  color: var(--le-text);
  font-weight: 500;
}

@media (max-width: 767px) {
  .le-wizard-progress__step {
    max-width: 80px;
  }

  .le-wizard-progress__label {
    font-size: 0.65rem;
  }
}

/* ===== ADDITIONAL FLEX UTILITIES ===== */

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

.le-flex--gap {
  gap: var(--le-space-3);
}

/* ===== STATUS ICONS ===== */

.le-status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto var(--le-space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--le-text-inverse);
}

.le-status-icon--success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.le-status-icon--error {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.le-status-icon--warning {
  background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.le-status-icon--info {
  background: linear-gradient(135deg, var(--le-primary) 0%, var(--le-primary-light) 100%);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.3);
}

/* ===== GUIDANCE LIST ===== */

.le-guidance-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--le-space-4);
}

.le-guidance-list li {
  display: flex;
  gap: var(--le-space-4);
  padding: var(--le-space-4) 0;
  border-bottom: 1px solid var(--le-border-light);
}

.le-guidance-list li:last-child {
  border-bottom: none;
}

.le-guidance-list__icon {
  font-size: 1.5rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
}

.le-guidance-list__content {
  flex: 1;
}

.le-guidance-list__content strong {
  display: block;
  color: var(--le-text);
  margin-bottom: var(--le-space-1);
}

.le-guidance-list__content span {
  font-size: var(--le-text-sm);
  color: var(--le-text-secondary);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .le-reveal,
  .le-reveal-stagger > *,
  .le-hero-animate,
  .le-animate-eyebrow,
  .le-animate-cta,
  .le-timeline__step,
  .le-service-item,
  .le-attorney-aside,
  .le-steps__item {
    transition: none;
    animation: none;
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
