/* ============================================
   LegalPath KZ — style.css
   Flat Design | Teal #0D9488 + Orange #F97316
   Font: Poppins | Mobile-First
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --lp-teal: #0D9488;
  --lp-teal-dark: #0A7A70;
  --lp-teal-light: #5EEAD4;
  --lp-teal-pale: #E6F7F5;
  --lp-orange: #F97316;
  --lp-orange-dark: #D4610F;
  --lp-orange-light: #FED7AA;
  --lp-orange-pale: #FFF7ED;
  --lp-black: #1A1A1A;
  --lp-grey-900: #2D2D2D;
  --lp-grey-700: #4A4A4A;
  --lp-grey-500: #7A7A7A;
  --lp-grey-300: #B0B0B0;
  --lp-grey-100: #F0F0F0;
  --lp-white: #FFFFFF;
  --lp-font: 'Poppins', sans-serif;
  --lp-radius: 6px;
  --lp-transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--lp-font);
  color: var(--lp-grey-700);
  background: var(--lp-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--lp-teal);
  transition: color var(--lp-transition);
}

a:hover {
  color: var(--lp-teal-dark);
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
.lp-heading-xl {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lp-black);
  line-height: 1.25;
}

.lp-heading-lg {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-black);
  line-height: 1.3;
}

.lp-heading-md {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--lp-black);
  line-height: 1.35;
}

.lp-heading-sm {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-grey-900);
  line-height: 1.4;
}

.lp-body-text {
  font-size: 1rem;
  color: var(--lp-grey-700);
  line-height: 1.7;
}

.lp-small-text {
  font-size: 0.875rem;
  color: var(--lp-grey-500);
}

.lp-accent-text {
  color: var(--lp-teal);
  font-weight: 600;
}

/* --- Layout --- */
.lp-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.lp-section {
  padding: 48px 0;
}

.lp-section--teal {
  background: var(--lp-teal-pale);
}

.lp-section--grey {
  background: var(--lp-grey-100);
}

.lp-section--orange {
  background: var(--lp-orange-pale);
}

.lp-section-title {
  text-align: center;
  margin-bottom: 32px;
}

.lp-section-title .lp-heading-lg {
  margin-bottom: 8px;
}

.lp-section-title .lp-body-text {
  max-width: 600px;
  margin: 0 auto;
}

.lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.lp-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* --- Buttons --- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--lp-font);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--lp-radius);
  cursor: pointer;
  transition: background var(--lp-transition), color var(--lp-transition), border-color var(--lp-transition);
}

.lp-btn--primary {
  background: var(--lp-teal);
  color: var(--lp-white);
  border-color: var(--lp-teal);
}

.lp-btn--primary:hover {
  background: var(--lp-teal-dark);
  border-color: var(--lp-teal-dark);
  color: var(--lp-white);
}

.lp-btn--secondary {
  background: var(--lp-orange);
  color: var(--lp-white);
  border-color: var(--lp-orange);
}

.lp-btn--secondary:hover {
  background: var(--lp-orange-dark);
  border-color: var(--lp-orange-dark);
  color: var(--lp-white);
}

.lp-btn--outline {
  background: transparent;
  color: var(--lp-teal);
  border-color: var(--lp-teal);
}

.lp-btn--outline:hover {
  background: var(--lp-teal);
  color: var(--lp-white);
}

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-orange);
  border-color: var(--lp-orange);
}

.lp-btn--ghost:hover {
  background: var(--lp-orange);
  color: var(--lp-white);
}

.lp-btn--block {
  width: 100%;
  justify-content: center;
}

/* --- Header / Navbar --- */
.lp-topbar {
  background: var(--lp-white);
  border-bottom: 2px solid var(--lp-grey-100);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lp-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--lp-teal);
}

.lp-logo iconify-icon {
  font-size: 1.6rem;
  color: var(--lp-orange);
}

.lp-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--lp-white);
  border-bottom: 2px solid var(--lp-grey-100);
  padding: 16px;
  gap: 4px;
}

