/* ============================================================
   MAIN THEME — assets/css/main.css
   ============================================================ */

/* ── 1. CSS Variables ───────────────────────────────────────── */
:root {
  /* ── Figma Design Tokens ─────────────────────────── */
  --color-primary:        #1D39A5; /* Colors/Primary-blue      */
  --color-primary-dark:   #002349; /* Colors/Dark-blue-text    */
  --color-primary-rgb:    29, 57, 165;
  --color-gold:           #A88646; /* Colors/Primary-gold      */
  --color-gold-mid:       #C5A059; /* Colors/Secondary-gold    */
  --color-gold-light:     #DDBD7F; /* Colors/tertiary-gold     */
  --color-secondary:      #C5A059; /* alias → Secondary-gold   */
  --color-cta:            #A88646; /* CTA = Primary-gold       */
  --color-cta-hover:      #8a6c38;
  --color-text:           #364153; /* Colors/Normal-grey-text  */
  --color-text-dark:      #002349; /* Colors/Dark-blue-text    */
  --color-text-light:     #6B7280;
  --color-border:         #E5E7EB;
  --color-bg:             #FFFFFF; /* Colors/White             */
  --color-bg-alt:         #F4F5FF; /* Colors/Bg-light-blue     */
  --color-bg-dark:        #002349; /* Colors/Dark-blue-text    */
  --color-white:          #FFFFFF;

  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --radius:    0.5rem;
  --radius-lg: 1rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.15);

  --transition: 0.25s ease;

  --container-width: 1200px;
  --container-pad:   clamp(1rem, 4vw, 2rem);
  --section-py:      clamp(3.5rem, 8vw, 6rem);
}

/* ── 2. Reset / Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--color-secondary); }

ul, ol { list-style: none; }


/* ── 3. Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-family: var(--font-body);
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 600;
}

h1 { font-size: clamp(var(--text-3xl), 5vw,   var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw,   var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl),  3vw,   var(--text-2xl)); }
h4 { font-size: var(--text-xl); }

p { margin-bottom: 1rem; line-height: 1.55; font-family: var(--font-body); }
p:last-child { margin-bottom: 0; }

.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── 4. Layout / Container ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── 5. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-cta);
  color: var(--color-white);
  border-color: var(--color-cta);
}
.btn--primary:hover {
  background: var(--color-cta-hover);
  border-color: var(--color-cta-hover);
  color: var(--color-white);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.8);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--lg   { padding: 1rem 2.25rem; font-size: var(--text-lg); }
.btn--full { width: 100%; justify-content: center; }

/* ── 6. Section base ────────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.section.is-visible {
  opacity: 1;
  transform: none;
}

.section__eyebrow {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.section__title { margin-bottom: 1rem; }

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.7;
}

.section__header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.section__header--center .section__subtitle { text-align: center; }

@media (min-width: 1920px) {
  .main-tpl,
  .site-footer{
    padding-left: 100px;
    padding-right: 100px;
  }
  .block-padding-left{
    padding-left: 145px;
  }
  .left-block-lg{
    max-width: 705px;
  }
  .left-block-md{
    max-width: 560px;
  }
  .left-block-md-right-padding{
    max-width: 105px;
  }
  .right-block-lg{
    max-width: 850px;
  }
  .right-block-md{
    max-width: 705px;
  }
}
@media (max-width: 1919px) and (min-width: 1440px) {
  .main-tpl,
  .site-footer{
    padding-left: 60px;
    padding-right: 60px;
  }
  .block-padding-left{
    padding-left: 110px;
  }
  .left-block-lg{
    max-width: 540px;
  }
  .left-block-md{
    max-width: 426px;
  }
  .left-block-md-right-padding{
    max-width: 105px;
  }
  .right-block-lg{
    max-width: 650px;
  }
  .right-block-md{
    max-width: 540px;
  }
}
@media (max-width: 1439px) and (min-width: 1201px) {
  .main-tpl,
  .site-footer{
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 1200px) and (min-width: 769px) {
  .main-tpl,
  .site-footer{
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1439px) and (min-width: 769px) {
  .block-padding-left{
    padding-left: 0;
  }
  .left-block-lg{
    max-width: 705px;
  }
  .left-block-md{
    max-width: 560px;
  }
  .left-block-md-right-padding{
    max-width: 105px;
  }
  .right-block-lg{
    max-width: 850px;
  }
  .right-block-md{
    max-width: 705px;
  }
}
@media (max-width: 768px) {
  .main-tpl,
  .site-footer{
    padding-left: 16px;
    padding-right: 16px;
  }
  .block-padding-left{
    padding-left: 0;
  }
  .left-block-lg{
    max-width: 705px;
  }
  .left-block-md{
    max-width: 560px;
  }
  .left-block-md-right-padding{
    max-width: 105px;
  }
  .right-block-lg{
    max-width: 850px;
  }
  .right-block-md{
    max-width: 705px;
  }
}

/* ── 7. Site Header ─────────────────────────────────────────── */
.site-header {
  background: var(--color-white);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    padding 0.3s ease;
}

.site-header.is-sticky {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  max-width: 1140px;
  padding: 0 0;
  top: 10px;
  margin: 0 auto;
  border-radius: 24px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  transition: gap 0.3s ease;
  padding: 35px 60px;
}
@media(min-width: 1900px){
  .site-header__inner {
    padding: 35px 100px;
  }
}

.site-header.is-sticky .site-header__inner {
  gap: 0.75rem;
  padding: 16px 20px 16px 15px;
}

/* Logo */
.site-header__brand {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.site-header.is-sticky .site-header__brand {
  transform: scale(0.9);
}

.site-header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-header__logo-icon svg {
  display: block;
  flex-shrink: 0;
  height: 46px;
  width: auto;
  transition: height 0.3s ease;
}

.site-header.is-sticky .site-header__logo-icon svg {
  height: 40px;
}

.site-header__logo-text {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
  transition: font-size 0.3s ease;
}

.site-header.is-sticky .site-header__logo-text {
  font-size: 1.3125rem;
}

.site-header__brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.site-header__brand .custom-logo {
  max-height: 52px;
  width: auto;
  transition: max-height 0.3s ease;
}

.site-header.is-sticky .site-header__brand .custom-logo {
  max-height: 44px;
}

.logo__aventura { color: var(--color-text-dark); }
.logo__injury   { color: var(--color-primary); }
.logo__lawyer   { color: var(--color-text-dark); }
.logo__tld {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-text-dark);
  opacity: .5;
  letter-spacing: -0.01em;
  transition: font-size 0.3s ease;
}

.site-header.is-sticky .logo__tld {
  font-size: 0.9375rem;
}

/* Primary Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.chat-block{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  display: none;
}
@media (min-width: 992px){
  .site-header__actions.nav-botton-buttons{
    display: none;
  }
}
.chat-button{
  border-radius: 16px;
  background: #E4F9C7;
  padding: 2px 8px;
  color: #114F00;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.13px;
  border: none;
}
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__list > li > a {
  display: flex;
  align-items: center;
  height: 2.75rem;
  padding-inline: 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.028em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  border-radius: 1rem;
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition),
    height 0.3s ease,
    padding-inline 0.3s ease,
    font-size 0.3s ease;
  white-space: nowrap;
}

.site-header.is-sticky .main-nav__list > li > a {
  height: 2.375rem;
  padding-inline: 0.875rem;
  font-size: 0.875rem;
}

.main-nav__list > li > a:hover,
.main-nav__list .current-menu-item > a,
.main-nav__list .current-menu-ancestor > a {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}
.main-nav .site-header__brand {
  display: none;
}
/* Dropdown */
.main-nav__list .menu-item-has-children,
.main-nav__list .menu-item-mega { position: relative; }

.main-nav__list .menu-item-mega > a::after {
  content: '▾';
  margin-left: 0.4rem;
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.main-nav__list .menu-item-mega.is-open > a::after {
  transform: rotate(180deg);
}

.main-nav__list .menu-item-mega .mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100vw - 4rem));
  max-width: 1080px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.06);
  padding: 0.75rem;
  z-index: 220;
  border: 1px solid #e0e5f2;
}
.mega-menu {
  font-family: var(--font-body);
}

.mega-menu__inner {
  display: flex;
  gap: 0;
}

.mega-menu__column {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  border-right: 1px solid #E0E5F2;
  width: 33.33%;
}
.mega-menu__section {
  display: grid;
  gap: 28px;
  padding: 40px;
}

.mega-menu__section-label {
  color: #364153;
  opacity: 0.4;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 0;
}

.mega-menu__item {
  display: grid;
  gap: 0;
}

.mega-menu__item-title {
  color: #002349;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: -0.17px;
  margin-bottom: 10px;
}

.mega-menu__item-title--featured {
  color: #1d39a5;
  text-decoration: underline;
}

.mega-menu__item-arrow {
  margin-left: 0.4rem;
  display: inline-block;
}

.mega-menu__item-copy {
  margin: 0;
  font-size: 0.84375rem;
  line-height: 1.48;
  color: #576b8c;
}

.mega-menu__divider-horizontal {
  height: 1px;
  width: 100%;
  background: #e0e5f2;
}

.mega-menu__card-column {
  border-right: 1px solid #e0e5f2;
}
.mega-menu__card-column:last-child {
  border-right: none;
  padding: 0;
}

.mega-menu__card {
  gap: 1rem;
  background: #f4f5ff;
  border-radius: 14px;
  padding: 40px 32px;
  border-top-left-radius: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.mega-menu__card-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.mega-menu__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mega-menu__card-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mega-menu__card-body {
  display: grid;
  gap: 1rem;
}

.mega-menu__card-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mega-menu__card-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 999px;
  background: #1d39a5;
}

.mega-menu__card-badge {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #002349;
}

.mega-menu__card-copy {
  margin: 0;
  font-size: 0.84375rem;
  line-height: 1.48;
  color: #576b8c;
}

.mega-menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1d39a5;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mega-menu__button-arrow {
  margin-left: 0.5rem;
}


.main-nav__list .menu-item-mega.is-open > .mega-menu {
  display: block;
  padding: 0;
  margin-left: 50%;
}

