:root {
  --e-global-color-d4d8c94: #1f4d3a;
  --text: #1e2430;
  --light: #f7f4ee;
  --line: #c6a76a;
  --muted: #1f4d3a;
  --accent: #1f4d3a;
  --accent-2: #16382b;
  --beige: #c6a76a;
  --radius-lg: 30px;
  --header-top: 18px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #f7f4ee;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 108px;
}

.container {
  width: min(1240px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.header {
  width: 100%;
  z-index: 10;
   background: #faf4f3;
 box-shadow: 0 8px 24px rgba(180, 140, 60, 0.18);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.nav-shell {
  min-height: var(--header-height);
 padding: 10px 12px 10px 26px;
 width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #c6a76a, #997953);
}
.logo {
    width: 60px;
}
.brand-text {
  font-size: 22px;
  font-weight: 800;
}
.brand-text span {
  color: var(--muted);
  
}
.nav {
  display: flex;
  gap: 2.2rem;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #1e2430;
  opacity: 0.86;
  transition: all .4s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--muted);
  transition: all .4s ease;
}

.cta {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  background-image: linear-gradient(135deg, #1f4d3a 0%, #16382b 55%, #102b21 100%);
  border: 1.5px solid var(--beige);
  border-radius: 999px;
  padding: 16px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(16, 43, 33, 0.42);
  filter: brightness(1.08);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #1f4d3a;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  
  background-size: 100% 100%, 40% 100%;
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
  padding: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: calc(var(--header-height) + 34px);
  width: 100%;
  border-radius: 0;
  padding-left: clamp(18px, 5vw, 68px);
  padding-right: clamp(18px, 5vw, 68px);
  background: url(images/ff.webp);
  background-position: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-content {
  flex: 0 0 52%;
  padding-bottom: 80px;
  padding-right: 34px;
}

.kicker {
  margin: 0;
  color: #1e2430;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.kicker::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  background: radial-gradient(circle at center, var(--muted) 0 2px, transparent 3px);
  box-sizing: border-box;
  flex: 0 0 15px;
}

.hero-content h1 {
  margin: 20px 0 0;
  font-size: clamp(42px, 5.4vw, 84px);
  line-height: 0.95;
  max-width: 20ch;
  font-weight: 500;
}

.lead {
  margin: 24px 0 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: #667085;
  max-width: 53ch;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, filter 0.25s ease;
}

.btn-primary {
  color: #fff;
 background-image: linear-gradient(135deg, #1f4d3a 0%, #16382b 55%, #102b21 100%);
  border: 1.5px solid var(--beige);
  box-shadow: 0 12px 26px rgba(16, 43, 33, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 43, 33, 0.46);
  filter: brightness(1.08);
}

.btn-ghost {
  color: #1e2430;
  background: #ffffff;
  border: 1.5px solid var(--beige);
  box-shadow: 0 6px 16px rgba(30, 36, 48, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  padding: 14px 34px;
  font-weight: 700;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: #dac8ae;
  color: #0f2d22;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(30, 36, 48, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-ghost i {
  font-size: 1.25rem;
  color: #0f2d22;
}

.btn-icon::before {
  content: none;
}

.btn-icon i {
  font-size: 0.95em;
  line-height: 1;
}

.btn-icon span {
  line-height: 1;
}

.hero-visual {
  flex: 0 0 48%;
  align-self: end;
  width: min(660px, 100%);
  min-height: 560px;
  display: flex;
  align-items: end;
  justify-content: flex-start;
 
  margin-left: -30px;
   transform: translateX(-96px);
}

.hero-visual img {
  width: min(720px, 118%);
  max-height: 780px;
  object-fit: cover;
  object-position: bottom 42%;
 
}

@media (max-width: 1200px) {
  .nav {
    gap: 1.4rem;
  }

  .brand-text {
    font-size: 20px;
  }

  .cta {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .nav {
    gap: 0.9rem;
  }

  .hero-grid {
    flex-direction: column-reverse;
    align-items: flex-start;
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 24px;
    background-image: url("images/green.webp");
    background-size: cover;
  }

  .hero-content {
    padding-bottom: 0;
    padding-right: 0;
    flex: 1 1 auto;
    max-width: 100%;
  }

  .hero-visual {
    flex: 1 1 auto;
    max-width: 560px;
    width: 100%;
    min-height: 430px;
    margin-left: 0;
    margin-inline: auto;
    justify-content: center;
  }

  .hero-visual img {
    width: min(560px, 100%);
    max-height: 620px;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: calc(var(--header-height) + 4px);
    left: 1.2rem;
    right: 1.2rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: grid;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    z-index: 20;
  }

  .nav a {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav.open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 9vw, 64px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .btn {
    font-size: 16px;
    padding: 12px 22px;
  }

  .hero-visual {
    max-width: 100%;
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-top: 10px;
    --header-height: 72px;
  }

  .container {
    width: min(1240px, calc(100% - 1.1rem));
  }

  .nav-shell {
    padding: 8px 10px 8px 14px;
    border-radius: 18px;
    min-height: var(--header-height);
  }

  .brand-text {
    font-size: 18px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .hero-grid {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: calc(var(--header-height) + 14px);
    
  }

  .kicker {
    font-size: 15px;
    gap: 10px;
  }

  .kicker::before {
    width: 15px;
    height: 15px;
    border-width: 2px;
    flex-basis: 15px;
  }

  .lead {
    font-size: 16px;
    max-width: none;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual img {
    width: min(420px, 100%);
    max-height: 420px;
  }
}

/* Assist section */
.assist-section {
    margin-top: -105px;
    position: relative;
    z-index: 2;
}

.assist-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 20px;
  align-items: stretch;
}

.assist-left,
.assist-right {
  border-radius: 42px;
  padding: 42px;
}

.assist-left {
  background: #16382b;
  color: #fff;
  position: relative;
  box-shadow: 0 16px 40px rgba(30, 36, 48, 0.16);
}
.assist-left-bc{
  position: absolute;
  inset: 0;
 width: 100%;
  border-radius: 42px;
  background-image: url("https://kit.baliniz.com/payze/wp-content/uploads/sites/27/2022/06/bg-4-e1655014388310.jpg");
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
opacity: 0.4;
}
.assist-left-content{
  position: relative;
  z-index: 1;
}
.assist-left h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.06;
}

.assist-left p {
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.assist-form {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  
}

.assist-form input {
  flex: 1 1 280px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  padding: 0 22px;
  outline: none;
}

.assist-form input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.assist-form button {
  height: 52px;
  border-radius: 999px;
  border: 1.5px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-image: linear-gradient(135deg, #1f4d3a 0%, #16382b 55%, #102b21 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  padding: 0 32px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, filter 0.25s ease;
}

.assist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(16, 43, 33, 0.42);
}

.assist-right {
  background: #ffffff;
  border: 1px solid rgba(30, 36, 48, 0.08);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
    box-shadow: 0 16px 40px rgba(30, 36, 48, 0.08);
}

.assist-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0px;
}

.assist-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #667085;
  font-size: 14px;
  text-transform: none;
}

.assist-list i {
  color: var(--muted);
  font-size: 18px;
}

.assist-copy h3 {
  margin: 0;
  color: #1e2430;
   font-size: 22px;
  line-height: 1.08;
}

.assist-copy p {
  margin: 16px 0 0;
  color: #667085;
 font-size: 16px;
  line-height: 1.55;
}

.assist-copy a {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #1f4d3a;
  font-weight: 800;
  font-size: 20px;
}
.assist-copy i {
  font-size: 16px;

}


@media (max-width: 1024px) {
  .assist-grid {
    grid-template-columns: 1fr;
  }

  .assist-left,
  .assist-right {
    border-radius: 28px;
    padding: 26px;
  }

  .assist-right {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .assist-section {
    padding: 34px 0 60px;
  }

  .assist-left h2 {
    font-size: 30px;
  }

  .assist-left p {
    font-size: 17px;
  }

  .assist-form input,
  .assist-form button {
    width: 100%;
  }

  .assist-form button {
    height: 54px;
    font-size: 17px;
  }

  .assist-list li {
    font-size: 16px;
  }

  .assist-copy p {
    font-size: 16px;
  }

  .assist-copy a {
    font-size: 22px;
  }
}

/* Expertise section */
.expertise-section {
  padding: 105px 0 40px;
  background: #f7f4ee;
}

.expertise-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 4.2vw, 70px);
  align-items: center;
}

.expertise-media {
  position: relative;
  
}

.expertise-photo-main,
.expertise-photo-small {
  margin: 0;
  border-radius: 40px;
  overflow: hidden;
 
}

.expertise-photo-main {
  width: 80%;
  margin: 0 0 0 auto;
  height: 630px;
}

.expertise-photo-small {
  position: absolute;
  left: 0px;
  top: 22%;
  width: min(56%, 320px);
  height: 420px;
  border-style: solid;
border-width: 20px 20px 20px 0px;
border-color: #f6f4ee;
border-radius: 60px 60px 60px 60px;
  z-index: 2;
}

.expertise-photo-main img,
.expertise-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-badge {
  position: absolute;
 left: 196px;
bottom: 40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-image: linear-gradient(340deg, var(--muted) 30%, var(--accent-2) 100%);
  color: #fff;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  
  z-index: 3;
  box-shadow: 0 16px 36px rgba(153, 121, 83, 0.38);
}
.expertise-content {
    height: 100%;
   
}
.expertise-badge strong {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
}

.expertise-badge span {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.expertise-content .kicker {
  margin-bottom: 20px;
  font-size: 16px;
}

.expertise-content h2 {
  margin: 0;
  font-size: 36px;
line-height: 1.06;
font-weight: 600;
}

.expertise-content > p {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: #667085;
  
}

.expertise-list {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}

.expertise-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
}

.expertise-icon {
  width: 65px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #d9d6d1;
  color: var(--muted);
  display: grid;
  place-items: center;
  font-size: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, filter 0.25s ease;
}

.expertise-icon-filled {
  background-image: linear-gradient(340deg, var(--muted) 30%, var(--accent-2) 100%);
  border-color: transparent;
  color: #fff;
}

.expertise-list li:hover .expertise-icon {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--beige);
  
  box-shadow: 0 10px 22px rgba(31, 77, 58, 0.14);
  background-color: #fff;
}

.expertise-list li:hover .expertise-icon-filled {
  filter: brightness(1.08);
  box-shadow: 0 12px 26px rgba(22, 56, 43, 0.32);
}

.expertise-list h3 {
  margin: 4px 0 0;
 font-size: 24px;
  line-height: 1.1;
}

.expertise-list p {
  margin: 8px 0 0;
 font-size: 16px;
  line-height: 1.4;
  color: #667085;
}

/* Stats section */
.stats-section {
  padding: 10px 0 0px;
  background: #f7f4ee;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 26px 14px;
}

.stat-value {
  margin: 0;
  font-size: 34px;
  line-height: 0.95;
  font-weight: 700;
  color: #1e2430;
  letter-spacing: 0.01em;
}

.stat-value .counter {
  display: inline-block;
}

.counter[data-suffix]::after {
  content: attr(data-suffix);
  margin-left: 0.16em;
  color: var(--muted);
}

.expertise-badge .counter[data-suffix]::after {
  color: #fff;
}

.stat-label {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.2;
  color: #667085;
}

/* Services section */
.services-section {
  padding: 22px 0 110px;
  background: #f7f4ee;
}

.services-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 40px;
}

.services-head .kicker {
  justify-content: center;
}

.services-head h2 {
  margin: 18px 0 0;
 font-size: 36px;
line-height: 1.06;
}

.services-head > p {
  margin: 18px auto 0;
  max-width: 58ch;
  font-size: 20px;
  line-height: 1.55;
  color: #667085;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 20px;
}

.service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(30, 36, 48, 0.09);
  border-radius: 34px;
  padding: 56px 34px 30px;
  min-height: 200px;
  box-shadow: 0 14px 36px rgba(30, 36, 48, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-icon {
  position: absolute;
  top: -26px;
  left: 34px;
 width: 64px;
height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 30px;
  background-image: linear-gradient(135deg, #2b6650 0%, #16382b 58%, #102b21 100%);
  border: 2px solid var(--beige);
  box-shadow: 0 10px 26px rgba(22, 56, 43, 0.34);
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.service-card p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.45;
}

.service-card a {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
 font-size: 20px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: none;
}

.service-card a i {
  font-size: 0.88em;
  transition: transform 0.28s ease;
}

.service-card--promo {
  background-image: linear-gradient(135deg, #2b6650 0%, #16382b 58%, #102b21 100%);
  border-color: var(--beige);
  box-shadow: 0 18px 40px rgba(22, 56, 43, 0.28);
}

.service-card--promo h3,
.service-card--promo p {
  color: #fff;
}

.service-card--promo .service-cta {
  margin-top: 26px;
  background: #fff;
  color: var(--accent-2);
  border: 1.5px solid var(--beige);
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 20px;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(198, 167, 106, 0.55);
  box-shadow: 0 18px 40px rgba(22, 56, 43, 0.14);
}

.service-card:hover a i {
  transform: translateX(3px);
}

/* Reviews section */
.reviews-section {
  position: relative;
  padding: 72px 0 96px;
  background-image: url("./images/green.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.reviews-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 28, 22, 0.72), rgba(12, 28, 22, 0.58));
}

.reviews-inner {
  position: relative;
  z-index: 1;
}

.reviews-head {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 34px;
}

.reviews-head .kicker {
  justify-content: center;
  color: #ffffff;
}

.reviews-head .kicker::before {
  border-color: var(--beige);
  background: radial-gradient(circle at center, var(--beige) 0 2px, transparent 3px);
}

.reviews-head h2 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.12;
}

.reviews-head p {
  margin: 16px auto 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.45;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.review-video-card {
  display: none;
  position: relative;
  padding: 0;
  border-radius: 26px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.review-video-card.is-visible {
  display: block;
}

.review-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  display: block;
  background: #0f1622;
  border: 0;
  box-shadow: 0 16px 34px rgba(8, 15, 24, 0.35);
  object-fit: cover;
}

.review-video-card p {
  display: none;
}

.review-video-card::after {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  margin: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(20, 44, 35, 0.58);
  border: 1.5px solid rgba(198, 167, 106, 0.9);
  box-shadow: 0 12px 24px rgba(10, 18, 30, 0.28);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.review-video-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.reviews-more {
  margin: 28px auto 0;
  display: inline-flex;
}

.reviews-more i {
  transition: transform 0.25s ease;
}

.reviews-more.is-collapse i {
  transform: rotate(180deg);
}

/* Law center section */
.law-center-section {
  padding: 84px 0 96px;
  background: #f7f4ee;
}

.law-center-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.law-center-copy h2 {
  margin: 16px 0 0;
 font-size: 36px;
  line-height: 1.12;
}

.law-center-copy p {
  margin: 16px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}

.law-center-points {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.law-center-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1e2430;
  font-weight: 700;
  font-size: 17px;
}

.law-center-points i {
  color: var(--muted);
}

.law-center-media {
  position: relative;
 
}

.law-center-photo-main,
.law-center-photo-small {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  
}

.law-center-photo-main {
  width: min(100%, 500px);
  
  margin-left: auto;
}

.law-center-photo-small {
  position: absolute;
  left: -18px;
  bottom: 26px;
  width: min(48%, 240px);
  height: 290px;
  border: 10px solid #f7f4ee;
}

.law-center-photo-main img,
.law-center-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contacts section */
.contacts-section {
  padding: 88px 0 92px;
  background: #f7f4ee;
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, 0.9fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.contacts-info h2 {
  margin: 16px 0 0;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.12;
}

.contacts-info > p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 18px;
  line-height: 1.55;
  max-width: 52ch;
}

.contact-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(30, 36, 48, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
}

.contact-list i {
  width: 22px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}

.contact-list a {
  color: #1e2430;
  text-decoration: none;
  font-weight: 600;
}

.contacts-social {
  margin-top: 16px;
}

.contacts-social > p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #667085;
}

.contacts-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px;
  text-decoration: none;
  border: 1px solid rgba(30, 36, 48, 0.1);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(30, 36, 48, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: auto -16% -120% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 167, 106, 0.2), transparent 68%);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  flex: 0 0 38px;
  background-image: linear-gradient(135deg, #1f4d3a 0%, #16382b 100%);
}

.social-meta {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.social-meta strong {
  color: #1e2430;
  font-size: 15px;
  line-height: 1.2;
}

.social-meta small {
  color: #667085;
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 167, 106, 0.55);
  box-shadow: 0 14px 28px rgba(22, 56, 43, 0.14);
}

.social-card--telegram .social-icon {
  background-image: linear-gradient(135deg, #2aabee 0%, #1f89bd 100%);
}

.social-card--youtube .social-icon {
  background-image: linear-gradient(135deg, #ff3434 0%, #c70000 100%);
}

.social-card--tiktok .social-icon {
  background-image: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
}

.social-card--instagram .social-icon {
  background-image: linear-gradient(135deg, #fd5949 0%, #d6249f 45%, #285aeb 100%);
}

.contacts-form-card {
  background: #fff;
  border: 1px solid rgba(30, 36, 48, 0.1);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 34px rgba(30, 36, 48, 0.08);
}

.contacts-form-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #667085;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #d9d6d1;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #1e2430;
  background: #fff;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--muted);
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.12);
}

.contact-form .btn {
  width: max-content;
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background: #112b22;
  color: #e8eaf0;
  padding: 24px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.footer-brand .logo {
  width: 42px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #d9e0eb;
  text-decoration: none;
  font-weight: 600;
}

.footer-copy {
  margin: 0;
  color: #b9c2cf;
  font-size: 14px;
  text-align: right;
}

/* Experience section */
.experience-section {
  padding: 24px 0 20px;
  background: #f7f4ee;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.experience-visual {
  position: sticky;
  top: 110px;
  min-height: 620px;
}

.experience-phone {
  width: min(100%, 460px);
  margin-left: auto;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(22, 56, 43, 0.24);
}

.experience-phone img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.experience-card {
  position: absolute;
  left: 0;
  border-radius: 20px;
  border: 1px solid var(--beige);
  background: #fff;
  box-shadow: 0 12px 28px rgba(30, 36, 48, 0.12);
  padding: 14px 18px;
  max-width: 220px;
}

.experience-card strong {
  display: block;
  color: #1e2430;
  font-size: 28px;
  line-height: 1;
}

.experience-card span {
  display: block;
  margin-top: 8px;
  color: #667085;
  font-size: 14px;
  line-height: 1.3;
}

.experience-card--top {
  top: 22px;
}

.experience-card--mid {
  top: 240px;
}

.experience-card--bottom {
  bottom: 24px;
}

.experience-content h2 {
  margin: 16px 0 0;
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.08;
}

.experience-timeline {
  position: relative;
  margin-top: 26px;
  padding-left: 36px;
  display: grid;
  gap: 16px;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, #1f4d3a 0%, #c6a76a 100%);
}

.experience-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(30, 36, 48, 0.08);
  border-left: 3px solid #1f4d3a;
  border-radius: 4px;
  padding: 16px 20px 18px;
  box-shadow: 0 8px 22px rgba(30, 36, 48, 0.06);
}

.experience-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 26px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1f4d3a;
}

.experience-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.experience-item .period {
  margin: 8px 0 0;
  color: #1f4d3a;
  font-size: 16px;
  font-weight: 700;
}

.experience-item p {
  margin: 10px 0 0;
  color: #3e4758;
  font-size: 16px;
  line-height: 1.45;
}

/* Experience section v2 */
.experience-section {
  padding: 24px 0 20px;
  background: #f7f4ee;
}

.experience-plain {
  max-width: 1060px;
}

.experience-plain h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.08;
}

.experience-steps {
  position: relative;
  margin-top: 26px;
  padding-left: 98px;
}

.experience-steps::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 8px;
  bottom: 20px;
  border-left: 4px dashed rgba(31, 77, 58, 0.45);
}

.experience-step {
  position: relative;
  padding: 0 0 44px;
}

.experience-step:last-child {
  padding-bottom: 0;
}

.experience-step::before {
  content: "";
  position: absolute;
  left: -74px;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(160deg, #2b6650 0%, #16382b 100%);
  box-shadow: 0 0 0 6px #f7f4ee;
}

.experience-step h3 {
  margin: 0;
  font-size: clamp(42px, 3.5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  color: #1e2430;
}

.experience-step .period {
  margin: 10px 0 0;
  color: #1f4d3a;
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 700;
}

.experience-step p {
  margin: 12px 0 0;
  color: #667085;
  font-size: clamp(28px, 2.3vw, 38px);
  line-height: 1.35;
  max-width: 34ch;
}

@media (max-width: 1200px) {
  .expertise-media {
    min-height: 700px;
  }

  .expertise-photo-main {
    height: 640px;
  }

  .expertise-photo-small {
    left: -30px;
    width: min(50%, 270px);
    height: 360px;
  }

  .expertise-badge {
    left: 120px;
    width: 190px;
    height: 190px;
  }

  .expertise-badge strong {
    font-size: 44px;
  }

  .expertise-badge span {
    font-size: 18px;
  }

  .expertise-content .kicker {
    font-size: 30px;
  }

  .expertise-content h2 {
    font-size: clamp(32px, 3.2vw, 48px);
  }

  .expertise-content > p {
    font-size: 22px;
  }

  .expertise-list h3 {
    font-size: 30px;
  }

  .expertise-list p {
    font-size: 20px;
  }

  .stats-strip {
    gap: 12px;
  }

  .stat-value {
    font-size: clamp(36px, 4vw, 56px);
  }

  .stat-label {
    font-size: clamp(18px, 1.7vw, 24px);
  }

  .services-head h2 {
    font-size: 36px;
  }

  .services-head > p {
    font-size: 18px;
  }

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

  .service-card h3 {
    font-size: 30px;
  }

  .service-card p,
  .service-card a {
    font-size: 19px;
  }

  .experience-step h3 {
    font-size: clamp(34px, 4.4vw, 52px);
  }

  .experience-step p {
    font-size: clamp(22px, 2.8vw, 32px);
  }

  .reviews-slider {
    grid-auto-columns: minmax(220px, 248px);
  }
}

@media (max-width: 1024px) {
  .expertise-section {
    padding: 34px 0 80px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-media {
    min-height: auto;
    padding-bottom: 120px;
    max-width: 640px;
    margin: 0 auto;
  }

  .expertise-photo-main {
    width: 100%;
    max-width: 560px;
    height: 560px;
    margin: 0 auto;
  }

  .expertise-photo-small {
    left: 8px;
    bottom: 96px;
    width: 42%;
    max-width: 260px;
    height: 300px;
  }

  .expertise-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .expertise-content {
    max-width: 760px;
    margin: 0 auto;
  }

  .stats-section {
    padding: 4px 0 10px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
  }

  .stat-card {
    padding: 18px 8px;
  }

  .stat-label {
    margin-top: 12px;
  }

  .services-section {
    padding: 14px 0 84px;
  }

  .services-grid {
    gap: 20px;
  }

  .service-card {
    min-height: 280px;
    padding: 68px 24px 24px;
    border-radius: 28px;
  }

  .service-icon {
    width: 74px;
    height: 74px;
    top: -22px;
    left: 24px;
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 28px;
  }

  .service-card p {
    font-size: 18px;
  }

  .service-card a {
    font-size: 20px;
  }

  .experience-section {
    padding: 12px 0 16px;
  }

  .experience-steps {
    padding-left: 74px;
  }

  .experience-steps::before {
    left: 26px;
  }

  .experience-step {
    padding-bottom: 34px;
  }

  .experience-step::before {
    left: -58px;
    width: 18px;
    height: 18px;
  }

  .experience-step h3 {
    font-size: clamp(30px, 6.4vw, 42px);
  }

  .experience-step .period {
    font-size: clamp(18px, 3.8vw, 26px);
  }

  .experience-step p {
    font-size: clamp(20px, 4vw, 28px);
  }
}

@media (max-width: 640px) {
  .expertise-section {
    padding: 24px 0 56px;
  }

  .expertise-media {
    padding-bottom: 90px;
  }

  .expertise-photo-main {
    height: 430px;
    border-radius: 24px;
  }

  .expertise-photo-small {
    border-radius: 20px;
    left: 0;
    bottom: 78px;
    width: 48%;
    height: 220px;
    border-width: 4px;
  }

  .expertise-badge {
    width: 142px;
    height: 142px;
    padding: 18px;
    bottom: 4px;
  }

  .expertise-badge strong {
    font-size: 30px;
  }

  .expertise-badge span {
    margin-top: 4px;
    font-size: 12px;
  }

  .expertise-content .kicker {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .expertise-content h2 {
    font-size: clamp(30px, 8.2vw, 42px);
  }

  .expertise-content > p {
    margin-top: 16px;
    font-size: 18px;
  }

  .expertise-list {
    margin-top: 24px;
    gap: 16px;
  }

  .expertise-list li {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .expertise-icon {
    width: 52px;
    font-size: 18px;
  }

  .expertise-list h3 {
    margin-top: 0;
    font-size: 22px;
  }

  .expertise-list p {
    font-size: 16px;
  }

  .stats-section {
    padding: 0 0 14px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat-card {
    padding: 14px 0;
  }

  .stat-value {
    font-size: clamp(38px, 12vw, 54px);
  }

  .stat-label {
    margin-top: 10px;
    font-size: clamp(18px, 5.4vw, 24px);
  }

  .services-section {
    padding: 8px 0 58px;
  }

  .services-head {
    margin-bottom: 28px;
  }

  .services-head h2 {
    font-size: clamp(30px, 8.2vw, 40px);
  }

  .services-head > p {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 62px 20px 22px;
    border-radius: 24px;
  }

  .service-icon {
    width: 66px;
    height: 66px;
    top: -20px;
    left: 20px;
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .service-card p {
    font-size: 17px;
  }

  .service-card a {
    font-size: 18px;
  }

  .service-card--promo .service-cta {
    font-size: 17px;
    padding: 12px 20px;
  }

  .experience-section {
    padding: 8px 0 62px;
  }

  .experience-steps {
    margin-top: 18px;
    padding-left: 44px;
  }

  .experience-steps::before {
    left: 14px;
    border-left-width: 3px;
  }

  .experience-step {
    padding-bottom: 24px;
  }

  .experience-step::before {
    left: -33px;
    top: 4px;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 0 4px #f7f4ee;
  }

  .experience-step h3 {
    font-size: clamp(24px, 8.2vw, 34px);
  }

  .experience-step .period {
    margin-top: 8px;
    font-size: clamp(16px, 4.8vw, 22px);
  }

  .experience-step p {
    margin-top: 8px;
    font-size: clamp(16px, 5vw, 22px);
    max-width: none;
  }
}

/* Experience section final layout */
.experience-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: start;
}

.experience-visual-v2 {
    position: relative;
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.law-center-points {
    width: 100%;
}
.law-center-photo-small{

}
.law-center-copy {
    display: flex;
    flex-direction: column;
  
}

.experience-device {
  width: min(100%, 520px);
  margin-left: auto;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 26px 62px rgba(30, 36, 48, 0.2);
}

.experience-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.exp-float {
  position: absolute;
  left: 0;
  width: 200px;
  height: 132px;
  border-radius: 20px;
  border: 1.5px solid var(--beige);
  box-shadow: 0 14px 34px rgba(30, 36, 48, 0.16);
}

.exp-float--dark {
  top: 82px;
  background: linear-gradient(135deg, #111922 0%, #0c1219 100%);
}

.exp-float--green {
  top: 300px;
  background: linear-gradient(135deg, #2b6650 0%, #1f4d3a 100%);
}

.exp-float--gold {
  top: 518px;
  background: linear-gradient(135deg, #d4b078 0%, #c6a76a 100%);
}

.experience-content-v2 h2 {
  margin: 14px 0 0;
 font-size: 36px;
line-height: 1.06;
 
}
.experience-content-v2 .kicker{
 color: #667085;
  font-size: 16px;
}
.experience-intro {
  margin: 18px 0 0;
 font-size: 18px;
line-height: 1.35;
color: #667085;
  max-width: 90%;
}
img.logo{
  width: 44px;
  height: 44px;
}
.experience-content-v2 .experience-steps {
  margin-top: 24px;
  padding-left: 82px;
}

.experience-content-v2 .experience-steps::before {
  left: 30px;
  top: 12px;
  bottom: 26px;
  border-left: 3px dashed rgba(31, 77, 58, 0.45);
}

.experience-content-v2 .experience-step {
  padding: 0 0 24px;
  transition: transform 0.28s ease;
}

.experience-content-v2 .experience-step::before {
    left: -59.5px;
    top: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(160deg, #2b6650 0%, #16382b 100%);
    box-shadow: 0 0 0 5px #f7f4ee;
}

.experience-content-v2 .experience-step h3 {
  margin: 0;
 font-size: 20px;
  line-height: 1.12;
  color: #1e2430;
  transition: color 0.28s ease;
}

.experience-content-v2 .experience-step p {
  margin: 10px 0 0;
  color: #667085;
 font-size: 16px;
line-height: 1.2;
max-width: 52ch;
}

.experience-content-v2 .experience-step:hover {
  transform: translateX(6px);
}

.experience-content-v2 .experience-step:hover h3 {
  color: #16382b;
}

/* Floating back-to-top button */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--beige);
  border-radius: 50%;
  background-image: linear-gradient(135deg, #1f4d3a 0%, #16382b 55%, #102b21 100%);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, filter 0.25s ease;
  box-shadow: 0 10px 24px rgba(16, 43, 33, 0.34);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  filter: brightness(1.08);
}

@media (max-width: 1200px) {
  .experience-layout {
    
  }

  .experience-visual-v2 {
    min-height: 0;
    max-width: 640px;
    margin: 0 auto;
  }

  .experience-device {
    margin: 0 auto;
  }

  .exp-float {
    left: 10px;
    width: 178px;
    height: 118px;
  }

  .exp-float--dark {
    top: 78px;
  }

  .exp-float--green {
    top: 266px;
  }

  .exp-float--gold {
    top: 454px;
  }

  .law-center-grid {
   
  }

  .law-center-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .law-center-photo-main {
    margin: 0 auto;
  }

  .law-center-photo-small {
    left: 8px;
  }
}

@media (max-width: 1024px) {
  .experience-device img {
    height: 620px;
  }

  .experience-content-v2 .experience-step h3 {
    font-size: clamp(28px, 5.8vw, 40px);
  }

  .experience-content-v2 .experience-step p {
    font-size: clamp(18px, 3.7vw, 24px);
  }

  .reviews-section {
    padding: 58px 0 74px;
  }

  .reviews-slider-wrap {
    padding: 0 10px;
  }

  .reviews-nav {
    display: none;
  }

  .reviews-slider {
    grid-auto-columns: minmax(200px, 228px);
    gap: 14px;
  }

  .review-video-card p {
    font-size: 15px;
  }

  .law-center-section {
    padding: 58px 0 74px;
  }

  .law-center-media {
  
  }

  .law-center-photo-main {
    height: 470px;
  }

  .law-center-photo-small {
    width: min(44%, 220px);
    height: 240px;
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .experience-layout {
    gap: 18px;
  }

  .experience-visual-v2 {
   
  }

  .experience-content-v2 .experience-steps {
    padding-left: 38px;
    margin-top: 18px;
  }

  .experience-content-v2 .experience-steps::before {
    left: 12px;
    border-left-width: 2px;
  }

  .experience-content-v2 .experience-step {
    padding-bottom: 20px;
  }

  .experience-content-v2 .experience-step::before {
    left: -30px;
    top: 7px;
    width: 13px;
    height: 13px;
    box-shadow: 0 0 0 4px #f7f4ee;
  }

  .experience-content-v2 .experience-step h3 {
    font-size: clamp(24px, 7.4vw, 32px);
  }

  .experience-content-v2 .experience-step p {
    font-size: clamp(16px, 4.8vw, 20px);
    max-width: none;
  }

  .reviews-section {
    padding: 42px 0 56px;
  }

  .reviews-head {
    margin-bottom: 22px;
  }
.container.law-center-grid.reveal.is-visible {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}
  .reviews-head h2 {
    font-size: clamp(30px, 8.2vw, 42px);
  }
.law-center-photo-small {
display: none;
  .reviews-head p {
    font-size: 16px;
  }

  .reviews-slider {
    grid-auto-columns: minmax(176px, 72vw);
  }

  .law-center-section {
    padding: 42px 0 58px;
  }
  .law-center-copy{
    align-items: center;
  }
  .law-center-copy h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  .law-center-copy p {
    font-size: 16px;
  }

  .law-center-points span {
    font-size: 16px;
  }

  .law-center-media {
    min-height: 420px;
  }

  .law-center-photo-main {
    height: 390px;
    border-radius: 24px;
  }

  .law-center-photo-small {
    width: 46%;
    height: 190px;
    left: 0;
    border-width: 4px;
    border-radius: 18px;
  }
}

@media (max-width: 1024px) {
  .contacts-section {
    padding: 66px 0 72px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

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

@media (max-width: 640px) {
  .contacts-section {
    padding: 48px 0 56px;
  }

  .contacts-info h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .contacts-info > p {
    font-size: 16px;
  }

  .contacts-form-card {
    border-radius: 20px;
    padding: 18px;
  }

  .contacts-form-card h3 {
    font-size: 24px;
  }
}

/* Responsive tune-up */
@media (max-width: 1200px) {
  .nav-shell {
    justify-content: space-between;
    padding-inline: 20px;
  }

  .brand-text {
    font-size: 22px;
    line-height: 1.1;
  }

  .hero-content h1 {
    font-size: clamp(42px, 5.4vw, 68px);
    line-height: 0.95;
  }

  .hero-visual {
    flex: auto;
    transform: translateX(-42px);
  }

  .expertise-content h2,
  .services-head h2,
  .experience-content-v2 h2,
  .law-center-copy h2,
  .contacts-info h2 {
    font-size: clamp(34px, 3.5vw, 44px);
  }
}

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(1240px, calc(100% - 2rem));
  }

  .header {
    position: fixed;
    top: 0;
  }

  .nav-shell {
    min-height: 74px;
    padding: 10px 14px;
    border-radius: 0;
  }

  .brand {
    gap: 8px;
  }

  .logo {
    width: 52px;
  }

  .brand-text {
    font-size: 24px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .nav {
    top: 78px;
    left: 1rem;
    right: 1rem;
    border-radius: 14px;
  }

  .nav a {
    font-size: 16px;
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  .hero-grid {
    min-height: auto;
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 20px 18px 30px;
    gap: 20px;
    background-position: center;
  }

  .hero-content {
    flex: 1 1 auto;
    max-width: 100%;
    padding: 0;
    justify-content: center;
align-items: center;
padding-right: 0;
display: flex;
flex-direction: column;
  }

  .kicker {
    color: #ffffffde;
    font-size: 15px;
    gap: 10px;
  }

  .hero-content h1 {
    margin-top: 12px;
    font-size: clamp(36px, 9vw, 54px);
   text-align: center;
   max-width: 100%;
   color: #fff;
  }

  .lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.45;
    max-width: 100%;
    text-align: center;
    color: #ffffffc8;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .btn {
    font-size: 15px;
    padding: 12px 18px;
  }

  .hero-visual {
    width: 100%;
    height: 20%;
    min-height: 0;
    margin: 0;
    transform: none;
    justify-content: center;
  }

  .hero-visual img {
    width: min(560px, 100%);
    max-height: 54svh;
    object-fit: contain;
    object-position: center bottom;
  }

  .assist-section {
    margin-top: 0;
    padding: 20px 0 56px;
  }

  .assist-grid {
    gap: 16px;
  }

  .assist-left,
  .assist-right {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .assist-form {
    flex-direction: column;
    gap: 10px;
  }

  .assist-form input,
  .assist-form button {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }

  .assist-right {
    gap: 16px;
  }

  .assist-list {
    gap: 8px;
  }

  .assist-list li {
    font-size: 15px;
    line-height: 1.35;
  }

  .assist-copy h3 {
    font-size: 28px;
  }

  .assist-copy p,
  .assist-copy a {
    font-size: 16px;
  }

  .expertise-section {
    padding: 30px 0 56px;
  }

  .expertise-grid {
    gap: 24px;
  }

  .expertise-media {
    max-width: 620px;
    margin: 0 auto;
    padding-bottom: 80px;
  }

  .expertise-photo-main {
    width: 90%;
    height: min(64svh, 560px);
    border-radius: 24px;
  }

  .expertise-photo-small {
    width: min(48%, 240px);
    height: min(38svh, 260px);
    left: 0;
    top: auto;
    bottom: 56px;
    border-width: 6px;
    border-radius: 24px;
  }

  .expertise-badge {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 140px;
    height: 140px;
  }

  .expertise-badge strong {
    font-size: 30px;
  }

  .expertise-badge span {
    font-size: 13px;
  }

  .expertise-content .kicker {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .expertise-content h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .expertise-content > p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

  .expertise-list {
    margin-top: 20px;
    gap: 14px;
  }

  .expertise-list li {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }

  .expertise-icon {
    width: 52px;
    font-size: 20px;
  }

  .expertise-list h3 {
    font-size: 22px;
  }

  .expertise-list p {
    font-size: 15px;
    line-height: 1.45;
  }

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

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }

  .stat-card {
    padding: 14px 8px;
  }

  .stat-value {
    font-size: clamp(32px, 8vw, 44px);
  }

  .stat-label {
    margin-top: 10px;
    font-size: 14px;
  }

  .services-section {
    padding: 6px 0 56px;
  }

  .services-head {
    margin-bottom: 24px;
  }

  .services-head .kicker {
    font-size: 14px;
  }

  .services-head h2 {
    font-size: clamp(30px, 7.4vw, 40px);
  }

  .services-head > p {
    font-size: 16px;
    line-height: 1.45;
  }

  .services-grid {
    grid-template-columns: 1fr;
   gap: 30px;
  }

  .service-card {
    min-height: 0;
    border-radius: 24px;
    padding: 58px 18px 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    left: 18px;
    top: -18px;
    font-size: 22px;
  }
.experience-content-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  .service-card h3 {
    font-size: 24px;
  }

  .service-card p,
  .service-card a,
  .service-card--promo .service-cta {
    font-size: 16px;
  }

  .experience-section {
    padding: 6px 0 56px;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .experience-visual-v2 {
   
  }

  .experience-content-v2 .kicker {
    font-size: 14px;
  }

  .experience-content-v2 h2 {
    font-size: clamp(30px, 7.6vw, 40px);
  }

  .experience-intro {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .experience-content-v2 .experience-steps {
    margin-top: 18px;
    padding-left: 38px;
  }

  .experience-content-v2 .experience-steps::before {
    left: 11px;
    border-left-width: 2px;
  }

  .experience-content-v2 .experience-step {
    padding-bottom: 18px;
  }

  .experience-content-v2 .experience-step::before {
    left: -29px;
    top: 10px;
    width: 12px;
    height: 12px;
    box-shadow: 0 0 0 3px #f7f4ee;
  }

  .experience-content-v2 .experience-step h3 {
    font-size: 26px;
  }

  .experience-content-v2 .experience-step p {
    font-size: 16px;
    line-height: 1.45;
    max-width: 100%;
    margin-top: 6px;
  }

  .law-center-section {
    padding: 42px 0 56px;
  }

  .law-center-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .law-center-copy .kicker {
    font-size: 14px;
  }

  .law-center-copy h2 {
    font-size: clamp(30px, 7.4vw, 40px);
  }

  .law-center-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .law-center-points {
    margin-top: 14px;
  }

  .law-center-points span {
    font-size: 15px;
  }

  .law-center-media {
    min-height: 420px;
    max-width: 560px;
    margin: 0 auto;
  }

  .law-center-photo-main {
    width: 100%;
    height: 390px;
    border-radius: 24px;
  }

  .law-center-photo-small {
    width: min(46%, 220px);
    height: 190px;
    border-width: 4px;
    border-radius: 18px;
    left: 0;
    bottom: 12px;
  }

  .reviews-section {
    padding: 40px 0 56px;
  }

  .reviews-head {
    margin-bottom: 20px;
  }

  .reviews-head .kicker {
    font-size: 14px;
  }

  .reviews-head h2 {
    font-size: clamp(30px, 7.4vw, 40px);
    line-height: 1.2;
  }

  .reviews-head p {
    font-size: 16px;
    line-height: 1.45;
  }

  .reviews-slider-wrap {
    padding: 0;
  }

  .reviews-slider {
    grid-auto-columns: minmax(180px, 72vw);
    gap: 12px;
  }

  .review-video-card video {
    border-radius: 20px;
  }

  .review-video-card p {
    margin-top: 10px;
    font-size: 14px;
  }

  .contacts-section {
    padding: 42px 0 56px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacts-info .kicker {
    font-size: 14px;
  }

  .contacts-info h2 {
    font-size: clamp(30px, 7.6vw, 40px);
  }

  .contacts-info > p {
    font-size: 16px;
    line-height: 1.45;
  }

  .contact-list {
    margin-top: 16px;
    gap: 10px;
  }

  .contact-list li {
    align-items: flex-start;
  }

  .contact-list a {
    overflow-wrap: anywhere;
    font-size: 15px;
    line-height: 1.35;
  }

  .contacts-form-card {
    padding: 18px;
    border-radius: 18px;
  }

  .contacts-form-card h3 {
    font-size: 24px;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-links {
    gap: 12px 16px;
  }

  .footer-copy {
    text-align: center;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1240px, calc(100% - 1.2rem));
  }
  .hero{
   padding-bottom: 30px;
    height: 100vh;
  }
  .brand-text {
    font-size: 20px;
  }

  .logo {
    width: 44px;
  }

  .hero-grid {
    padding-inline: 12px;
    height: 100vh;
    background: url("images/main.webp");
    background-size: cover;
   background-position: 49%;
  }
  .hero-visual img{
    opacity: 0;
    width: 50%;
  }
  .assist-left-bc{
   background-image: linear-gradient(135deg, #1f4d3a 0%, #16382b 55%, #102b21 100%);
  }
  .assist-form input{
    flex: none;
  }
  .expertise-photo-main, .expertise-photo-small{
    overflow: hidden;
  }
  .hero-content h1 {
    font-size: clamp(34px, 11vw, 44px);
  }
  h2{
    text-align: center;
    font-size: 27px !important;
  }
  .expertise-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  .btn {
    width: 100%;
    justify-content: center;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .review-video-card {
    border-radius: 22px;
    padding: 6px;
  }

  .review-video-card video {
    border-radius: 18px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet landscape: keep desktop structure, only scale down */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    width: min(1240px, calc(100% - 2.2rem));
  }

  .header {
    position: absolute;
  }

  .nav-shell {
    min-height: 78px;
    padding: 10px 14px 10px 18px;
    justify-content: space-between;
    gap: 14px;
  }

  .menu-toggle {
    display: none;
  }

  .cta {
    display: inline-flex;
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }

  .nav {
    position: static;
    display: flex;
    gap: 1rem;
    opacity: 1;
    max-height: none;
    overflow: visible;
    pointer-events: auto;
    border: 0;
    background: transparent;
  }

  .nav a {
    padding: 0;
    border: 0;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding-top: 0;
  }

  .hero-grid {
    min-height: calc(100svh - var(--header-top));
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 0;
    padding-left: clamp(16px, 3vw, 34px);
    padding-right: clamp(16px, 3vw, 34px);
  }

  .hero-content {
    flex: 0 0 52%;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: clamp(44px, 5.8vw, 64px);
  }

  .lead {
    font-size: 16px;
    max-width: 46ch;
  }

  .hero-actions .btn {
    width: auto;
    justify-content: center;
  }

  .hero-visual {
    flex: 0 0 48%;
    min-height: 460px;
    margin: 0;
    transform: translateX(-34px);
    justify-content: flex-start;
  }

  .hero-visual img {
    width: min(580px, 116%);
    max-height: 660px;
    object-fit: cover;
  }

  .assist-section {
    margin-top: -64px;
    padding: 0 0 68px;
  }

  .assist-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
  }

  .assist-left,
  .assist-right {
    padding: 26px 20px;
    border-radius: 28px;
  }

  .assist-form {
    flex-direction: row;
  }

  .assist-form input {
    flex: 1 1 auto;
  }

  .assist-form button {
    width: auto;
    padding-inline: 20px;
    font-size: 16px;
  }

  .expertise-grid {
    grid-template-columns: minmax(280px, 0.88fr) minmax(360px, 1.12fr);
    gap: 28px;
  }

  .expertise-media {
    padding-bottom: 0;
    max-width: none;
  }

  .expertise-photo-main {
    height: 520px;
  }

  .expertise-photo-small {
    left: 0;
    bottom: 84px;
    top: auto;
    width: min(52%, 250px);
    height: 290px;
  }

  .expertise-badge {
    left: 46%;
    bottom: 10px;
    transform: none;
    width: 150px;
    height: 150px;
  }

  .stats-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .stat-value {
    font-size: 34px;
  }

  .stat-label {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card {
    padding: 56px 18px 20px;
    border-radius: 22px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p,
  .service-card a,
  .service-card--promo .service-cta {
    font-size: 15px;
  }

  .experience-section {
    padding-bottom: 72px;
  }

  .experience-layout {
    grid-template-columns: minmax(260px, 0.86fr) minmax(380px, 1.14fr);
    gap: 24px;
  }

  .experience-visual-v2 {
    display: block;
    min-height: 580px;
  }

  .experience-device {
    width: 100%;
    max-width: 400px;
  }

  .experience-device img {
    height: 580px;
  }

  .experience-content-v2 .experience-steps {
    padding-left: 54px;
  }

  .experience-content-v2 .experience-steps::before {
    left: 18px;
  }

  .experience-content-v2 .experience-step::before {
    left: -42px;
    top: 12px;
    width: 14px;
    height: 14px;
  }

  .experience-content-v2 .experience-step h3 {
    font-size: 24px;
  }

  .experience-content-v2 .experience-step p {
    font-size: 15px;
  }

  .law-center-grid {
    grid-template-columns: minmax(380px, 1.02fr) minmax(300px, 0.98fr);
    gap: 24px;
  }

  .law-center-media {
    min-height: 460px;
  }

  .law-center-photo-main {
    height: 430px;
  }

  .law-center-photo-small {
    width: min(46%, 210px);
    height: 210px;
    left: -6px;
  }

  .contacts-grid {
    grid-template-columns: minmax(330px, 1fr) minmax(290px, 0.9fr);
    gap: 20px;
  }

  .contacts-form-card {
    padding: 20px;
  }

  .contact-form .btn {
    width: auto;
  }
}