.lp-nav.is-open {
  display: flex;
}

.lp-nav__link {
  display: block;
  padding: 10px 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lp-grey-700);
  border-radius: var(--lp-radius);
  transition: background var(--lp-transition), color var(--lp-transition);
}

.lp-nav__link:hover,
.lp-nav__link--active {
  color: var(--lp-teal);
  background: var(--lp-teal-pale);
}

.lp-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--lp-grey-700);
}

/* --- Breadcrumbs --- */
.lp-crumbs {
  background: var(--lp-grey-100);
  padding: 10px 0;
}

.lp-crumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
}

.lp-crumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-crumbs__item a {
  color: var(--lp-grey-500);
}

.lp-crumbs__item a:hover {
  color: var(--lp-teal);
}

.lp-crumbs__sep {
  color: var(--lp-grey-300);
}

.lp-crumbs__current {
  color: var(--lp-teal);
  font-weight: 500;
}

/* --- Hero --- */
.lp-hero {
  background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-teal-dark) 100%);
  color: var(--lp-white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--lp-orange);
  border-radius: 50%;
  opacity: 0.12;
}

.lp-hero__content {
  position: relative;
  z-index: 1;
}

.lp-hero__title {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lp-hero__subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 560px;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Cards --- */
.lp-card {
  background: var(--lp-white);
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  transition: border-color var(--lp-transition);
}

.lp-card:hover {
  border-color: var(--lp-teal-light);
}

.lp-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-teal-pale);
  border-radius: var(--lp-radius);
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--lp-teal);
}

.lp-card__icon--orange {
  background: var(--lp-orange-pale);
  color: var(--lp-orange);
}

.lp-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lp-black);
  margin-bottom: 8px;
}

.lp-card__desc {
  font-size: 0.95rem;
  color: var(--lp-grey-500);
  line-height: 1.6;
}

/* --- Service Detail Card --- */
.lp-svc-card {
  background: var(--lp-white);
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-svc-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-svc-card__badge {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-teal);
  color: var(--lp-white);
  border-radius: var(--lp-radius);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.lp-svc-card__name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lp-black);
}

.lp-svc-card__body {
  font-size: 0.95rem;
  color: var(--lp-grey-700);
  line-height: 1.7;
}

.lp-svc-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-svc-card__feat {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--lp-grey-700);
}

.lp-svc-card__feat iconify-icon {
  color: var(--lp-teal);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Pricing --- */
.lp-price-card {
  background: var(--lp-white);
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: border-color var(--lp-transition);
}

.lp-price-card:hover {
  border-color: var(--lp-teal);
}

.lp-price-card--featured {
  border-color: var(--lp-orange);
}

.lp-price-card--featured:hover {
  border-color: var(--lp-orange-dark);
}

.lp-price-card__ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-orange);
  color: var(--lp-white);
  padding: 4px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0 0 var(--lp-radius) var(--lp-radius);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-price-card__plan {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--lp-black);
  margin-bottom: 8px;
  margin-top: 12px;
}

.lp-price-card__amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lp-teal);
  margin-bottom: 4px;
}

.lp-price-card--featured .lp-price-card__amount {
  color: var(--lp-orange);
}

.lp-price-card__period {
  font-size: 0.85rem;
  color: var(--lp-grey-500);
  margin-bottom: 20px;
}

.lp-price-card__perks {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.lp-price-card__perk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--lp-grey-700);
}

.lp-price-card__perk iconify-icon {
  color: var(--lp-teal);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- FAQ / Accordion --- */
.lp-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-accordion__item {
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  overflow: hidden;
}

.lp-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--lp-white);
  border: none;
  padding: 16px 20px;
  font-family: var(--lp-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--lp-black);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--lp-transition);
}

.lp-accordion__trigger:hover {
  background: var(--lp-teal-pale);
}

.lp-accordion__trigger iconify-icon {
  font-size: 1.2rem;
  color: var(--lp-teal);
  transition: transform var(--lp-transition);
  flex-shrink: 0;
}