@media (max-width: 1300px) {
  .main-nav__list > li > a {
    padding: 0 10px;
  }
}
@media (max-width: 1200px) {
  .mega-menu__section {
    gap: 26px;
    padding: 30px 30px;
  }
  .mega-menu__card {
    padding: 30px 32px;
  }
}
@media (max-width: 1200px) and (min-width: 992px){
  .main-nav__list .menu-item-mega .mega-menu {
    left: 100%;
  }
}
@media (max-width: 991px) {
  .main-nav__list .menu-item-mega .mega-menu {
    display: none;
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: 0.75rem;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .main-nav__list .menu-item-mega.is-open > .mega-menu {
    display: block;
    margin-left: 0;
  }

  .main-nav__list .menu-item-mega .mega-menu__inner {
    gap: 0;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .main-nav__list .menu-item-mega .mega-menu__item {
    padding: 0.5rem 0;
  }
  .mega-menu__item-copy {
    font-size: 13px;
  }
  .main-nav__list .menu-item-mega .mega-menu__item {
    padding: 0;
  }
  .mega-menu__section {
    display: grid;
    gap: 20px;
    padding: 20px;
  }
  .main-nav__list .menu-item-mega .mega-menu__item-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .main-nav__list .menu-item-mega .mega-menu__card {
    border-radius: 1rem;
    background: #f8fbff;
    box-shadow: none;
    padding: 1rem;
  }
  .main-nav__list .menu-item-mega .mega-menu__card-media {
    display: none;
  }
  .main-nav__list .menu-item-mega .mega-menu__card {
    border-radius: 16px;
    background: #F4F5FF;
    padding: 20px;
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
  .mega-menu__card-top {
    flex-direction: column;
    gap: 8px;
  }
  .mega-menu__button{
    padding: 10px 18px 10px 20px;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    box-sizing: border-box;
    color: #FFF;
  }
  .mega-menu__card-body {
    display: block;
  }
  .main-nav.is-open {
    position: fixed;
    top: 97px;
    bottom: 15px;
    width: 100%;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 7px 20px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: calc(100vh - 110px);
  }
  .site-header.is-sticky .main-nav .site-header__cta {
    height: 2.8rem;
    padding-inline: 1.5rem;
    font-size: 0.875rem;
    width: calc(100% - 120px);
  }
  .nav-botton-buttons.site-header__actions{
    display: flex;
    justify-content: space-between;
  }
  .nav-botton-buttons .site-header__cta{
    width: calc(100% - 120px);
  }
}
@media (max-width: 991px) and (min-width: 801px){
  .site-header.is-sticky,
  .site-header {
    max-width: 800px;
    margin: 0 auto;
  }
  .main-nav.is-open {
    max-width: 800px;
    left: calc(50% - 400px);
  }
}
@media (max-width: 991px) and (min-width: 501px){
  .mega-menu__column{
    border-right: none;
  }
  .mega-menu__column:first-child{
    border-right: 1px solid #E0E5F2;
  }
    .main-nav__list .menu-item-mega .mega-menu__inner {
    gap: 0;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .main-nav__list .menu-item-mega .mega-menu__column {
    width: 49%;
  }
  .main-nav__list .menu-item-mega .mega-menu__column:last-child{
    width: 100%;
    margin-bottom: 8px;
  }
}
@media(max-width: 500px){
  .mega-menu__column:last-child,
  .mega-menu__column {
    width: 100%;
    border-right: none;
  }
  .mega-menu__divider-horizontal {
    display: none;
  }
  .mega-menu__section {
    border-bottom: 1px solid #e0e5f2;
    width: 100%;
    gap: 0;
  }
  .mega-menu__column:last-child .mega-menu__section:last-child {
    border-bottom: none;
  }
  .mega-menu__column.mega-menu__card-column{
    display: none;
  }
  .mega-menu__section-label {
    color: #1D39A5;
    opacity: 1;
    margin-bottom: 8px;
  }
  .mega-menu__item-copy {
    font-size: 13px;
    display: none;
  }
  .main-nav__list .menu-item-mega .mega-menu__item-title {
    font-size: 15px;
    margin-bottom: 0;
    padding: 14px 15px 14px 22px;
    background: url(../../images/left-arrow-icon.svg) top 18px left 0 no-repeat;
    border-bottom: 1px solid #F5F5F5;
  }
  .main-nav__list .menu-item-mega .mega-menu__item:last-child .mega-menu__item-title{
    border-bottom: none;
  }
  .mega-menu__section-col {
    width: 100%;
  }
}


/* Right Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: gap 0.3s ease;
}

.site-header.is-sticky .site-header__actions {
  gap: 0.5rem;
}

.site-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), font-size 0.3s ease;
}

.site-header.is-sticky .site-header__phone {
  font-size: 0.8125rem;
}

.site-header__phone:hover { color: var(--color-primary); }
.site-header__phone svg { flex-shrink: 0; }

/* CTA Button — black pill (Figma) */
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding-inline: 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  background: #000000;
  border-radius: 2.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--transition),
    transform var(--transition),
    height 0.3s ease,
    padding-inline 0.3s ease,
    font-size 0.3s ease;
  flex-shrink: 0;
}

.site-header.is-sticky .site-header__cta {
  height: 2.8rem;
  padding-inline: 1.5rem;
  font-size: 0.875rem;
}

.site-header__cta:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
  color: #ffeb3b;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Burger → X animation */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* ── Responsive Header ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-header__phone { display: none; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--color-white);
    box-shadow: -4px 0 32px rgba(0,0,0,.12);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    visibility: hidden;
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }
  .main-nav__list > li > a {
    height: auto;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
  }
  .main-nav__list .sub-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--color-primary);
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 1rem;
    background: var(--color-bg-alt);
  }
  .main-nav__list .menu-item-has-children:hover > .sub-menu { display: block; }

  .site-header__actions .site-header__cta {
    height: 2.5rem;
    padding-inline: 1.25rem;
    font-size: var(--text-sm);
  }

  body.nav-is-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 999;
  }
}

.main-tpl{
  padding-left: 60px;
  padding-right: 60px;
}
@media(min-width:1920px){
  .main-tpl{
    padding-left: 100px;
    padding-right: 100px;
  }
  .main-tpl.main-tpl-tpl-full-page{
    padding-left: 0;
    padding-right: 0;
  }
}
@media(max-width:1440px){
  .main-tpl{
    padding-left: 48px;
    padding-right: 48px;
  }
}
/* ── 8. Hero Section ────────────────────────────────────────── */
.section--hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding-block: 0;
  opacity: 1;
  transform: none;
  overflow: hidden;
  margin-bottom: 16px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(var(--color-primary-rgb), .96) 0%,
      rgba(15, 29, 52, .88) 100%
    ),
    var(--hero-bg-url, none) center / cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 7rem;
  padding-bottom: 5rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(var(--text-3xl), 5.5vw, var(--text-6xl));
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,.82);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__form-time{
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #1E1E1E;
  display: flex;
}
.hero__form-time img{
  margin-right: 10px ;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.9);
  font-size: var(--text-sm);
  font-weight: 600;
}
.hero__trust-icon { color: var(--color-secondary); }

/* ── 9. About Section ───────────────────────────────────────── */
.section--about { background: var(--color-bg); }

.section--about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.section--about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

.section--about__text .section__title { margin-bottom: 1.25rem; }
.section--about__text .section__body {
  margin-bottom: 2rem;
  color: var(--color-text-light);
  font-size: var(--text-lg);
  line-height: 1.75;
}

/* ── 10. Services Section ───────────────────────────────────── */
.section--services {
  background: var(--color-bg-alt);
  border-radius: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon { font-size: 2.25rem; margin-bottom: 1rem; line-height: 1; }
.service-card__title { font-size: var(--text-xl); margin-bottom: 0.75rem; color: var(--color-primary); }
.service-card__text {
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  flex: 1;
}
.service-card__link {
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-cta);
  letter-spacing: 0.02em;
  margin-top: auto;
}
.service-card__link:hover { color: var(--color-cta-hover); }

/* ── 11. Why Us Section ─────────────────────────────────────── */
.section--why-us { background: var(--color-primary); }
.section--why-us .section__eyebrow { color: var(--color-secondary); }
.section--why-us .section__title { color: var(--color-white); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.why-us-card { text-align: center; padding: 1.5rem 1rem; }
.why-us-card__icon { font-size: 2.5rem; margin-bottom: 1.25rem; line-height: 1; }
.why-us-card__title { font-size: var(--text-xl); color: var(--color-white); margin-bottom: 0.75rem; }
.why-us-card__text { color: rgba(255,255,255,.75); line-height: 1.7; }

.why-us-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 3rem;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}
.stat__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── 12. Testimonials Section ───────────────────────────────── */
.section--testimonials { background: var(--color-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--color-secondary);
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card__stars {
  color: #FBBF24;
  font-size: var(--text-lg);
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.testimonial-card__text {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}
.testimonial-card__footer { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial-card__author { font-weight: 700; color: var(--color-primary); }
.testimonial-card__detail { font-size: var(--text-sm); color: var(--color-text-light); }

/* ── 13. CTA Section ────────────────────────────────────────── */
.section--cta {
  background: linear-gradient(135deg, var(--color-cta) 0%, #b83a0d 100%);
  padding-block: var(--section-py);
  opacity: 1;
  transform: none;
}
.section--cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
.cta__content { flex: 1; min-width: 280px; }
.cta__title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.cta__text { color: rgba(255,255,255,.85); font-size: var(--text-lg); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

/* ── 14. Contact Section ────────────────────────────────────── */
.section--contact { background: var(--color-bg-alt); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
.form-row--two { grid-template-columns: 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: auto;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), .12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* Contact Info */
.contact-info__title {
  font-size: var(--text-2xl);
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}
.contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: var(--text-base);
  line-height: 1.6;
}
.contact-info__icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info__list a { color: var(--color-primary); font-weight: 600; }
.contact-info__list a:hover { color: var(--color-secondary); }
.contact-info__map iframe {
  width: 100%;
  height: 250px;
  border-radius: var(--radius);
  border: none;
  display: block;
}

/* ── 15. Blog / Posts Grid ──────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.post-card__thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.post-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-categories { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.post-category {
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(var(--color-primary-rgb), .08);
  color: var(--color-primary);
  transition: background var(--transition), color var(--transition);
}
.post-category:hover { background: var(--color-primary); color: var(--color-white); }

.post-card__title { font-size: var(--text-xl); margin-bottom: 0.75rem; }
.post-card__title a { color: var(--color-text); }
.post-card__title a:hover { color: var(--color-primary); }

.post-card__meta { font-size: var(--text-sm); color: var(--color-text-light); margin-bottom: 1rem; }
.post-card__excerpt { color: var(--color-text-light); margin-bottom: 1.5rem; flex: 1; line-height: 1.7; }
.post-card__body .btn { margin-top: auto; align-self: flex-start; font-size: var(--text-sm); padding: 0.5rem 1.25rem; }

/* ── 16. Single Post ────────────────────────────────────────── */
.content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding-block: 3rem;
}
.content-area { min-width: 0; }

.single-article__header { margin-bottom: 2rem; }
.single-article__title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  margin-bottom: 1rem;
}
.single-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--color-text-light);
  font-size: var(--text-sm);
}
.single-article__thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.single-article__thumbnail img { width: 100%; display: block; }

.single-article__content,
.entry-content {
  font-size: var(--text-lg);
  line-height: 1.8;
}
.entry-content h2,
.entry-content h3 { margin: 2.25rem 0 1rem; }
.entry-content ul,
.entry-content ol { margin: 1rem 0 1.5rem 2rem; list-style: revert; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
  border-left: 4px solid var(--color-secondary);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: var(--text-lg);
}
.entry-content img { border-radius: var(--radius); }

.single-article__footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.post-tags__label { font-weight: 700; font-size: var(--text-sm); color: var(--color-text-light); margin-right: 0.25rem; }
.post-tags a {
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: var(--text-sm);
  font-weight: 600;
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.post-tags a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

/* Post navigation */
.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.nav-subtitle {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.nav-title { font-size: var(--text-base); font-weight: 700; color: var(--color-primary); }
.nav-title:hover { color: var(--color-secondary); }

/* Page */
.content-area--full { padding-block: 3rem; }
.page-article{
  max-width: 980px;
  margin: 0 auto;
}
.page-article__header { margin-bottom: 1.5rem; font-family: var(--font-body);}
.page-article__title { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); margin-bottom: 1rem; font-family: var(--font-body);color: var(--color-primary-dark);}
.page-article__thumbnail { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; font-family: var(--font-body); }
.page-article__thumbnail img { width: 100%; display: block; }



/* Page header */
.page-header { padding-block: 4.5rem 0; text-align: center; font-family: var(--font-body); }
.page-title { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); font-family: var(--font-body); }
.archive-description { margin-top: 1rem; color: var(--color-text-light); font-size: var(--text-lg); max-width: 640px; margin-inline: auto; font-family: var(--font-body); }

/* Posts pagination */
.nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  font-weight: 700;
}
.nav-links a { color: var(--color-primary); }
.nav-links a:hover { color: var(--color-secondary); }

/* ── 17. Sidebar ────────────────────────────────────────────── */
.sidebar { min-width: 0; padding-top: 3rem; }
.widget { margin-bottom: 2.25rem; }
.widget__title {
  font-size: var(--text-lg);
  color: var(--color-primary);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-secondary);
  margin-bottom: 1.25rem;
}
.widget ul { display: flex; flex-direction: column; gap: 0.625rem; }
.widget ul li a { color: var(--color-text); font-size: var(--text-sm); }
.widget ul li a:hover { color: var(--color-primary); }

/* ── 18. Comments ───────────────────────────────────────────── */
.comments-area {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}
.comments-title { font-size: var(--text-2xl); margin-bottom: 2rem; }
.comment-list { display: flex; flex-direction: column; gap: 1.75rem; }
.comment { list-style: none; }
.comment-meta { margin-bottom: 0.5rem; font-size: var(--text-sm); color: var(--color-text-light); }
.comment-respond .comment-reply-title { font-size: var(--text-2xl); margin-bottom: 1.5rem; }
.comment-form { display: flex; flex-direction: column; gap: 1.25rem; }
.comment-form p { display: flex; flex-direction: column; gap: 0.4rem; }
.comment-form label { font-size: var(--text-sm); font-weight: 600; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-family: var(--font-body);
  width: 100%;
  transition: border-color var(--transition);
}
.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.comment-form .submit {
  display: inline-flex;
  padding: 0.75rem 2rem;
  background: var(--color-cta);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  align-self: flex-start;
}
.comment-form .submit:hover { background: var(--color-cta-hover); }

/* ── 19. Footer ─────────────────────────────────────────────── */
.site-footer__copy{
  color: var(--color-text);
  text-align: left;
  font-family: "Inter Tight";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%; /* 21.7px */
  letter-spacing: 0.14px;
}
a.footer-logo {
  display: block;
  margin-bottom: 24px;
}

.site-footer__widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-block: 4rem;
}
.site-footer .widget__title {
  color: var(--color-white);
  border-color: var(--color-secondary);
}
.site-footer .widget a { color: rgba(255,255,255,.65); font-size: var(--text-sm); }
.site-footer .widget a:hover { color: var(--color-secondary); }
.site-footer .widget p { font-size: var(--text-sm); color: rgba(255,255,255,.65); }