.lp-accordion__item.is-active .lp-accordion__trigger iconify-icon {
  transform: rotate(180deg);
}

.lp-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.lp-accordion__body {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: var(--lp-grey-700);
  line-height: 1.7;
}

/* --- Reviews --- */
.lp-review {
  background: var(--lp-white);
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
}

.lp-review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--lp-orange);
  font-size: 1.1rem;
}

.lp-review__quote {
  font-size: 0.95rem;
  color: var(--lp-grey-700);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.lp-review__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-teal);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.lp-review__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-black);
}

.lp-review__role {
  font-size: 0.8rem;
  color: var(--lp-grey-500);
}

/* --- Contact Form --- */
.lp-form {
  max-width: 640px;
  margin: 0 auto;
}

.lp-form__row {
  margin-bottom: 18px;
}

.lp-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-grey-900);
  margin-bottom: 6px;
}

.lp-form__input,
.lp-form__textarea,
.lp-form__select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  font-family: var(--lp-font);
  font-size: 0.95rem;
  color: var(--lp-grey-900);
  background: var(--lp-white);
  transition: border-color var(--lp-transition);
  outline: none;
}

.lp-form__input:focus,
.lp-form__textarea:focus,
.lp-form__select:focus {
  border-color: var(--lp-teal);
}

.lp-form__textarea {
  min-height: 130px;
  resize: vertical;
}

.lp-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.lp-form__consent input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--lp-teal);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lp-form__consent-text {
  font-size: 0.85rem;
  color: var(--lp-grey-500);
  line-height: 1.5;
}

.lp-form__consent-text iconify-icon {
  font-size: 0.95rem;
  vertical-align: middle;
  margin-right: 4px;
  color: var(--lp-teal);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Team / Lawyers --- */
.lp-lawyer {
  background: var(--lp-white);
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  padding: 28px 24px;
  text-align: center;
}

.lp-lawyer__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lp-teal-pale);
  color: var(--lp-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.lp-lawyer__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lp-black);
  margin-bottom: 4px;
}

.lp-lawyer__spec {
  font-size: 0.85rem;
  color: var(--lp-teal);
  font-weight: 500;
  margin-bottom: 10px;
}

.lp-lawyer__bio {
  font-size: 0.9rem;
  color: var(--lp-grey-500);
  line-height: 1.6;
}

/* --- Footer --- */
.lp-footer {
  background: var(--lp-grey-900);
  color: var(--lp-grey-300);
  padding: 48px 0 0;
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.lp-footer__brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-footer__brand iconify-icon {
  color: var(--lp-orange);
}

.lp-footer__about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--lp-grey-300);
}

.lp-footer__heading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-white);
  margin-bottom: 14px;
}

.lp-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lp-footer__links a {
  font-size: 0.9rem;
  color: var(--lp-grey-300);
  transition: color var(--lp-transition);
}

.lp-footer__links a:hover {
  color: var(--lp-teal-light);
}

.lp-footer__contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.lp-footer__contact-line iconify-icon {
  color: var(--lp-teal-light);
  font-size: 1.1rem;
}

.lp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--lp-grey-500);
}

/* --- Cookie Banner --- */
.lp-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lp-grey-900);
  color: var(--lp-grey-300);
  padding: 18px 16px;
  z-index: 9999;
  display: none;
}

.lp-cookie-bar.is-visible {
  display: block;
}

.lp-cookie-bar__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-cookie-bar__msg {
  font-size: 0.85rem;
  line-height: 1.5;
}

.lp-cookie-bar__msg a {
  color: var(--lp-teal-light);
  text-decoration: underline;
}

.lp-cookie-bar__accept {
  padding: 8px 24px;
  background: var(--lp-teal);
  color: var(--lp-white);
  border: none;
  border-radius: var(--lp-radius);
  font-family: var(--lp-font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--lp-transition);
}

.lp-cookie-bar__accept:hover {
  background: var(--lp-teal-dark);
}