.site-footer__bottom {
  padding-top: 15px;
  padding-bottom: 40px;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer__bottom-inner .right-part,
.site-footer__bottom-inner .right-part p{
  max-width: 800px;
  text-align: right;
}
.footer-policy__list {
  display: flex;
  gap: 1px;
  justify-content: flex-end;
  flex-direction: column;
}
.site-footer__bottom-inner .right-part p{
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
  text-align: right;
  letter-spacing: 0.01em;
  color: #364153;
}
.footer-policy__list li a{
  letter-spacing: 0.01em;
  display: block;
  padding: 7px 0;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
}
.site-footer__bottom-inner .copyright {
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 155%;
  letter-spacing: 0.01em;
  color: #000000;
}
.site-footer__copy p{
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
  letter-spacing: 0.01em;
  color: #364153;
}

@media(max-width: 1200px){
  .site-footer__bottom-inner .right-part p,
  .site-footer__copy p{
    font-size: 14px;
  }
  .site-footer__bottom-inner .copyright {
    font-size: 14px;
  }
}
@media(max-width: 991px) and (min-width: 769px){
  .site-footer__bottom-inner .right-part p,
  .site-footer__copy p{
    font-size: 13px;
  }
}
@media(max-width: 768px){
  .site-footer__bottom-inner .right-part,
  .site-footer__bottom-inner .right-part p{
    text-align: center;
  }
  a.footer-logo{
    display: block;
    margin: 0 auto 12px;
  }
  .footer-policy__list li a {
    font-family: 'Inter Tight';
    font-weight: 500;
    font-size: 14px;
    line-height: 155%;
    letter-spacing: 0.01em;
    color: #000000;
  }
  .footer-policy__list {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .site-footer__bottom-inner .footer-logo img {
    margin: 20px auto 10px;
  }
  .site-footer__copy {
    text-align: center;
    margin: 20px auto 5px;
  }
  .site-footer__bottom-inner .right-part p {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media(max-width: 768px){
  .footer-policy__list {
    display: flex;
    gap: 5px 20px;
  }
}
.footer-nav__list { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav__list a { font-size: var(--text-sm); color: rgba(255,255,255,.55); }
.footer-nav__list a:hover { color: var(--color-secondary); }

/* ── 20. 404 ────────────────────────────────────────────────── */
.error-404 { text-align: center; padding-block: 8rem; }

/* ==============================================================
   HOMEPAGE SECTIONS — Figma node 29:664
   ============================================================== */

/* ── Shared helpers ─────────────────────────────────────────── */
.btn--gold {
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn--gold:hover { background: var(--color-cta-hover); color: #fff; transform: translateY(-1px); }

.btn--pill { border-radius: 40px; }

.btn--outline-dark {
  background: #fff;
  color: var(--color-primary-dark);
  border: 1px solid #cacedd;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem;
  height: 64px;
  padding-inline: 3rem;
  border-radius: 40px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn--outline-dark:hover {
  background: var(--color-primary-dark);
  color: #fff;
  border-color: var(--color-primary-dark);
}

.btn--dark {
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn--dark:hover { background: var(--color-primary); transform: translateY(-1px); }

/* outer page wrapper for 100px horizontal padding */
.page-padded {
  padding-inline: clamp(1.5rem, 8vw, 6.25rem);
}

/* ─────────────────────────────────────────────────────────────
   HERO — 2-col layout
   ───────────────────────────────────────────────────────────── */
.section--hero {
  padding-block: 0;
  background: var(--color-bg);
  opacity: 1;
  transform: none;
  margin-bottom: 0;
}

.hero__grid {
  min-height: 810px;
}

/* Left column — photo bg + text */
.hero__grid .hero__left {
  position: relative;
  background: var(--hero-bg) center/cover no-repeat;
  overflow: hidden;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
  border-radius: 32px;
}

/* Cross-fade layer: sits between base bg and the gradient overlay */
.hero__bg-next {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  background-image: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

/* Dark overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(31.45deg, rgba(0,28,153,.8) 0%, transparent 60%),
    rgba(0,0,0,.35);
    background-size: 100%;
  z-index: 0;
}

/* Attorney thumb badge */
.hero__thumb_img {
  box-sizing: border-box;
  width: 145px;
  height: 100px;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}
.hero__thumb-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  white-space: nowrap;
}

/* Thumbnail tab-trigger container */
.hero__thumbs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Thumbnail tab trigger buttons */
.hero__thumb {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
  background-color: #777;
}
.hero__thumb img{
  opacity: 0.5;
}
.hero__thumb.is-active {
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 8px #ddbd7f;
}
.hero__thumb.is-active img{
  opacity: 1;
}
.hero__thumb:hover:not(.is-active) {
  opacity: 0.82;
  border-color: rgba(255,255,255,0.55);
}
.hero__thumb:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
}

/* Hero slide panels */
.hero__slide {
  position: relative;
  z-index: 1;
}
.hero__slide[hidden] { display: none; }

/* Text block */
.hero__text {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__title {
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__accent { color: var(--color-gold-light); }

.hero__bullets {
  list-style: disc;
  padding-left: 1.25rem;
  color: #fff;
  font-size: 1.125rem;
  font-family: var(--font-body);
  line-height: 1.7;
}
.hero__bullets li { margin-bottom: 0.375rem; }

/* Right column — form card */

.hero__form-wrap {
  display: flex;
  align-items: stretch;
  background: var(--color-bg);
}
@media(min-width: 1200px){
  .hero__form-card {
    margin-left: 8px;
  }
}

.hero__form-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.hero__form-header {
  background: #F2F5FF;
  border-radius: 24px;
  margin: 1.25rem 1.25rem 0;
  padding: 1.75rem;
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.hero__form-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.hero__form-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #1e1e1e;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}
.hero__form-header > p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.35;
  color: rgba(30,30,30,0.9);
  letter-spacing: 0.01em;
  margin: 0;
}
.hero__form-meta {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  margin-top: 0.375rem;
}
.hero__form-meta svg { flex-shrink: 0; color: var(--color-gold); }

.hero-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 2.75rem 2.5rem;
  gap: 3.125rem;
}

/* Field styles — bottom-border only */
.hf__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hf__field:focus-within{
  border-bottom-color: var(--color-primary);
}
.hf__field:focus-within label{
  color: var(--color-primary);
}
.hf__field label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #757575;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hf__field input,
.hf__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 10px 10px 5px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  color: #1e1e1e;
  letter-spacing: 0.01em;
  width: 100%;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.hf__field input:focus,
.hf__field textarea:focus { border-bottom-color: var(--color-primary); }
.hf__field input::placeholder,
.hf__field textarea::placeholder { color: rgba(30,30,30,0.4); font-weight: 500; }

.hf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hf__counter-wrap { position: relative; }
.hf__counter {
  display: block;
  text-align: left;
  font-size: 0.75rem;
  color: #757575;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.hf__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.hf__actions .btn--gold {
  height: 64px;
/*  padding-inline: 2.5rem; */
  font-size: 1.125rem;
  flex-shrink: 0;
}
.hf__trust-text span {
  margin-right: 4px;
}
.hf__submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 40px;
  background: var(--color-gold);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.hf__submit:hover {
  background: var(--color-cta-hover); transform: translateY(-1px);
}
.hf__trust-wrap{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hf__trust-wrap > img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}
.hf__trust-wrap .black-star-icon{
  margin-left: 5px;
  display: inline-block;
  margin-right: 0;
  margin-top: -1px;
}
.hf__trust{
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 10px 16px;
  gap: 8px;
  height: 56px;
  border-radius: 33px;
  background: #F5F5F5;
}
.hf__trust strong{
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  color: #1e1e1e;
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.hf__trust-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #6b7280;
}
.hf__trust-google svg { flex-shrink: 0; }

/* Form message feedback */
.hf__message {
  display: none;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.hf__message--success {
  background-color: #d1fae5;
  border-left: 4px solid #10b981;
  color: #065f46;
}

.hf__message--error {
  background-color: #fee2e2;
  border-left: 4px solid #ef4444;
  color: #7f1d1d;
}

.hero__form-footer {
  background: #f7f7f7;
  padding: 8px;
  margin: 0 12px 12px;
  border-radius: 8px;
  text-align: center;
}
.hero__form-footer p{
  line-height: 1.3;
  font-size: 12px;
}
@media(min-width: 1400px){
  .hero__form-footer{
    padding: 20px 20px;
    margin: 0 20px 20px;
    border-radius: 16px;
    text-align: center;
  }
  .hero__form-footer p{
    line-height: 1.3;
    font-size: 15px;
  }
  .hf__trust strong {
    font-size: 16px;
  }
  .hf__trust {
    padding: 14px 20px 14px 16px;
    height: 64px;
  }
}
@media(max-width: 1399px) and (min-width: 992px){
  .hero__form-footer p{
    font-size: 14px;
  }
}
@media(max-width: 768px) and (min-width: 601px){
  .hero__form-footer{
    padding: 15px 15px;
    margin: 0 15px 15px;
    border-radius: 12px;
    text-align: center;
  }
  .hero__form-footer p{
    line-height: 1.3;
    font-size: 13px;
  }
}

.hero__form-footer p.notice {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #303030;
  text-align: center;
  line-height: 1;
  margin: 0;
}
.hf__trust-text{
  display: flex;
  flex-direction: column;
  min-width: 113px;
  gap: 6px;
}
.hf__trust-text small {
  font-size: 0.75rem;
  color: #757575;
  font-weight: 400;
}
.hf__trust-text .rating-stars {
  display: inline-flex;
  gap: 1px;
}
.hf__trust-text .rating-block {
  display: flex;
  gap: 5px;
}
.hf__trust-text .rating-block .rating-value{
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #1E1E1E;
}
@media(max-width:991px){
  .hf__trust-text .rating-stars img{
    display: none;
  }
  .hf__trust-text .rating-stars img:first-child{
    display: inline-block;
  }
  .hf__trust-text .rating-block .rating-value {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .hf__trust-text {
    min-width: 38px;
    gap: 2px;
  }
  .hf__trust-google svg {
    width: 26px;
    height: 26px;
  }
  .hf__trust-google {
    gap: 3px;
  }
}
/* ─────────────────────────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────────────────────────── */
.section--stats {
  padding-block: 0;
  opacity: 1;
  transform: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  border-bottom: 3px solid #ededed;
  gap: 0.5rem;
  text-align: center;
}

.stats__value {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: -0.28px;
  line-height: 1.15;
}

.stats__label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  letter-spacing: 0.13px;
  line-height: 1.55;
}

.stats__item--google .stats__value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stats__item--google .stats__value img.google-icon {
  margin-right: 12px;
  width: 34px;
}

/* ── Tablet breakpoint (1439px-769px) ───────────────────── */
@media (max-width: 1439px) and (min-width: 769px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .stats__item {
    padding: 12px 1rem;
    height: 110px;
    border-bottom: 2px solid #ededed;
    gap: 4px;
  }

  .stats__value {
    font-size: 1.75rem;
    letter-spacing: -0.28px;
    line-height: 1.15;
  }

  .stats__label {
    font-size: 0.8125rem;
    letter-spacing: 0.13px;
    line-height: 1.55;
  }
}

/* ─────────────────────────────────────────────────────────────
   WHO WE ARE (about)
   ───────────────────────────────────────────────────────────── */
.section--wwa {
  background: var(--color-bg);
  padding-block: 0;
  opacity: 1;
  padding-top: 120px;
  padding-bottom: 160px;
}
@media(max-width: 1200px){
  .section--wwa {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

/* ── Tablet breakpoint (1439px-769px) for About section ────── */
@media (max-width: 1439px) and (min-width: 769px) {
  .wwa__eyebrow {
    font-size: 0.8125rem;
    letter-spacing: 0.52px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .wwa__heading {
    font-size: 2rem;
    letter-spacing: -0.32px;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .wwa__body-cols {
    gap: 1.25rem;
    margin-bottom: 1.75rem;
  }
  .wwa__body-cols p {
    font-size: 0.875rem;
    letter-spacing: 0.14px;
    line-height: 1.55;
  }

  .wwa__features {
    gap: 1.5rem 1.25rem;
    padding-bottom: 2.5rem;
  }

  .wwa__feature {
    gap: 1rem;
  }

  .wwa__icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .wwa__icon-circle svg { width: 20px; height: 20px; }

  .wwa__feature-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.15;
  }
  .wwa__feature-text p {
    font-size: 0.8125rem;
    letter-spacing: 0.13px;
    line-height: 1.55;
  }

  .wwa__photo {
    border-radius: 1rem;
  }

  .stats__item--google .stats__value img.google-icon {
    width: 20px;
  }
}

.wwa__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
  margin-bottom: 24px;
}

.wwa__heading {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.75rem;
}

.wwa__body-cols {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.wwa__body-cols p {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.55;
  margin: 0;
}

.wwa__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #b2b2b2;
}

.wwa__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wwa__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.wwa__icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--color-gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wwa__icon-circle svg { width: 28px; height: 28px; color: #fff; }

.wwa__feature-text h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 0.375rem;
  line-height: 1.15;
}
.wwa__feature-text p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.55;
  margin: 0;
}

.wwa__right {
  position: relative;
  overflow: hidden;
}

.wwa__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 24px;
}

.wwa__photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: url(../../images/main-page-woman-img.png) center no-repeat;
  background-size: contain;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES — accordion list
   ───────────────────────────────────────────────────────────── */
.section--services {
  background: #FDFAF4;
  padding-block: 0;
  opacity: 1;
  transform: none;
}

.svc__inner {
  padding: 120px 0;
  border-radius: 32px;
}

.svc__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 2 / span 4;
  justify-self: stretch;
  max-width: 560px;
  width: 32%;
}
.svc__right{
  max-width: 36%;
}

.svc__lead {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 2.5rem;
}

.svc__bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.svc__years {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc__years-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.svc__years-value {
  font-family: var(--font-body);
  font-size: clamp(4rem, 8vw, 6.25rem);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 0.7;
  letter-spacing: -0.01em;
}

.svc__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.svc__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border-bottom: 1px solid #b2b2b2;
  padding: 0 0 2.25rem;
}

.svc__icon-circle {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc__icon-circle svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.svc__item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svc__item-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.875rem;
}
.svc__item-heading h3 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}
.svc__num {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.svc__item-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 0;
}

/* Tablet: 1439px - 769px */
@media (max-width: 1200px) and (min-width: 769px) {
  .svc__left {
    max-width: 40%;
  }
  .svc__right{
    max-width: 40%;
  }
  .svc__inner {
    padding: 60px 0;
    border-radius: 32px;
  }
  .svc__item-heading h3{
    font-size: 22px;
  }

  .svc__lead {
    font-size: 20px;
    letter-spacing: -0.2px;
    line-height: 1.35;
  }

  .svc__list {
    gap: 24px;
  }

  .svc__item {
    gap: 16px;
    padding-bottom: 28px;
  }

  .svc__icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .svc__icon-circle svg {
    width: 28px;
    height: 28px;
  }

  .svc__years-value {
    font-size: 80px;
    letter-spacing: -0.8px;
    line-height: 0.7;
  }

  .svc__years-label {
    font-size: 14px;
    letter-spacing: 0.14px;
  }
  .svc__num {
    padding-top: 0;
  }
  .svc__item-heading {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5px;
  }
  .svc__item-text p {
    font-size: 14px;
    line-height: 155%;
    letter-spacing: 0.14px;
  }
  .svc__bottom .btn--outline-dark {
    height: 48px;
    padding: 12px 30px;
    max-width: 200px;
  }
}

@media(max-width: 991px){
  .svc__bottom .btn--outline-dark {
    padding: 12px 15px;
    max-width: 180px;
    font-size: 16px;
  }
  .svc__years-value {
    font-size: 72px;
  }
  .svc__lead {
    font-size: 20px;
  }
}

/* Mobile: < 768px */
@media(max-width: 767px){
  .section--services {
    background: #FDFAF4;
  }

  .svc__inner {
    padding: 32px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .svc__left {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    grid-column: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .svc__lead {
    font-size: 20px;
    letter-spacing: -0.2px;
    line-height: 1.35;
    margin-bottom: 0;
  }

  .svc__bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .svc__years {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .svc__list {
    gap: 24px;
    order: -1;
    margin-top: 32px;
  }

  .svc__item {
    gap: 16px;
    padding-bottom: 28px;
  }

  .svc__icon-circle {
    width: 52px;
    height: 52px;
    min-width: 52px;
  }

  .svc__icon-circle svg {
    width: 28px;
    height: 28px;
  }

  .svc__item-heading h3 {
    font-size: 22px;
    letter-spacing: -0.22px;
  }

  .svc__item-text p {
    font-size: 14px;
    letter-spacing: 0.14px;
  }

  .svc__num {
    font-size: 14px;
    letter-spacing: 0.14px;
  }

  .svc__years-value {
    font-size: 80px;
    letter-spacing: -0.8px;
    line-height: 0.7;
  }

  .svc__years-label {
    font-size: 14px;
    letter-spacing: 0.14px;
  }
  .svc__bottom {
    flex-direction: row;
    gap: 24px;
    margin-top: 32px;
  }
  .svc__bottom .btn--outline-dark {
    padding: 12px 15px;
    max-width: 240px;
    font-size: 16px;
    height: 54px;
    padding: 0 30px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
}
@media(max-width: 500px){
  .svc__bottom {
    flex-direction: column;
    gap: 24px;
    margin-top: 28px;
    align-items: flex-start;
  }
  .svc__bottom .btn--outline-dark {
    padding: 12px 15px;
    max-width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────
   PROCESS — How It Works
   ───────────────────────────────────────────────────────────── */
.section--process {
  background: var(--color-bg);
  padding-block: clamp(4rem, 8vw, 7rem);
  opacity: 1;
  transform: none;
}

.process__header {
  text-align: center;
  margin-bottom: 0;
}

.process__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
  margin-bottom: 1rem;
}

.process__heading {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.process__sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 7.5rem; /* space for floating icons */
}

.process__step {
  background: var(--color-bg-alt);
  border-radius: 24px;
  padding: 5rem 2.5rem 3.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.process__icon-wrap {
  position: absolute;
  top: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 80px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process__icon-wrap svg {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
}

.process__step h3 {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 0;
  text-align: center;
  line-height: 1.2;
}
.process__step h3 .step-num {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gold-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.process__step p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0;
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   REVIEWS / TESTIMONIALS BANNER
   ───────────────────────────────────────────────────────────── */
.section--reviews {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  opacity: 1;
  transform: none;
  background: var(--color-bg);
}

.reviews__banner {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--reviews-bg) center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: stretch;
}

.reviews__banner .img-block{
  display: none;
}
.reviews__text{
  color: #fff;
}
.reviews__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #23367d 18%, rgba(0,0,0,.02) 73%);
  z-index: 0;
}

.reviews__glass {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  background: rgba(35,54,125,.3);
  border-radius: 32px;
  padding: clamp(3rem, 4vw, 7.5rem) clamp(2rem, 6vw, 9rem);
  width: clamp(320px, 50%, 700px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.reviews__stars {
  display: flex;
  gap: 0.5rem;
}
.reviews__stars svg { color: #FBBF24; width: 24px; height: 24px; }

.reviews__heading {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.reviews__quote-wrap {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.reviews__quote-icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-gold-light);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.reviews__quote-wrap blockquote { margin: 0; }
.reviews__quote-wrap blockquote p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.reviews__attribution {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin-top: -77px;
  z-index: 3;
}
.reviews__author {
  display: flex;
  flex-direction: column;
}
.reviews__author strong {
  font-size: 18px;
  margin-top: 5px;
}
.reviews__arrows {
  display: flex;
  gap: 16px;
}
.reviews__attribution strong {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}
.reviews__attribution span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,.7);
}

.reviews__nav {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.reviews__arrow {
  width: 52px;
  height: 52px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.reviews__arrow--next {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}
.reviews__arrow:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}
.reviews__arrow svg { width: 20px; height: 20px; }

/* ─── Reviews Carousel ─────────────────────────────────────── */
.reviews__carousel {
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.reviews__quote-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

/* Reviews positioned on the left (for 'next' direction) */
.reviews__quote-wrap.direction-prev {
  transform: translateX(-100%);
}

/* Reviews positioned on the right (for 'prev' direction) */
.reviews__quote-wrap.direction-next {
  transform: translateX(100%);
}

/* Active review slides to center */
.reviews__quote-wrap {
  flex-wrap: wrap;
  color: #fff;
}
.reviews__quote-wrap .reviews__author{
  margin-left: 60px ;
}
.reviews__quote-wrap blockquote {
  margin: 0;
  width: calc(100% - 60px);
}
.reviews__quote-wrap.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


/* ─────────────────────────────────────────────────────────────
   CASE RESULTS
   ───────────────────────────────────────────────────────────── */
.section--cases {
  background: var(--color-bg);
  opacity: 1;
  transform: none;
}
.cases__left {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.cases__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
  margin-bottom: 1rem;
}

.cases__heading {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.cases__heading .section__eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-gold-mid);
  margin-bottom: 1.5rem;
}
.cases__heading h2 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 2rem;
}
.cases__heading > p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0;
}

.cases__photo {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  max-width: 315px;
}
.cases__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.cases__right {
  display: flex;
  gap: 20px;
  align-self: stretch;
  grid-row: 1 / span 1;
  grid-column: 7 / span 6;
  justify-self: stretch;
  max-width: 54%;
}

.cases__col {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  align-self: stretch;
}

.case-card {
  background: var(--color-bg-alt);
  border: 1px solid #DADDFF;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.cases__inner .button-wrap,
.cases__inner .button-wrap .btn--outline-dark {
  width: 100%;
}

.case-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.case-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  line-height: 1.15;
  margin: 0;
}

.case-card p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 0;
}

.case-card__result {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.case-card__amount {
  display: inline-flex;
  align-items: center;
  background: #DFE6FF;
  color: #23367D;
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  width: fit-content;
}

.case-card__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #757575;
  line-height: 1.55;
  letter-spacing: 0.01em;
  padding-inline: 0.75rem;
}

.cases__footer {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

/* ─────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────── */
.section--faq {
  background: #FDFAF4;
  padding-block: 0;
  opacity: 1;
  transform: none;
  border-radius: 32px;
}

.faq__inner {
  padding: 40px 0 60px;
}

.faq__left {
  flex: 0 0 38%;
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.faq__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
  margin-bottom: 1rem;
}

.faq__heading-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__heading-group .section__eyebrow {
  margin-bottom: 0;
}

.faq__heading {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}

.faq__cta-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.faq__attorney-img {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.faq__attorney-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.faq__cta-text p {
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 0;
}
.faq__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 50%;
}
.faq__item {
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 2.25rem;
}
.faq__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  padding: 2.5rem 0 0;
  text-align: left;
  cursor: pointer;
  gap: 1.5rem;
}
.faq__question span:first-child {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.75rem);
  font-weight: 500;
  color: var(--color-primary-dark);
  line-height: 1.15;
}
.faq__toggle {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  flex-shrink: 0;
  transition: transform var(--transition);
  min-width: 2rem;
  text-align: center;
}
.faq__question[aria-expanded="true"] .faq__toggle { transform: rotate(45deg); }
.faq__answer {
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-top: 0.75rem;
}
.faq__answer[hidden] { display: none; }
.faq__answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 0;
}
.faq__cta-block .btn--dark {
  height: 64px;
  padding-inline: 3rem;
  font-size: 1.125rem;
  align-self: flex-start;
}
.faq__item button + p {
  display: none;
}

/* ─────────────────────────────────────────────────────────────
   SEO CONTENT
   ───────────────────────────────────────────────────────────── */
.section--seo {
  background: var(--color-bg);
  opacity: 1;
  transform: none;
}
.seo__left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3rem;
}
.seo__lead {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--color-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 2rem;
}
.section--seo .seo__lead {
  font-size: 28px;
}
.seo__checks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}
.section--seo .seo__lead {
  margin-bottom: 0;
}
.seo__checks li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

.seo__check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: inline-block;
}
.seo__checks .text{
  display: inline-block;
  width: calc(100% - 30px);
}
.seo__photo {
  border-radius: 20px;
  overflow: hidden;
}
.seo__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.seo__block {
  margin-bottom: 2.5rem;
}
.seo__block:last-child { margin-bottom: 0; }

.seo__block h2 {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3.5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.seo__block h3 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.seo__cols {
  display: flex;
  gap: 1.5rem;
}
.seo__cols p {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   CTA BANNER (dark)
   ───────────────────────────────────────────────────────────── */
.section--cta-banner {
  background: linear-gradient(230.2deg, #081A60 40.1%, #2962D5 97.1%);
  opacity: 1;
  transform: none;
  border-radius: 32px;
  padding: 120px 0;
  margin-bottom: 50px;
}
@media(min-width:1920px){
  .section--cta-banner {
    padding: 140px 0;
  }
}
/*
.cta-banner__inner {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: space-around;
  border-radius: 32px;
}
*/

.cta-banner__left {
  display: flex;
  padding: 32px 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  justify-self: stretch;
  flex: 0 0 38%;
  width: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}
.cta-banner__form-wrap{
  max-width: 540px;
}
.cta-banner__heading {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-banner__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-mid);
  margin: 0;
}

.cta-banner__title {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}

.cta-banner__left > p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0;
}

.cta-banner__heading > p {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin: 0;
}

.cta-banner__list {
  list-style: disc;
  padding-left: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.cta-banner__list li {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.24px;
}

.cta-banner__form-wrap {
  display: flex;
  align-items: stretch;
  flex: 5;
  min-width: 0;
}

.cta-form__card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0px 1px 3px rgba(0,0,0,0.15), 0px 10px 75px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

/* CTA-specific form styles */
.cta-banner__form-wrap .hero__form-header {
  background: #F2F5FF;
  border-radius: 24px;
  margin: 1.25rem 1.25rem 0;
  padding: 2rem 1.75rem;
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.cta-banner__form-wrap .hero__form-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1e1e1e;
  line-height: 1;
  letter-spacing: -0.36px;
  margin: 0;
}

.cta-banner__form-wrap .hero__form-header > p {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: rgba(30, 30, 30, 0.9);
  letter-spacing: 0.15px;
  margin: 0;
}

.cta-banner__form-wrap .hero-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2.5rem;
  gap: 2.5rem;
}

.cta-banner__form-wrap .hf__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-banner__form-wrap .hf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.cta-banner__form-wrap .hf__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.cta-banner__form-wrap .btn--gold.btn--pill {
  height: 64px;
  font-size: 1.125rem;
  flex-shrink: 0;
}
/*
.cta-banner__form-wrap .hero__form-footer {
  padding: 0 1.25rem 1.25rem;
} */

.cta-banner__form-wrap .hero__form-footer p.notice {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #303030;
  text-align: center;
  line-height: 1;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — new sections
   ───────────────────────────────────────────────────────────── */
@media(min-width: 1920px){
  .section--cta-banner{
    margin-bottom: 80px;
  }
  .hf__actions .btn--gold,
  .cta-banner__form-wrap .btn--gold.btn--pill {
    padding-inline: 2.5rem;
  }
}
@media(max-width: 1919px){
  .hero-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 2.5rem;
  }
  .hf__trust-wrap {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
}
@media (min-width: 1441px) {
  .wwa__heading {
    margin-bottom: 40px;
    margin-top: 30px;
  }
}
@media (min-width: 1601px) {
  .hf__actions,
  .cta-banner__form-wrap .hf__actions {
    flex-direction: row;
  }
  .hf__actions .btn--gold {
    width: 250px;
  }
}
@media (max-width: 1600px) {
  .hf__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }
}
@media (max-width: 1400px) {
  .hf__actions .btn--gold {
    height: 56px;
  }
}
@media (max-width: 1440px) {
  .section--process{
    padding-bottom: 70px;
  }
  .section--reviews {
    padding-top: 0;
  }
  .svc__item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    border-bottom: 1px solid #b2b2b2;
    padding: 0 0 1.5rem;
  }
  .cases__right{
    flex-direction: column;
  }
  .cases__col{
    width: 100%;
  }
  .case-card{
    width: 100%;
    padding: 1rem;
  }
  .case-card__amount {
    font-size: 22px;
  }
  .faq__cta-block .btn--dark{
    padding-left: 15px;
    padding-right: 15px;
  }
  .seo__lead{
    font-size: 20px;
  }
  .seo__cols{
    flex-direction: column;
  }
  .hero__form-title {
    font-size: 22px;
  }
  .hero__form-time {
    font-size: 16px;
  }
  .hero__form-time img {
    height: 16px;
    width: 16px;
  }
  .hero__form-header, .hero__form-footer p.notice {
    border-radius: 8px;
  }
  .hero__form-header > p {
    font-size: 13px;
  }
  .hf__field label {
    font-size: 13px;
  }
  .hf__field input,
  .hf__field textarea {
    font-size: 16px;
  }
  .hf__row {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
  }
  .hero-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hf__field input,
  .hf__field textarea {
    padding-bottom: 17px;
  }
  .hero-form {
    padding-top: 24px;
  }
  .hero__grid {
    min-height: 704px;
  }
  .hf__trust-wrap {
    align-items: center;
    gap: 16px;
    justify-content: center;
  }
  .hero__form-footer p.notice,
  .hero__form-header {
    padding: 16px;
  }
  .hero__form-footer p.notice{
    line-height: 1.3;
  }
  .hero__form-card {
    border-radius: 20px;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__thumb_img {
    box-sizing: border-box;
    width: 95px;
    height: 66px;
  }
  .hero__thumb.is-active {
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 5px #ddbd7f;
  }
  .section--wwa {
    padding-top: 60px;
  }
  .faq__heading{
    font-size: 32px;
  }
  .faq__cta-text p {
    font-size: 20px;
  }
  .cta-banner__title {
    font-size: 44px;
  }
}
@media(max-width: 1300px) and (min-width: 992px){
  .hf__trust-text {
    min-width: 102px;
    gap: 3px;
  }
  .hf__trust {
    padding: 10px 14px 10px 12px;
  }
  .hf__actions .btn--gold {
    font-size: 16px;
  }
  .rating-stars img{
    width: 14px;
    height: 14px;
  }
  .hf__trust-text .rating-stars {
    gap: 0;
  }
  .hf__trust-text .rating-block .rating-value {
    font-size: 14px;
  }
  .hf__trust-google {
    gap: 5px;
  }
  .hf__trust-text {
    min-width: 100px;
    gap: 4px;
  }
  .hf__trust {
    padding: 10px 14px 10px 12px;
  }
  .hero-form .btn {
    padding: 10px 20px;
  }
  .hero-form {
    padding-bottom: 1.5rem;
  }
  .hf__field input, .hf__field textarea {
    padding-bottom: 10px;
  }
}
@media(max-width: 1140px) and (min-width: 992px){
  .hf__trust-text span.hidden-md{
    display: none;
  }
   .hf__trust-text .rating-stars img{
    display: none;
  }
  .hf__trust-text .rating-stars img:first-child{
    display: inline-block;
  }
  .hf__trust-text .rating-block .rating-value {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .hf__trust-text {
    min-width: 38px;
    gap: 2px;
  }
  .hf__trust-google svg {
    width: 26px;
    height: 26px;
  }
  .hf__trust-google {
    gap: 3px;
  }
}
@media (max-width: 1200px) {
  .reviews__quote-wrap .reviews__author {
    margin-left: 0;
  }
  .reviews__arrows {
    gap: 8px;
  }
  .wwa__body-cols {
    display: block;
  }
  .wwa__icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
  .site-header__brand {
    width: 220px;
  }
  .main-nav__list > li > a {
    font-size: 0.75rem;
    padding-inline: 10px;
  }
  .site-header__cta {
    padding-inline: 1.25rem;
    font-size: 0.85rem;
  }
  .reviews__glass {
    justify-content: center;
    padding: 60px 60px 60px;
  }
  .reviews__quote-wrap blockquote p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .site-header__inner {
    padding: 24px 48px;
  }
  .faq__question span:first-child {
    font-size: 20px;
  }
  .faq__question{
    padding-top: 24px;
  }
  .faq__item{
    padding-bottom: 24px;
  }
  .faq__heading-group {
    margin-top: 25px;
  }
  .faq__attorney-img img {
    display: inline-block;
    width: 56px;
    height: 56px;
  }
  .faq__cta-block {
    flex-direction: row;
    gap: 25px 16px;
    flex-wrap: wrap;
  }
  .faq__cta-block .btn--dark{
    display: flex;
    height: 48px;
    padding: 0 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 260px;
    width: 100%;
  }
  .faq__cta-block .btn {
    font-size: 16px;
    display: inline-flex;
    flex-direction: row;
  }
  .faq__answer p {
    font-family: var(--font-body);
    font-size: 14px;
  }
  .hf__trust strong {
    font-size: 15px;
  }
  .hf__trust-text small {
    font-size: 10px;
  }
}
@media (max-width: 1024px) {
  .hero__grid{
    grid-template-columns: 1fr;
  }
  .hero__left { min-height: 480px; }

  .faq__left {
    flex: none;
    width: 100%;
  }

  .cases__left {
    flex: none;
    width: 100%;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 5rem;
  }

  .stats__grid {
    gap: 16px;
  }
  .stats__item {
    padding: 12px 1rem;
    height: 90px;
    border-bottom: 2px solid #ededed;
    gap: 4px;
  }
  .stats__value {
    font-size: 1.75rem;
    letter-spacing: -0.28px;
    line-height: 1.15;
  }
  .stats__label {
    font-size: 0.8125rem;
    letter-spacing: 0.13px;
    line-height: 1.55;
  }

  .seo__cols{
    display: block;
  }
  .wwa__features {
    grid-template-columns: 1fr;
  }

  .hero__grid .hero__left {
    padding: 60px 40px;
  }
  .hero__title {
    font-size: 44px;
  }
  .stats__item--google .stats__value img.google-icon {
    margin-right: 5px;
    width: 20px;
  }
}

@media (max-width: 991px) {
  .reviews__glass {
    padding: 35px 30px 35px;
  }
  .wwa__body-cols {
    flex-direction: column;
  }
  .hero__form-footer p.notice, .hero__form-header {
    padding: 14px;
  }
  .wwa__features {
    border-bottom: none;
    margin-bottom: 30px;
    gap: 20px;
  }
  .wwa__heading{
    font-size: 32px;
  }
  .hf__trust-wrap {
    gap: 8px;
  }
  .hf__trust strong {
    font-size: 1rem;
  }
  .hf__trust-text {
    gap: 1px;
  }
  .hf__trust-text small {
    font-size: 0.65rem;
  }
  .hero__bullets li {
    line-height: 1.3;
  }
  .hero-form {
    padding-bottom: 1.5rem;
  }
  .hf__trust-wrap > img {
    width: 50px;
    height: 50px;
  }
  .hf__trust {
    padding: 7px 20px 7px 16px;
    gap: 7px;
    height: 50px;
  }
  .hf__actions .btn--gold {
    height: 44px;
    padding-inline: 2rem;
    font-size: 14px;
    flex-shrink: 0;
    padding: 10px 15px;
  }
  .hf__trust strong {
    font-size: 12px;
  }
  .hf__trust-text small {
    font-size: 9px;
  }
  .cta-banner__form-wrap .hero-form {
    padding: 12px 12px 20px;
  }
  .cta-banner__form-wrap .hero__form-header {
    border-radius: 8px;
    padding: 16px;
    margin: 12px 12px 20px;
  }
  .cta-banner__form-wrap .hero__form-title {
    font-size: 22px;
    width: calc(100% - 70px);
  }
  .cta-banner__form-wrap .hero__form-header > p {
    font-size: 13px;
  }
  .cta-form__card {
    border-radius: 20px;
  }
  .cta-banner__form-wrap .hf__row {
    display: flex;
    flex-direction: column;
  }
  .cta-banner__form-wrap .hero-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .section--cta-banner {
    padding: 60px 0;
  }
  .cta-banner__form-wrap .hf__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hf__field input,
  .hf__field textarea {
    padding-bottom: 13px;
    padding-left: 0;
    padding-top: 3px;
  }
  .cta-banner__form-wrap .btn--gold.btn--pill {
    height: 56px;
    font-size: 16px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 40px;
  }
  .cta-banner__eyebrow {
    font-size: 13px;
  }
  .cta-banner__title {
    font-size: 38px;
  }
  .cta-banner__heading > p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  .cta-banner__list li {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.18px;
  }
  .hf__trust-wrap > img {
    width: 38px;
    height: 38px;
  }
  .hf__trust {
    padding: 5px 10px 5px 10px;
    gap: 7px;
    height: 44px;
  }
}

@media (max-width: 768px) {
    .row > .col{
    padding-left: 16px;
    padding-right: 16px;
  }
  .wwa__eyebrow {
    font-size: 0.8125rem;
    letter-spacing: 0.52px;
    margin-bottom: 16px;
  }

  .wwa__heading {
    font-size: 1.875rem;
    letter-spacing: -0.3px;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .wwa__body-cols {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .wwa__body-cols p {
    font-size: 0.875rem;
    letter-spacing: 0.14px;
    line-height: 1.55;
  }

  .wwa__features {
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #b2b2b2;
  }

  .wwa__feature {
    gap: 1rem;
    padding-right: 2.5rem;
  }

  .wwa__icon-circle {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .wwa__icon-circle svg {
    width: 20px;
    height: 20px;
  }

  .wwa__feature-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    line-height: 1.15;
  }

  .wwa__feature-text p {
    font-size: 0.8125rem;
    letter-spacing: 0.13px;
    line-height: 1.55;
  }

  .wwa__photo {
    border-radius: 1rem;
  }

  .section--hero {
    padding: 0 16px 0;
  }
  .row > .col.hero__form-wrap {
    padding-right: 0;
    padding-left: 0;
  }
  .hero__grid .hero__left {
    padding: 40px 20px;
    margin-bottom: 16px;
    min-height: 260px;
  }
  .hero__text {
    max-width: 435px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__bullets li {
    line-height: 1.35;
    font-size: 14px;
    margin-bottom: 6px;
  }

  .hero__title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .hero__thumb_img {
    width: 64px;
    height: 44px;
  }

  .hero__thumb {
    border-radius: 6px;
  }

  .hero__thumbs {
    margin-bottom: 20px;
  }

  .main-tpl {
    padding-left: 0;
    padding-right: 0;
  }
  .hero__grid { grid-template-columns: 1fr; }
  .hf__row { grid-template-columns: 1fr; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { padding-block: 2.5rem; }

  .svc__inner { gap: 2rem; }
  .svc__item { gap: 1.25rem; }
  .svc__icon-circle { width: 56px; height: 56px; min-width: 56px; }

  .process__steps {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }
  .reviews__glass { width: 100%; padding: 2.5rem 1.75rem; }
  .cases__col { width: 100%; }
  .cases__col:last-child { padding-top: 0; }
  .faq__inner { gap: 1rem; }
  .seo__inner,
  .cta-banner__inner { gap: 2rem; }

  .seo__cols { flex-direction: column; }

  .section--cta-banner {
    padding: 32px 20px;
    border-radius: 20px;
    margin: 0;
  }
  .section--cta-banner .cta-banner__form-wrap,
  .section--cta-banner .cta-banner__left {
    padding: 0;
  }

  /* CTA mobile adjustments */
  .cta-banner__title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .cta-banner__list li { font-size: 1.125rem; }
  .cta-banner__form-wrap .hero__form-title { font-size: 1.5rem; }

  .section--wwa {
    padding-bottom: 15px;
  }
  .reviews__banner{
    background: none;
  }
  .reviews__glass {
    width: 100%;
    background: #23367D;
    padding: 32px 20px 20px;
  }
  .reviews__glass img{
    display: block;
    border-radius: 12px;
  }
  .reviews__banner .img-block{
    display: block;
  }
  .section--reviews{
    padding: 0 16px;
  }
  .section--process {
    margin-bottom: 12px;
  }
  .cases__left {
    gap: 32px;
  }
  .cases__heading {
    margin-bottom: 0;
  }
  .cases__heading h2 {
    margin: 0 0 20px;
  }
  .cases__photo {
    margin-bottom: 20px;
    margin-top: 0;
    width: 100%;
    max-width: inherit;
  }
  .cta-banner__left {
    padding: 32px 20px;
  }
  .section--wwa {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .hero__grid {
    flex-direction: column;
  }
  .hero__grid .hero__left {
    padding: 40px 20px 20px;
    min-height: 310px;
    width: 100%;
    border-radius: 20px;
  }
  .hero__grid .hero__left {
    padding: 40px 20px 20px;
    min-height: 310px;
    width: 100%;
    border-radius: 20px;
    margin: 0 12px 20px;
  }
  .hf__actions .btn--gold {
    font-size: 1rem;
    max-width: 200px;
  }
  .hf__trust strong {
    font-size: 13px;
  }
  .hf__trust-text small {
    font-size: 10px;
  }
  .hf__trust-text {
    gap: 0px;
  }
  .hf__trust {
    padding: 5px 20px 5px 16px;
    gap: 8px;
    height: 44px;
  }
  .hf__trust-wrap > img {
    width: 44px;
    height: 44px;
  }
  .hf__trust-wrap {
    gap: 10px;
  }
  .hf__actions .btn--gold {
    height: 44px;
    font-size: 14px;
  }
  .hero__form-footer p.notice {
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.11px;
  }
  .site-footer__copy {
    text-align: center;
  }
  .site-footer__bottom {
    padding-top: 25px;
    padding-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .hf__trust-wrap {
    gap: 8px;
  }
  .hf__trust-wrap > img {
    width: 40px;
    height: 40px;
  }
  .hf__trust-text small {
    font-size: 8px;
  }
  .hero__grid .hero__left {
    margin: 0 0 20px;
  }
  .hero__form-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .hero__form-header {
    margin: 12px;
  }
  .hero__form-time img {
    height: 14px;
    width: 14px;
    margin-right: 3px;
  }
  .hero__form-time {
    font-size: 14px;
    width: 65px;
  }
  .hf__field {
    gap: 6px;
  }
  .hero__form-wrap.col {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-form {
    padding-bottom: 30px;
  }
  .hero__form-footer {
    padding: 8px;
  }
  .wwa__inner .wwa__left {
    width: 100%;
  }
  .row.wwa__inner {
    flex-direction: column;
  }
  .stats__item--google .stats__value img.google-icon {
    margin-right: 0;
    width: 23px;
  }
  .stats__item {
    padding: 12px 1rem;
    height: 90px;
    border-bottom: 2px solid #ededed;
    gap: 1px;
  }
  .stats__grid {
    gap: 5px 20px;
  }
}
@media (max-width: 400px) {
  .hero__title {
    font-size: 27px;
  }
  .hf__trust {
    padding: 5px 10px 5px 12px;
  }
}

.error-404 .page-title { margin-bottom: 1rem; }
.error-404 .page-content { max-width: 480px; margin-inline: auto; }

/* Search Form */
.search-form { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.search-form input[type="search"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--text-base);
  font-family: var(--font-body);
}
.search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--color-primary);
}
.search-form .search-submit {
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.search-form .search-submit:hover { background: var(--color-primary-dark); }

/* Skip link */
.skip-link { position: absolute; top: -9999px; }
.skip-link:focus {
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 9999;
  background: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
  color: var(--color-primary);
}

/* ── 21. Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .why-us-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 900px) {
  .section--about__inner { grid-template-columns: 1fr; }
  .section--about__image { order: -1; }
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { padding-top: 0; }
}

@media (max-width: 991px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; left: -100%;
    bottom: 0;
    width: 100%;
    max-width: 700px;
    background: var(--color-white);
    padding: 5rem 1.5rem 2rem;
    box-shadow: 4px 0 32px rgba(0,0,0,.2);
    overflow-y: auto;
    transition: left 0.35s ease;
    margin-left: 0;
    z-index: 999;
    padding: 32px 16px;
  }
  .site-nav-menu {
    width: 100%;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav__list .menu-item-mega .mega-menu {
    position: static;
  }
  .main-nav__list .current-menu-item > a { color: var(--color-primary) !important; }
  .main-nav__list .sub-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    padding-left: 1rem;
    display: none;
  }
  .main-nav__list .menu-item-has-children:hover > .sub-menu,
  .main-nav__list .menu-item-has-children.is-open > .sub-menu { display: block; }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }
  .main-nav {
    padding: 16px;
  }
  .main-nav .site-header__logo-icon{
    margin-bottom: 15px;
  }
  .main-nav.is-open .site-header__brand{
    display: block;
  }
  .main-nav__list > li{
    border-bottom: 1px solid #F5F5F5;
  }
  .main-nav__list > li:last-child {
    border-bottom: none;
  }
  .main-nav__list > li > a {
    font-size: 15px;
    padding: 12px 16px;
    border-radius: 0;
  }
  .main-nav.is-open {
    max-width: 100vw;
    left: 0;
  }
}
@media (max-width: 768px) {
  .section--cta__inner { flex-direction: column; text-align: center; }
  .cta__actions { justify-content: center; width: 100%; }
  .form-row--two { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-us-stats { grid-template-columns: repeat(2, 1fr); }

  .site-header__inner {
    padding: 24px 20px;
  }
  .process__icon-wrap {
    top: -40px;
    width: 80px;
    height: 80px;
  }
  .consult-lg,
  .chat-lg{
    display: none;
  }
  .main-nav.is-open {
    max-width: 100vw;
    left: 0;
    top: 85px;
  }
}
@media (max-width: 767px) {
  .faq__heading-group {
    margin-top: 0;
  }
  .faq__inner {
    padding: 32px 8px 32px;
  }
  .faq__left {
    gap: 2rem;
  }
}

@media (min-width: 1400px) {
  .hidden-xxl {
    display: none !important
  }
}
@media (max-width: 1399px) and (min-width: 1200px) {
  .hidden-xl {
    display: none !important
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .hidden-lg {
    display: none !important
  }
}
@media (max-width: 991px) and (min-width: 768px){
  .hidden-md {
    display: none !important
  }
}
@media (max-width: 767px) {
  .hidden-sm{
    display: none;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .posts-grid { grid-template-columns: 1fr; }
  .why-us-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer-nav__list { justify-content: center; }
}

/* ==============================================================
   ANIMATIONS
   ============================================================== */

/* ── Rolling digit reel (stats counter) ────────────────────── */
.stat-roll {
  display: inline-flex;
  align-items: flex-end;
  line-height: 1;
}

.stat-roll__plain {
  display: inline-block;
  line-height: 1;
}

.stat-roll__millions {
  font-size: inherit;
}

.stat-roll__col {
  display: inline-block;
  overflow: hidden;
  height: 1em;
  line-height: 1;
  vertical-align: bottom;
}

.stat-roll__strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-roll__strip span {
  display: block;
  height: 1em;
  line-height: 1;
  text-align: center;
}

/* When JS sets --target-digit and adds .is-rolling, strip slides up */
.stat-roll__col.is-rolling .stat-roll__strip {
  transform: translateY(calc(-1em * var(--target-digit, 0)));
}

/* Stagger each digit column */
.stat-roll__col:nth-child(1) .stat-roll__strip { transition-delay: 0s; }
.stat-roll__col:nth-child(2) .stat-roll__strip { transition-delay: 0.06s; }
.stat-roll__col:nth-child(3) .stat-roll__strip { transition-delay: 0.12s; }
.stat-roll__col:nth-child(4) .stat-roll__strip { transition-delay: 0.18s; }

/* ── Stats bar: items fade in (controlled by dedicated JS observer) ── */
/* Stats items START invisible — safe since no images inside them      */
.stats__item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.section--stats.stats-visible .stats__item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.section--stats.stats-visible .stats__item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.section--stats.stats-visible .stats__item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.section--stats.stats-visible .stats__item:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }

/* ── Shared keyframes ───────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/*
 * IMPORTANT: Elements below do NOT have a static opacity:0 set.
 * They are visible by default. Animations only run when the
 * parent section receives the .is-visible class from JS.
 * If JS is disabled or the observer doesn't fire, everything
 * remains fully visible — progressive enhancement.
 */

/* ── Hero entrance animation ────────────────────────────────── */
.hero__thumbs {
  animation: fadeSlideUp 0.7s ease both 0.1s;
}
.hero__title {
  animation: fadeSlideUp 0.7s ease both 0.25s;
}
.hero__bullets {
  animation: fadeSlideUp 0.7s ease both 0.45s;
}
.hero__form-card {
  animation: fadeIn 0.9s ease both 0.3s;
}

/* ── Process steps stagger ──────────────────────────────────── */
.section--process.is-visible .process__step:nth-child(1) { animation: fadeSlideUp 0.55s ease both 0.10s; }
.section--process.is-visible .process__step:nth-child(2) { animation: fadeSlideUp 0.55s ease both 0.22s; }
.section--process.is-visible .process__step:nth-child(3) { animation: fadeSlideUp 0.55s ease both 0.34s; }
.section--process.is-visible .process__step:nth-child(4) { animation: fadeSlideUp 0.55s ease both 0.46s; }

/* ── Case cards stagger ─────────────────────────────────────── */
.section--cases.is-visible .cases__col:nth-child(1) .case-card:nth-child(1) { animation: fadeSlideUp 0.5s ease both 0.10s; }
.section--cases.is-visible .cases__col:nth-child(1) .case-card:nth-child(2) { animation: fadeSlideUp 0.5s ease both 0.25s; }
.section--cases.is-visible .cases__col:nth-child(2) .case-card:nth-child(1) { animation: fadeSlideUp 0.5s ease both 0.18s; }
.section--cases.is-visible .cases__col:nth-child(2) .case-card:nth-child(2) { animation: fadeSlideUp 0.5s ease both 0.33s; }

/* ── About features stagger ─────────────────────────────────── */
.section--wwa.is-visible .wwa__feature:nth-child(1) { animation: fadeSlideUp 0.5s ease both 0.10s; }
.section--wwa.is-visible .wwa__feature:nth-child(2) { animation: fadeSlideUp 0.5s ease both 0.22s; }
.section--wwa.is-visible .wwa__feature:nth-child(3) { animation: fadeSlideUp 0.5s ease both 0.34s; }
.section--wwa.is-visible .wwa__feature:nth-child(4) { animation: fadeSlideUp 0.5s ease both 0.46s; }

/* ── Services list stagger ──────────────────────────────────── */
.section--services.is-visible .svc__item:nth-child(1) { animation: fadeSlideUp 0.5s ease both 0.10s; }
.section--services.is-visible .svc__item:nth-child(2) { animation: fadeSlideUp 0.5s ease both 0.22s; }
.section--services.is-visible .svc__item:nth-child(3) { animation: fadeSlideUp 0.5s ease both 0.34s; }
.section--services.is-visible .svc__item:nth-child(4) { animation: fadeSlideUp 0.5s ease both 0.46s; }

/* ── Testimonials review glass slide-in ─────────────────────── */
.section--reviews.is-visible .reviews__glass {
  animation: fadeSlideLeft 0.7s ease both 0.15s;
}

/* ── SEO section left column ────────────────────────────────── */
.section--seo.is-visible .seo__lead   { animation: fadeSlideUp 0.65s ease both 0.10s; }
.section--seo.is-visible .seo__checks { animation: fadeSlideUp 0.65s ease both 0.25s; }

/* ── CTA banner elements ────────────────────────────────────── */
.section--cta-banner.is-visible .cta-banner__left     { animation: fadeSlideUp 0.6s ease both 0.10s; }
.section--cta-banner.is-visible .cta-banner__form-wrap { animation: fadeSlideUp 0.6s ease both 0.25s; }

/* ── Hover lift on icon circles ─────────────────────────────── */
.wwa__icon-circle,
.svc__icon-circle { transition: transform 0.25s ease; }

.wwa__feature:hover .wwa__icon-circle,
.svc__item:hover .svc__icon-circle   { transform: scale(1.08); }

footer .col-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
footer .address-block{
  display: flex;
  gap: 16px;
}
footer .phone-block{
  display: flex;
  gap: 22px;
}
.footer-logo-block p{
  color: #364054;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}
footer .address-block .name{
  color: #002349;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 10px;
}
footer .address-block p{
  color: #364054;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}
footer .phone-block a{
  color: #1D39A5;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 115%;
  letter-spacing: -0.28px;
}
.footer-address-block{
  display: flex;
  gap: 28px;
  flex-direction: column;
}
footer .footer-col {
  padding: 0 40px;
  border-right: 1px solid rgba(0, 35, 73, 0.10);
}
footer .footer-col.right-col {
  border-right: none;
}
.site-footer__bottom-inner{
  align-items: stretch;
}
footer .footer-title{
  color: #002349;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 22px;
}
footer .disclaimer-text{
  color: #364153;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 24px;
}
.footer-title.legal-menu {
  margin-top: 40px;
}
footer img.icon-phone-block {
  width: 24px;
  height: 24px;
}
footer img.icon-phone-block {
  width: 24px;
  height: 24px;
}
footer .icon-address-block {
  min-width: 44px;
}
@media(min-width: 1441px){
  footer img.icon-phone-block {
    width: 32px;
    height: 32px;
  }
}
@media(max-width: 1440px){
  footer .footer-col {
    padding: 0 20px;
  }
  footer .phone-block a {
    font-size: 22px;
  }
}

@media(max-width: 1200px){
  footer .footer-col.right-col {
    border-right: none;
    margin-top: 48px;
  }
  footer .right-menu-col{
    border-right: none;
  }
}
@media(max-width: 768px){
  footer .left-col{
    margin-bottom: 40px;
    border-right: none;
  }
  .footer-logo-block p {
    margin-bottom: 15px;
  }
  .footer-policy__list {
    gap: 2px;
  }
  footer .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
@media(max-width: 768px) and (min-width:576px){
  .footer-address-block {
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  footer .address-block {
    gap: 8px;
    width: 58%;
  }
  footer .phone-block {
    gap: 8px;
  }
  footer .site-header__cta {
    width: 100%;
  }
  footer .address-block p {
    font-size: 14px;
  }
  footer .address-block .name {
    margin-bottom: 5px;
  }
  .footer-logo-block p {
    text-align: center;
  }
}
@media(max-width:575px){
  .site-footer__bottom-inner {
    flex-direction: column;
  }
  footer .left-menu-col{
    border-right: none;
  }
  footer .phone-block a {
    font-size: 20px;
  }
  nav.footer-nav {
    padding-bottom: 0;
    border-bottom: 1px solid rgba(0, 35, 73, 0.10);
    margin-bottom: 24px;
  }
  .footer-title.legal-menu {
    margin-top: 0;
  }
  footer .footer-col.right-col {
    border-right: none;
    margin-top: 8px;
  }
  footer .disclaimer-text {
    margin-bottom: 0;
  }
  .site-footer__bottom-inner .copyright {
    text-align: left;
  }
  .site-footer__copy {
    margin: 20px 0 5px;
  }
  .site-footer__copy p {
    text-align: left;
  }
  .site-footer__bottom-inner .footer-logo img {
    margin: 20px 0 20px;
    width: 200px;
  }
  footer .site-footer__bottom-inner,
  footer .site-footer {
    text-align: left;
  }
  .cta-banner__form-wrap .btn--gold.btn--pill {
    padding: 10px 20px;
    width: 100%;
    border-radius: 40px;
    max-width: inherit;
  }
}

@media(max-width: 768px) and (min-width: 601px){
  .mega-menu__section {
    display: grid;
    gap: 20px;
    padding: 15px;
  }
}
@media(max-width: 991px) and (min-width: 501px){
  .mega-menu__section-label{
    height: 90px;
    padding-left: 135px;
    padding-right: 15px;
    border-radius: 8px;
    color: #1D39A5;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 1;
  }
  .services-list-1{
    background: #F4F5FF url(../../images/services-icon-1.png) left 4px top 4px no-repeat;
  }
  .services-list-2{
    background: #F4F5FF url(../../images/services-icon-2.png) left 4px top 4px no-repeat;
  }
  .services-list-3{
    background: #F4F5FF url(../../images/services-icon-3.png) left 4px top 4px no-repeat;
  }
}
@media(max-width: 600px) and (min-width: 501px){
  .mega-menu__section-label {
    height: 70px;
    padding-left: 105px;
    background-size: 86px auto;
  }
}