/* --- Stats / Counters --- */
.lp-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}

.lp-stat {
  padding: 20px;
}

.lp-stat__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lp-teal);
}

.lp-stat__label {
  font-size: 0.85rem;
  color: var(--lp-grey-500);
  margin-top: 4px;
}

/* --- CTA Banner --- */
.lp-cta-banner {
  background: var(--lp-teal);
  color: var(--lp-white);
  padding: 40px 0;
  text-align: center;
}

.lp-cta-banner .lp-heading-lg {
  color: var(--lp-white);
  margin-bottom: 12px;
}

.lp-cta-banner .lp-body-text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Thank You --- */
.lp-thankyou {
  text-align: center;
  padding: 80px 0;
}

.lp-thankyou__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--lp-teal-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--lp-teal);
}

/* --- 404 --- */
.lp-notfound {
  text-align: center;
  padding: 80px 0;
}

.lp-notfound__code {
  font-size: 5rem;
  font-weight: 700;
  color: var(--lp-teal);
  line-height: 1;
  margin-bottom: 12px;
}

.lp-notfound__msg {
  font-size: 1.1rem;
  color: var(--lp-grey-500);
  margin-bottom: 24px;
}

/* --- Legal Pages --- */
.lp-legal {
  padding: 48px 0;
}

.lp-legal h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lp-black);
  margin-bottom: 24px;
}

.lp-legal h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lp-black);
  margin-top: 28px;
  margin-bottom: 12px;
}

.lp-legal p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.lp-legal ul {
  margin-bottom: 14px;
  padding-left: 20px;
}

.lp-legal ul li {
  list-style: disc;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

/* --- About timeline --- */
.lp-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-timeline__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.lp-timeline__marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lp-teal);
  color: var(--lp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lp-timeline__content {
  flex: 1;
}

.lp-timeline__content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-black);
  margin-bottom: 4px;
}

.lp-timeline__content p {
  font-size: 0.9rem;
  color: var(--lp-grey-500);
  line-height: 1.6;
}

/* --- Advantages --- */
.lp-advantage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
}

.lp-advantage__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-orange-pale);
  border-radius: var(--lp-radius);
  font-size: 1.3rem;
  color: var(--lp-orange);
  flex-shrink: 0;
}

.lp-advantage__text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-black);
  margin-bottom: 4px;
}

.lp-advantage__text p {
  font-size: 0.9rem;
  color: var(--lp-grey-500);
  line-height: 1.6;
}

/* --- Map placeholder --- */
.lp-map-frame {
  width: 100%;
  height: 280px;
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  overflow: hidden;
}

.lp-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Misc --- */
.lp-divider {
  height: 2px;
  background: var(--lp-grey-100);
  border: none;
  margin: 32px 0;
}

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

.lp-text-teal {
  color: var(--lp-teal);
}

.lp-text-orange {
  color: var(--lp-orange);
}

.lp-mb-8 { margin-bottom: 8px; }
.lp-mb-16 { margin-bottom: 16px; }
.lp-mb-24 { margin-bottom: 24px; }
.lp-mb-32 { margin-bottom: 32px; }
.lp-mb-48 { margin-bottom: 48px; }
.lp-mt-24 { margin-top: 24px; }
.lp-mt-32 { margin-top: 32px; }

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

/* --- Info box --- */
.lp-infobox {
  background: var(--lp-teal-pale);
  border-left: 4px solid var(--lp-teal);
  padding: 18px 20px;
  border-radius: 0 var(--lp-radius) var(--lp-radius) 0;
  margin-bottom: 20px;
}

.lp-infobox--warning {
  background: var(--lp-orange-pale);
  border-left-color: var(--lp-orange);
}

.lp-infobox p {
  font-size: 0.9rem;
  color: var(--lp-grey-700);
  line-height: 1.6;
}

/* --- Process steps --- */
.lp-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: lp-step;
}

.lp-process__item {
  background: var(--lp-white);
  border: 2px solid var(--lp-grey-100);
  border-radius: var(--lp-radius);
  padding: 24px 20px;
  position: relative;
  counter-increment: lp-step;
}

.lp-process__item::before {
  content: counter(lp-step);
  position: absolute;
  top: -12px;
  left: 20px;
  width: 28px;
  height: 28px;
  background: var(--lp-orange);
  color: var(--lp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-process__item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--lp-black);
  margin-bottom: 6px;
}

.lp-process__item p {
  font-size: 0.9rem;
  color: var(--lp-grey-500);
  line-height: 1.6;
}

/* ==============================
   RESPONSIVE — Tablet (640px+)
   ============================== */
@media (min-width: 640px) {
  .lp-heading-xl {
    font-size: 2.25rem;
  }

  .lp-heading-lg {
    font-size: 1.75rem;
  }

  .lp-hero__title {
    font-size: 2.25rem;
  }

  .lp-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-cookie-bar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .lp-container {
    padding: 0 24px;
  }

  .lp-section {
    padding: 64px 0;
  }

  .lp-hero {
    padding: 72px 0;
  }

  .lp-process {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==============================
   RESPONSIVE — Desktop (960px+)
   ============================== */
@media (min-width: 960px) {
  .lp-heading-xl {
    font-size: 2.75rem;
  }

  .lp-heading-lg {
    font-size: 2rem;
  }

  .lp-hero__title {
    font-size: 2.75rem;
  }

  .lp-hero {
    padding: 88px 0;
  }

  .lp-nav {
    display: flex;
    flex-direction: row;
    position: static;
    border: none;
    padding: 0;
    background: transparent;
    gap: 4px;
  }

  .lp-burger {
    display: none;
  }

  .lp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .lp-container {
    padding: 0 32px;
  }

  .lp-section {
    padding: 80px 0;
  }

  .lp-process {
    grid-template-columns: repeat(4, 1fr);
  }

  .lp-map-frame {
    height: 360px;
  }
}

/* --- Animations (reduced motion safe) --- */
@media (prefers-reduced-motion: no-preference) {
  .lp-card,
  .lp-svc-card,
  .lp-price-card,
  .lp-review,
  .lp-lawyer {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--lp-transition);
  }

  .lp-card.is-visible,
  .lp-svc-card.is-visible,
  .lp-price-card.is-visible,
  .lp-review.is-visible,
  .lp-lawyer.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

[class*="photo"] img,[class*="avatar"] img{width:100%;height:100%;object-fit:cover;border-radius:50%}
[class*="visual"] img{width:100%;height:100%;object-fit:cover;border-radius:12px}

/* === LegalPath Process === */
.lp-process-section{background:#f0fdfa}
.lp-process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;margin-top:2rem}
.lp-process-step{padding:2rem;background:#fff;border-radius:12px;text-align:center;position:relative;border:1px solid #e5e7eb}
.lp-process-num{position:absolute;top:.75rem;right:.75rem;font-size:1.5rem;font-weight:800;color:#0D948833}
.lp-process-step iconify-icon{font-size:1.5rem;color:#0D9488;margin-bottom:.75rem}
.lp-process-step h3{color:#333;margin-bottom:.5rem}
.lp-process-step p{color:#666;font-size:.9rem}
@media(max-width:768px){.lp-process-grid{grid-template-columns:repeat(2,1fr)}}
/* === LegalPath Cases === */
.lp-cases-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:2rem}
.lp-case{background:#fff;border-radius:12px;padding:2rem;border:1px solid #e5e7eb}
.lp-case iconify-icon{font-size:2rem;color:#0D9488;margin-bottom:1rem}
.lp-case h3{color:#333;margin-bottom:.5rem}
.lp-case p{color:#666;font-size:.95rem;margin-bottom:1rem}
.lp-case-tag{background:#0D948822;color:#0D9488;padding:.25rem .75rem;border-radius:20px;font-size:.8rem;font-weight:600}
@media(max-width:768px){.lp-cases-grid{grid-template-columns:1fr}}
